/* Consent banner — brand-agnostic, overlays both sites. */
#hs-consent {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
  max-width: 430px;
  width: calc(100vw - 36px);
  background: #0E1728;
  color: #EAF0F8;
  border: 1px solid rgba(120, 160, 200, .35);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .5);
  padding: 18px 18px 16px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: .86rem;
  line-height: 1.55;
}
#hs-consent h2 { margin: 0 0 6px; font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
#hs-consent p { margin: 0 0 12px; color: #C4CEDD; }
#hs-consent a { color: #67E8F9; text-decoration: underline; }
#hs-consent-actions { display: flex; gap: 8px; flex-wrap: wrap; }
#hs-consent-actions button {
  flex: 1 1 auto;
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease;
}
#hs-consent-actions button:hover { transform: translateY(-1px); filter: brightness(1.1); }
#hs-accept { background: #22D3EE; color: #06202A; box-shadow: 0 0 16px rgba(34, 211, 238, .4); }
#hs-reject { background: #1C2942; color: #EAF0F8; }
#hs-manage { background: transparent; color: #9FB0C9; border: 1px solid #3A4A66 !important; }
#hs-consent-details {
  display: none;
  margin: 4px 0 12px;
  border-top: 1px solid #2A3A55;
  padding-top: 10px;
}
#hs-consent-details.open { display: block; }
#hs-consent-details label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  color: #C4CEDD;
}
#hs-consent-details input[type="checkbox"] { margin-top: 3px; accent-color: #22D3EE; }
#hs-consent-details .small { font-size: .74rem; color: #8194B0; }
#hs-consent-trigger {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9998;
  border: 1px solid rgba(120, 160, 200, .45);
  background: rgba(14, 23, 40, .92);
  color: #C4CEDD;
  border-radius: 999px;
  padding: 7px 14px;
  font: 500 .74rem 'Space Grotesk', system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}
#hs-consent-trigger:hover { color: #EAF0F8; border-color: #67E8F9; }
@media (max-width: 560px) {
  #hs-consent { left: 12px; bottom: 12px; width: calc(100vw - 24px); padding: 15px; }
  #hs-consent-trigger { left: 12px; bottom: 12px; }
}
