/* ── Cookie Banner ──────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  display: none;
  font-family: 'Funnel Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner--visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #3730a3;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: #4f46e5;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #4338ca;
}

.cookie-banner__btn--settings {
  background: transparent;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.cookie-banner__btn--settings:hover {
  background: #f1f5f9;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}
