/* Cookie Banner — Rubin */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink, #1a1510);
  border-top: 2px solid var(--ruby, #e0115f);
  padding: 1.25rem var(--pad, 32px);
  z-index: 9999;
  font-family: var(--font-ui, 'Archivo', sans-serif);
  color: var(--cream, #f3ecd8);
  font-size: 14px;
  display: flex;
  justify-content: center;
}

.cookie-banner-content {
  max-width: var(--maxw, 1340px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-content a {
  color: var(--ruby, #e0115f);
  text-decoration: underline;
  margin-left: 0.25rem;
  font-weight: 600;
}

.cookie-banner-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

.cookie-btn-primary {
  background: var(--ruby, #e0115f);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: var(--ruby-deep, #9b111e);
}

.cookie-btn-subtle {
  background: var(--border, #2b251d);
  color: var(--text-dim, #b5ac93);
}

.cookie-btn-subtle:hover {
  background: var(--border-strong, #463d30);
  color: var(--text, #f3ecd8);
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
