/* ============================================================
   Cookie consent banner — discreet bottom-left card
   ============================================================ */

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  max-width: 480px;
  background: #fff;
  border: 1px solid #E8EDE9;
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px rgba(26, 46, 34, 0.18),
              0 8px 16px -4px rgba(26, 46, 34, 0.08);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 320ms cubic-bezier(.4, 0, .2, 1),
              transform 320ms cubic-bezier(.4, 0, .2, 1);
}
#cookie-banner.cookie-banner-visible {
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner.cookie-banner-leaving {
  opacity: 0;
  transform: translateY(20px);
}

.cookie-banner-inner {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner-text {
  font-size: 13px;
  color: #5B6B62;
  line-height: 1.55;
}
.cookie-banner-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A2E22;
  font-weight: 700;
}
.cookie-banner-text a {
  color: #B85C3A;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  transition: color 200ms ease;
}
.cookie-banner-text a:hover { color: #9A4928; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-family: inherit;
  transition: all 200ms cubic-bezier(.4, 0, .2, 1);
}
.cookie-btn-decline {
  background: transparent;
  color: #5B6B62;
  border: 1.5px solid #E8EDE9;
}
.cookie-btn-decline:hover {
  border-color: #5B6B62;
  color: #1A2E22;
}
.cookie-btn-accept {
  background: #B85C3A;
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #9A4928;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(184, 92, 58, 0.45);
}

/* Mobile — full-width strip across the bottom */
@media (max-width: 600px) {
  #cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    border-radius: 14px;
  }
  .cookie-banner-inner { padding: 14px 16px; gap: 12px; }
  .cookie-banner-text { font-size: 12px; }
  .cookie-banner-actions { gap: 8px; }
  .cookie-btn { padding: 9px 18px; font-size: 12px; flex: 1; }
}
