:root {
  --abcc-navy: #07172b;
  --abcc-gold: #b89a5e;
  --abcc-white: #ffffff;
  --abcc-text-soft: rgba(255,255,255,0.76);
  --abcc-border: rgba(184,154,94,0.35);
}

.abcc-banner,
.abcc-modal,
.abcc-banner *,
.abcc-modal * {
  box-sizing: border-box;
}

.abcc-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  background: var(--abcc-navy);
  color: var(--abcc-white);
  border: 1px solid var(--abcc-border);
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}

.abcc-banner[hidden],
.abcc-modal[hidden] {
  display: none !important;
}

.abcc-eyebrow {
  display: block;
  color: var(--abcc-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.abcc-banner h2,
.abcc-modal h2 {
  margin: 0 0 10px;
  color: var(--abcc-white);
  font-family: var(--e-global-typography-primary-font-family, "Cinzel"), "Trajan Pro", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.abcc-banner p,
.abcc-modal p {
  margin: 0;
  color: var(--abcc-text-soft);
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.abcc-policy-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
}

.abcc-policy-links a {
  color: var(--abcc-gold);
  text-decoration: none;
}

.abcc-policy-links a:hover {
  text-decoration: underline;
}

.abcc-banner__content {
  max-width: 690px;
}

.abcc-banner__actions,
.abcc-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.abcc-btn,
.abcc-link-button {
  appearance: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.abcc-btn {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--abcc-gold);
}

.abcc-btn--gold {
  background: var(--abcc-gold);
  color: var(--abcc-navy);
}

.abcc-btn--gold:hover {
  background: transparent;
  color: var(--abcc-gold);
}

.abcc-btn--ghost {
  background: transparent;
  color: var(--abcc-white);
  border-color: rgba(255,255,255,0.28);
}

.abcc-btn--ghost:hover {
  border-color: var(--abcc-gold);
  color: var(--abcc-gold);
}

.abcc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.abcc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.abcc-modal__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 42px;
  background: var(--abcc-navy);
  color: var(--abcc-white);
  border: 1px solid var(--abcc-border);
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}

.abcc-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--abcc-white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.abcc-category {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.abcc-category strong {
  display: block;
  color: var(--abcc-white);
  margin-bottom: 5px;
  font-family: var(--e-global-typography-primary-font-family, "Cinzel"), "Trajan Pro", serif;
  font-size: 17px;
  font-weight: 400;
}

.abcc-category p {
  font-size: 13px;
}

.abcc-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 54px;
  height: 30px;
  margin-top: 2px;
}

.abcc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.abcc-switch span {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.22);
  transition: 0.25s;
}

.abcc-switch span::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  transition: 0.25s;
}

.abcc-switch input:checked + span {
  background: var(--abcc-gold);
  border-color: var(--abcc-gold);
}

.abcc-switch input:checked + span::before {
  transform: translateX(24px);
  background: var(--abcc-navy);
}

.abcc-modal__actions {
  margin-top: 28px;
}

.abcc-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--abcc-gold);
  text-decoration: none;
}

.abcc-link-button:hover {
  text-decoration: underline;
}

.abcc-policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.abcc-policy-table th,
.abcc-policy-table td {
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  text-align: left;
  vertical-align: top;
}

.abcc-policy-table th {
  font-weight: 600;
}

@media (max-width: 900px) {
  .abcc-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .abcc-banner__actions,
  .abcc-modal__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .abcc-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 22px;
  }

  .abcc-banner__actions,
  .abcc-modal__actions {
    flex-direction: column;
  }

  .abcc-btn {
    width: 100%;
  }

  .abcc-modal__panel {
    padding: 34px 22px;
  }

  .abcc-category {
    gap: 16px;
  }
}
