/* Distributor landing v4 — scoped; avoids site #distributor-apply conflict via #distributor-apply */

.xxl-distributor {
  --red: #ED1C24;
  --red-dark: #c0121a;
  --red-deep: #8a0007;
  --white: #ffffff;
  --black: #000000;
  --offwhite: #f5f5f5;
  --light-grey: #e8e8e8;
  --text-dark: #1a1a1a;
  --muted: #666666;
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.xxl-distributor *,
.xxl-distributor *::before,
.xxl-distributor *::after { box-sizing: border-box; }
.xxl-distributor h1,
.xxl-distributor h2,
.xxl-distributor h3,
.xxl-distributor p { margin: 0; padding: 0; }

body.distributor-page {
  background: #ffffff !important;
}
body.distributor-page .wrapper {
  background: #ffffff !important;
  padding-bottom: 0 !important;
  overflow-x: clip;
}

/* Neutralize site theme rules that target generic section headings */
.xxl-distributor #distributor-apply {
  height: auto !important;
  min-height: 0 !important;
  background: var(--white) !important;
  overflow: visible !important;
}
.xxl-distributor #distributor-apply h1,
.xxl-distributor #distributor-apply h2 {
  opacity: 1 !important;
  animation: none !important;
  -webkit-animation: none !important;
}

    /* ── HERO BANNER ── */
    
.xxl-distributor #hero-banner {
      background-color: var(--red);
      background-image: url('../images/bread.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      min-height: 200px;
      /* Clear site absolute/fixed navbar so title is not cropped */
      padding-top: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
.xxl-distributor #hero-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.28);
      pointer-events: none;
    }
    
.xxl-distributor #hero-banner::after {
      content: none;
    }
    
.xxl-distributor .banner-title {
      font-family: 'vipnagorgiallabold', sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: clamp(2rem, 5vw, 3.4rem);
      line-height: 0.9;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: normal;
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 40px 48px;
    }

    /* ── HERO SPLIT ── */
    
.xxl-distributor #distributor-apply {
      background: var(--white);
      padding: 70px 48px;
    }
    
.xxl-distributor .hero-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 80px;
      align-items: center;
    }
    
.xxl-distributor .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
.xxl-distributor .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 3px;
      background: var(--red);
    }
    
.xxl-distributor .hero-h1 {
      font-family: 'vipnagorgiallabold', sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      line-height: 0.9;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 24px;
    }
    
.xxl-distributor .hero-h1 .red { color: var(--red); display: block; }
    
.xxl-distributor .hero-sub {
      font-size: 1rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.75;
      max-width: 480px;
    }

    /* ── FORM CARD ── */
    
.xxl-distributor .form-card {
      background: var(--red);
      padding: 38px 36px;
      position: relative;
    }
    
.xxl-distributor .form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--red-deep);
    }
    
.xxl-distributor .form-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-style: italic;
      font-size: 1.6rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 4px;
    }
    
.xxl-distributor .form-sub {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 22px;
      line-height: 1.5;
    }
    
.xxl-distributor .field { margin-bottom: 12px; }
    
.xxl-distributor .field label {
      display: block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-bottom: 5px;
    }
    
.xxl-distributor .field input,
.xxl-distributor .field select {
      width: 100%;
      background: var(--white);
      border: none;
      color: var(--text-dark);
      font-family: 'Barlow', sans-serif;
      font-size: 0.88rem;
      padding: 11px 14px;
      outline: none;
      appearance: none;
      border-radius: 0;
      transition: box-shadow 0.2s;
    }
    
.xxl-distributor .field input:focus,
.xxl-distributor .field select:focus {
      box-shadow: 0 0 0 2px var(--red-deep);
    }
    
.xxl-distributor .field input::placeholder { color: #aaa; }
    
.xxl-distributor .field select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 13px center;
      background-color: var(--white);
    }
    
.xxl-distributor .field select option { background: var(--white); color: var(--text-dark); }
    
.xxl-distributor .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    
.xxl-distributor .checkbox-row {
      display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px;
    }
    
.xxl-distributor .checkbox-row input[type="checkbox"] {
      width: 15px; height: 15px; min-width: 15px;
      margin-top: 2px; cursor: pointer;
      accent-color: var(--white);
      appearance: none;
      -webkit-appearance: none;
      border: 1.5px solid rgba(255,255,255,0.9);
      border-radius: 2px;
      background: transparent;
    }
.xxl-distributor .checkbox-row input[type="checkbox"]:checked {
      background: var(--white);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ED1C24' d='M10.2 2.2L4.5 8.1 1.8 5.4l-.9.9 3.6 3.6L11.1 3.1z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 11px 11px;
      border-color: var(--white);
    }
    
.xxl-distributor .checkbox-row span { font-size: 0.72rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
    
.xxl-distributor .checkbox-row a { color: var(--white); }

    
.xxl-distributor .submit-btn {
      width: 100%;
      background: var(--white);
      color: var(--red);
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.95rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 15px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    
.xxl-distributor .submit-btn:hover {
      background: var(--red-deep);
      color: var(--white);
    }
    
.xxl-distributor .form-trust {
      display: flex; align-items: center; gap: 8px;
      margin-top: 12px; justify-content: center;
    }
    
.xxl-distributor .form-trust span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
    
.xxl-distributor .form-trust .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }
    
.xxl-distributor #success-state { display: none; text-align: center; padding: 30px 0; }
    
.xxl-distributor #success-state .check {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 2px solid var(--white);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 1.8rem; color: var(--white);
    }
    
.xxl-distributor #success-state h3 {
      font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
      font-size: 1.7rem; text-transform: uppercase; color: var(--white); margin-bottom: 8px;
    }
    
.xxl-distributor #success-state p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

    /* ── RED DIVIDER ── */
    
.xxl-distributor .red-divider {
      height: 6px;
      background: var(--red);
    }

    /* ── WHY XXL ── */
    
.xxl-distributor #why {
      background: var(--offwhite);
      padding: 80px 48px;
    }
    
.xxl-distributor .sec-inner { max-width: 1160px; margin: 0 auto; }
    
.xxl-distributor .sec-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--red); margin-bottom: 12px;
    }
    
.xxl-distributor .sec-h2 {
      font-family: 'vipnagorgiallabold', sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      text-transform: uppercase;
      line-height: 0.9;
      color: var(--text-dark); margin-bottom: 48px;
    }
    
.xxl-distributor .sec-h2 em { font-style: normal; color: var(--red); }

    
.xxl-distributor .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
.xxl-distributor .benefit {
      background: var(--white);
      padding: 32px 28px;
      border-left: 4px solid var(--red);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    
.xxl-distributor .benefit:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(237,28,36,0.12);
    }
    
.xxl-distributor .benefit-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 2rem;
      color: rgba(237,28,36,0.15); line-height: 1; margin-bottom: 8px;
    }
    
.xxl-distributor .benefit-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1.1rem;
      text-transform: uppercase; letter-spacing: 0.05em;
      color: var(--text-dark); margin-bottom: 8px;
    }
    
.xxl-distributor .benefit-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

    /* ── PRODUCT ── */
    
.xxl-distributor #product {
      background-color: var(--red);
      background-image: url('../images/bread.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 80px 48px;
      position: relative;
      overflow: hidden;
    }
    
.xxl-distributor #product::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(0, 0, 0, 0.28);
      pointer-events: none;
    }
    
.xxl-distributor .product-inner {
      max-width: 1160px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      position: relative; z-index: 1;
    }
    
.xxl-distributor .can-wrap {
      display: flex; align-items: center; justify-content: center;
      position: relative; min-height: 414px;
      background: transparent;
    }
    
.xxl-distributor .can-wrap::before {
      content: none;
    }
    
.xxl-distributor .can-img {
      height: 414px; width: auto; object-fit: contain;
      position: relative; z-index: 1;
      background: transparent;
      filter: none;
      animation: floatCan 5s ease-in-out infinite;
    }
    
@keyframes floatCan {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }
    
.xxl-distributor .prod-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(255,255,255,0.65); margin-bottom: 12px;
    }
    
.xxl-distributor .prod-h2 {
      font-family: 'vipnagorgiallabold', sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      text-transform: uppercase;
      line-height: 0.9;
      color: var(--white); margin-bottom: 20px;
    }
    
.xxl-distributor .prod-body {
      font-size: 0.95rem; font-weight: 300;
      color: rgba(255,255,255,0.8); line-height: 1.8;
      margin-bottom: 32px;
    }
    
.xxl-distributor .product-facts {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    
.xxl-distributor .fact {
      background: rgba(0,0,0,0.2);
      padding: 18px 16px;
      border-left: 3px solid rgba(255,255,255,0.3);
    }
    
.xxl-distributor .fact-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 1.5rem;
      color: var(--white); line-height: 1;
    }
    
.xxl-distributor .fact-key {
      font-size: 0.68rem; color: rgba(255,255,255,0.6);
      text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
    }

    /* ── PROCESS ── */
    
.xxl-distributor #process { background: var(--white); padding: 80px 48px; }
    
.xxl-distributor .steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px; margin-top: 48px;
    }
    
.xxl-distributor .step {
      text-align: center; padding: 32px 20px;
      background: var(--offwhite);
      border-top: 4px solid var(--red);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    
.xxl-distributor .step:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(237,28,36,0.1);
    }
    
.xxl-distributor .step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 2.4rem;
      color: var(--red); line-height: 1; margin-bottom: 12px;
    }
    
.xxl-distributor .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1rem;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--text-dark); margin-bottom: 8px;
    }
    
.xxl-distributor .step-text { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

    /* ── BOTTOM CTA ── */
    
.xxl-distributor #cta-bottom {
      background-color: var(--red);
      background-image: url('../images/bread.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 90px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
.xxl-distributor #cta-bottom::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(0, 0, 0, 0.28);
      pointer-events: none;
    }
    
.xxl-distributor .cta-ghost {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-style: italic;
      font-size: clamp(10rem, 24vw, 20rem);
      color: rgba(0,0,0,0.08);
      pointer-events: none; white-space: nowrap; user-select: none;
    }
    
.xxl-distributor .cta-h2 {
      font-family: 'vipnagorgiallabold', sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: clamp(1.9rem, 3.8vw, 3rem);
      text-transform: uppercase;
      color: var(--white);
      line-height: 0.9; margin-bottom: 18px; position: relative;
    }
    
.xxl-distributor .cta-sub {
      font-size: 1rem; color: rgba(255,255,255,0.75);
      margin-bottom: 40px; position: relative;
    }
    
.xxl-distributor .cta-btn {
      display: inline-block;
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 0.85rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      padding: 16px 52px; text-decoration: none;
      transition: background 0.2s, color 0.2s;
      position: relative;
    }
    
.xxl-distributor .cta-btn:hover { background: var(--white); color: var(--red); }

    /* ── REVEAL ── */
    
.xxl-distributor .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    
.xxl-distributor .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    
@media (max-width: 960px) {
      
.xxl-distributor .hero-inner { grid-template-columns: 1fr; gap: 44px; }
      
.xxl-distributor .benefits-grid { grid-template-columns: 1fr; }
      
.xxl-distributor .product-inner { grid-template-columns: 1fr; }
      
.xxl-distributor .steps { grid-template-columns: repeat(2, 1fr); }
      
.xxl-distributor #distributor-apply,
.xxl-distributor #why,
.xxl-distributor #product,
.xxl-distributor #process,
.xxl-distributor #cta-bottom { padding-left: 24px; padding-right: 24px; }
    
}
    
@media (max-width: 560px) {
      
.xxl-distributor .field-row,
.xxl-distributor .product-facts { grid-template-columns: 1fr; }
      
.xxl-distributor .steps { grid-template-columns: 1fr; }
      
    
}
  
.xxl-distributor .submit-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}
.xxl-distributor .form-card .select-wrapper {
  display: contents;
}
/* Match mock: vertically center copy beside the tall form */
.xxl-distributor .hero-inner {
  align-items: center;
}
/* Keep form inside its section flow — never paint over sections below */
.xxl-distributor #distributor-apply .form-card {
  position: relative;
  z-index: 1;
}
.xxl-distributor #why,
.xxl-distributor #product,
.xxl-distributor #process,
.xxl-distributor #cta-bottom {
  position: relative;
  z-index: 2;
}


/* High-specificity heading locks (beat site #hero h2 / section h2 rules) */
.xxl-distributor #hero-banner .banner-title,
.xxl-distributor #distributor-apply .hero-h1,
.xxl-distributor #why .sec-h2,
.xxl-distributor #process .sec-h2,
.xxl-distributor #product .prod-h2,
.xxl-distributor #cta-bottom .cta-h2 {
  font-family: 'vipnagorgiallabold', sans-serif !important;
  font-weight: normal !important;
  font-style: normal !important;
  letter-spacing: normal !important;
  text-transform: uppercase !important;
  opacity: 1 !important;
  animation: none !important;
}
.xxl-distributor #distributor-apply .hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
  line-height: 0.9 !important;
  color: var(--text-dark) !important;
  margin: 0 0 24px 0 !important;
}
.xxl-distributor #distributor-apply .hero-h1 .red {
  color: var(--red) !important;
  display: block !important;
}
.xxl-distributor #why .sec-h2,
.xxl-distributor #process .sec-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  line-height: 0.9 !important;
  color: var(--text-dark) !important;
}
.xxl-distributor #product .prod-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  line-height: 0.9 !important;
  color: var(--white) !important;
}
.xxl-distributor #cta-bottom .cta-h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem) !important;
  line-height: 0.9 !important;
  color: var(--white) !important;
}
.xxl-distributor #hero-banner .banner-title {
  font-size: clamp(2rem, 5vw, 3.4rem) !important;
  line-height: 0.9 !important;
  color: var(--white) !important;
}


/* Exact form controls from distributor v4 HTML — beat site input/select theme */
.xxl-distributor .form-card input,
.xxl-distributor .form-card select {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding: 11px 14px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  color: #1a1a1a !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: 1.4 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  transition: box-shadow 0.2s !important;
}
.xxl-distributor .form-card input:focus,
.xxl-distributor .form-card select:focus {
  box-shadow: 0 0 0 2px #8a0007 !important;
  border: none !important;
  outline: none !important;
}
.xxl-distributor .form-card input::placeholder {
  color: #aaa !important;
  opacity: 1 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;
}
.xxl-distributor .form-card select {
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M5 6L0 0h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 13px center !important;
  background-color: #ffffff !important;
  padding-right: 34px !important;
}
.xxl-distributor .form-card select option {
  background: #ffffff !important;
  color: #1a1a1a !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;
}
.xxl-distributor .form-card .field {
  margin-bottom: 12px !important;
}
.xxl-distributor .form-card .field label {
  display: block !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.8) !important;
  margin: 0 0 5px 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}
.xxl-distributor .form-card .field-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}
.xxl-distributor .form-card .field-row > div {
  margin: 0 !important;
  padding: 0 !important;
}
.xxl-distributor .form-card .field-row .field,
.xxl-distributor .form-card .field-row > .field {
  margin-bottom: 0 !important;
}
/* field-row itself is also .field in mock: class="field field-row" */
.xxl-distributor .form-card .field.field-row {
  margin-bottom: 12px !important;
}
.xxl-distributor .form-card .checkbox-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 0 0 18px 0 !important;
}
.xxl-distributor .form-card .checkbox-row input[type="checkbox"] {
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  accent-color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.95) !important;
  border-radius: 2px !important;
  background: transparent !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
}
.xxl-distributor .form-card .checkbox-row input[type="checkbox"]:checked {
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ED1C24' d='M10.2 2.2L4.5 8.1 1.8 5.4l-.9.9 3.6 3.6L11.1 3.1z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 11px 11px !important;
  border-color: #ffffff !important;
}
.xxl-distributor .form-card .checkbox-row span {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.xxl-distributor .form-card .checkbox-row a {
  color: #ffffff !important;
  text-decoration: underline !important;
}
.xxl-distributor .form-card .submit-btn {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  background: #ffffff !important;
  color: #ED1C24 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 15px !important;
  cursor: pointer !important;
  line-height: 1.2 !important;
  clip-path: none !important;
  transition: background 0.2s, color 0.2s !important;
}
.xxl-distributor .form-card .submit-btn:hover,
.xxl-distributor .form-card .submit-btn:focus {
  background: #8a0007 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.xxl-distributor .form-card .form-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-style: italic !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.1 !important;
}
.xxl-distributor .form-card .form-sub {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.75) !important;
  margin: 0 0 22px 0 !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.xxl-distributor .form-card {
  background: #ED1C24 !important;
  padding: 38px 36px !important;
  position: relative !important;
}
.xxl-distributor .form-card .form-trust {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 12px !important;
  justify-content: center !important;
}
.xxl-distributor .form-card .form-trust span {
  font-size: 0.7rem !important;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  font-weight: 400 !important;
}
.xxl-distributor .banner-title {
  padding: 48px 48px 56px !important;
  line-height: 0.9 !important;
}
