/* Cookie consent banner */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #1e293b;
  color: #f8fafc;
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}
.cookie-consent-banner a { color: #93c5fd; }
.cookie-consent-banner a:hover { color: #fff; }
.cookie-consent-banner.is-visible {
  animation: cookie-slide-up .25s ease-out;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
