/** Shopify CDN: Minification failed

Line 2125:21 Expected identifier but found whitespace
Line 2125:30 Unexpected ";"

**/
    :root {
      /* OFFICIAL FemiSafe brand palette (Brand Guidelines, Nov 2024)
         Primary 60%: brandteal-Neutral, brand-Flashgreen, brandteal-Dark
         Secondary 30%: brandpurple-Neutral, brand-HotPink, brandpurple-Dark
         Tertiary 10%: yellow, orange, cyan
         Mood: Emotive. Clean. Sharp. — Teal, Purple and Whites */
      --teal: #19AEB4;            /* brandteal-Neutral — primary */
      --teal-deep: #024F59;       /* brandteal-Dark */
      --flash: #73F3B5;           /* brand-Flashgreen */
      --teal-soft: #D6F4F2;       /* tinted surface */
      --purple: #6F65D5;          /* brandpurple-Neutral */
      --purple-deep: #3F3588;     /* brandpurple-Dark */
      --hotpink: #F9607C;         /* brand-HotPink */
      --yellow: #FFC53E;          /* tertiary */
      --orange: #F07A2B;          /* tertiary */
      --cyan: #55D3F4;            /* tertiary */
      --cream: #FFFFFF;           /* whites — per brand mood */
      --cream-warm: #FFF5ED;      /* warm off-white from announcement bar */
      --paper: #FBFAFE;           /* near-white surface, slight purple cast */
      --ink: #1B1442;             /* deep purple-ink, derived from brandpurple-Dark */
      --muted: rgba(27,20,66,0.58);
      --line: rgba(27,20,66,0.10);
      /* legacy tokens remapped so existing markup stays on-brand */
      --terra: #F9607C;           /* hot pink takes over warm-accent slot */
      --terra-deep: #C73F58;
      --sage: #73F3B5;            /* flash green */
      --rose: #F9607C;
      --rose-deep: #C73F58;
    }
    * { box-sizing: border-box; }
    /* Global resets — font and smoothing only, NO background so other pages stay white */
    html, body { margin:0; padding:0; -webkit-font-smoothing:antialiased; font-family: 'Quicksand', sans-serif; color:var(--ink); font-weight:500; }
    /* Homepage-only background — scoped so product/collection pages are unaffected */
    body.template-index, body.index, body.tem-index { background: #EFEEF8; }


    .frame { max-width:1480px; margin:0 auto; padding:24px; }
    .browser {
      background:var(--paper); border-radius:14px;
      box-shadow:0 40px 100px -40px rgba(15,46,48,0.4), 0 0 0 1px rgba(15,46,48,0.06);
      overflow:hidden;
    }
    .browser-bar {
      display:flex; align-items:center; gap:14px;
      padding:14px 20px; border-bottom:1px solid var(--line);
      background:#F8F4EB;
    }
    .lights { display:flex; gap:8px; }
    .lights span { width:12px; height:12px; border-radius:50%; }
    .url {
      flex:0 1 460px; background:#fff; border:1px solid var(--line);
      border-radius:7px; padding:7px 16px;
      font-family: 'Quicksand', sans-serif; font-size:11.5px;
      color:rgba(15,46,48,0.65); margin-left:24px;
      display:flex; align-items:center; gap:10px;
    }
    .url .dot { width:6px; height:6px; border-radius:50%; background:#7FB0A4; }
    .browser-tag {
      margin-left:auto; font-family: 'Quicksand', sans-serif;
      font-size:10.5px; letter-spacing:0.18em; text-transform:uppercase;
      color:var(--muted);
    }
    /* ─── Site ─── */
    .site { background:var(--cream); color:var(--ink); }
    /* Top utility bar */
    .util {
      background:var(--teal); color:#fff;
      font-family: 'Quicksand', sans-serif; font-size:11px;
      letter-spacing:0.14em; text-transform:uppercase;
      padding:10px 40px; display:flex; justify-content:space-between; align-items:center;
    }
    .util .seg { display:flex; gap:30px; }
    .util .seg span { opacity:0.75; }
    /* ---- V2 Header ---- */
    /* 3-column grid: burger | logo (auto-centered) | right slot
       1fr auto 1fr guarantees the logo is at exactly 50% regardless
       of the widths of the side columns. */
    .v2-hdr {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 20px;
      height: 64px;
      background: #145D62;
      position: sticky; top: 0; z-index: 200;
    }
    .v2-hdr-logo {
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
    }
    .v2-hdr-right {
      display: flex; align-items: center; justify-content: flex-end; gap: 14px;
    }

    /* Header utility icons — rounded-square app-icon style */
    .v2-hdr-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
      background: var(--v2-icon-bg, #19AEB4);
      color: var(--v2-icon-color, #ffffff);
      text-decoration: none; position: relative;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .v2-hdr-icon:hover { opacity: 0.82; transform: translateY(-1px); }
    .v2-cart-badge {
      position: absolute; top: -5px; right: -5px;
      min-width: 16px; height: 16px; border-radius: 999px;
      background: #73F3B5; color: #024F59;
      font-family: 'Quicksand', sans-serif; font-size: 10px; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      padding: 0 4px; line-height: 1; pointer-events: none;
    }

    /* ---- Search overlay — slides down from below header ---- */
    .v2-search-overlay {
      position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
      background: #145D62;
      padding: 16px 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.22);
      transform: translateY(-100%);
      visibility: hidden; pointer-events: none;
      /* visibility delays until after the 0.3s slide-up completes on close */
      transition: transform 0.3s ease, visibility 0s linear 0.3s;
    }
    .v2-search-overlay.is-open {
      transform: translateY(0);
      visibility: visible; pointer-events: all;
      /* visibility switches instantly on open so the slide-down is visible */
      transition: transform 0.3s ease, visibility 0s linear 0s;
    }
    .v2-search-row {
      display: flex; align-items: center; gap: 12px;
      max-width: 960px; margin: 0 auto;
    }
    .v2-search-form {
      display: flex; align-items: center; flex: 1; min-height: 48px;
      background: #ffffff; border-radius: 999px;
      overflow: hidden; padding: 0 8px 0 20px;
    }
    .v2-search-input {
      flex: 1; border: none; outline: none; background: transparent;
      font-family: 'Quicksand', sans-serif; font-size: 16px; font-weight: 500;
      color: #1B1442; padding: 12px 0;
    }
    .v2-search-input::placeholder { color: rgba(27,20,66,0.38); }
    .v2-search-input::-webkit-search-cancel-button { display: none; }
    .v2-search-submit {
      flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px;
      background: #145D62; color: #ffffff; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s ease;
    }
    .v2-search-submit:hover { background: #19AEB4; }
    .v2-search-close {
      flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.12); border: none;
      color: rgba(255,255,255,0.8); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .v2-search-close:hover { background: rgba(255,255,255,0.22); color: #ffffff; }
    .v2-search-backdrop {
      position: fixed; inset: 0; z-index: 998;
      background: rgba(0,0,0,0.45);
      opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
    }
    .v2-search-backdrop.is-open { opacity: 1; pointer-events: all; }

    /* ---- Account login card — floating dropdown ---- */
    .v2-account-card {
      position: fixed; top: 72px; right: 20px; z-index: 999;
      width: 360px; border-radius: 16px; overflow: hidden;
      background: #ffffff;
      border-top: 4px solid #19AEB4;
      box-shadow: 0 12px 48px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
      opacity: 0; transform: translateY(-8px);
      visibility: hidden; pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    }
    .v2-account-card.is-open {
      opacity: 1; transform: translateY(0);
      visibility: visible; pointer-events: all;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
    }
    .account-card__banner {
      background: #1a6b6b; color: #ffffff; text-align: center;
      padding: 10px 16px;
      font-family: 'Quicksand', sans-serif; font-size: 13px; font-weight: 600;
      letter-spacing: 0.3px;
    }
    .v2-acct-body { padding: 24px; position: relative; }
    .v2-acct-close {
      position: absolute; top: 12px; right: 12px;
      width: 28px; height: 28px; border-radius: 50%;
      background: #f0f0f0; border: none; color: #555555; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s ease;
    }
    .v2-acct-close:hover { background: #e0e0e0; }
    .v2-acct-logo-wrap { margin-bottom: 16px; }
    .account-card__logo { max-height: 40px; width: auto; object-fit: contain; display: block; }
    .account-card__logo-text {
      font-family: 'Fira Sans Condensed', sans-serif;
      font-size: 20px; font-weight: 600; letter-spacing: -0.3px; color: #1B1442;
    }
    .v2-acct-brand-name {
      font-family: 'Fira Sans Condensed', sans-serif;
      font-size: 20px; font-weight: 600; letter-spacing: -0.3px;
      color: #1B1442; display: inline-block; margin-bottom: 16px;
    }
    .v2-acct-brand-name em { font-style: normal; color: #19AEB4; }
    .v2-acct-heading {
      font-family: 'Fira Sans Condensed', sans-serif;
      font-size: 28px; font-weight: 600; color: #1B1442; margin: 0 0 6px;
    }
    .v2-acct-sub {
      font-family: 'Quicksand', sans-serif;
      font-size: 14px; font-weight: 500; color: rgba(27,20,66,0.52);
      margin: 0 0 24px;
    }
    .v2-acct-shop-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 13px 20px; margin-bottom: 20px;
      background: #1B1442; color: #ffffff; border-radius: 999px;
      text-decoration: none;
      font-family: 'Quicksand', sans-serif; font-size: 14px; font-weight: 600;
      letter-spacing: 0.3px; transition: background 0.15s ease;
    }
    .v2-acct-shop-btn:hover { background: #2e2668; }
    .v2-acct-divider {
      display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
    }
    .v2-acct-divider::before, .v2-acct-divider::after {
      content: ''; flex: 1; height: 1px; background: rgba(27,20,66,0.12);
    }
    .v2-acct-divider span {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px; font-weight: 500; color: rgba(27,20,66,0.4);
    }
    .v2-acct-form { display: flex; flex-direction: column; gap: 0; }
    .v2-acct-input {
      width: 100%; padding: 13px 16px; margin-bottom: 12px;
      border: 1.5px solid rgba(27,20,66,0.15); border-radius: 10px;
      outline: none; background: #ffffff;
      font-family: 'Quicksand', sans-serif; font-size: 15px; font-weight: 500;
      color: #1B1442; transition: border-color 0.15s ease; box-sizing: border-box;
    }
    .v2-acct-input:focus { border-color: #19AEB4; }
    .v2-acct-input::placeholder { color: rgba(27,20,66,0.38); }
    .v2-acct-submit {
      width: 100%; padding: 13px 20px; margin-bottom: 16px;
      background: #145D62; color: #ffffff; border: none;
      border-radius: 999px; cursor: pointer;
      font-family: 'Quicksand', sans-serif; font-size: 14px; font-weight: 600;
      letter-spacing: 0.3px; transition: background 0.15s ease;
    }
    .v2-acct-submit:hover { background: #19AEB4; }
    .v2-acct-marketing {
      display: flex; align-items: flex-start; gap: 10px;
      font-family: 'Quicksand', sans-serif; font-size: 12px; font-weight: 500;
      color: rgba(27,20,66,0.58); margin-bottom: 12px; cursor: pointer;
    }
    .v2-acct-marketing input[type="checkbox"] {
      width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px;
      accent-color: #19AEB4;
    }
    .v2-acct-terms {
      font-family: 'Quicksand', sans-serif;
      font-size: 11px; font-weight: 400; color: rgba(27,20,66,0.42);
      text-align: center; margin: 0;
    }
    .v2-acct-terms a { color: #19AEB4; text-decoration: none; }
    .v2-acct-terms a:hover { text-decoration: underline; }
    .v2-account-backdrop {
      position: fixed; inset: 0; z-index: 998;
      background: rgba(0,0,0,0.4);
      opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
    }
    .v2-account-backdrop.is-open { opacity: 1; pointer-events: all; }

    /* Hamburger: 3-bar icon that morphs to × on open */
    .v2-hdr-burger {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.32);
      background: transparent;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 5px; cursor: pointer; padding: 0;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .v2-hdr-burger:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
    .v2-hdr-burger.is-open  { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
    .v2-bar {
      display: block; width: 20px; height: 2px;
      background: #fff; border-radius: 2px;
      transform-origin: center;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    /* open → × : top rotates down 45°, mid fades out, bot rotates up -45° */
    /* gap = 5px, bar height = 2px → bar centers are 7px apart → translate by 7px */
    .v2-hdr-burger.is-open .v2-bar--top { transform: translateY(7px) rotate(45deg); }
    .v2-hdr-burger.is-open .v2-bar--mid { opacity: 0; transform: scaleX(0); }
    .v2-hdr-burger.is-open .v2-bar--bot { transform: translateY(-7px) rotate(-45deg); }

    /* ---- Left slide-out drawer ---- */
    .v2-drawer {
      position: fixed;
      top: 0; left: 0;
      width: 320px; height: 100dvh;
      background: #145D62;
      z-index: 300;
      display: flex; flex-direction: column;
      transform: translateX(-100%);
      transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
      overflow-y: auto;
      /* soft shadow on the right edge */
      box-shadow: 6px 0 40px rgba(0,0,0,0.35), 1px 0 0 rgba(255,255,255,0.06);
    }
    .v2-drawer.is-open { transform: translateX(0); }

    /* Drawer top bar */
    .v2-drawer-top {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 22px;
      height: 64px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      flex-shrink: 0;
    }
    .v2-drawer-label {
      font-family: 'Quicksand', sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4);
    }
    /* Close button: minimal circle × that rotates into place */
    .v2-drawer-close {
      width: 34px; height: 34px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.22);
      background: transparent;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: #fff;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .v2-drawer-close:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); }
    /* × SVG rotates in when drawer opens */
    .v2-drawer-close svg {
      transform: rotate(-90deg);
      opacity: 0;
      transition: transform 0.35s ease 0.18s, opacity 0.25s ease 0.18s;
    }
    .v2-drawer.is-open .v2-drawer-close svg {
      transform: rotate(0deg);
      opacity: 1;
    }

    /* Nav links — top-level standalone items */
    .v2-drawer-nav { display: flex; flex-direction: column; padding: 8px 0; flex: 1; }
    .v2-drawer-link {
      display: flex; align-items: center; justify-content: space-between;
      color: #fff; text-decoration: none;
      font-family: 'Quicksand', sans-serif; font-size: 18px; font-weight: 600;
      letter-spacing: -0.2px;
      padding: 18px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: background 0.18s, color 0.18s;
    }
    .v2-drawer-link:last-child { border-bottom: none; }
    .v2-drawer-link:hover { background: rgba(255,255,255,0.05); color: #73F3B5; }
    .v2-drawer-arrow {
      opacity: 0; transform: translateX(-4px); flex-shrink: 0; color: #73F3B5;
      transition: opacity 0.18s, transform 0.18s;
    }
    .v2-drawer-link:hover .v2-drawer-arrow { opacity: 1; transform: translateX(0); }

    /* ---- Nav Group accordion ---- */
    .v2-nav-group { display: block; }

    .v2-nav-group-toggle {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 18px 24px;
      background: transparent; border: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      color: #fff; text-align: left;
      font-family: 'Quicksand', sans-serif; font-size: 18px; font-weight: 600;
      letter-spacing: -0.2px;
      cursor: pointer;
      transition: background 0.18s, color 0.18s;
    }
    .v2-nav-group-toggle:hover { background: rgba(255,255,255,0.05); color: #73F3B5; }
    .v2-nav-group.is-open > .v2-nav-group-toggle {
      color: #73F3B5;
      background: rgba(255,255,255,0.04);
      border-bottom-color: transparent;
    }

    .v2-nav-group-chevron {
      flex-shrink: 0; color: rgba(255,255,255,0.5);
      transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), color 0.2s;
    }
    .v2-nav-group.is-open .v2-nav-group-chevron { transform: rotate(180deg); color: #73F3B5; }

    /* Sub-menu container
       — display/overflow use !important to block theme interference
       — max-height has NO !important so JS inline style can override it */
    .v2-drawer .v2-nav-sub {
      display: block !important;
      overflow: hidden !important;
      max-height: 0;               /* JS sets this to scrollHeight on open */
      background: rgba(0,0,0,0.18);
      transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Sub-links — stacked vertically, tap-friendly */
    .v2-drawer .v2-nav-sublink {
      display: flex !important;
      align-items: center;
      min-height: 48px;
      padding: 0 24px 0 42px;
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-family: 'Quicksand', sans-serif; font-size: 14px; font-weight: 400;
      line-height: 1.4; letter-spacing: 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      position: relative;
      transition: color 0.16s, background 0.16s;
    }
    .v2-drawer .v2-nav-sublink:last-child { border-bottom: none; }
    .v2-drawer .v2-nav-sublink::before {
      content: '';
      position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
      width: 4px; height: 4px; border-radius: 50%;
      background: rgba(255,255,255,0.22);
      transition: background 0.16s;
    }
    .v2-drawer .v2-nav-sublink:hover { color: #73F3B5; background: rgba(255,255,255,0.04); }
    .v2-drawer .v2-nav-sublink:hover::before { background: #73F3B5; }

    /* ---- Social icons (bottom of drawer) ---- */
    .v2-drawer-social {
      flex-shrink: 0;
      padding: 20px 22px 28px;
    }
    .v2-social-divider {
      height: 1px;
      background: rgba(255,255,255,0.1);
      margin-bottom: 20px;
    }
    .v2-social-icons {
      display: flex; gap: 12px; align-items: center;
    }
    .v2-social-link {
      display: flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid rgba(115,243,181,0.28);
      color: #73F3B5; text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    .v2-social-link:hover {
      background: rgba(115,243,181,0.12);
      border-color: rgba(115,243,181,0.7);
      transform: translateY(-2px);
    }

    /* Full-screen backdrop */
    .v2-drawer-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 299;
      opacity: 0; pointer-events: none;
      transition: opacity 0.32s;
    }
    .v2-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

    /* ===================================================================
       PRESTIGE THEME — Hero/Slideshow height cap
       Limits the native Prestige slideshow so the next section peeks
       below the fold, encouraging users to scroll.
       =================================================================== */
    /* Prestige slideshow section wrappers — covers all common variants */
    .shopify-section:has(.slideshow),
    .shopify-section .slideshow,
    .slideshow,
    [data-section-type="slideshow"],
    .section-slideshow,
    .banner-section,
    .index-section--slideshow {
      max-height: 82vh !important;
      overflow: hidden !important;
    }
    /* Each slide inside also needs capping */
    .slideshow .slideshow__slide,
    .slideshow .banner,
    .slideshow [class*="slide"],
    .slideshow > div,
    .slideshow > li {
      max-height: 82vh !important;
    }
    /* Images inside should cover the capped height cleanly */
    .slideshow img,
    .slideshow picture img,
    .slideshow video {
      height: 100% !important;
      object-fit: cover !important;
    }

    @media (max-width: 768px) {
      .shopify-section:has(.slideshow),
      .shopify-section .slideshow,
      .slideshow,
      [data-section-type="slideshow"],
      .section-slideshow,
      .banner-section,
      .index-section--slideshow {
        max-height: 70vh !important;
      }
      .slideshow .slideshow__slide,
      .slideshow .banner,
      .slideshow [class*="slide"],
      .slideshow > div,
      .slideshow > li {
        max-height: 70vh !important;
      }
    }

    /* HERO */
    .hero {
      display:grid; grid-template-columns:1.05fr 1fr; gap:0;
      background:var(--paper); position:relative; overflow:hidden;
      max-height: 85vh; /* always show next section below the fold */
    }
    .hero-left { padding:48px 48px 48px 56px; position:relative; }
    .eyebrow {
      font-family: 'Quicksand', sans-serif; font-size:11px;
      letter-spacing:0.22em; text-transform:uppercase; color: #145D62;
      margin-bottom:28px; display:flex; align-items:center; gap:12px;
    }
    .eyebrow .bullet { width:6px; height:6px; border-radius:50%; background:var(--teal); }
    .hero h1 {
      font-family: 'Fira Sans Condensed', sans-serif; font-weight:600; font-style:normal;
      font-size:64px; line-height:1.05; letter-spacing:-0.5px;
      margin:0 0 20px; color:var(--ink); text-transform:uppercase;
    }
    .hero h1 em { font-style:italic; font-weight:300; color: #145D62; }
    .hero h1 .small { font-size:0.55em; letter-spacing:-1.5px; }
    .hero p.lede {
      font-size:15px; line-height:1.5; color:rgba(15,46,48,0.72);
      max-width:480px; margin:0 0 24px; text-wrap:pretty;
    }
    .hero .ctas { display:flex; gap:14px; align-items:center; }
    .btn {
      display:inline-flex; align-items:center; gap:10px;
      padding:18px 30px; border-radius:999px; text-decoration:none;
      font-size:13.5px; letter-spacing:0.05em;
      transition:all 0.2s;
    }
    .btn-primary { background:#145D62; color:#fff; }
    .btn-primary:hover { background:var(--teal-deep); }
    .btn-ghost { background:transparent; color:var(--ink); border:1px solid var(--ink); }
    .btn-ghost:hover { background:var(--ink); color:#fff; }
    .arrow { font-size:16px; }

    .hero-stats {
      display:flex; gap:24px; margin-top:16px; padding-top:20px;
      border-top:0.5px solid var(--line);
    }
    .hero-stats .stat { }
    .hero-stats .num {
      font-family: 'Fira Sans Condensed', sans-serif; font-size:36px; font-weight:500;
      letter-spacing:-1px; color:var(--ink); line-height:1;
    }
    .hero-stats .lbl {
      font-size:11.5px; letter-spacing:0.12em; text-transform:uppercase;
      color:var(--muted); margin-top:6px;
    }

    /* hero right — image collage */
    .hero-right {
      background:linear-gradient(135deg, var(--teal-soft) 0%, #E5E2FB 100%);
      position:relative; min-height:500px; overflow:hidden;
    }
    /* curving brand pattern */
    .hero-img-main {
      position:absolute; inset:48px 64px 100px 32px;
      background:radial-gradient(circle at 30% 30%, var(--flash) 0%, var(--teal) 55%, var(--teal-deep) 100%);
      border-radius:6px; overflow:hidden;
    }
    .hero-img-main::before {
      content:''; position:absolute; inset:0;
      background-image:repeating-linear-gradient(135deg,rgba(255,255,255,0.03) 0 12px, transparent 12px 24px);
    }
    .hero-img-main .corner-tag {
      position:absolute; top:24px; left:24px;
      font-family: 'Quicksand', sans-serif; font-size:10.5px;
      letter-spacing:0.18em; text-transform:uppercase;
      color:rgba(255,255,255,0.7);
    }
    .hero-img-main .product-glyph {
      position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    }
    .hero-img-main .product-glyph svg { width:200px; height:200px; }

    .hero-card {
      position:absolute; bottom:32px; right:32px; width:280px;
      background:var(--paper); border-radius:8px; padding:22px;
      box-shadow:0 30px 60px -20px rgba(15,46,48,0.25);
    }
    .hero-card .pill {
      display:inline-block; font-family: 'Quicksand', sans-serif;
      font-size:10px; letter-spacing:0.18em; text-transform:uppercase;
      color: #145D62; padding:5px 10px; border:1px solid var(--teal);
      border-radius:999px; margin-bottom:14px;
    }
    .hero-card h4 {
      font-family: 'Quicksand', sans-serif; font-size:17px; font-weight:600;
      letter-spacing:0; margin:0 0 6px; line-height:1.3;
    }
    .hero-card .price { font-size:14px; color:var(--muted); margin-bottom:12px; }
    .hero-card .price strong { color:var(--ink); font-weight:500; font-size:16px; margin-right:6px; }
    .hero-card .quick { display:flex; gap:6px; }
    .hero-card .quick span {
      font-size:10px; letter-spacing:0.1em; text-transform:uppercase;
      padding:5px 9px; background:var(--cream); border-radius:4px;
      color:var(--muted);
    }
    .hero-marker {
      position:absolute; top:32px; right:32px;
      font-family: 'Quicksand', sans-serif; font-size:10px;
      letter-spacing:0.2em; text-transform:uppercase; color:var(--teal-deep);
      writing-mode:vertical-rl; transform:rotate(180deg);
    }

    /* Marquee */
    .marquee-bar {
      background:#024F59; color:#FFFFFF;
      padding:18px 0; overflow:hidden; white-space:nowrap;
      border-top:1px solid rgba(25,174,180,0.25); border-bottom:1px solid rgba(25,174,180,0.25);
    }
    .marquee-inner {
      display:inline-block; animation:marq 35s linear infinite;
      font-family: 'Quicksand', sans-serif; font-weight:600; font-size:14px;
      letter-spacing:0.5px;
    }
    .marquee-inner span { padding:0 30px; }
    .marquee-inner .dot { color:rgba(115,243,181,0.8); }
    @keyframes marq { 0% { transform:translateX(0);} 100% { transform:translateX(-50%);} }

    /* Section header */
    section.s {
      padding: 20px 24px;
      /* ORIGINAL: background: var(--cream-warm); — revert here to undo */
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
    }
    .s-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:14px; }
    .s-head .left { max-width:600px; }
    .s-head .num {
      font-family: 'Quicksand', sans-serif; font-size:13px; font-weight:600;
      letter-spacing:0.18em; text-transform:uppercase; color: #145D62;
      margin-bottom:8px;
    }
    .s-head h2 {
      font-family: 'Fira Sans Condensed', sans-serif; font-weight:600; font-size:48px;
      letter-spacing:-0.3px; line-height:1.1; margin:0;
    }
    .s-head h2 em { font-style:italic; color: #145D62; }
    .s-head .right {
      font-family: 'Quicksand', sans-serif; font-size:16px; font-weight:500;
      letter-spacing:0.03em; text-align:right;
      max-width:280px; color:rgba(27,20,66,0.72); line-height:1.5;
    }
    .s-head .see-all {
      display:inline-flex; align-items:center; gap:6px; margin-top:8px;
      color: #145D62; text-decoration:none; font-size:12px; letter-spacing:0.04em;
      border-bottom:1px solid #145D62; padding-bottom:2px;
    }

    /* DISCOMFORTS — taxonomy spine */
    .discomfort-tabs {
      display:flex; gap:5px; flex-wrap:wrap; margin-bottom:12px;
      border-bottom:0.5px solid var(--line); padding-bottom:12px;
    }
    .discomfort-tab {
      font-family: 'Quicksand', sans-serif; font-size:13px; font-weight:600;
      letter-spacing:0.08em; text-transform:uppercase;
      padding:6px 14px; border-radius:999px;
      border:1px solid var(--line); background:transparent; color:var(--ink);
      cursor:pointer; transition:all 0.2s;
    }
    .discomfort-tab.active { background:var(--ink); color:var(--cream); border-color:var(--ink); }
    .discomfort-tab .ct { opacity:0.5; margin-left:5px; }
    .discomfort-tab.active .ct { opacity:0.7; }
    .moments-grid {
      display: none;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 100%;
      padding-bottom: 4px;
    }
    .moments-grid.active {
      display: grid;
    }
    .moments-grid::-webkit-scrollbar {
      display: none;
    }
    .moment {
      background:var(--cream); border-radius:10px; overflow:hidden;
      border:1px solid var(--line); transition:all 0.25s;
      position:relative; color:inherit;
      display:flex; flex-direction:column;
    }
    .moment:hover { transform:translateY(-4px); box-shadow:0 30px 50px -25px rgba(15,46,48,0.15); border-color: #145D62; }
    .moment-img-link { display: block; text-decoration: none; }
    .moment-title-link { text-decoration: none; color: inherit; }
    .moment .img {
      aspect-ratio:1/1; position:relative; overflow:hidden; background:var(--paper);
      display: flex; align-items: center; justify-content: center;
      padding: 8px;
    }
    .moment .img img, .moment .img svg {
      width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply;
      transition: transform 0.3s ease;
    }
    .moment:hover .img img { transform: scale(1.04); }
    .moment .tag-strip {
      position:absolute; top:8px; left:8px;
      display:flex; justify-content:space-between; align-items:center;
      font-family: 'Quicksand', sans-serif; font-size:9px;
      letter-spacing:0.12em; text-transform:uppercase;
      color:rgba(255,255,255,0.9); z-index:2;
    }
    .moment .tag-strip .pill {
      background:var(--ink); padding:3px 8px; border-radius:999px;
    }
    .moment .body { padding:14px 16px 16px; display: flex; flex-direction: column; flex-grow: 1; }
    .moment .rating {
      display: flex; align-items: center; gap: 4px; margin-bottom: 5px;
      font-size: 10px; font-family: 'Quicksand', sans-serif; color: var(--ink);
    }
    .moment .rating .stars { color: var(--yellow); font-size: 11px; letter-spacing: 1px; }
    /* flex-grow on the anchor wrapper, not h3, so the button always aligns to the bottom */
    .moment-title-link { text-decoration: none; color: inherit; display: block; flex-grow: 1; }
    .moment h3 {
      font-family: 'Quicksand', sans-serif; font-weight: 500; font-size: 14px;
      letter-spacing: 0; line-height: 1.3; margin: 0;
    }
    .moment .cta {
      padding-bottom: 6px;
      font-size: 12px; letter-spacing: 0.02em;
    }
    .moment .cta .price { font-weight: 600; color: var(--ink); font-size: 15px; }

    /* Discomforts ATC button */
    .moment-atc-form { margin-top: 6px; }
    .moment-atc-btn {
      display: block; width: 100%;
      background: #145D62; color: #fff;
      border: none; border-radius: 5px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 10px 0;
      cursor: pointer; font-family: 'Quicksand', sans-serif;
      transition: background 0.2s ease;
    }
    .moment-atc-btn:hover:not(:disabled) { background: #024F59; }
    .moment-atc-btn:disabled { opacity: 0.5; cursor: not-allowed; }

    /* HERO PRODUCT — full-bleed dark band */
    .featured {
      background:var(--ink); color:var(--cream); padding:48px 64px;
      display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
    }
    .featured .lhs .num { color:var(--teal-soft); }
    .featured .lhs h2 {
      font-family: 'Fira Sans Condensed', sans-serif; font-weight:600; font-size:48px;
      letter-spacing:-0.3px; line-height:1.1; color:var(--cream); margin:0 0 28px;
    }
    .featured .lhs h2 em { color:var(--terra); font-style:italic; }
    .featured .lhs p {
      font-size:16px; line-height:1.55; color:rgba(250,246,238,0.7);
      max-width:480px; margin-bottom:36px;
    }
    .featured .stats { display:grid; grid-template-columns:1fr 1fr; gap:32px; max-width:480px; }
    .featured .stats .num2 {
      font-family: 'Fira Sans Condensed', sans-serif; font-size:48px; font-weight:500;
      letter-spacing:-1.5px; color:var(--cream); line-height:1;
    }
    .featured .stats .lbl2 {
      font-size:12px; letter-spacing:0.08em; color:rgba(250,246,238,0.55);
      margin-top:8px;
    }
    .featured .rhs {
      aspect-ratio:1/1; border-radius:8px; overflow:hidden;
      background:radial-gradient(circle at 35% 35%, var(--flash) 0%, var(--teal) 50%, var(--teal-deep) 100%);
      position:relative;
    }
    .featured .rhs::after {
      content:'CUP + STERILIZER · HERO SHOT'; position:absolute; inset:0;
      display:flex; align-items:center; justify-content:center;
      font-family: 'Quicksand', sans-serif; font-size:11px;
      letter-spacing:0.18em; color:rgba(255,255,255,0.4);
    }
    .featured .rhs .badge {
      position:absolute; top:32px; right:32px;
      width:88px; height:88px; border-radius:50%;
      background:var(--cream); color:var(--ink);
      display:flex; align-items:center; justify-content:center;
      font-family: 'Quicksand', sans-serif; font-style:italic; font-size:14px;
      text-align:center; line-height:1; transform:rotate(-12deg);
    }
    .featured .rhs .badge strong { display:block; font-size:24px; font-style:normal; font-weight:500; margin-bottom:2px; }

    /* PROMISE — three column */
    .promise {
      padding: 32px 64px;
      /* ORIGINAL: background: var(--cream-warm); — revert here to undo */
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
    }
    .promise-grid {
      display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin-top:24px;
    }
    .promise-grid .item {
      background: var(--cream); border-radius: 12px; padding: 32px 28px;
      border: 1px solid var(--line);
      box-shadow: 0 20px 40px -10px rgba(15,46,48,0.06);
      transition: transform 0.3s ease;
      display: flex; flex-direction: column;
    }
    .promise-grid .item:hover { transform: translateY(-4px); border-color: #145D62; }
    .promise-grid .icon-wrap {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--teal-soft); color: var(--teal-deep);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }
    .promise-grid .icon-wrap svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
    .promise-grid .num3 {
      font-family: 'Quicksand', sans-serif; font-size:10px;
      letter-spacing:0.2em; color:var(--muted); margin-bottom:8px; text-transform: uppercase;
    }
    .promise-grid h3 {
      font-family: 'Quicksand', sans-serif; font-weight:600; font-size:22px;
      letter-spacing:0; line-height:1.3; margin:0 0 16px;
    }
    .promise-grid h3 em { color: #145D62; font-style:italic; }
    .promise-grid p { font-size:14.5px; line-height:1.6; color:var(--muted); margin:0; text-wrap:pretty; flex-grow: 1; }

    /* VIDEO TESTIMONIAL */
    .testimonial {
      padding: 32px 64px;
      /* ORIGINAL: background: var(--cream-warm); — revert here to undo */
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
    }
    .vt-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
    }
    .vt-video-wrapper {
      position: relative; width: 100%; max-width: 560px; margin: 0 auto;
      aspect-ratio: 4/5;
      border-radius: 12px; overflow: hidden;
      background: var(--paper);
    }
    .vt-video-wrapper video {
      width: 100%; height: 100%; object-fit: cover;
      position: absolute; top: 0; left: 0;
    }
    .vt-content { text-align: left; }
    .vt-content h2 {
      font-family: 'Fira Sans Condensed', sans-serif; font-weight: 600; font-size: 48px;
      letter-spacing: -0.3px; line-height: 1.1; margin: 0 0 32px; color: var(--ink);
    }
    .vt-stats {
      display: flex; align-items: flex-start; justify-content: space-between;
      border-bottom: 1px solid var(--teal); padding-bottom: 24px; margin-bottom: 32px;
    }
    .vt-stat { display: flex; align-items: flex-start; gap: 12px; flex: 1; padding: 0 10px; }
    .vt-stat:first-child { padding-left: 0; }
    .vt-stat:last-child { padding-right: 0; }
    .vt-stat .icon {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      border: 1.5px solid var(--ink); display: flex; align-items: center; justify-content: center;
    }
    .vt-stat .icon svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.5; fill: none; }
    .vt-stat .info { font-family: 'Quicksand', sans-serif; }
    .vt-stat .info span {
      display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 4px;
    }
    .vt-stat .info strong {
      display: block;
      font-family: 'Quicksand', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink);
      line-height: 1.3;
    }
    .vt-stat.divider { width: 1px; height: 32px; background: var(--teal); opacity: 0.5; flex: none; padding: 0; margin-top: 4px; }
    
    .vt-quote {
      font-size: 18px; line-height: 1.5; color: var(--ink);
      background: var(--teal-soft); padding: 32px 36px; border-radius: 8px;
      position: relative; margin-bottom: 24px; text-wrap: pretty;
    }
    .vt-quote::before {
      content: '\201C';
      font-family: 'Fira Sans Condensed', sans-serif;
      font-size: 120px; color: #19AEB4; opacity: 0.15;
      position: absolute; top: -20px; left: 16px; line-height: 1;
      pointer-events: none;
    }
    .vt-location {
      display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted);
      margin-bottom: 32px;
    }
    .vt-location svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

    .vt-stars { display: flex; align-items: center; gap: 8px; }
    .vt-stars .vt-stars-icons { color: #FFC53E; font-size: 18px; letter-spacing: 2px; }
    .vt-stars .vt-verified {
      font-family: 'Quicksand', sans-serif; font-size: 13px; font-weight: 500; color: #555555;
    }
    .vt-tags { display: flex; flex-direction: column; gap: 6px; }
    .vt-tags .vt-tags-label {
      font-family: 'Quicksand', sans-serif; font-size: 12px; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.08em; color: #555555;
    }
    .vt-tags-pills { display: flex; flex-wrap: wrap; }
    .vt-tag {
      background: transparent; border: 1px solid #19AEB4; color: #19AEB4;
      border-radius: 20px; padding: 4px 12px; font-size: 12px;
      font-family: 'Quicksand', sans-serif; font-weight: 500;
      display: inline-block; margin: 4px 4px 4px 0;
    }

    /* Testimonial desktop: right column fills full image height with tightened spacing */
    @media (min-width: 769px) {
      .vt-grid { align-items: stretch; }
      .vt-content { display: flex; flex-direction: column; justify-content: flex-start; height: 100%; }
      .vt-content h2 { margin-bottom: 20px; }
      .vt-stats { margin-bottom: 0; }
      .vt-quote { margin-top: 24px; margin-bottom: 0; flex-grow: 0; }
      .vt-stars { margin-top: 28px; }
      .vt-tags { margin-top: 8px; }
      .vt-location { margin-top: 28px; margin-bottom: 0; }
    }

    /* Products Used Bar */
    .vt-products {
      display: flex; align-items: center; gap: 24px;
      padding-top: 24px; border-top: 1px dashed rgba(27,20,66,0.15);
    }
    .vt-products .lbl {
      font-family: 'Quicksand', sans-serif; font-size: 10.5px; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--muted);
    }
    .vt-products .list {
      display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
    }
    .vt-product {
      display: flex; align-items: center; gap: 10px;
    }
    .vt-product .p-icon {
      width: 48px; height: 48px; border-radius: 50%;
      border: 1.5px solid var(--teal); background: var(--cream);
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }
    .vt-product .p-icon img, .vt-product .p-icon svg {
      width: 70%; height: 70%; object-fit: contain; mix-blend-mode: multiply;
    }
    .vt-product .p-name {
      font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.3;
      max-width: 80px;
    }

    /* SHOP BY CATEGORY */
    .cats {
      display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;
      padding:32px 64px;
    }
    .cat {
      aspect-ratio:3/4; border-radius:8px; overflow:hidden;
      position:relative; padding:28px; color:#fff;
      display:flex; flex-direction:column; justify-content:space-between;
      cursor:pointer; transition:all 0.3s;
    }
    .cat:hover { transform:translateY(-4px); }
    .cat.c1 { background:linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%); }
    .cat.c2 { background:linear-gradient(160deg, var(--purple) 0%, var(--purple-deep) 100%); }
    .cat.c3 { background:linear-gradient(160deg, var(--hotpink) 0%, #C73F58 100%); }
    .cat.c4 { background:linear-gradient(160deg, var(--orange) 0%, #B85A1F 100%); }
    .cat .top { display:flex; justify-content:space-between; }
    .cat .num4 {
      font-family: 'Quicksand', sans-serif; font-size:11px;
      letter-spacing:0.16em; opacity:0.7;
    }
    .cat .arr { font-size:18px; opacity:0.7; }
    .cat h3 {
      font-family: 'Fira Sans Condensed', sans-serif; font-weight:600; font-size:36px;
      letter-spacing:-0.3px; line-height:1; margin:0;
    }
    .cat h3 em { font-style:italic; }
    .cat .count {
      font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase;
      opacity:0.65; margin-top:8px;
    }

    /* REVIEWS strip */
    .reviews {
      padding: 32px 64px;
      /* ORIGINAL: background: var(--cream-warm); — revert here to undo */
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
    }
    .reviews-grid {
      display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin-top:24px;
    }
    .review {
      padding:32px; background:var(--cream); border-radius:16px;
      border: none;
      border-top: 4px solid var(--teal);
      box-shadow: 0 20px 40px -10px rgba(15,46,48,0.08);
      display: flex; flex-direction: column;
      height: 100%;
    }
    .review .stars {
      color:var(--flash); font-size:16px; letter-spacing:2px; margin-bottom:18px;
      text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .review .head {
      font-family: 'Quicksand', sans-serif; font-weight:600; font-size:17px;
      letter-spacing:0; line-height:1.3; margin:0 0 12px;
    }
    .review p {
      font-size:13.5px; line-height:1.6; color:var(--muted);
      margin:0 0 24px; text-wrap:pretty; flex-grow: 1;
    }
    .review .by {
      font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase;
      color:var(--ink); padding-top:16px; border-top:1px dashed var(--line);
      display:flex; justify-content:space-between; align-items:center;
    }
    .review .reviewer-info {
      display: flex; align-items: center; gap: 10px;
    }
    .v2r-reviewer-photo { margin-bottom: 10px; }
    .v2r-reviewer-photo__img {
      width: 56px; height: 56px;
      border-radius: 50%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    .review .avatar {
      width: 32px; height: 32px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-deep));
      color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Quicksand', sans-serif;
      font-size: 16px; font-weight: 500; font-style: normal;
    }
    .review .by .verify { color: #145D62; font-weight: 600; }

    /* Flip card (v2r- prefix) */
    .v2r-flip-card {
      perspective: 1000px;
      cursor: pointer;
      aspect-ratio: 3/4;
      height: auto;
    }
    .v2r-flip-card__inner {
      position: relative;
      width: 100%; height: 100%;
      transition: transform 0.6s ease;
      transform-style: preserve-3d;
    }
    .v2r-flip-card.is-flipped .v2r-flip-card__inner {
      transform: rotateY(180deg);
    }
    .v2r-flip-card__front,
    .v2r-flip-card__back {
      position: absolute;
      width: 100%; height: 100%;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 16px;
      overflow: hidden;
    }
    .v2r-flip-card__front {
      background: #f5f5f5;
    }
    .v2r-flip-card__photo {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    .v2r-flip-card__photo-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #1a6b6b, #2a9d8f);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fira Sans Condensed', sans-serif;
      font-size: 64px; font-weight: 600; color: #fff;
    }
    .v2r-flip-card__hint {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 12px;
      background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
      color: #fff;
      font-family: 'Quicksand', sans-serif;
      font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
      text-align: center; text-transform: uppercase;
    }
    /* Back face: rotated 180deg; dual-classed with .review for content styles */
    .v2r-flip-card__back {
      transform: rotateY(180deg);
      padding: 24px;
      display: flex; flex-direction: column; justify-content: space-between;
      border: 1.5px solid #e0f0ee;
    }

    /* Auto-flip dot indicators */
    .v2r-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .v2r-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ccc;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .v2r-dot.is-active {
      background: #19AEB4;
      transform: scale(1.3);
    }

    /* ——— Hide Judge.me sticky reviews tab on homepage ——— */
    /* Exact classes confirmed via DevTools inspection */
    body.template-index section.jdgm-widget.jdgm-revs-tab,
    body.template-index .jdgm-revs-tab,
    body.template-index .jdgm-revs-tab-btn,
    body.template-index [class*="jdgm-revs-tab"] {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }


    /* ——— Hide native Prestige and third-party sticky/floating Add to Cart on homepage ——— */
    /* Support both standard template-index and abbreviated body classes (.index, .tem-index) */
    body.template-index .Product__StickyForm,
    body.index .Product__StickyForm,
    body.tem-index .Product__StickyForm,
    body.template-index [class*="Product__Sticky"],
    body.index [class*="Product__Sticky"],
    body.tem-index [class*="Product__Sticky"],
    body.template-index [id*="ProductSticky"],
    body.index [id*="ProductSticky"],
    body.tem-index [id*="ProductSticky"],
    body.template-index [class*="sticky-atc"],
    body.index [class*="sticky-atc"],
    body.tem-index [class*="sticky-atc"],
    body.template-index [id*="sticky-atc"],
    body.index [id*="sticky-atc"],
    body.tem-index [id*="sticky-atc"],
    body.template-index [class*="sticky-buy"],
    body.index [class*="sticky-buy"],
    body.tem-index [class*="sticky-buy"],
    body.template-index [class*="StickyForm"],
    body.index [class*="StickyForm"],
    body.tem-index [class*="StickyForm"],
    body.template-index [id*="StickyForm"],
    body.index [id*="StickyForm"],
    body.tem-index [id*="StickyForm"],
    body.template-index .floating-atc,
    body.index .floating-atc,
    body.tem-index .floating-atc,
    body.template-index .sticky-atc-bar,
    body.index .sticky-atc-bar,
    body.tem-index .sticky-atc-bar,
    /* Exact class identifiers confirmed via DevTools screenshot */
    body.template-index .StickyATCBar,
    body.index .StickyATCBar,
    body.tem-index .StickyATCBar,
    body.template-index .StickyATCButton,
    body.index .StickyATCButton,
    body.tem-index .StickyATCButton {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }


    /* FOOTER */
    footer {
      background:var(--ink); color:var(--cream); padding:32px 64px 40px;
    }
    .ft-top {
      display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;
      gap:24px; margin-bottom:80px;
    }
    .ft-top .brand h3 {
      font-family: 'Fira Sans Condensed', sans-serif; font-weight:600; font-size:42px;
      letter-spacing:-0.3px; line-height:1; margin:0 0 18px;
    }
    .ft-top .brand h3 em { font-style:italic; color:var(--terra); }
    .ft-top .brand p { font-size:14px; line-height:1.6; color:rgba(250,246,238,0.6); max-width:320px; margin-bottom:24px; }
    .newsletter {
      display:flex; align-items:center; padding:6px 6px 6px 16px;
      border-radius:999px; background:rgba(250,246,238,0.08); max-width:380px;
    }
    .newsletter input {
      flex:1; background:transparent; border:none; outline:none;
      color:var(--cream); font-size:13.5px; padding:10px 0;
      font-family: 'Quicksand', sans-serif;
    }
    .newsletter input::placeholder { color:rgba(250,246,238,0.4); }
    .newsletter .sub-btn {
      background:var(--cream); color:var(--ink); border:none;
      padding:10px 18px; border-radius:999px;
      font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase;
      font-weight:500; cursor:pointer; font-family: 'Quicksand', sans-serif;
    }
    .ft-col h4 {
      font-family: 'Quicksand', sans-serif; font-size:11px;
      letter-spacing:0.2em; text-transform:uppercase; color:rgba(250,246,238,0.45);
      margin:0 0 18px; font-weight:400;
    }
    .ft-col a {
      display:block; color:var(--cream); text-decoration:none; font-size:13.5px;
      padding:5px 0; opacity:0.85;
    }
    .ft-col a:hover { color:var(--terra); }
    .ft-bottom {
      display:flex; justify-content:space-between; align-items:center;
      padding-top:32px; border-top:0.5px solid rgba(250,246,238,0.15);
      font-family: 'Quicksand', sans-serif; font-size:10.5px;
      letter-spacing:0.16em; text-transform:uppercase; color:rgba(250,246,238,0.45);
    }

    /* Tweaks panel */
    .tweaks-panel {
      position:fixed; right:16px; bottom:16px; width:280px; z-index:1000;
      background:var(--ink); color:var(--cream); border-radius:14px; padding:18px;
      font-family: 'Quicksand', sans-serif; font-size:12px;
      box-shadow:0 30px 60px -20px rgba(0,0,0,0.4); display:none;
    }
    .tweaks-panel.open { display:block; }
    .tweaks-panel h3 { margin:0 0 14px; font-size:11px; letter-spacing:0.22em; text-transform:uppercase; color:var(--terra); font-weight:500;}
    .tweaks-panel label { display:block; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:rgba(250,246,238,0.5); margin:14px 0 7px; }
    .tweaks-panel .group { display:flex; gap:5px; }
    .tweaks-panel .group button {
      flex:1; padding:8px; border-radius:7px; background:rgba(250,246,238,0.06);
      color:var(--cream); border:0.5px solid rgba(250,246,238,0.12);
      font:inherit; font-size:11px; cursor:pointer;
    }
    .tweaks-panel .group button.active { background:var(--terra); color:var(--ink); border-color:var(--terra); }
    .tweaks-panel .note { font-size:11px; color:rgba(250,246,238,0.5); line-height:1.5; margin-top:14px; }

    /* MARQUEE QUOTES */
    .mq-section {
      /* ORIGINAL: background: var(--cream-warm); — revert here to undo */
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
      padding: 32px 0 32px;
      overflow: hidden;
    }
    .mq-header {
      text-align: center;
      padding: 0 24px;
      margin-bottom: 24px;
    }
    .mq-header .num {
      font-family: 'Quicksand', sans-serif;
      font-size: 16px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink); margin-bottom: 16px;
    }
    .mq-header h2 {
      font-family: 'Fira Sans Condensed', sans-serif;
      font-size: 48px; font-weight: 600; letter-spacing: -0.3px;
      color: var(--ink); margin: 0; line-height: 1.1;
    }
    .mq-header h2 em { color: #145D62; font-style: italic; }

    /* WhatsApp chat windows (mqc- prefix isolates from all other sections) */
    .mqc-data { display: none; }

    .mqc-windows-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 0 32px;
    }
    .mqc-window {
      position: relative;
      min-width: 0;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      overflow: hidden;
      height: 280px;
      background-color: #f0ebe3;
    }
    .mqc-window::before,
    .mqc-window::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 64px;
      z-index: 2;
      pointer-events: none;
    }
    .mqc-window::before {
      top: 0;
      background: linear-gradient(to bottom, #f0ebe3, transparent);
    }
    .mqc-window::after {
      bottom: 0;
      background: linear-gradient(to top, #f0ebe3, transparent);
    }
    .mqc-scroll-track {
      display: flex;
      flex-direction: column;
      padding: 12px 10px;
      animation: mqcScrollUp 18s linear infinite;
    }
    .mqc-window:hover .mqc-scroll-track {
      animation-play-state: paused;
    }
    .mqc-window:nth-child(1) .mqc-scroll-track { animation-duration: 18s; }
    .mqc-window:nth-child(2) .mqc-scroll-track { animation-duration: 22s; }
    .mqc-window:nth-child(3) .mqc-scroll-track { animation-duration: 20s; }
    @keyframes mqcScrollUp {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    .mqc-msg-wrap {
      max-width: 82%;
      margin-bottom: 10px;
      flex-shrink: 0;
    }
    .mqc-sender-name {
      font-family: 'Quicksand', sans-serif;
      font-size: 11px;
      font-weight: 600;
      margin-bottom: 2px;
      padding-left: 34px;
    }
    .mqc-bubble-row {
      display: flex;
      align-items: flex-end;
      gap: 6px;
    }
    .mqc-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Quicksand', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      flex-shrink: 0;
    }
    .mqc-bubble {
      background: #fff;
      border-radius: 0 10px 10px 10px;
      padding: 8px 12px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.15);
      min-width: 0;
    }
    .mqc-bubble-text {
      font-family: 'Quicksand', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #111;
      line-height: 1.5;
      margin: 0;
    }

    .mq-footer {
      text-align: center;
      padding: 40px 24px 64px;
      max-width: 640px;
      margin: 0 auto;
    }
    .mq-footer p {
      font-size: 18px; line-height: 1.5; color: var(--ink); margin: 0 0 24px; text-wrap: pretty;
    }

    /* FEATURED IN LOGOS */
    .fi-section {
      padding: 48px 0;
      /* ORIGINAL: background: var(--cream-warm); — revert here to undo */
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
      border-top: 1px solid var(--line);
    }
    .fi-head h2 {
      font-family: 'Quicksand', sans-serif; text-align: center; font-size: 20px;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 32px;
    }
    .fi-wrap { overflow: hidden; white-space: nowrap; width: 100vw; }
    .v2fi-track-wrapper { overflow: hidden; white-space: nowrap; width: 100vw; }
    .v2fi-track { display: inline-flex; width: max-content; }
    .v2fi-inner { display: inline-flex; }
    .v2fi-track.v2fi-scroll-left { animation: v2fiScrollLeft 40s linear infinite; }
    .v2fi-track:hover { animation-play-state: paused; }
    @keyframes v2fiScrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }
    .fi-logo {
      display: inline-flex; align-items: center; justify-content: center;
      width: 200px; height: 80px; padding: 0 32px;
    }
    .fi-logo img, .fi-logo svg {
      max-width: 100%; max-height: 100%; object-fit: contain;
    }
    .placeholder-box {
      width: 100%; height: 100%; background: rgba(0,0,0,0.05); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase;
    }

    /* ==========================================================================
       BEST SELLERS SECTION
       ========================================================================== */
    .bs-section {
      padding: 32px 24px;
      /* ORIGINAL: background: var(--cream-warm); — revert here to undo */
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
      border-bottom: 1px solid var(--line);
    }
    .bs-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 24px;
    }
    .bs-eyebrow {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
      color: #145D62; margin-bottom: 8px; font-weight: 500;
    }
    .bs-eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%; background: #145D62; flex-shrink: 0;
    }
    .bs-heading {
      font-size: 26px; font-weight: 600; letter-spacing: -0.5px;
      color: var(--ink); margin: 0; line-height: 1.15;
    }
    .bs-see-all {
      font-size: 12px; color: #145D62; text-decoration: none;
      letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
      border: 1.5px solid #145D62; border-radius: 999px;
      padding: 7px 18px; white-space: nowrap; flex-shrink: 0;
      transition: background 0.2s, color 0.2s;
    }
    .bs-see-all:hover { background: #145D62; color: #fff; }

    /* Card Grid — desktop: 4 visible, rest scroll horizontally */
    .bs-grid-wrapper {
      position: relative;
    }
    .bs-nav-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: #fff; border: 1px solid var(--line);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: none; align-items: center; justify-content: center;
      cursor: pointer; z-index: 10; color: #145D62;
      transition: all 0.2s ease;
    }
    .bs-nav-btn:hover { background: #F0FAFA; color: #024F59; transform: translateY(-50%) scale(1.05); }
    .bs-nav-prev { left: -16px; }
    .bs-nav-next { right: -16px; }
    
    @media (min-width: 769px) {
      .bs-grid-wrapper:hover .bs-nav-btn { display: flex; }
    }

    .bs-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 12px;
      padding-bottom: 8px;
    }
    .bs-grid::-webkit-scrollbar { display: none; }
    .bs-card {
      flex: 0 0 calc(25% - 9px);
      scroll-snap-align: start;
      min-width: 0;
      background: var(--cream); border-radius: 10px;
      border: 1px solid var(--line);
      overflow: hidden; color: inherit;
      display: flex; flex-direction: column;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      position: relative;
    }
    .bs-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 28px -8px rgba(20,93,98,0.13);
    }

    /* Top label badge */
    .bs-top-label {
      position: absolute; top: 10px; left: 10px; z-index: 3;
      background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
      font-size: 9.5px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--ink);
      padding: 4px 9px; border-radius: 999px;
      border: 1px solid var(--line);
      display: flex; align-items: center; gap: 4px;
    }
    .bs-top-label-icon { color: var(--hotpink); font-size: 11px; }

    /* Image block */
    .bs-card-img-link { display: block; text-decoration: none; position: relative; }
    .bs-card-img {
      aspect-ratio: 1/1; overflow: hidden; background: var(--paper);
      display: flex; align-items: center; justify-content: center; padding: 10px;
    }
    .bs-card-img img, .bs-card-img svg {
      width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply;
      transition: transform 0.4s ease;
    }
    .bs-card:hover .bs-card-img img { transform: scale(1.04); }

    /* Dark strip at bottom of image */
    .bs-img-strip {
      background: var(--ink); color: var(--cream);
      font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
      text-align: center; padding: 6px 8px; text-transform: uppercase;
    }

    /* Card body */
    .bs-card-body {
      padding: 11px 13px 13px;
      display: flex; flex-direction: column; flex-grow: 1;
    }
    .bs-card-title-link { text-decoration: none; color: inherit; }
    .bs-card-title {
      font-size: 13px; font-weight: 500; line-height: 1.35;
      color: var(--ink); margin: 0 0 5px;
    }
    .bs-card-rating {
      display: flex; align-items: center; gap: 4px; margin-bottom: 6px;
    }
    .bs-stars { color: var(--yellow); font-size: 11px; letter-spacing: 1px; }
    .bs-rating-count { font-size: 10.5px; color: var(--muted); }
    .bs-price-row {
      display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px;
    }
    .bs-price-current { font-size: 14px; font-weight: 600; color: var(--ink); }
    .bs-price-compare { font-size: 11px; color: var(--muted); text-decoration: line-through; }
    .bs-card-desc {
      font-size: 11px; color: var(--muted); line-height: 1.5;
      margin: 0 0 10px; flex-grow: 1;
    }

    /* ATC button */
    .bs-atc-form { margin-top: auto; }
    .bs-atc-btn {
      display: block; width: 100%;
      background: #145D62; color: #fff;
      border: none; border-radius: 6px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 10px 0;
      cursor: pointer; font-family: 'Quicksand', sans-serif;
      transition: background 0.2s ease;
    }
    .bs-atc-btn:hover { background: #024F59; }

    /* Variant tile row */
    .bs-variant-row {
      display: flex;
      gap: 6px;
      overflow-x: auto;
      scrollbar-width: none;
      margin-bottom: 10px;
    }
    .bs-variant-row::-webkit-scrollbar { display: none; }
    .bs-variant-tile {
      position: relative;
      min-width: fit-content;
      padding: 6px 10px;
      min-height: 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border: 1.5px solid #e0e0e0;
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.15s ease, background 0.15s ease;
      flex-shrink: 0;
    }
    .bs-variant-tile.has-save { padding-top: 18px; }
    .bs-variant-tile.is-selected {
      border-color: #19AEB4;
      background: #F0FAFA;
    }
    .bs-variant-tile.is-soldout {
      opacity: 0.45;
      cursor: default;
    }
    .bs-variant-tile__label {
      font-family: 'Quicksand', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: #333;
      display: block;
      white-space: nowrap;
    }
    .bs-variant-tile__price {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: #19AEB4;
      display: block;
      white-space: nowrap;
    }
    .bs-variant-save {
      position: absolute;
      top: 3px;
      right: 3px;
      font-family: 'Quicksand', sans-serif;
      font-size: 9px;
      font-weight: 600;
      background: #19AEB4;
      color: #fff;
      border-radius: 4px;
      padding: 1px 4px;
      white-space: nowrap;
      line-height: 1.4;
    }


    /* Hero Slideshow — clickable slide link */
    .v2-hero__slide-link {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      position: relative;
    }
    .v2-hero__slide-link::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(25, 174, 180, 0.08);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 3;
    }
    .v2-hero__slide-link:hover::after {
      opacity: 1;
    }

    /* ==========================================================================
       MOBILE RESPONSIVENESS (Screens under 768px)
       ========================================================================== */
    @media (max-width: 768px) {
      /* Global */
      .frame { padding: 10px; }
      .browser { border-radius: 0; box-shadow: none; }
      .browser-bar, .url, .browser-tag { display: none; } /* Hide mockup bar on mobile */
      
      /* Nav */
      .util { flex-direction: column; padding: 8px 16px !important; text-align: center; gap: 6px; }
      .v2-hdr { padding: 0 14px; height: 56px; }
      .v2-hdr-right { gap: 6px; }
      .v2-hdr-icon { width: 30px; height: 30px; border-radius: 7px; }
      .v2-hdr-icon svg { width: 15px; height: 15px; }
      .v2-cart-badge { min-width: 14px; height: 14px; font-size: 9px; top: -4px; right: -4px; }
      .v2-search-overlay { padding: 12px 16px; }
      .v2-account-card { width: calc(100% - 48px); left: 24px; right: 24px; }
      .v2-drawer { width: 100vw; max-width: 320px; }
      .v2-drawer-top { height: 56px; padding: 0 18px; }
      .v2-drawer-link { font-size: 17px; padding: 16px 20px; }
      .v2-nav-group-toggle { font-size: 17px; padding: 16px 20px; }
      .v2-drawer .v2-nav-sublink { padding-left: 36px; min-height: 46px; font-size: 14px; }
      .v2-drawer-social { padding: 16px 18px 24px; }
      
      /* Hero */
      .hero { grid-template-columns: 1fr; max-height: 72vh; }
      .hero-left { padding: 24px 16px; text-align: center; }
      .eyebrow { justify-content: center; font-size: 10px; margin-bottom: 16px; }
      .hero h1 { font-size: 36px; line-height: 1.05; margin-bottom: 16px; letter-spacing: -0.3px; }
      .hero p.lede { margin: 0 auto 24px; font-size: 15px; }
      .hero .ctas { justify-content: center; flex-wrap: wrap; }
      .hero-stats { flex-direction: column; gap: 16px; padding-top: 16px; margin-top: 24px; text-align: center; }
      .hero-right { min-height: 400px; }
      .hero-img-main { inset: 16px 16px 40px 16px; }
      .hero-card { width: auto; left: 16px; right: 16px; bottom: 16px; padding: 12px; }

      /* Hero Slideshow — 60% of viewport below header, peeks next section */
      .v2-hero-slideshow {
        height: calc((100vh - var(--header-height, 60px)) * 0.6) !important;
        min-height: unset !important;
        max-height: unset !important;
        overflow: hidden;
        margin-bottom: 0;
      }
      .v2-hero-slideshow > div {
        height: calc((100vh - var(--header-height, 60px)) * 0.6) !important;
        max-height: unset !important;
      }
      .v2-hero-slideshow picture,
      .v2-hero-slideshow > div img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
      }
      .v2-hero__slide-link {
        height: 100%;
      }

      /* Sections General */
      section.s, .promise, .reviews, .testimonial { padding: 16px 16px !important; }
      .s-head { flex-direction: column; align-items: flex-start; margin-bottom: 24px; }
      .s-head .right { text-align: left; margin-top: 12px; max-width: 100%; }
      .s-head h2 { font-size: 28px; letter-spacing: -0.3px; }
      
      /* Discomfort Tabs & Grid (Moments) — mobile: swipeable flex scroll */
      .discomfort-tabs { padding-bottom: 8px; margin-bottom: 12px; }
      .discomfort-tab { font-size: 11px; font-weight: 600; padding: 6px 10px; }
      .moments-grid {
        display: none;
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 8px;
      }
      .moments-grid.active { display: flex; } /* flex on mobile only */
      .moment { flex: 0 0 60%; scroll-snap-align: start; }
      .moment .img { padding: 8px; }
      .moment .body { padding: 10px 12px 12px; }
      .moment .rating { margin-bottom: 5px; font-size: 10px; }
      .moment .rating .stars { font-size: 11px; }
      .moment h3 { font-size: 12px; }
      .moment .cta { padding: 5px 0; }
      .moment .cta .price { font-size: 12px; }
      .moment-atc-btn { font-size: 10px; padding: 7px 0; }
      
      /* Promise Carousel */
      .promise-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
        margin-top: 24px;
      }
      .promise-grid .item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 24px 20px;
      }
      .promise-grid::-webkit-scrollbar { display: none; }
      .promise-grid h3 { font-size: 24px; margin-bottom: 8px; }
      
      /* Featured Product */
      .featured { grid-template-columns: 1fr; padding: 24px 16px; gap: 32px; }
      .featured { display: flex; flex-direction: column-reverse; }
      .featured .rhs { width: 100%; }
      .featured .lhs h2 { font-size: 36px; margin-bottom: 16px; }
      .featured .lhs p { margin-bottom: 24px; }
      .featured .stats { grid-template-columns: 1fr; gap: 16px; }
      .featured .stats .num2 { font-size: 36px; }
      
      /* Video Testimonial */
      .vt-grid { grid-template-columns: 1fr; gap: 24px; }
      .vt-stats { flex-wrap: wrap; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; }
      .vt-stat { width: 45%; }
      .vt-stat.divider { display: none; }
      .vt-content h2 { font-size: 28px; margin-bottom: 16px; }
      .vt-quote { font-size: 15px; padding: 16px; }
      
      /* Categories Map */
      .cats { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px 40px; }
      .cat { padding: 16px; min-height: 160px; }
      .cat h3 { font-size: 20px; }
      
      /* Reviews Carousel */
      .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
        margin-top: 24px;
      }
      .review {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 20px;
      }
      /* Flip card: carousel item sizing on mobile */
      .v2r-flip-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: auto;
      }
      .reviews-grid::-webkit-scrollbar { display: none; }
      .review .head { font-size: 18px; margin-bottom: 8px; }
      .review p { font-size: 13px; margin-bottom: 16px; }
      
      /* Footer */
      footer { padding: 24px 16px 24px; }
      .ft-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
      .ft-top .brand { grid-row: 1; }
      .ft-top .brand h3 { font-size: 32px; margin-bottom: 12px; }
      .ft-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
      
      /* Marquee Quotes */
      .mq-section { padding: 24px 0 24px; }
      .mq-header { margin-bottom: 20px; }
      .mq-header .num { font-size: 14px; }
      .mq-header h2 { font-size: 28px; }
      .mqc-windows-grid { padding: 0 16px; gap: 0; grid-template-columns: 1fr; }
      .mqc-window { height: 240px; }
      .mqc-window:not(:first-child) { display: none; }
      .mqc-window:nth-child(1) .mqc-scroll-track { animation-duration: 20s; }
      .mq-footer { padding: 32px 24px 48px; }
      .mq-footer p { font-size: 16px; margin-bottom: 20px; }
      
      /* Featured In */
      .fi-section { padding: 32px 0; }
      .fi-head h2 { font-size: 14px; margin-bottom: 24px; }
      .fi-logo { width: 140px; height: 60px; padding: 0 16px; }

      /* Best Sellers */
      .bs-section { padding: 20px 16px; }
      .bs-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
      .bs-heading { font-size: 20px; }
      .bs-grid {
        display: flex; flex-wrap: nowrap;
        overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        margin-left: -16px; margin-right: -16px;
        padding-left: 16px; padding-right: 16px; padding-bottom: 8px;
      }
      .bs-grid::-webkit-scrollbar { display: none; }
      .bs-card { flex: 0 0 62%; scroll-snap-align: start; }
      .bs-card-body { padding: 10px 12px 12px; }
      .bs-card-title { font-size: 12.5px; }
      .bs-price-current { font-size: 13px; }
      .bs-atc-btn { font-size: 10.5px; padding: 8px 0; }
      .bs-variant-row { margin-bottom: 8px; }
      .bs-variant-tile { padding: 5px 8px; min-height: 36px; }
      .bs-variant-tile.has-save { padding-top: 16px; }
      .bs-variant-tile__label { font-size: 10px; }
      .bs-variant-tile__price { font-size: 11px; }
    }
    /* ==========================================================================
       BRAND STORY SECTION
       ======================================================================== */
    .story-section {
      padding: 56px 64px;
      background: linear-gradient(135deg, #F0FAFA 0%, #EAF5F5 100%);
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: stretch;
      width: 100%;
    }
    .story-grid.reverse { direction: rtl; }
    .story-grid.reverse > * { direction: ltr; }

    /* Dual-content show/hide — desktop vs mobile */
    .brand-story__heading--desktop,
    .brand-story__body--desktop { display: block; }
    .brand-story__heading--mobile,
    .brand-story__body--mobile { display: none; }

    /* Text column */
    .story-text { padding-right: 6%; position: relative; isolation: isolate; overflow: hidden; }
    .story-grid.reverse .story-text { padding-right: 0; padding-left: 6%; }
    /* Decorative opening quote — depth layer at 8% opacity, behind body text */
    .story-text::before {
      content: '\201C';
      position: absolute;
      top: -20px;
      left: -16px;
      font-size: 160px;
      font-family: 'Fira Sans Condensed', sans-serif;
      font-weight: 600;
      color: #19AEB4;
      opacity: 0.08;
      line-height: 1;
      z-index: -1;
      pointer-events: none;
      user-select: none;
    }
    .story-text h2 {
      font-family: 'Fira Sans Condensed', sans-serif;
      font-weight: 600;
      font-size: 48px;
      letter-spacing: -0.3px;
      line-height: 1.1;
      color: var(--ink);
      margin: 0;
    }
    .story-text h2 em { font-style: italic; color: #19AEB4; }
    .story-eyebrow {
      display: inline-block;
      font-family: 'Quicksand', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #19AEB4;
      border: 1.5px solid #19AEB4;
      border-radius: 999px;
      padding: 4px 14px;
      margin-bottom: 16px;
    }
    /* Decorative accent underline */
    .story-text h2::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: #19AEB4;
      margin-top: 16px;
    }
    .story-text p {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(27,20,66,0.72);
      margin: 16px 0 0;
      text-wrap: pretty;
    }
    /* Left-edge teal accent line on body text only — not heading or stats */
    .brand-story__body--desktop,
    .brand-story__body--mobile {
      border-left: 3px solid #19AEB4;
      padding-left: 20px;
    }
    /* Decorative dot divider between body text and stats */
    .story-dot-divider {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 28px 0;
    }
    .story-dot-divider::before {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, #19AEB4, transparent);
    }
    .story-dot-divider::after {
      content: '◆';
      color: #19AEB4;
      font-size: 10px;
      opacity: 0.5;
      flex-shrink: 0;
    }

    /* Trust stats row */
    .story-stats {
      display: flex;
      align-items: center;
      margin: 0 0 24px;
    }
    .story-stat { flex: 1; padding: 0 20px; }
    .story-stat:first-child { padding-left: 0; }
    .story-stat:last-child  { padding-right: 0; }
    .story-stat-divider {
      flex-shrink: 0;
      width: 1px;
      height: 40px;
      background: rgba(25,174,180,0.3);
    }
    .stat-number {
      font-family: 'Fira Sans Condensed', sans-serif;
      font-size: 26px;
      font-weight: 600;
      font-style: normal;
      color: #19AEB4;
      line-height: 1;
      letter-spacing: -0.5px;
      margin-bottom: 5px;
    }
    .stat-label {
      font-family: 'Quicksand', sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: rgba(27,20,66,0.52);
      letter-spacing: 0.04em;
      line-height: 1.3;
    }

    /* CTA button — premium hover */
    .story-text .btn {
      margin-top: 8px;
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .story-text .btn-primary:hover {
      background: #0e4a4e;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(20,93,98,0.3);
    }

    /* Image column — frameless, floats into section background */
    .story-image {
      position: relative;
      width: 100%;
      aspect-ratio: 4/5;
    }
    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      position: relative;
      z-index: 2;
    }

    /* ============================================================
       Product color swatches
       ============================================================ */

    /* Map swatch label names to colors */
    .ColorSwatch[data-tooltip="Nude"],
    label.ColorSwatch[data-tooltip="Nude"] {
      background-color: #E8C4A0 !important;
    }

    .ColorSwatch[data-tooltip="Caramel"],
    label.ColorSwatch[data-tooltip="Caramel"] {
      background-color: #6B3A2A !important;
    }

    .ColorSwatch[data-tooltip="NUDE + CARAMEL"],
    label.ColorSwatch[data-tooltip="NUDE + CARAMEL"] {
      background: linear-gradient(
        135deg,
        #E8C4A0 50%,
        #6B3A2A 50%
      ) !important;
    }

    /* Swatch size and shape */
    .ColorSwatch.ColorSwatch--large {
      width: 36px !important;
      height: 36px !important;
      border-radius: 50% !important;
      border: 1.5px solid #ddd !important;
      cursor: pointer !important;
      transition: transform 0.2s ease,
                  box-shadow 0.2s ease !important;
    }

    /* Suppress square outline — all swatch elements, all states */
    .ColorSwatchList .HorizontalList__Item,
    .ColorSwatchList .HorizontalList__Item.is-selected,
    .ColorSwatchList .HorizontalList__Item input,
    .ColorSwatchList .HorizontalList__Item input:checked,
    .ColorSwatchList .HorizontalList__Item input:focus,
    .ColorSwatchList .HorizontalList__Item input:focus-visible,
    .ColorSwatchList label,
    .ColorSwatch,
    .ColorSwatch:focus,
    .ColorSwatch:focus-visible,
    .ColorSwatch--large,
    .ColorSwatch--large:focus,
    .ColorSwatch--large:focus-visible {
      outline: none !important;
      box-shadow: none !important;
      border-radius: 50% !important;
    }

    /* Selected state — clean circular border only, no double ring */
    .ColorSwatch__Radio:checked + .ColorSwatch.ColorSwatch--large {
      border-color: #145D62 !important;
      border-width: 2.5px !important;
      box-shadow: none !important;
      transform: scale(1.1) !important;
      outline: none !important;
    }

    /* Hover state */
    .ColorSwatch.ColorSwatch--large:hover {
      transform: scale(1.1) !important;
      border-color: #19AEB4 !important;
    }

    /* Label above swatches showing selected value */
    .ProductForm__OptionName {
      font-family: 'Quicksand', sans-serif !important;
      font-size: 12px !important;
      font-weight: 600 !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
      color: #333 !important;
    }
      mix-blend-mode: multiply;
    }
    /* Soft organic blob — branded halo, stays within section bounds */
    .story-image::before {
      content: '';
      position: absolute;
      width: 96%;
      height: 105%;
      background: #19AEB4;
      border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
      top: 44%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0.10;
      z-index: 1;
      animation: morph 8s ease-in-out infinite both alternate;
    }
    @keyframes morph {
      0%   { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
      100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    }

    @media (min-width: 769px) {
      .story-text { display: flex; flex-direction: column; justify-content: space-between; }
    }

    @media (max-width: 768px) {
      .story-section { padding: 16px 16px !important; }
      .story-grid { grid-template-columns: 1fr; gap: 24px; }
      .story-grid, .story-grid.reverse { direction: ltr; display: flex; flex-direction: column-reverse; }
      .story-text { text-align: left; padding-right: 0; padding-left: 0; }
      .story-text h2 { font-size: 36px; margin-bottom: 12px; }
      .story-text h2::after { margin-top: 12px; }
      .story-image { aspect-ratio: 1/1; }
      .story-stats { margin: 20px 0; }
      .story-stat { padding: 0 12px; }
      .story-stat:first-child { padding-left: 0; }
      .stat-number { font-size: 20px; }
      .stat-label { font-size: 10px; }
      /* Quote mark: reduce size on mobile to prevent clipping */
      .story-text::before { font-size: 100px; opacity: 0.06; top: -10px; left: -10px; }
      /* Body border: tighten left padding on narrow screens */
      .brand-story__body--desktop,
      .brand-story__body--mobile { padding-left: 14px; }
      /* Dot divider: tighten margin on mobile */
      .story-dot-divider { margin: 20px 0; }
      /* Dual-content: swap desktop → mobile on small screens */
      .brand-story__heading--desktop,
      .brand-story__body--desktop { display: none; }
      .brand-story__heading--mobile,
      .brand-story__body--mobile { display: block; }
      .brand-story__stats--hide-mobile { display: none; }
      .brand-story__cta--desktop-only { display: none; }
    }

/* Reelv Reels app override */
v27-reels {
  background: linear-gradient(135deg,
    #F0FAFA 0%, #EAF5F5 100%) !important;
  background-color: #F0FAFA !important;
}

.shopify-section:has(v27-reels) {
  background: linear-gradient(135deg,
    #F0FAFA 0%, #EAF5F5 100%) !important;
  background-color: #F0FAFA !important;
}

#shopify-section-apps {
  background: linear-gradient(135deg,
    #F0FAFA 0%, #EAF5F5 100%) !important;
  background-color: #F0FAFA !important;
}

/* Cross-sell strip */
.csp-strip {
  margin: 20px 0;
  padding: 0;
  background: transparent;
}

.csp-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #145D62;
  margin-bottom: 10px;
  padding: 0 4px;
}

/* Horizontal scroll container */
.csp-products {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.csp-products::-webkit-scrollbar {
  display: none;
}

/* Each card — horizontal layout
   show 1 full card + peek of next */
.csp-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #f8fdfd;
  border: 1px solid #d4eeee;
  border-radius: 10px;
  padding: 12px;
  min-height: 80px;
  position: relative;
}

/* Image — small square on left */
.csp-card__image-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.csp-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text info — center */
.csp-card__info {
  flex: 1;
  min-width: 0;
}

.csp-card__title {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1B1442;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.csp-card__price {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #145D62;
}

/* Plus button — right side */
.csp-card__form {
  flex-shrink: 0;
}

.csp-card__plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #145D62;
  color: #ffffff;
  border: none;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 0 2px 0;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.csp-card__plus:hover,
.csp-card__plus:active {
  background: #19AEB4;
}

/* Desktop — show 2 cards at once */
@media (min-width: 769px) {
  .csp-card {
    flex: 0 0 45%;
  }
}

/* Cross-sell nav arrows — desktop only */
.csp-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.csp-nav {
  display: none; /* hidden on mobile */
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d4eeee;
  color: #145D62;
  font-size: 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 0 2px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: background 0.2s ease,
              border-color 0.2s ease;
  flex-shrink: 0;
}

.csp-nav:hover {
  background: #145D62;
  color: #ffffff;
  border-color: #145D62;
}

.csp-nav:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Show arrows on desktop only */
@media (min-width: 769px) {
  .csp-nav {
    display: flex !important;
  }

  /* Constrain scroll area width on
     desktop so arrows are visible */
  .csp-slider-wrapper .csp-products {
    flex: 1;
    min-width: 0;
  }
}

/* ============================================================
   Product page — sticky gallery (v2 layout only)
   ============================================================ */

/* Outer wrapper: allow independent column heights so sticky
   can take effect. Default align-items: stretch makes both
   columns the same height as the container, which breaks sticky. */
.Product--v2layout .Product__Wrapper {
  align-items: flex-start !important;
}

/* Left image column — sticky at top of viewport.
   Capped at 100vh so the gallery never pushes below the fold.
   overflow:hidden clips anything that exceeds the cap. */
.Product--v2layout .Product__Gallery {
  position: sticky !important;
  top: 0 !important;
  align-self: flex-start !important;
  max-height: 100vh !important;
  overflow: hidden !important;
}



/* Mobile: disable sticky — single-column layout,
   gallery sits above info normally */
@media (max-width: 768px) {
  .Product--v2layout .Product__Wrapper {
    align-items: stretch !important;
  }
  .Product--v2layout .Product__Gallery {
    position: relative !important;
    top: auto !important;
    align-self: auto !important;
    max-height: none !important;
    overflow-y: visible !important;
  }
}

/* Mobile header — solid teal, restored */
@media (max-width: 768px) {
  .v2-hdr {
    position: sticky !important;
    top: 0 !important;
    background: #145D62 !important;
    z-index: 200 !important;
  }

  .v2-hdr svg path,
  .v2-hdr svg rect,
  .v2-hdr svg circle {
    stroke: #ffffff !important;
  }
}

/* Product page mobile — full bleed image */
@media (max-width: 768px) {
  .product__media img,
  .product-single__photo img,
  .product__media-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    aspect-ratio: unset !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   Product page mobile — hide thumbnails + dot indicators
   ============================================================ */

/* Hide thumbnail strip completely on mobile */
@media (max-width: 768px) {
  .Product__SlideshowNav--thumbnails {
    display: none !important;
  }
}

/* Dot indicators (injected by JS on mobile) */
@media (max-width: 768px) {
  .prd-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 10px 0 !important;
  }

  .prd-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #ccc !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }

  /* Active dot — elongated pill in brand teal */
  .prd-dot.is-active {
    background: #145D62 !important;
    width: 18px !important;
    border-radius: 3px !important;
  }

  /* Old tap zones retired — hidden as safety net */
  .prd-tap-zone,
  .prd-tap-left,
  .prd-tap-right {
    display: none !important;
  }

  /* Arrow navigation buttons */
  .prd-arrow {
    position: absolute !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18) !important;
    cursor: pointer !important;
    font-size: 26px !important;
    line-height: 1 !important;
    color: #145D62 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 0 2px 0 !important;
    transition: opacity 0.2s ease !important;
  }

  .prd-arrow:hover,
  .prd-arrow:active {
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2) !important;
  }

  .prd-arrow-left {
    left: 10px !important;
  }

  .prd-arrow-right {
    right: 10px !important;
  }
}

/* Product image full width on mobile */
@media (max-width: 768px) {
  .Product--v2layout .Product__Gallery {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Judge.me Reviews button restyle */

/* Hide the floating trigger button completely */
.jdgm-revs-tab-btn {
  display: none !important;
}

/* Reviews panel wrapper — keep as is, just ensure it opens correctly */
.jdgm-revs-tab__wrapper {
  z-index: 999 !important;
}

/* Variant gallery filter */
.Product__SlideItem[data-filtered="hide"] {
  display: none !important;
}

/* Pack size card hiding — CSS-enforced so inline style resets cannot un-hide */
li.HorizontalList__Item[data-pack-blocked] {
  display: none !important;
  pointer-events: none !important;
}

/* --- Desktop Full-Bleed Product Layout (v2 layout only) ---
   Overrides theme.css rules that constrain the product image area.
   Only applies to templates with the 'design' name (secondary-design-2-2).
*/
@media screen and (min-width: 1008px) {

  /* 1. Expand the outer section to full viewport width */
  .Product--v2layout {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-top: 0 !important;
    display: block !important;
  }

  /* 2. Make the wrapper a flex container so left and right columns sit side-by-side */
  .Product--v2layout .Product__Wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: row !important;
  }

  /* 3. Make the gallery (left column) take 55% and remove gaps */
  .Product--v2layout .Product__Gallery {
    width: 55% !important;
    max-width: 55% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* 4. Slideshow: remove max-width, cap height to leave room for thumbnails */
  .Product--v2layout .Product__Slideshow {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* 5. Cap Flickity's viewport so thumbnail strip (~110px) always fits below */
  .Product--v2layout .Product__Slideshow .flickity-viewport {
    max-height: calc(100vh - 110px) !important;
  }

  /* 6. Override the AspectRatio padding trick inside the slideshow. */
  .Product--v2layout .Product__Slideshow .AspectRatio,
  .Product--v2layout .Product__Slideshow .AspectRatio--withFallback {
    max-width: none !important;
    max-height: calc(100vh - 110px) !important;
    padding-bottom: 0 !important;
    height: calc(100vh - 110px) !important;
  }

  /* 7. Scale images to fit within the capped container. */
  .Product--v2layout .Product__Slideshow .AspectRatio img {
    object-fit: contain !important;
    object-position: center !important;
  }

  /* 8. Reposition the info panel to flow normally on the right side (45%) */
  .Product--v2layout .Product__InfoWrapper {
    position: relative !important;
    width: 45% !important;
    height: auto !important;
    right: auto !important;
    top: auto !important;
  }

  /* 9. Stop the right side from being sticky */
  .Product--v2layout .Product__Info {
    position: relative !important;
    top: auto !important;
    width: auto !important;
    max-width: 450px !important;
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  /* 10. Hide standard Flickity dots on desktop */
  .Product--v2layout .flickity-page-dots {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .Product--v2layout .Product__Info {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
}
