/* =================================================================
   Cookie consent notice — fixed bottom bar.
   Void background, gold top border, cream text, small type.
   The [hidden] attribute keeps it out of the layout until JS reveals it.
   ================================================================= */

.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: var(--void);
  border-top: 1px solid var(--gold);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  max-width: 60ch;
  color: var(--cream);
}

.cookie-notice a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-notice a:hover {
  color: var(--gold-soft);
}

.cookie-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cookie-accept,
.cookie-reject {
  flex: 0 0 auto;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--f-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.cookie-accept {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--void);
  font-size: 0.78rem;
}
.cookie-accept:hover {
  background: transparent;
  color: var(--gold);
}

/* Secondary — border-only, gold text, smaller emphasis */
.cookie-reject {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.72rem;
  opacity: 0.85;
}
.cookie-reject:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  opacity: 1;
}

@media (max-width: 600px) {
  .cookie-notice {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.85rem;
  }
  .cookie-actions {
    align-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}
