/* =========================================
   Cookie Consent Banner — Dulce Flow
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990; /* below nav if nav is 9999, above everything else */
  padding: 20px 16px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

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

.cookie-banner__inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 24px 24px;
  background: rgba(247, 244, 240, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.cookie-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted, #7a7a7a);
  margin: 0 0 20px;
}

.cookie-banner__text a {
  color: var(--accent, #D63384);
  text-decoration: underline;
}

/* Big prominent accept button */
.cookie-banner__accept {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent, #D63384);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cookie-banner__accept:hover {
  background: #c0266f;
  transform: translateY(-1px);
}

.cookie-banner__accept:active {
  transform: translateY(0);
}

/* Links row below button */
.cookie-banner__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
}

/* Config link — small, subtle */
.cookie-banner__config {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted, #7a7a7a);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-banner__config:hover {
  color: var(--text, #1a1a1a);
}

/* Reject — tiny gray text, looks like a link not a button */
.cookie-banner__reject {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted, #7a7a7a);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 0;
}

.cookie-banner__reject:hover {
  opacity: 1;
  text-decoration: underline;
}
