/* Cookie consent banner */

.cookie-consent {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 90;
  max-width: 56rem;
  margin-inline: auto;
  background-color: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.cookie-consent[hidden] { display: none; }

.cookie-consent__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cookie-consent__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.cookie-consent__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.375rem;
}
.cookie-consent__desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.6;
}
.cookie-consent__desc a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
