/* Fixed overlay — opacity-only entrance avoids document flow shifts */
@keyframes cookieBannerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-banner-enter {
  animation: cookieBannerFadeIn 0.35s ease-out forwards;
}

#cookie-consent-banner {
  contain: layout style paint;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner-enter {
    animation: none;
    opacity: 1;
  }

  .cookie-accept-highlight {
    animation: none !important;
  }
}
