/* ============================================================
   COOKIE CONSENT BANNER
   Fixed bottom bar, matches Cairn dark/violet surface system.
   ============================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--el-surface-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--el-hairline-strong);
  box-shadow: 0 -20px 50px -20px rgba(0, 0, 0, 0.6);
  animation: cookieBannerIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent-banner[hidden] {
  display: none;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent-banner { animation: none; }
}

.cookie-consent-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dim, rgba(255, 255, 255, 0.7));
  flex: 1 1 320px;
}
.cookie-consent-text a {
  color: var(--el-violet-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent-actions .v-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .cookie-consent-inner {
    padding: 18px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-actions {
    justify-content: stretch;
  }
  .cookie-consent-actions .v-cta {
    flex: 1;
  }
}
