/* ── Cookie Consent Banner ───────────────────────────────────────────────── */

#consentBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #141415;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

#consentBanner.is-visible {
  transform: translateY(0);
}

/* ── Text ───────────────────────────────────────────────────────────────── */

.consent-text {
  flex: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.consent-text a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.consent-text a:hover { opacity: 0.75; }

/* ── Buttons ────────────────────────────────────────────────────────────── */

.consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-btn {
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}

.consent-btn-accept {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.consent-btn-accept:hover { opacity: 0.85; }

.consent-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.65);
}

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

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  #consentBanner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 28px;
    gap: 16px;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-btn {
    flex: 1;
    text-align: center;
  }
}
