/* Cookie consent banner — minimal, GDPR-compliant. */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 560px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--bone, #DDE5DE);
  border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.18), 0 6px 16px -8px rgba(0, 0, 0, 0.08);
  padding: 18px 20px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--charcoal, #1F2420);
  display: none;
}
.cookie-banner.is-visible {
  display: block;
  animation: cookie-fade-up 240ms ease both;
}
@keyframes cookie-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-title {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.cookie-banner-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--stone, #6B7B6E);
  margin-bottom: 14px;
}
.cookie-banner-body a {
  color: var(--teal, #2DB84B);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--charcoal, #1F2420);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-primary {
  background: var(--teal, #2DB84B);
  color: #fff;
}
.cookie-btn-primary:hover { background: var(--teal-d, #239040); }
.cookie-btn-outline {
  background: #fff;
  border-color: var(--bone, #DDE5DE);
  color: var(--charcoal, #1F2420);
}
.cookie-btn-outline:hover {
  border-color: var(--teal, #2DB84B);
  color: var(--teal-d, #239040);
}

@media (min-width: 640px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
}
