/* ========================================
   COOKIES.CSS — Cookie consent banner
======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.5rem var(--pad-x);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  max-width: 700px;
}

.cookie-banner-text a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.cookie-banner-text a:hover {
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-btn-accept {
  background: #fff;
  color: #000;
}

.cookie-btn-accept:hover {
  background: rgba(255,255,255,0.85);
  transform: scale(1.03);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

.cookie-btn-decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1.5rem var(--pad-x-sm);
    gap: 1.2rem;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}