/* Hexafusion cookie consent banner. Plain CSS, no framework needed. */
#hxf-consent-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  background: #0a1628;
  color: #f3f6fa;
  border-top: 3px solid #0345bf;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  padding: 1rem 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}

#hxf-consent-banner .hxf-consent-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

#hxf-consent-banner .hxf-consent-text {
  flex: 1 1 460px;
  min-width: 0;
}

#hxf-consent-banner #hxf-consent-title {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

#hxf-consent-banner #hxf-consent-body {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(243,246,250,0.85);
}

#hxf-consent-banner #hxf-consent-body a {
  color: #82b3ff;
  text-decoration: underline;
}

#hxf-consent-banner .hxf-consent-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

#hxf-consent-banner .hxf-btn {
  appearance: none;
  border: 0;
  border-radius: 0.4rem;
  padding: 0.6rem 1.1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s;
  font-family: inherit;
}

#hxf-consent-banner .hxf-btn:focus {
  outline: 2px solid #82b3ff;
  outline-offset: 2px;
}

#hxf-consent-banner .hxf-btn-primary {
  background: #0345bf;
  color: #fff;
}

#hxf-consent-banner .hxf-btn-primary:hover {
  background: #0455e6;
}

#hxf-consent-banner .hxf-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #f3f6fa;
}

#hxf-consent-banner .hxf-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

#hxf-consent-banner .hxf-consent-manage {
  max-width: 1180px;
  margin: 0.85rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.85rem;
}

#hxf-consent-banner .hxf-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  cursor: pointer;
}

#hxf-consent-banner .hxf-consent-row input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #0345bf;
  cursor: pointer;
}

#hxf-consent-banner .hxf-consent-row input:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

#hxf-consent-banner .hxf-consent-manage-actions {
  margin-top: 0.6rem;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  #hxf-consent-banner {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
  #hxf-consent-banner .hxf-consent-actions {
    width: 100%;
  }
  #hxf-consent-banner .hxf-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
