.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(10,8,4,0.95);
  border-top: 1px solid rgba(201,146,42,0.2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap;
  animation: cookie-slide-up 0.4s ease-out;
}
.cookie-banner.hidden { display: none; }
.cookie-text {
  color: rgba(244,233,208,0.7); font-size: 0.85rem;
  font-family: 'Crimson Pro', serif;
}
.cookie-text a {
  color: var(--gold); text-decoration: underline;
  text-decoration-color: rgba(201,146,42,0.4);
  transition: color 0.3s, text-decoration-color 0.3s;
}
.cookie-text a:hover {
  color: var(--gold-light); text-decoration-color: var(--gold-light);
}
.cookie-btn {
  font-family: 'Cinzel', serif; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5rem 1.5rem; border: 1px solid rgba(201,146,42,0.4);
  background: transparent; color: var(--gold); cursor: pointer;
  transition: all 0.3s;
}
.cookie-btn:hover {
  background: rgba(201,146,42,0.1); border-color: var(--gold);
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
