    :root {
      --ink: #272025;
      --muted: #6e5966;
      --cream: #fff7de;
      --pink: #ffd6e9;
      --hot: #ff5aa8;
      --mint: #bff3dc;
      --lemon: #fff07a;
      --sky: #bfe7ff;
      --lilac: #d9c6ff;
      --peach: #ffc29b;
      --white: #fffdf7;
      --line: rgba(39, 32, 37, .18);
      --shadow: 0 18px 38px rgba(112, 61, 93, .18);
      --radius: 28px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    img { max-width: 100%; }

    /* ---------- Shared chrome (matches homepage) ---------- */
    .announcement {
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .announcement-track {
      display: inline-flex;
      width: max-content;
      padding: 10px 0;
      animation: announce 30s linear infinite;
    }

    .announcement-track span { margin-right: 28px; }
    @keyframes announce { to { transform: translateX(-33.3333%); } }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 18px;
      padding: 16px clamp(16px, 3vw, 44px);
      background: rgba(255, 247, 222, .88);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
    }

    .nav-links, .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-actions { justify-content: flex-end; }
    .nav a { font-size: 13px; font-weight: 900; text-transform: uppercase; }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: clamp(132px, 18vw, 210px);
      line-height: 1;
    }
    .brand img { display: block; width: 100%; height: auto; }

    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 18px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--white);
      box-shadow: 3px 3px 0 var(--ink);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .pill:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

    h1, h2, h3, p { margin-top: 0; }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 24px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--ink);
      color: var(--white);
      font-weight: 1000;
      text-transform: uppercase;
      box-shadow: 4px 4px 0 var(--hot);
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--hot); }
    .button.secondary { background: var(--white); color: var(--ink); box-shadow: 4px 4px 0 var(--mint); }
    .button.block { width: 100%; }
    .button.lg { min-height: 62px; font-size: clamp(16px, 2vw, 20px); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 14px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--mint);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 3px 3px 0 var(--ink);
    }

    .section { padding: clamp(46px, 7vw, 86px) clamp(16px, 5vw, 78px); }
    .section-header { margin-bottom: 30px; text-align: center; }
    .section-header h2 { margin: 0 auto 12px; font-size: clamp(34px, 5.4vw, 72px); line-height: .92; max-width: 16ch; }
    .section-header p { max-width: 56ch; margin: 0 auto; color: var(--muted); font-weight: 800; line-height: 1.4; }

    /* ---------- Image placeholder slot (for client-supplied images) ---------- */
    .img-slot {
      position: relative;
      display: grid;
      place-items: center;
      width: 100%;
      aspect-ratio: var(--ar, 1 / 1);
      padding: 20px;
      border: 2px dashed rgba(39, 32, 37, .4);
      border-radius: var(--radius);
      background:
        repeating-linear-gradient(45deg, rgba(39,32,37,.04) 0 12px, transparent 12px 24px),
        var(--white);
      color: var(--muted);
      text-align: center;
      overflow: hidden;
    }
    .img-slot img, .img-slot video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .img-slot .slot-meta { position: relative; display: grid; gap: 6px; font-weight: 900; }
    .img-slot .slot-meta .tagname {
      display: inline-block;
      margin: 0 auto;
      padding: 4px 12px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--lemon);
      color: var(--ink);
      font-size: 12px;
      text-transform: uppercase;
    }
    .img-slot .slot-meta .spec { font-size: 13px; letter-spacing: .02em; }
    .img-slot .slot-meta .desc { font-size: 12px; font-weight: 800; opacity: .8; max-width: 32ch; margin: 0 auto; }

    /* ---------- Breadcrumb ---------- */
    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 14px clamp(16px, 5vw, 78px);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 1px solid var(--line);
      background: var(--white);
    }
    .breadcrumb a:hover { color: var(--ink); }
    .breadcrumb span { opacity: .5; }

    /* ---------- Product hero / buy box ---------- */
    .pdp {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: clamp(24px, 4vw, 56px);
      align-items: start;
      padding: clamp(28px, 4vw, 56px) clamp(16px, 5vw, 78px);
    }

    .gallery { position: sticky; top: 96px; display: grid; gap: 14px; }
    .gallery-main {
      position: relative;
      display: grid;
      place-items: center;
      aspect-ratio: 1 / 1;
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: var(--stage, var(--pink));
      box-shadow: 6px 6px 0 rgba(39, 32, 37, .16);
      overflow: hidden;
    }
    .gallery-main:before {
      content: "";
      position: absolute;
      inset: 22px;
      border: 2px dashed rgba(39, 32, 37, .22);
      border-radius: 999px;
    }
    .gallery-main img {
      position: relative;
      z-index: 1;
      width: 86%;
      height: 86%;
      object-fit: contain;
      filter: drop-shadow(12px 16px 0 rgba(39, 32, 37, .16));
      transition: transform .3s ease, opacity .25s ease;
      animation: floaty 5s ease-in-out infinite;
    }
    @keyframes floaty {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50% { transform: translateY(-14px) rotate(3deg); }
    }
    /* Hero video (shown in place of the main image when active) */
    .gallery-main #mainVideo {
      position: relative;
      z-index: 1;
      display: none;
      width: 88%;
      height: 88%;
      object-fit: cover;
      border: 2px solid var(--ink);
      border-radius: 22px;
      box-shadow: 10px 12px 0 rgba(39, 32, 37, .16);
    }
    .gallery-main.show-video #mainVideo { display: block; }
    .gallery-main.show-video #mainImg { display: none; }
    .thumb.video-thumb { padding: 0; overflow: hidden; }
    .thumb.video-thumb.is-active { box-shadow: 3px 3px 0 var(--hot); transform: translate(-1px, -1px); }
    .gallery-badge {
      position: absolute;
      z-index: 2;
      left: 16px;
      top: 16px;
      padding: 8px 14px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--lemon);
      font-size: 12px;
      font-weight: 1000;
      text-transform: uppercase;
      box-shadow: 3px 3px 0 var(--ink);
    }
    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 10px;
    }
    .thumb {
      position: relative;
      display: grid;
      place-items: center;
      aspect-ratio: 1 / 1;
      padding: 6px;
      border: 2px solid var(--ink);
      border-radius: 18px;
      background: var(--white);
      cursor: pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .thumb img { width: 84%; height: 84%; object-fit: contain; }
    .thumb.is-active { box-shadow: 3px 3px 0 var(--hot); transform: translate(-1px, -1px); }
    .thumb:hover { transform: translate(-1px, -1px); }

    /* Buy box */
    .buybox { display: grid; gap: 18px; }
    .rating { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 14px; }
    .rating .stars { color: var(--hot); font-size: 18px; letter-spacing: .06em; }
    .rating a { text-decoration: underline; text-underline-offset: 3px; color: var(--muted); }

    .buybox h1 { font-size: clamp(40px, 5.4vw, 68px); line-height: .9; margin: 0; }
    .buybox .subhead { color: var(--muted); font-weight: 800; font-size: 17px; line-height: 1.4; margin: 0; }

    .price-line { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
    .price-line .now { font-size: 34px; font-weight: 1000; }
    .price-line .was { font-size: 20px; font-weight: 800; color: var(--muted); text-decoration: line-through; }
    .price-line .save {
      padding: 4px 12px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--hot);
      color: var(--white);
      font-size: 13px;
      font-weight: 1000;
      text-transform: uppercase;
    }

    .field-label { font-size: 13px; font-weight: 1000; text-transform: uppercase; letter-spacing: .04em; }
    .field-label b { color: var(--hot); }

    .swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
    .swatch {
      width: 46px;
      height: 46px;
      border: 2px solid var(--ink);
      border-radius: 50%;
      background: var(--sw, #fff);
      cursor: pointer;
      box-shadow: 2px 2px 0 rgba(39, 32, 37, .25);
      transition: transform .15s ease;
    }
    .swatch.is-active { outline: 3px solid var(--ink); outline-offset: 3px; transform: scale(1.06); }

    /* Pack / offer tiers */
    .packs { display: grid; gap: 12px; margin-top: 6px; }
    .pack {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      border: 2px solid var(--ink);
      border-radius: 20px;
      background: var(--white);
      cursor: pointer;
      box-shadow: 4px 4px 0 rgba(39, 32, 37, .14);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .pack:hover { transform: translate(-1px, -1px); }
    .pack.is-active { background: var(--lemon); box-shadow: 5px 5px 0 var(--ink); }
    .pack .radio {
      width: 24px; height: 24px;
      border: 2px solid var(--ink);
      border-radius: 50%;
      display: grid; place-items: center;
      background: var(--white);
    }
    .pack.is-active .radio:after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--hot); }
    .pack .pack-name { display: block; font-weight: 1000; font-size: 17px; line-height: 1.1; }
    .pack .pack-sub { display: block; font-size: 12px; font-weight: 800; color: var(--muted); }
    .pack.is-active .pack-sub { color: var(--ink); }
    .pack .pack-price { display: grid; gap: 3px; justify-items: end; text-align: right; font-weight: 1000; }
    .pack .pack-price .pnow { font-size: 23px; line-height: 1; white-space: nowrap; }
    .pack .pack-price .pnow em { font-size: 11px; font-style: normal; font-weight: 900; color: var(--muted); }
    .pack.is-active .pack-price .pnow em { color: var(--ink); }
    .pack .pack-price .pmeta { display: flex; gap: 8px; font-size: 11px; font-weight: 900; color: var(--muted); white-space: nowrap; }
    .pack.is-active .pack-price .pmeta { color: var(--ink); }
    .pack .pack-price .pmeta s { text-decoration: line-through; opacity: .8; }
    .pack .flag {
      position: absolute;
      top: -12px;
      right: 16px;
      padding: 3px 12px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--hot);
      color: var(--white);
      font-size: 11px;
      font-weight: 1000;
      text-transform: uppercase;
      box-shadow: 2px 2px 0 var(--ink);
    }

    .stock-note {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 900;
      color: var(--ink);
    }
    .stock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 0 4px rgba(255,90,168,.25); animation: pulse 1.6s ease-in-out infinite; }
    @keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(255,90,168,0); } }
    .stock-bar { height: 12px; border: 2px solid var(--ink); border-radius: 999px; background: var(--white); overflow: hidden; }
    .stock-bar i {
      position: relative;
      display: block;
      height: 100%;
      width: 37%;
      overflow: hidden;
      background-image: repeating-linear-gradient(45deg, var(--hot) 0 8px, #ff7cbb 8px 16px);
      background-size: 22.63px 100%;
      animation: stock-stripes .6s linear infinite;
    }
    @keyframes stock-stripes { to { background-position: 22.63px 0; } }
    .stock-bar i::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .55) 50%, transparent 80%);
      transform: translateX(-100%);
      animation: stock-shine 2.4s ease-in-out infinite;
    }
    @keyframes stock-shine { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(240%); } }

    .assurances { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .assure {
      display: grid;
      gap: 4px;
      padding: 12px;
      border: 2px solid var(--ink);
      border-radius: 16px;
      background: var(--cream);
      text-align: center;
      font-size: 11px;
      font-weight: 900;
      line-height: 1.2;
    }
    .assure .ico { font-size: 22px; }

    .pay-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 12px; font-weight: 800; }
    .pay-chip { display: inline-flex; align-items: center; justify-content: center; height: 30px; padding: 0 9px; border: 2px solid var(--line); border-radius: 8px; background: var(--white); }
    .pay-chip svg { height: 16px; width: auto; display: block; }

    /* Free-shipping hint near the variant / pack picker */
    .ship-hint {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border: 2px dashed var(--ink);
      border-radius: 14px;
      background: var(--mint);
      font-size: 13px;
      font-weight: 1000;
      line-height: 1.25;
    }
    .ship-hint .ship-ico { font-size: 18px; }
    .ship-hint b { text-decoration: underline; text-underline-offset: 2px; }

    /* ---------- Marquee trust strip ---------- */
    .trust-strip {
      overflow: hidden;
      padding: 16px 0;
      white-space: nowrap;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--white);
      font-weight: 1000;
      text-transform: uppercase;
      font-size: 14px;
    }
    .trust-track {
      display: inline-flex;
      width: max-content;
      animation: marquee 45s linear infinite;
    }
    .trust-strip span { display: inline-flex; align-items: center; gap: 10px; margin-right: 34px; }

    /* ---------- Benefit grid ---------- */
    .benefits { background: var(--pink); }
    .benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .benefit {
      min-height: 210px;
      padding: 22px;
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: var(--bg, var(--cream));
      box-shadow: 5px 5px 0 rgba(39, 32, 37, .14);
    }
    .benefit-icon {
      display: grid; place-items: center;
      width: 62px; height: 62px;
      margin-bottom: 18px;
      border: 2px solid var(--ink);
      border-radius: 50%;
      background: var(--white);
      font-size: 30px;
    }
    .benefit h3 { margin-bottom: 8px; font-size: 26px; line-height: 1; }
    .benefit p { margin: 0; color: var(--muted); font-weight: 800; line-height: 1.4; }

    /* ---------- Feature rows (alternating image + copy) ---------- */
    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(24px, 4vw, 56px);
      align-items: center;
      margin-bottom: clamp(28px, 4vw, 48px);
    }
    .feature-row:nth-child(even) .feature-media { order: 2; }
    .feature-copy h3 { font-size: clamp(28px, 3.4vw, 46px); line-height: .96; margin-bottom: 14px; }
    .feature-copy p { color: var(--muted); font-weight: 800; font-size: 17px; line-height: 1.5; margin-bottom: 18px; }
    .feature-list { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
    .feature-list li { display: flex; gap: 10px; font-weight: 900; align-items: flex-start; }
    .feature-list li:before { content: "✓"; display: grid; place-items: center; flex: 0 0 auto; width: 24px; height: 24px; border: 2px solid var(--ink); border-radius: 50%; background: var(--mint); font-size: 13px; }

    /* ---------- Spec table ---------- */
    .specs { background: var(--sky); }
    .spec-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
    .spec-table { border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 6px 6px 0 rgba(39,32,37,.16); }
    .spec-table div { display: grid; grid-template-columns: 40% 60%; }
    .spec-table div + div { border-top: 2px solid var(--ink); }
    .spec-table dt, .spec-table dd { margin: 0; padding: 14px 18px; font-weight: 900; }
    .spec-table dt { background: var(--cream); text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }
    .spec-table dd { border-left: 2px solid var(--ink); }

    /* ---------- Reviews ---------- */
    .reviews { background: var(--lilac); }
    .review-summary {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 24px;
      align-items: center;
      max-width: 720px;
      margin: 0 auto 32px;
      padding: 22px;
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 5px 5px 0 rgba(39,32,37,.14);
    }
    .review-summary .big { text-align: center; }
    .review-summary .big b { display: block; font-size: 52px; line-height: 1; }
    .review-summary .big .stars { color: var(--hot); font-size: 18px; }
    .review-summary .big span { font-size: 12px; font-weight: 900; color: var(--muted); }
    .bars { display: grid; gap: 6px; }
    .bar-row { display: grid; grid-template-columns: 44px 1fr 40px; align-items: center; gap: 10px; font-size: 12px; font-weight: 900; }
    .bar-track { height: 10px; border: 2px solid var(--ink); border-radius: 999px; background: var(--cream); overflow: hidden; }
    .bar-track i { display: block; height: 100%; background: var(--hot); }

    .review-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
    .review-row .review { padding: 14px; gap: 8px; }
    .review-row .review .stars { font-size: 15px; }
    .review-row .review p { font-size: 12.5px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .review-row .review .who { font-size: 10px; }
    .review-row .verified { font-size: 9px; padding: 2px 6px; }
    .review {
      display: grid;
      gap: 12px;
      padding: 22px;
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 5px 5px 0 rgba(39, 32, 37, .14);
    }
    .review .stars { color: var(--hot); font-size: 18px; letter-spacing: .06em; }
    .review .r-photo { aspect-ratio: 1 / 1; }
    .review p { margin: 0; font-size: 16px; font-weight: 800; line-height: 1.4; }
    .review .who { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 900; color: var(--muted); text-transform: uppercase; }
    .verified { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border: 2px solid var(--ink); border-radius: 999px; background: var(--mint); color: var(--ink); font-size: 10px; }

    /* ---------- UGC gallery ---------- */
    .ugc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .ugc-grid .img-slot { --ar: 9 / 16; }
    .ugc-grid video {
      display: block;
      width: 100%;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: var(--ink);
      box-shadow: 5px 5px 0 rgba(39,32,37,.14);
    }

    /* ---------- Comparison ---------- */
    .compare { background: var(--white); }
    .compare-table { max-width: 760px; margin: 0 auto; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: 6px 6px 0 rgba(39,32,37,.16); }
    .compare-table .crow { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
    .compare-table .crow + .crow { border-top: 2px solid var(--ink); }
    .compare-table .cell { padding: 16px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
    .compare-table .cell + .cell { border-left: 2px solid var(--ink); justify-content: center; text-align: center; }
    .compare-table .chead { background: var(--ink); color: var(--white); text-transform: uppercase; font-size: 13px; }
    .compare-table .chead .us { background: var(--hot); }
    .compare-table .us-col { background: var(--lemon); }
    .yes { color: #1f9d55; font-size: 20px; }
    .no { color: #d64545; font-size: 20px; }

    /* ---------- Bundle upsell ---------- */
    .bundle { background: var(--lemon); }
    .bundle-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(24px, 4vw, 48px);
      align-items: center;
      padding: clamp(24px, 4vw, 44px);
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: var(--ink);
      color: var(--white);
      box-shadow: 8px 8px 0 var(--hot);
    }
    .bundle-inner h2 { color: var(--white); font-size: clamp(30px, 4vw, 52px); line-height: .95; }
    .bundle-inner p { color: rgba(255,253,247,.8); font-weight: 800; font-size: 17px; line-height: 1.45; }
    .bundle-inner .button { background: var(--white); color: var(--ink); box-shadow: 4px 4px 0 var(--mint); }
    .bundle-visual { border-radius: var(--radius); }

    /* ---------- FAQ ---------- */
    .faq { background: var(--mint); }
    .faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
    .faq-item { border: 2px solid var(--ink); border-radius: 20px; background: var(--white); overflow: hidden; box-shadow: 4px 4px 0 rgba(39,32,37,.14); }
    .faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 1000; font-size: 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:after { content: "+"; font-size: 26px; line-height: 1; transition: transform .2s ease; }
    .faq-item[open] summary:after { transform: rotate(45deg); }
    .faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-weight: 800; line-height: 1.5; }

    /* ---------- Guarantee ---------- */
    .guarantee { text-align: center; background: var(--pink); }
    .guarantee-card {
      max-width: 720px;
      margin: 0 auto;
      padding: clamp(28px, 5vw, 52px);
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 6px 6px 0 var(--ink);
    }
    .guarantee-seal {
      display: grid; place-items: center;
      width: 92px; height: 92px;
      margin: 0 auto 18px;
      border: 3px solid var(--ink);
      border-radius: 50%;
      background: var(--lemon);
      font-size: 40px;
      box-shadow: 4px 4px 0 var(--ink);
    }
    .guarantee-card h2 { font-size: clamp(30px, 4vw, 50px); line-height: .95; }
    .guarantee-card p { color: var(--muted); font-weight: 800; font-size: 17px; line-height: 1.5; max-width: 52ch; margin: 0 auto 24px; }

    /* ---------- Final CTA ---------- */
    .final-cta { text-align: center; background: var(--ink); color: var(--white); }
    .final-cta h2 { color: var(--white); font-size: clamp(38px, 6vw, 80px); line-height: .9; margin-bottom: 16px; }
    .final-cta p { color: rgba(255,253,247,.75); font-weight: 800; font-size: 18px; max-width: 48ch; margin: 0 auto 28px; }

    /* ---------- Sticky mobile buy bar ---------- */
    .sticky-buy {
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 40;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px clamp(14px, 4vw, 28px);
      background: rgba(255, 247, 222, .96);
      border-top: 2px solid var(--ink);
      backdrop-filter: blur(12px);
      transform: translateY(120%);
      transition: transform .3s ease;
    }
    .sticky-buy.show { transform: translateY(0); }
    .sticky-buy .sb-info { display: grid; }
    .sticky-buy .sb-info b { font-size: 15px; line-height: 1; }
    .sticky-buy .sb-info span { font-size: 12px; font-weight: 900; color: var(--muted); }
    .sticky-buy .button { min-height: 48px; }

    /* ---------- Footer (matches homepage) ---------- */
    .footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      padding: 26px clamp(16px, 5vw, 78px);
      background: var(--ink);
      color: rgba(255, 253, 247, .7);
      font-size: 13px;
      font-weight: 400;
    }
    .footer-legal strong,
    .footer a { font-weight: 500; }
    .footer-side {
      display: grid;
      align-content: start;
      justify-items: end;
      gap: 18px;
      margin-left: auto;
    }
    .footer-payments { display: block; }
    .payment-marks {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }
    .payment-icon {
      display: block;
      width: 48px;
      height: 30px;
      object-fit: contain;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
    .footer-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .footer-group + .footer-group { margin-left: 10px; padding-left: 18px; border-left: 1px solid rgba(255, 253, 247, .22); }
    .footer a { color: rgba(255, 253, 247, .82); }
    .footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

    /* ---------- Responsive ---------- */
    @media (max-width: 980px) {
      .nav { grid-template-columns: 1fr auto; }
      .nav-links { display: none; }
      .brand { justify-self: start; }
      .pdp { grid-template-columns: 1fr; }
      .gallery { position: static; }
      .benefit-grid { grid-template-columns: 1fr; }
      .feature-row { grid-template-columns: 1fr; }
      .feature-row:nth-child(even) .feature-media { order: 0; }
      .spec-wrap { grid-template-columns: 1fr; }
      .review-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .ugc-grid { grid-template-columns: repeat(2, 1fr); }
      .bundle-inner { grid-template-columns: 1fr; }
      .compare-table .crow { grid-template-columns: 1.2fr .9fr .9fr; }
      .sticky-buy { display: flex; }
    }
    @media (max-width: 620px) {
      .nav-actions .pill:first-child { display: none; }
      .assurances { grid-template-columns: 1fr; }
      .review-summary { grid-template-columns: 1fr; }
      .review-row { grid-template-columns: repeat(2, 1fr); }
      .ugc-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 82vw);
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
      }
      .ugc-grid .img-slot,
      .ugc-grid video { scroll-snap-align: start; }
      .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
      .footer-side {
        width: 100%;
        margin-left: 0;
        justify-items: start;
      }
      .payment-marks { justify-content: flex-start; }
    }
    @media (prefers-reduced-motion: reduce) {
      .gallery-main img, .announcement-track, .trust-track, .stock-bar i, .stock-bar i::after { animation: none; }
    }
