/* =========================================================
   Cookie consent banner — minimal, dark-mode-tolerant
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #1a1a1c;
  color: #e8e6e0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 1.5rem;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  box-shadow: 0 -20px 60px -30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__copy {
  flex: 1 1 320px;
  min-width: 0;
}
.cookie-banner__copy a {
  color: #c89870;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__copy a:hover { color: #efe6d4; }
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner__btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #e8e6e0;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.cookie-banner__btn:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}
.cookie-banner__btn--primary {
  background: #c89870;
  border-color: #c89870;
  color: #0a0805;
}
.cookie-banner__btn--primary:hover {
  background: #d9a880;
  border-color: #d9a880;
  color: #0a0805;
}
@media (max-width: 599px) {
  .cookie-banner { padding: 1rem 1rem 1.1rem; font-size: 0.82rem; }
  .cookie-banner__inner { gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1 1 auto; text-align: center; }
}
