/* ==========================================================================
   habb — minimal cookie strip. Bottom-left, non-modal, one sentence,
   one button + one tiny decline link. Granular control lives at /cookies.
   ========================================================================== */
.consent-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 380px;
  padding: 14px 16px;
  background: #F4EEE4;
  color: #3D2A1F;
  border: 1px solid rgba(61, 42, 31, 0.18);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(61, 42, 31, 0.14);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2147483000;
}
.consent-banner[hidden] { display: none; }

.consent-body {
  margin: 0;
  flex: 1 1 auto;
  color: rgba(61, 42, 31, 0.85);
}
.consent-body a {
  color: #C07A5C;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-body a:hover { color: #A25F42; }

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

.consent-btn-primary {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #C07A5C;
  color: #F4EEE4;
  transition: background 180ms ease;
}
.consent-btn-primary:hover { background: #A25F42; }
.consent-btn-primary:focus-visible {
  outline: 2px solid #C07A5C;
  outline-offset: 2px;
}

.consent-btn-link {
  background: transparent;
  border: 0;
  padding: 4px 2px;
  color: rgba(61, 42, 31, 0.55);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-btn-link:hover { color: #3D2A1F; }
.consent-btn-link:focus-visible {
  outline: 2px solid #C07A5C;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 12px 14px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .consent-actions { width: 100%; justify-content: space-between; }
}
@media (prefers-reduced-motion: reduce) {
  .consent-btn-primary { transition: none; }
}
