.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  background: rgba(12, 12, 14, 0.96);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-consent.is-visible { transform: translateY(0); }
.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-consent__text { color: #b9b9be; font-size: 0.85rem; font-weight: 300; margin: 0; }
.cookie-consent__text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: flex; gap: 0.6rem; }
.cookie-consent__btn {
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #0c0c0e;
  cursor: pointer;
  border-radius: var(--radius);
  transition: opacity 0.25s ease;
}
.cookie-consent__btn:hover { opacity: 0.85; }
.cookie-consent__btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
@media (max-width: 640px) {
  .cookie-consent__inner { flex-direction: column; align-items: flex-start; }
}
