.consent-banner {
  position: fixed;
  z-index: 9998;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(12, 31, 22, .97);
  color: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.consent-banner-copy { max-width: 690px; }
.consent-banner-copy strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.consent-banner-copy p { margin: 0; font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,.9); }
.consent-banner-copy a, .consent-policy-link { color: #a9f4c5; text-decoration: underline; }
.consent-banner-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.consent-banner button, .consent-save {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}
.consent-banner button.primary, .consent-save { background: #22c55e; color: #082313; border-color: #22c55e; }
.consent-modal-backdrop { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.62); }
.consent-modal { position: relative; width: min(100%, 590px); max-height: 90vh; overflow: auto; padding: 28px; border-radius: 18px; background: #fff; color: #17231b; box-shadow: 0 20px 80px rgba(0,0,0,.4); font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.consent-modal h2 { margin: 0 38px 20px 0; }
.consent-close { position: absolute; right: 16px; top: 12px; border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.consent-option { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 0; border-top: 1px solid #dfe7e1; }
.consent-option p { margin: 5px 0 0; color: #526257; font-size: .9rem; }
.consent-option input { width: 22px; height: 22px; appearance: auto; flex: 0 0 auto; }
.consent-always-on { color: #19703a; font-weight: 800; white-space: nowrap; }
.consent-policy-link { display: inline-block; margin: 8px 0 22px; color: #176b37; }
.consent-save { width: 100%; }
@media (max-width: 760px) {
  .consent-banner { left: 10px; right: 10px; bottom: 10px; flex-direction: column; align-items: stretch; padding: 16px; }
  .consent-banner-actions { display: grid; grid-template-columns: 1fr; }
  .consent-banner button { width: 100%; }
  .consent-modal { padding: 24px 18px; }
  .consent-option { align-items: flex-start; }
}
