/* ============================================================
   PUREWYN WHOLESALE LANDING — scoped to .purewyn-wholesale
   Drops into Shopify Pitch theme. All selectors are namespaced
   to avoid colliding with theme globals.
   ============================================================ */

/* ---- Force full-bleed inside Pitch's content-for-layout container ----
   Pitch wraps sections in <main class="content-for-layout"> and applies
   page-width-* margins via grid on .section. Our wholesale sections
   aren't .section-class, but we also need to neutralize any inherited
   max-width/padding from the parent <main> so sections go edge-to-edge. */
main.purewyn-wholesale {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: 100%;
}
main.purewyn-wholesale > .shopify-section,
main.purewyn-wholesale > .shopify-section > section,
main.purewyn-wholesale > .shopify-section > div {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
/* Cancel Pitch's transparent-header offset for the first wholesale section
   (we don't want the hero shoved under the nav — site nav should sit on top). */
body:has(.header[transparent]) main.purewyn-wholesale > .shopify-section:first-child {
  margin-top: 0;
}

/* ---- Match Pitch's nav + footer to the wholesale cream palette ----
   Scoped via body:has(main.purewyn-wholesale) so it only fires on the
   wholesale page. Pitch sets header colors via inline CSS custom
   properties (--color-scheme-top-row, --color-scheme-bottom-row), so
   we override those variables directly — that flows through Pitch's
   own color-scheme cascade and beats the inline declarations because
   external !important > inline non-!important. */
body:has(main.purewyn-wholesale) #header-group,
body:has(main.purewyn-wholesale) #header-group *,
body:has(main.purewyn-wholesale) > footer,
body:has(main.purewyn-wholesale) > footer * {
  --color-scheme-top-row: #F7F3E4 !important;
  --color-scheme-bottom-row: #F7F3E4 !important;
  --color-background: #F7F3E4 !important;
}

/* Explicit background as a safety net in case Pitch hard-codes color
   somewhere else outside the variable system. */
body:has(main.purewyn-wholesale) #header-group,
body:has(main.purewyn-wholesale) #header-group .shopify-section,
body:has(main.purewyn-wholesale) #header-group .header-section,
body:has(main.purewyn-wholesale) #header-group header-component,
body:has(main.purewyn-wholesale) #header-group .header,
body:has(main.purewyn-wholesale) > footer,
body:has(main.purewyn-wholesale) > footer .shopify-section,
body:has(main.purewyn-wholesale) > footer .section-background {
  background-color: #F7F3E4 !important;
  background: #F7F3E4 !important;
}

/* Ensure footer text remains readable on the new cream background — promote
   any white/cream text colors to the wholesale ink color. */
body:has(main.purewyn-wholesale) > footer,
body:has(main.purewyn-wholesale) > footer * {
  --color-foreground: #1c2a22;
}
body:has(main.purewyn-wholesale) > footer a {
  color: #1c2a22;
}
body:has(main.purewyn-wholesale) > footer a:hover {
  color: #2D5A3D;
}

/* Local reset — only inside our scope */
.purewyn-wholesale,
.purewyn-wholesale *,
.purewyn-wholesale *::before,
.purewyn-wholesale *::after {
  box-sizing: border-box;
}
.purewyn-wholesale {
  --pw-green: #2D5A3D;
  --pw-green-deep: #224630;
  --pw-green-soft: #3a6e4d;
  --pw-cream: #F7F3E4;
  --pw-cream-2: #efe9d3;
  --pw-ink: #1c2a22;
  --pw-ink-soft: #4a574f;
  --pw-line: rgba(28, 42, 34, 0.14);
  --pw-yellow: #c8b958;
  --pw-radius: 4px;
  --pw-display: "Cormorant Garamond", "Times New Roman", serif;
  --pw-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  background: var(--pw-cream);
  color: var(--pw-ink);
  font-family: var(--pw-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.purewyn-wholesale h1,
.purewyn-wholesale h2,
.purewyn-wholesale h3,
.purewyn-wholesale h4,
.purewyn-wholesale p,
.purewyn-wholesale ul,
.purewyn-wholesale ol,
.purewyn-wholesale figure,
.purewyn-wholesale blockquote {
  margin: 0;
  padding: 0;
}
.purewyn-wholesale ul,
.purewyn-wholesale ol { list-style: none; }
.purewyn-wholesale a { color: inherit; text-decoration: none; }
.purewyn-wholesale img { display: block; max-width: 100%; }
.purewyn-wholesale button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

/* ---------- Layout shell ---------- */
.purewyn-wholesale .pw-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .purewyn-wholesale .pw-container { padding: 0 40px; }
}
@media (min-width: 1100px) {
  .purewyn-wholesale .pw-container { padding: 0 56px; }
}

/* ---------- Top bar ---------- */
.purewyn-wholesale .pw-topbar {
  position: relative;
  z-index: 5;
  padding: 18px 0;
  border-bottom: 1px solid var(--pw-line);
}
.purewyn-wholesale .pw-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.purewyn-wholesale .pw-wordmark {
  font-family: var(--pw-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pw-green);
}
.purewyn-wholesale .pw-wordmark sup {
  font-size: 9px;
  font-family: var(--pw-body);
  letter-spacing: 0.15em;
  font-weight: 500;
  vertical-align: top;
  margin-left: 6px;
  color: var(--pw-ink-soft);
}
.purewyn-wholesale .pw-topbar-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pw-ink-soft);
  font-weight: 500;
}
@media (max-width: 600px) {
  .purewyn-wholesale .pw-topbar-meta { display: none; }
}

/* ---------- HERO ----------
   No longer subtract a fixed topbar height — site's nav now lives outside
   our scope and is sticky/handled by Pitch. Hero just takes a generous chunk
   of viewport. */
.purewyn-wholesale .pw-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
}
@media (min-width: 900px) {
  .purewyn-wholesale .pw-hero {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: calc(100svh - var(--header-group-height, 80px));
  }
}

.purewyn-wholesale .pw-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 28px;
  position: relative;
  min-height: 0;
}
@media (min-width: 768px) {
  .purewyn-wholesale .pw-hero-copy {
    padding: 40px 40px;
  }
}
@media (min-width: 1100px) {
  .purewyn-wholesale .pw-hero-copy {
    padding: 48px 56px;
  }
}

.purewyn-wholesale .pw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pw-green);
  margin-bottom: clamp(10px, 1.6vw, 16px);
}
.purewyn-wholesale .pw-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pw-green);
}

.purewyn-wholesale .pw-headline {
  font-family: var(--pw-display);
  font-weight: 500;
  color: var(--pw-green);
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  text-wrap: balance;
  text-transform: uppercase;
}
.purewyn-wholesale .pw-headline em {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.005em;
}

.purewyn-wholesale .pw-subhead {
  margin-top: clamp(12px, 1.8vw, 20px);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.5;
  color: var(--pw-ink-soft);
  max-width: 38ch;
  font-weight: 400;
}

.purewyn-wholesale .pw-cta-row {
  margin-top: clamp(16px, 2.4vw, 26px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.purewyn-wholesale .pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pw-green);
  color: var(--pw-cream);
  padding: 18px 30px;
  font-family: var(--pw-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--pw-radius);
  transition: background 140ms ease, transform 140ms ease;
  min-height: 56px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 28px -16px rgba(45, 90, 61, 0.55);
}
.purewyn-wholesale .pw-btn:hover { background: var(--pw-green-deep); }
.purewyn-wholesale .pw-btn:active { transform: translateY(1px); }
.purewyn-wholesale .pw-btn:focus-visible {
  outline: 2px solid var(--pw-green);
  outline-offset: 3px;
}
.purewyn-wholesale .pw-btn-arrow {
  display: inline-block;
  transition: transform 180ms ease;
}
.purewyn-wholesale .pw-btn:hover .pw-btn-arrow { transform: translateX(4px); }

.purewyn-wholesale .pw-btn-large {
  padding: 20px 34px;
  font-size: 16px;
  min-height: 60px;
}

.purewyn-wholesale .pw-cta-aside {
  font-size: 13px;
  color: var(--pw-ink-soft);
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 22ch;
}
.purewyn-wholesale .pw-cta-aside strong {
  color: var(--pw-ink);
  font-weight: 600;
}

/* Hero visual side */
.purewyn-wholesale .pw-hero-visual {
  position: relative;
  background: var(--pw-cream-2);
  overflow: hidden;
  min-height: 180px;
}
@media (max-width: 899px) {
  .purewyn-wholesale .pw-hero-visual {
    order: -1;
    height: clamp(360px, 54svh, 470px);
    min-height: 360px;
    border-bottom: 1px solid var(--pw-line);
  }
}
.purewyn-wholesale .pw-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  z-index: 1;
}

/* ============================================================
   HERO VIDEO
   Desktop (>=900px): flush video filling the right column.
   Mobile  (<=899px): full-bleed video background with the copy +
   CTA overlaid, plus a sound toggle and tap-to-reveal fullscreen.
   Kept in separate media queries so the two never conflict.
   ============================================================ */

/* Video controls — shown only in the mobile overlay (hidden on desktop) */
.purewyn-wholesale .pw-hero-vidctrls { display: none; }
.purewyn-wholesale .pw-vid-ctrl {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(20, 28, 22, 0.45);
  color: var(--pw-cream);
  border: 1px solid rgba(247, 243, 228, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  pointer-events: auto;
}
.purewyn-wholesale .pw-vid-ctrl svg { width: 20px; height: 20px; display: block; }
.purewyn-wholesale .pw-vid-sound { top: 14px; left: 14px; }
.purewyn-wholesale .pw-vid-sound .pw-ic-on { display: none; }
.purewyn-wholesale .pw-vid-sound[data-muted="false"] .pw-ic-off { display: none; }
.purewyn-wholesale .pw-vid-sound[data-muted="false"] .pw-ic-on { display: block; }
.purewyn-wholesale .pw-vid-expand {
  top: 14px;
  right: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.purewyn-wholesale .pw-hero.pw-controls-show .pw-vid-expand { opacity: 1; pointer-events: auto; }

/* In fullscreen, show the WHOLE video at its true 9:16 ratio (no crop). */
#pw-hero-vid:fullscreen { object-fit: contain; background: #000; width: 100%; height: 100%; }
#pw-hero-vid:-webkit-full-screen { object-fit: contain; background: #000; width: 100%; height: 100%; }

@media (min-width: 900px) {
  .purewyn-wholesale .pw-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: var(--pw-green);
  }
  /* Show the sound + fullscreen controls over the desktop video panel.
     The wrapper is positioned to overlay just the right video column
     (grid 1.05fr 1fr → video starts at ~51.2%). */
  .purewyn-wholesale .pw-hero-vidctrls {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 57.5%;
    z-index: 2;
    pointer-events: none;
  }
  .purewyn-wholesale .pw-hero:hover .pw-vid-expand,
  .purewyn-wholesale .pw-hero.pw-controls-show .pw-vid-expand {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 899px) {
  .purewyn-wholesale .pw-hero {
    position: relative;
    display: block;
    min-height: 88svh;
    overflow: hidden;
  }
  .purewyn-wholesale .pw-hero-visual--video {
    position: absolute;
    inset: 0;
    order: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    border: 0;
    z-index: 0;
  }
  .purewyn-wholesale .pw-hero-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: var(--pw-green);
  }
  .purewyn-wholesale .pw-hero-copy {
    position: relative;
    z-index: 1;
    min-height: 88svh;
    justify-content: flex-end;
    padding: 24px 22px 32px;
    pointer-events: none;
  }
  .purewyn-wholesale .pw-hero-copy::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 74%;
    background: linear-gradient(to top, rgba(18, 26, 20, 0.92), rgba(18, 26, 20, 0.45) 50%, rgba(18, 26, 20, 0) 100%);
    z-index: -1;
    pointer-events: none;
  }
  .purewyn-wholesale .pw-hero-copy .pw-eyebrow,
  .purewyn-wholesale .pw-hero-copy .pw-headline,
  .purewyn-wholesale .pw-hero-copy .pw-subhead,
  .purewyn-wholesale .pw-hero-copy .pw-cta-aside { color: var(--pw-cream); }
  .purewyn-wholesale .pw-hero-copy .pw-eyebrow::before { background: var(--pw-cream); }
  .purewyn-wholesale .pw-hero-copy .pw-cta-aside strong { color: var(--pw-cream); }
  .purewyn-wholesale .pw-hero-copy .pw-btn {
    pointer-events: auto;
    background: var(--pw-cream);
    color: var(--pw-green);
  }
  .purewyn-wholesale .pw-hero-copy .pw-btn:hover { background: #ffffff; }
  .purewyn-wholesale .pw-hero-vidctrls {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
}

/* Compact the lead form on small screens so it nearly all fits without scrolling */
@media (max-width: 600px) {
  .purewyn-wholesale .pw-form-shell { padding: 26px 22px 24px; }
  .purewyn-wholesale .pw-form-qcount { margin-bottom: 8px; }
  .purewyn-wholesale .pw-form-qtext { font-size: 22px; margin-bottom: 12px; }
  .purewyn-wholesale .pw-form-ship-sub { margin-bottom: 14px; font-size: 14px; }
  .purewyn-wholesale .pw-form-yesno { margin-bottom: 14px; }
  .purewyn-wholesale .pw-form-ship-grid { gap: 10px 12px; margin-bottom: 14px; }
  .purewyn-wholesale .pw-form-input { padding: 12px 14px; }
}
.purewyn-wholesale .pw-hero-visual--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(45,90,61,0.06), rgba(45,90,61,0.18)),
    repeating-linear-gradient(45deg,
      rgba(45,90,61,0.07) 0 2px,
      transparent 2px 14px);
}
.purewyn-wholesale .pw-hero-visual-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,42,34,0.55);
  z-index: 2;
}

/* ---------- SECTIONS ---------- */
.purewyn-wholesale .pw-section { padding: clamp(64px, 9vw, 120px) 0; }

.purewyn-wholesale .pw-section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pw-green);
  margin-bottom: 14px;
}
.purewyn-wholesale .pw-section-title {
  font-family: var(--pw-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--pw-green);
  line-height: 1.05;
  letter-spacing: -0.005em;
  max-width: 22ch;
}

/* ---------- Comparison ---------- */
.purewyn-wholesale .pw-compare {
  background: var(--pw-cream);
  border-top: 1px solid var(--pw-line);
}
.purewyn-wholesale .pw-compare-head {
  text-align: center;
  max-width: 32ch;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.purewyn-wholesale .pw-compare-head .pw-section-title {
  margin: 0 auto;
}
.purewyn-wholesale .pw-compare-figure {
  margin: 0 auto;
  max-width: 920px;
  background: #ffffff;
  border-radius: 4px;
  padding: clamp(16px, 3vw, 32px);
  border: 1px solid var(--pw-line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 30px 60px -40px rgba(45,90,61,0.25);
}
.purewyn-wholesale .pw-compare-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.purewyn-wholesale .pw-compare-caption {
  font-family: var(--pw-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--pw-green);
  text-align: center;
  margin: clamp(28px, 4vw, 44px) auto 0;
  max-width: 30ch;
  text-wrap: balance;
}

/* ---------- Process ---------- */
.purewyn-wholesale .pw-process {
  background: var(--pw-green);
  color: var(--pw-cream);
}
.purewyn-wholesale .pw-process .pw-section-title { color: var(--pw-cream); }
.purewyn-wholesale .pw-process .pw-section-eyebrow { color: rgba(247,243,228,0.7); }
.purewyn-wholesale .pw-process-head {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 64px);
}
@media (min-width: 900px) {
  .purewyn-wholesale .pw-process-head {
    grid-template-columns: 1.2fr 1fr;
  }
}
.purewyn-wholesale .pw-process-lede {
  font-size: 16px;
  color: rgba(247,243,228,0.78);
  max-width: 38ch;
  line-height: 1.55;
}

.purewyn-wholesale .pw-steps {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 800px) {
  .purewyn-wholesale .pw-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.purewyn-wholesale .pw-step {
  position: relative;
  padding: 32px 0 0;
  border-top: 1px solid rgba(247,243,228,0.22);
}
@media (min-width: 800px) {
  .purewyn-wholesale .pw-step {
    padding: 36px 28px 0 0;
  }
  .purewyn-wholesale .pw-step + .pw-step {
    padding-left: 28px;
    border-left: 1px solid rgba(247,243,228,0.22);
  }
}
.purewyn-wholesale .pw-step-num {
  font-family: var(--pw-display);
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(247,243,228,0.55);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.purewyn-wholesale .pw-step-num::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(247,243,228,0.4);
}
.purewyn-wholesale .pw-step-title {
  font-family: var(--pw-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  color: var(--pw-cream);
  max-width: 14ch;
}
.purewyn-wholesale .pw-step-desc {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(247,243,228,0.7);
  line-height: 1.55;
  max-width: 28ch;
}

/* ---------- Testimonial ---------- */
.purewyn-wholesale .pw-testimonial {
  background: var(--pw-cream);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--pw-line);
}
.purewyn-wholesale .pw-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.purewyn-wholesale .pw-quote-mark {
  font-family: var(--pw-display);
  font-style: italic;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.6;
  color: var(--pw-green);
  opacity: 0.22;
  margin-bottom: -12px;
  user-select: none;
}
.purewyn-wholesale .pw-quote-text {
  font-family: var(--pw-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.35;
  color: var(--pw-green);
  letter-spacing: -0.005em;
  text-wrap: balance;
  margin: 0;
}
.purewyn-wholesale .pw-quote-cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: clamp(24px, 3vw, 36px);
  font-style: normal;
}
.purewyn-wholesale .pw-quote-cite::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--pw-green);
  margin: 0 auto 16px;
  opacity: 0.5;
}
.purewyn-wholesale .pw-quote-name {
  font-family: var(--pw-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--pw-ink);
}
.purewyn-wholesale .pw-quote-role {
  font-family: var(--pw-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pw-ink-soft);
}

/* ---------- Trust ---------- */
.purewyn-wholesale .pw-trust {
  background: var(--pw-cream);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
  border-top: 1px solid var(--pw-line);
  border-bottom: 1px solid var(--pw-line);
}
.purewyn-wholesale .pw-trust-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) {
  .purewyn-wholesale .pw-trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.purewyn-wholesale .pw-trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
}
@media (min-width: 720px) {
  .purewyn-wholesale .pw-trust-item {
    justify-content: center;
    text-align: left;
  }
  .purewyn-wholesale .pw-trust-item + .pw-trust-item {
    border-left: 1px solid var(--pw-line);
  }
}
.purewyn-wholesale .pw-trust-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: var(--pw-green);
  border: 1px solid var(--pw-green);
  border-radius: 999px;
}
.purewyn-wholesale .pw-trust-icon svg { width: 20px; height: 20px; }
.purewyn-wholesale .pw-trust-text {
  font-family: var(--pw-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--pw-ink);
  line-height: 1.35;
  max-width: 22ch;
}
.purewyn-wholesale .pw-trust-text small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--pw-ink-soft);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ---------- Promise ---------- */
.purewyn-wholesale .pw-promise {
  background: var(--pw-green);
  color: var(--pw-cream);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
  text-align: center;
}
.purewyn-wholesale .pw-promise .pw-section-eyebrow {
  color: rgba(247, 243, 228, 0.7);
  margin-bottom: clamp(22px, 3vw, 32px);
  display: inline-block;
}
.purewyn-wholesale .pw-promise-inner {
  max-width: 880px;
  margin: 0 auto;
}
.purewyn-wholesale .pw-promise-text {
  font-family: var(--pw-display);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--pw-cream);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.purewyn-wholesale .pw-promise-text em {
  font-style: italic;
  color: rgba(247, 243, 228, 0.7);
}

/* ---------- Final CTA ---------- */
.purewyn-wholesale .pw-final {
  background: var(--pw-cream);
  text-align: center;
}
.purewyn-wholesale .pw-final-inner {
  max-width: 720px;
  margin: 0 auto;
}
.purewyn-wholesale .pw-final-title {
  font-family: var(--pw-display);
  font-weight: 500;
  color: var(--pw-green);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.purewyn-wholesale .pw-final-title em { font-style: italic; }
.purewyn-wholesale .pw-final-sub {
  margin: 22px auto 32px;
  max-width: 42ch;
  color: var(--pw-ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.purewyn-wholesale .pw-final .pw-btn { margin-top: 8px; }
.purewyn-wholesale .pw-final-foot {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pw-ink-soft);
}

/* ---------- Footer ---------- */
.purewyn-wholesale .pw-foot {
  padding: 28px 0 36px;
  border-top: 1px solid var(--pw-line);
  background: var(--pw-cream);
}
.purewyn-wholesale .pw-foot-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--pw-ink-soft);
  letter-spacing: 0.04em;
}
.purewyn-wholesale .pw-foot a:hover { color: var(--pw-green); }

/* ============================================================
   MODAL
   ============================================================ */
.purewyn-wholesale .pw-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.purewyn-wholesale .pw-modal[data-open="true"] {
  display: flex;
}
.purewyn-wholesale .pw-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 42, 34, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 180ms ease;
}
.purewyn-wholesale .pw-modal[data-open="true"] .pw-modal-overlay { opacity: 1; }
.purewyn-wholesale .pw-modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  /* Keep touch scroll inside the form — stops the page behind from
     scrolling when you hit the top/bottom or flick fast (iOS bug). */
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background: var(--pw-cream);
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45);
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  transition: transform 200ms ease, opacity 180ms ease;
}
.purewyn-wholesale .pw-modal[data-open="true"] .pw-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.purewyn-wholesale .pw-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--pw-ink);
  transition: background 140ms ease;
  z-index: 2;
}
.purewyn-wholesale .pw-modal-close:hover { background: rgba(28,42,34,0.06); }
.purewyn-wholesale .pw-modal-close svg { width: 16px; height: 16px; }

.purewyn-wholesale .pw-form-host {
  /* the React root */
}
.purewyn-wholesale .pw-form-shell {
  padding: 44px 32px 36px;
  background: var(--pw-cream);
  font-family: var(--pw-body);
}
@media (min-width: 600px) {
  .purewyn-wholesale .pw-form-shell { padding: 52px 48px 44px; }
}

.purewyn-wholesale .pw-form-progress {
  height: 3px;
  background: var(--pw-cream-2);
  border-radius: 99px;
  margin-bottom: 28px;
  overflow: hidden;
}
.purewyn-wholesale .pw-form-progress-fill {
  height: 100%;
  background: var(--pw-green);
  border-radius: 99px;
  transition: width 400ms ease;
}

.purewyn-wholesale .pw-form-step {
  transition: opacity 280ms ease, transform 280ms ease;
}
.purewyn-wholesale .pw-form-qcount {
  font-family: var(--pw-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--pw-ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.purewyn-wholesale .pw-form-qtext {
  font-family: var(--pw-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  color: var(--pw-green);
  margin-bottom: 26px;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.purewyn-wholesale .pw-form-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.purewyn-wholesale .pw-form-choice {
  width: 100%;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  text-align: left;
  font-family: var(--pw-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--pw-ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.purewyn-wholesale .pw-form-choice::after {
  content: "→";
  font-family: var(--pw-body);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
  color: inherit;
}
.purewyn-wholesale .pw-form-choice:hover {
  background: var(--pw-green);
  color: var(--pw-cream);
  border-color: var(--pw-green);
}
.purewyn-wholesale .pw-form-choice:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.purewyn-wholesale .pw-form-choice:focus-visible {
  outline: 2px solid var(--pw-green);
  outline-offset: 2px;
}

.purewyn-wholesale .pw-form-input {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  font-family: var(--pw-body);
  font-size: 15px;
  color: var(--pw-ink);
  background: #fff;
  outline: none;
  margin-bottom: 12px;
  box-sizing: border-box;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.purewyn-wholesale .pw-form-input:focus {
  border-color: var(--pw-green);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
}
.purewyn-wholesale .pw-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--pw-green);
  color: var(--pw-cream);
  border: 0;
  border-radius: var(--pw-radius);
  font-family: var(--pw-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease, opacity 160ms ease;
  min-height: 56px;
}
.purewyn-wholesale .pw-form-submit:hover:not(:disabled) {
  background: var(--pw-green-deep);
}
.purewyn-wholesale .pw-form-submit:disabled {
  opacity: 0.45;
  cursor: default;
}

/* ---- Yes/No qualifier (single-screen short form) ----------------- */
.purewyn-wholesale .pw-form-yesno {
  margin-bottom: 22px;
}
.purewyn-wholesale .pw-form-yesno-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.purewyn-wholesale .pw-form-yesno-btn {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  background: #fff;
  color: var(--pw-ink);
  font-family: var(--pw-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.purewyn-wholesale .pw-form-yesno-btn:hover {
  border-color: var(--pw-green);
}
.purewyn-wholesale .pw-form-yesno-btn[data-active="true"] {
  background: var(--pw-green);
  color: var(--pw-cream);
  border-color: var(--pw-green);
}

.purewyn-wholesale .pw-form-back {
  background: none;
  border: 0;
  font-family: var(--pw-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pw-ink-soft);
  cursor: pointer;
  padding: 22px 0 0;
  display: block;
  transition: color 140ms ease;
}
.purewyn-wholesale .pw-form-back:hover { color: var(--pw-green); }

.purewyn-wholesale .pw-form-exit {
  text-align: center;
  padding: 16px 0 4px;
}
.purewyn-wholesale .pw-form-exit-mark {
  width: 56px; height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 22px;
  background: var(--pw-cream-2);
  color: var(--pw-green);
}
.purewyn-wholesale .pw-form-exit-mark[data-type="qualified"] {
  background: var(--pw-green);
  color: var(--pw-cream);
}
.purewyn-wholesale .pw-form-exit-headline {
  font-family: var(--pw-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--pw-green);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.purewyn-wholesale .pw-form-exit-body {
  font-family: var(--pw-body);
  font-size: 14.5px;
  color: var(--pw-ink-soft);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 auto 22px;
}
.purewyn-wholesale .pw-form-contact {
  background: var(--pw-cream-2);
  border-radius: 4px;
  padding: 16px 20px;
  display: inline-block;
  text-align: left;
  margin-bottom: 18px;
}
.purewyn-wholesale .pw-form-contact-label {
  font-family: var(--pw-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pw-ink-soft);
  margin-bottom: 6px;
}
.purewyn-wholesale .pw-form-contact-line {
  font-family: var(--pw-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--pw-green);
  margin-top: 2px;
}

/* ---- SHIP step (where should we ship it?) ------------------------- */
.purewyn-wholesale .pw-form-ship {
  position: relative;
}
.purewyn-wholesale .pw-form-ship-sub {
  font-family: var(--pw-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--pw-ink-soft);
  margin: 0 0 22px;
  max-width: 52ch;
}
.purewyn-wholesale .pw-form-ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 18px;
}
.purewyn-wholesale .pw-form-ship-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.purewyn-wholesale .pw-form-ship-field-full {
  grid-column: 1 / -1;
}
.purewyn-wholesale .pw-form-ship-label {
  font-family: var(--pw-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pw-ink-soft);
}
.purewyn-wholesale .pw-form-ship-field .pw-form-input {
  margin-bottom: 0;
}
.purewyn-wholesale .pw-form-error {
  font-family: var(--pw-body);
  font-size: 13px;
  line-height: 1.5;
  color: #B33A2C;
  background: #FBEAE6;
  border: 1px solid #F1C9C0;
  border-radius: var(--pw-radius);
  padding: 10px 14px;
  margin: 0 0 14px;
}
@media (max-width: 560px) {
  .purewyn-wholesale .pw-form-ship-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .purewyn-wholesale *,
  .purewyn-wholesale *::before,
  .purewyn-wholesale *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Outside of scope: lock body scroll when modal is open.
   position:fixed (not just overflow:hidden) is required to stop iOS Safari
   from scrolling the page behind the modal. The JS sets `top` to the saved
   scroll offset so the page doesn't jump, and restores it on close. */
body.pw-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
