.consent-modal-open { overflow: hidden; }
.cookie-banner { z-index: 9998; }
.cookie-banner__shield {
  display: grid;
  place-items: center;
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #cb2738, #9e1827);
  box-shadow: 0 8px 24px rgba(174, 25, 42, .24);
  font-weight: 800;
}
.consent-action {
  min-height: 2.6rem;
  border: 1px solid rgba(24, 43, 64, .2);
  border-radius: .6rem;
  padding: .7rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.consent-action:hover { transform: translateY(-1px); }
.consent-action--outline { color: #1d3044; background: #fff; }
.consent-action--outline:hover { border-color: #a51f31; }
.consent-action--primary { color: #fff; border-color: #a51f31; background: linear-gradient(135deg, #c9283c, #9f1d2d); }
.consent-static-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(7, 18, 29, .68);
  backdrop-filter: blur(6px);
}
.consent-static-panel {
  width: min(42rem, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: #fff;
  box-shadow: 0 30px 80px rgba(4, 18, 30, .34);
}
.consent-static-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.consent-static-heading h2 { margin: .25rem 0 0; color: #142a40; font-size: clamp(1.55rem, 4vw, 2rem); }
.consent-static-close { border: 0; background: transparent; color: #465a6d; font: 400 2rem/1 sans-serif; cursor: pointer; }
.consent-static-description { margin: 1rem 0 1.35rem; color: #53687b; line-height: 1.65; }
.consent-static-options { display: grid; gap: .75rem; }
.consent-static-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #dce4eb;
  border-radius: .8rem;
  padding: 1rem;
  background: #f9fbfc;
}
.consent-static-option span { display: grid; gap: .25rem; }
.consent-static-option strong { color: #172e44; }
.consent-static-option small { color: #64788a; line-height: 1.45; }
.consent-static-option input { width: 1.35rem; height: 1.35rem; accent-color: #ad2033; }
.consent-static-option--required { opacity: .82; }
.consent-static-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .65rem; margin-top: 1.35rem; }
@media (max-width: 640px) {
  .consent-static-overlay { align-items: end; padding: .65rem; }
  .consent-static-panel { max-height: calc(100vh - 1.3rem); padding: 1.15rem; }
  .consent-static-actions { display: grid; grid-template-columns: 1fr; }
  .consent-action { width: 100%; }
}
