    :root {
      --midnight: #1b1214;
      --whisper: #fff0f7;
      --kiss: #ffeef5;
      --flirt: #ff7eb0;
      --primary: #ff2d78;
      --primary-dark: #d90048;
      --sale: #ff1757;
      --accent: #ff7eb0;
      --cloud: #ffffff;
      --muted: #8a7078;
      --line: #ffb8d4;
      --nude: #c9a99a;
      --linen: #e8d4c8;
      --success: #0da777;
      --max: 1440px;
      --r-sm: 16px;
      --r-md: 28px;
      --r-lg: 40px;
      --r-pill: 999px;
      --shadow: 0 20px 50px rgba(27, 18, 20, 0.08);
      --shadow-lg: 0 28px 60px rgba(27, 18, 20, 0.12);
      --font-display: "Fraunces", Georgia, serif;
      --font-body: "Lexend", system-ui, sans-serif;
    }

    :where(.liftaya-pdp), :where(.liftaya-pdp) * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    .liftaya-pdp {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.55;
      color: var(--midnight);
      background: var(--cloud);
      padding-bottom: 5rem;
      /* NOTE: do NOT set overflow-x here — it would make .liftaya-pdp a scroll
         container and break the gallery's viewport-relative position:sticky
         (pushing it ~5.5rem too low). The clip lives on body.single-product. */
    }
    :where(.liftaya-pdp) a { color: inherit; text-decoration: none; }
    :where(.liftaya-pdp) img { max-width: 100%; display: block; }

    /* Decorative blobs */
    .blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
    .blob--1 {
      width: clamp(200px, 35vw, 420px); height: clamp(200px, 35vw, 420px);
      background: radial-gradient(circle, var(--flirt) 0%, transparent 70%);
      top: -80px; right: -60px; opacity: 0.9;
    }
    .blob--2 {
      width: 280px; height: 180px; border-radius: 60% 40% 55% 45%;
      background: var(--primary); opacity: 0.1; bottom: 10%; left: -40px;
    }

    .section {
      position: relative;
      padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1rem, 4vw, 2rem);
      overflow: hidden;
    }
    .section > .wrap { position: relative; z-index: 1; }
    .section--white { background: var(--cloud); }
    .section--whisper { background: var(--whisper); }
    .section--kiss { background: var(--kiss); }
    .section--flirt { background: linear-gradient(165deg, var(--flirt) 0%, var(--kiss) 100%); }
    .section--dark { background: var(--midnight); color: #fff; }
    .section--dark .kicker { color: var(--accent); }
    .section--dark .lead { color: rgba(255,255,255,0.75); }
    .wrap { max-width: var(--max); margin: 0 auto; }

    .mock-tag {
      position: sticky; top: 0; z-index: 9999;
      padding: 0.45rem 1rem; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      text-align: center; color: #fff; background: #7c3aed;
    }
    .announce {
      background: var(--midnight); color: #fff; text-align: center;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 0.55rem 1rem;
    }

    .header {
      background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
      padding: 0.85rem clamp(1rem, 4vw, 2rem);
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; flex-wrap: wrap; position: sticky; top: 0; z-index: 100;
    }
    .logo__img { height: 34px; width: auto; display: block; }
    .nav {
      display: flex; flex-wrap: wrap; gap: 0.35rem 1rem;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    }
    .nav a { padding: 0.4rem 0.85rem; border-radius: var(--r-pill); transition: background 0.15s, color 0.15s; }
    .nav a:hover { background: var(--whisper); color: var(--primary); }
    .header-cta {
      padding: 0.55rem 1.1rem; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
      background: var(--primary); border-radius: var(--r-pill);
    }
    .header-cta:hover { background: var(--primary-dark); }

    .kicker {
      display: inline-flex; align-items: center; gap: 0.5rem; margin: 0 0 0.85rem;
      padding: 0.35rem 0.75rem; font-size: 0.62rem; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
      background: var(--cloud); border: 1px solid var(--line); border-radius: var(--r-pill);
    }
    .section--dark .kicker { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--accent); }

    .h-section {
      margin: 0 0 0.75rem; font-family: var(--font-display);
      font-size: clamp(1.85rem, 4.5vw, 3rem); font-weight: 600; line-height: 1.02;
    }
    .h-section em { font-style: italic; color: var(--primary); }
    .section--dark .h-section em { color: var(--accent); }
    .lead { font-size: 1.05rem; max-width: 36rem; color: var(--muted); line-height: 1.6; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      padding: 1rem 2rem; font-size: 0.75rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
      background: var(--midnight); border: none; border-radius: var(--r-pill);
      box-shadow: var(--shadow); cursor: pointer;
      transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
    }
    .btn:hover { transform: translateY(-2px); background: var(--primary); box-shadow: var(--shadow-lg); }
    .btn--primary { background: var(--primary); }
    .btn--block { width: 100%; }
    .btn--outline { color: var(--midnight); background: var(--cloud); border: 2px solid var(--line); }

    .ui-icon { display: block; }
    .center { text-align: center; }
    .center .lead { margin-left: auto; margin-right: auto; }
    .center .kicker { justify-content: center; }

    /* ===== Breadcrumb ===== */
    .breadcrumb {
      max-width: var(--max); margin: 0 auto;
      padding: 1rem clamp(1rem, 4vw, 2rem) 0;
      font-size: 0.75rem; color: var(--muted);
      display: flex; gap: 0.5rem; flex-wrap: wrap;
    }
    .breadcrumb a:hover { color: var(--primary); }
    .breadcrumb span[aria-hidden] { opacity: 0.5; }

    /* ===== PDP main grid ===== */
    .pdp {
      max-width: var(--max); margin: 0 auto;
      padding: 1.25rem clamp(1rem, 4vw, 2rem) 2rem;
      display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
    }
    @media (min-width: 900px) { .pdp { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); } }

    /* Gallery */
    /* NOTE: Kadence styles the bare `.gallery` class (WP gallery shortcode) as a
       multi-column grid. We raise specificity (.liftaya-pdp .gallery) and reset
       display/grid so our gallery stacks: full-width main image + thumbs below. */
    .liftaya-pdp .gallery {
      position: relative; display: block;
      grid-template-columns: none; grid-gap: 0; gap: 0; margin-bottom: 0;
    }
    @media (min-width: 900px) { .liftaya-pdp .gallery { position: sticky; top: 5.5rem; } }
    .gallery__main {
      position: relative; aspect-ratio: 1/0.85; border-radius: var(--r-lg);
      overflow: hidden; background: linear-gradient(160deg, var(--flirt), var(--kiss));
      border: 3px solid var(--cloud); box-shadow: var(--shadow-lg);
      display: flex; flex-direction: column;
    }
    .gallery__badge {
      position: absolute; top: 1rem; left: 1rem; z-index: 4;
      padding: 0.45rem 0.9rem; font-size: 0.6rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
      background: var(--sale); border-radius: var(--r-pill); box-shadow: var(--shadow);
    }
    .gallery__feat {
      position: absolute; z-index: 4; display: flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 0.85rem; font-size: 0.72rem; font-weight: 700;
      background: rgba(255,255,255,0.95); border-radius: var(--r-pill);
      box-shadow: var(--shadow); border: 1px solid var(--line);
    }
    .gallery__feat svg { width: 1.05rem; height: 1.05rem; color: var(--primary); flex-shrink: 0; }
    .gallery__feat--1 { top: 16%; right: 5%; }
    .gallery__feat--2 { top: 46%; left: 4%; }
    .gallery__feat--3 { bottom: 12%; right: 7%; }
    .gallery__thumbs {
      display: flex; flex-wrap: nowrap; gap: 0.6rem; margin-top: 0.75rem;
      overflow-x: auto; overflow-y: hidden; padding-bottom: 4px;
      scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
      scrollbar-width: thin; scrollbar-color: var(--line) transparent;
    }
    .gallery__thumbs::-webkit-scrollbar { height: 5px; }
    .gallery__thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
    .gallery__thumb {
      flex: 0 0 calc((100% - 5 * 0.6rem) / 6); scroll-snap-align: start;
      aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden;
      background: linear-gradient(160deg, var(--flirt), var(--kiss));
      border: 2px solid var(--line); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.55rem; font-weight: 700; color: var(--muted); transition: border-color 0.15s;
    }
    @media (max-width: 600px) { .gallery__thumb { flex-basis: calc((100% - 3 * 0.6rem) / 4); } }
    .gallery__thumb--active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(255,45,120,0.15); }
    .gallery__thumb { padding: 0; }
    .gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    /* Image fills the card; the feature strip below behaves like the home product card. */
    .gallery__img {
      display: block; flex: 1 1 0; min-height: 0;
      width: 100%; height: auto; object-fit: cover;
    }
    /* Feature strip on the main image — mirrors the home products-section card. */
    .gallery__feats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.45rem;
      padding: 0.85rem 0.6rem 1rem; background: var(--kiss);
      border-top: 1px solid rgba(255, 198, 218, 0.55); flex-shrink: 0;
    }
    .gallery__feat-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; }
    .gallery__feat-item .ui-icon { width: 1.5rem; height: 1.5rem; color: var(--primary); }
    .gallery__feat-item > div { display: flex; flex-direction: column; line-height: 1.12; }
    .gallery__feat-item strong { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.01em; color: var(--midnight); }
    .gallery__feat-item span { font-size: 0.6rem; color: var(--muted); }
    /* Collage (before/after) slides fill the whole frame — hide the feature strip
       so the image isn't cropped (collage matches the 1/0.85 frame exactly). */
    .gallery__main--bare .gallery__feats { display: none; }
    .ph {
      display: flex; align-items: center; justify-content: center; min-height: 100%;
      padding: 1.5rem; text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--muted);
    }

    /* Buy box */
    .buy__eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
    .pill-tag {
      padding: 0.3rem 0.7rem; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--primary); background: var(--whisper);
      border: 1px solid var(--line); border-radius: var(--r-pill);
    }
    .buy__title {
      margin: 0.25rem 0 0.4rem; font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 600; line-height: 1.02;
    }
    .buy__title sup { font-size: 0.4em; vertical-align: super; color: var(--muted); }
    /* Model name stays the big display; the SEO keyword phrase rides smaller + grey in the same H1. */
    .buy__title-kw { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
    @media (max-width: 640px) { .buy__title-kw { display: block; white-space: normal; margin-top: 0.15rem; } }
    .buy__rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; margin-bottom: 0.4rem; }
    .stars { color: var(--primary); letter-spacing: 0.08em; }
    .buy__rating a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
    .buy__promise { font-size: 1rem; color: var(--midnight); margin: 0.35rem 0 1.1rem; max-width: 32rem; }

    .price-row { display: flex; align-items: baseline; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 0.35rem; }
    .price-now { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--primary); }
    .price-was { text-decoration: line-through; color: var(--muted); font-size: 1.05rem; }
    .price-save {
      padding: 0.25rem 0.6rem; font-size: 0.68rem; font-weight: 800; color: #fff;
      background: var(--sale); border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: 0.04em;
    }
    .price-note { font-size: 0.78rem; color: var(--muted); margin: 0 0 1.25rem; }

    /* Tiered quantity offers */
    .opt-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 1.1rem 0 0.55rem; }
    .tiers { display: grid; gap: 0.6rem; }
    .tier {
      position: relative; display: flex; align-items: center; gap: 0.85rem;
      padding: 0.9rem 1rem; border: 2px solid var(--line); border-radius: var(--r-md);
      background: var(--cloud); cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s;
    }
    .tier:hover { border-color: var(--flirt); }
    .tier--active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,45,120,0.12); }
    .tier__radio {
      width: 1.15rem; height: 1.15rem; flex-shrink: 0; border-radius: 50%;
      border: 2px solid var(--line); position: relative;
    }
    .tier--active .tier__radio { border-color: var(--primary); }
    .tier--active .tier__radio::after {
      content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--primary);
    }
    .tier__main { flex: 1; }
    .tier__main strong { display: block; font-size: 0.98rem; }
    .tier__main small { color: var(--muted); font-size: 0.78rem; }
    .tier__flag {
      position: absolute; top: -10px; right: 14px; padding: 0.2rem 0.6rem;
      font-size: 0.56rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
      color: #fff; background: var(--midnight); border-radius: var(--r-pill);
    }
    .tier__price { text-align: right; }
    .tier__price .now { display: block; font-weight: 800; font-size: 1rem; color: var(--primary); }
    .tier__price .was { display: block; text-decoration: line-through; color: var(--muted); font-size: 0.74rem; }
    .tier__price .unit { display: block; font-size: 0.66rem; color: var(--success); font-weight: 700; }
    /* Inserts inside a package: thumbnail + name + occasion, so it's clear what's in the bundle. */
    .tier__inserts { display: flex; gap: 0.55rem; margin-top: 0.6rem; }
    .tier__inserts .ins { display: flex; flex-direction: column; align-items: center; width: 56px; text-align: center; }
    .tier__inserts .ins img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 7px rgba(27,18,20,0.16); background: var(--cloud); }
    .tier__inserts .ins b { font-size: 0.7rem; margin-top: 0.28rem; font-weight: 700; line-height: 1.1; }
    .tier__inserts .ins span { font-size: 0.6rem; color: var(--muted); line-height: 1.15; }
    .tier__save { display: inline-block; background: #eafaf2; color: var(--success); font-size: 0.68rem; font-weight: 800; padding: 0.12rem 0.45rem; border-radius: 6px; margin-top: 0.55rem; }

    /* Variant selectors */
    .swatches { display: flex; flex-wrap: wrap; gap: 0.55rem; }
    .swatch {
      display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem 0.5rem 0.5rem;
      border: 2px solid var(--line); border-radius: var(--r-pill); cursor: pointer;
      font-size: 0.8rem; font-weight: 600; background: var(--cloud); transition: border-color 0.15s;
    }
    .swatch:hover { border-color: var(--flirt); }
    .swatch--active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(255,45,120,0.12); }
    .swatch__dot { width: 1.25rem; height: 1.25rem; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08); }

    .sizes { display: flex; flex-wrap: wrap; gap: 0.55rem; }
    .size-btn {
      min-width: 4.5rem; padding: 0.6rem 0.85rem; border: 2px solid var(--line);
      border-radius: var(--r-sm); background: var(--cloud); cursor: pointer; text-align: center;
      font-weight: 700; font-size: 0.85rem; transition: border-color 0.15s;
    }
    .size-btn small { display: block; font-weight: 500; font-size: 0.66rem; color: var(--muted); }
    .size-btn:hover { border-color: var(--flirt); }
    .size-btn--active { border-color: var(--primary); background: var(--whisper); box-shadow: 0 0 0 2px rgba(255,45,120,0.12); }
    .size-link { margin-left: auto; font-size: 0.75rem; color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
    .opt-row { display: flex; align-items: center; }

    .info-banner {
      display: flex; gap: 0.65rem; align-items: flex-start;
      margin: 1.1rem 0; padding: 0.85rem 1rem; border-radius: var(--r-sm);
      background: var(--whisper); border: 1px solid var(--line); font-size: 0.82rem;
    }
    .info-banner svg { width: 1.15rem; height: 1.15rem; color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }
    .info-banner a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

    /* Inline size calculator (inside buy box) */
    .size-calc { background: var(--whisper); border: 1.5px solid var(--line); margin: 1rem 0 0; transition: background 0.15s, border-color 0.15s, box-shadow 0.15s; }
    .size-calc:not([open]):hover { background: var(--kiss); border-color: var(--flirt); box-shadow: 0 8px 18px rgba(255,45,120,0.14); }
    .size-calc > summary { font-size: 0.85rem; color: var(--primary); display: flex; align-items: center; justify-content: space-between; gap: 0.6rem 0.75rem; flex-wrap: wrap; }
    .size-calc > summary::after { display: none; }
    .size-calc__lead { display: inline-flex; align-items: center; gap: 0.5rem; }
    .size-calc__lead svg { width: 1.05rem; height: 1.05rem; }
    .size-calc__toggle {
      display: inline-flex; align-items: center; gap: 0.35rem; flex-shrink: 0;
      padding: 0.4rem 0.8rem; border-radius: var(--r-pill); background: var(--primary); color: #fff;
      font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
    }
    .size-calc__toggle svg { width: 0.85rem; height: 0.85rem; transition: transform 0.2s; }
    .size-calc[open] .size-calc__toggle svg { transform: rotate(180deg); }
    .size-calc .t-open { display: none; }
    .size-calc[open] .t-closed { display: none; }
    .size-calc[open] .t-open { display: inline; }
    .size-calc:not([open]):hover .size-calc__toggle { background: var(--primary-dark, #D90048); }
    .size-calc .calc-fields { margin-top: 0.85rem; margin-bottom: 0.5rem; }
    .size-calc .calc-result { margin-bottom: 0.85rem; }

    .buy-trust {
      display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: center;
      margin-top: 0.85rem; font-size: 0.75rem; font-weight: 600; color: var(--muted);
    }
    .buy-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
    .buy-trust svg { width: 0.95rem; height: 0.95rem; color: var(--success); }

    /* Accordion */
    :where(.liftaya-pdp) details {
      background: var(--cloud); border: 1px solid var(--line); border-radius: var(--r-sm);
      margin-bottom: 0.6rem; padding: 0.1rem 1.1rem; box-shadow: 0 4px 12px rgba(27,18,20,0.04);
    }
    :where(.liftaya-pdp) summary { font-weight: 700; cursor: pointer; padding: 0.9rem 0; list-style: none; }
    :where(.liftaya-pdp) summary::-webkit-details-marker { display: none; }
    :where(.liftaya-pdp) summary::after { content: "+"; float: right; font-size: 1.25rem; color: var(--primary); }
    :where(.liftaya-pdp) details[open] summary::after { content: "−"; }
    :where(.liftaya-pdp) details p, :where(.liftaya-pdp) details ul { font-size: 0.9rem; color: var(--muted); margin-top: 0; }
    .acc-wrap { margin-top: 1.5rem; }

    /* Trust strip */
    .trust-strip {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
      gap: 0.6rem 1.5rem; padding: 1.1rem clamp(1rem, 4vw, 2rem);
      background: var(--whisper); border-block: 1px solid var(--line);
      font-size: 0.82rem; font-weight: 600; color: var(--muted);
    }
    .trust-strip span { display: inline-flex; align-items: center; gap: 0.5rem; }
    .trust-strip svg { width: 1.15rem; height: 1.15rem; color: var(--primary); }
    .trust-strip strong { color: var(--midnight); }

    /* Press strip (compact band + marquee, same mechanism as home .logobar) */
    .press-section { padding-block: clamp(0.75rem, 1.8vw, 1.1rem); background: var(--whisper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .press-section .kicker { margin-bottom: 0.55rem; background: var(--cloud); }
    .press-marquee { position: relative; overflow: hidden; }
    .press-marquee::before, .press-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
    .press-marquee::before { left: 0; background: linear-gradient(90deg, var(--whisper), transparent); }
    .press-marquee::after { right: 0; background: linear-gradient(270deg, var(--whisper), transparent); }
    .press-marquee__track { display: flex; width: max-content; gap: 3.25rem; align-items: center; animation: logoscroll 34s linear infinite; }
    .press-marquee:hover .press-marquee__track { animation-play-state: paused; }
    .press-marquee__track span {
      font-family: var(--font-display); font-weight: 600; font-size: clamp(0.95rem, 1.7vw, 1.2rem);
      color: var(--midnight); white-space: nowrap; opacity: 0.5; letter-spacing: 0.05em; text-transform: uppercase;
      transition: opacity 0.2s;
    }
    .press-marquee:hover .press-marquee__track span { opacity: 0.42; }
    @keyframes logoscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (prefers-reduced-motion: reduce) {
      .press-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .press-marquee__track { animation: none; }
    }

    /* Occasion tabs */
    .pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.5rem; }
    .pill {
      padding: 0.65rem 1.25rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
      border-radius: var(--r-pill); background: var(--cloud); border: 2px solid var(--line);
      box-shadow: var(--shadow); cursor: pointer; transition: transform 0.15s, border-color 0.15s, background 0.15s;
    }
    .pill:hover { transform: translateY(-3px); border-color: var(--primary); background: var(--flirt); }
    .pill--active { background: var(--midnight); color: #fff; border-color: var(--midnight); }
    .action-stage { margin-top: 2rem; display: grid; gap: clamp(1.25rem, 3vw, 2rem); align-items: center; text-align: left; }
    @media (min-width: 760px) { .action-stage { grid-template-columns: 0.78fr 1fr; } }
    .action-photo {
      position: relative;
      aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
      background: linear-gradient(160deg, var(--flirt), var(--kiss));
      border: 3px solid var(--cloud); box-shadow: var(--shadow-lg);
    }
    .action-photo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
    .action-photo:hover .action-photo__img { transform: scale(1.05); }
    .action-photo__img[hidden] { display: none; }
    /* Copy as an elevated panel so the text side has presence next to the photo. */
    .action-copy {
      align-self: center; display: flex; flex-direction: column;
      background: var(--whisper); border: 1px solid var(--line);
      border-radius: var(--r-md); padding: clamp(1.4rem, 2.6vw, 2.4rem);
      box-shadow: var(--shadow);
    }
    .action-copy h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.15rem); line-height: 1.05; margin: 0.7rem 0 0.5rem; }
    .action-copy p { color: var(--muted); margin: 0; max-width: 34rem; line-height: 1.6; }
    .action-copy .check { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: 0.15rem; }
    .action-copy .check li { position: relative; padding: 0.35rem 0 0.35rem 1.7rem; font-size: 0.92rem; }
    .action-copy .check li::before { content: ""; position: absolute; left: 0; top: 0.65rem; width: 0.9rem; height: 0.9rem; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(255, 45, 120, 0.12); }
    .action-cta { align-self: flex-start; margin-top: 1.5rem; }

    /* Benefits */
    .benefits-grid { display: grid; gap: 0.75rem; margin-top: 1.5rem; grid-template-columns: 1fr; }
    @media (min-width: 560px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
    .benefit {
      display: flex; align-items: flex-start; gap: 0.85rem; padding: 1.1rem;
      background: var(--cloud); border: 1px solid var(--line); border-radius: var(--r-sm);
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .benefit:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(255,45,120,0.08); }
    .benefit__icon {
      flex-shrink: 0; width: 2.4rem; height: 2.4rem; display: flex; align-items: center; justify-content: center;
      color: var(--primary); background: var(--whisper); border-radius: 10px; border: 1px solid var(--line);
    }
    .benefit__icon svg { width: 1.2rem; height: 1.2rem; }
    .benefit__title { margin: 0; font-size: 0.95rem; font-weight: 700; }
    .benefit__text { margin: 0.2rem 0 0; font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

    /* Before/after */
    .ba-wrap {
      position: relative; margin-top: 2rem; border-radius: var(--r-lg); overflow: hidden;
      box-shadow: var(--shadow-lg); border: 3px solid var(--cloud); max-width: 760px; margin-inline: auto;
    }
    .ba-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 300px; }
    .ba-half { position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; padding: 1rem; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
    .ba-half--before { background: var(--kiss); color: var(--muted); }
    .ba-half--after { background: var(--flirt); color: var(--midnight); }
    .ba-half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; z-index: 0; }
    .ba-half__label {
      position: relative; z-index: 1; padding: 0.3rem 0.7rem; border-radius: var(--r-pill);
      background: rgba(255, 255, 255, 0.92); color: var(--midnight); box-shadow: 0 4px 14px rgba(27, 18, 20, 0.12);
    }
    .ba-half--after .ba-half__label { color: var(--primary); }
    .ba-handle {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 48px; height: 48px; border-radius: 50%; background: var(--cloud);
      border: 3px solid var(--midnight); box-shadow: var(--shadow-lg);
      display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; z-index: 2;
    }

    /* Interactive before/after slider (overlay + draggable handle). */
    .ba-slider {
      position: relative; width: 100%; max-width: 440px; margin: 2rem auto 0;
      aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
      border: 3px solid var(--cloud); box-shadow: var(--shadow-lg);
      background: linear-gradient(160deg, var(--flirt), var(--kiss));
      user-select: none; -webkit-user-select: none; touch-action: pan-y;
    }
    .ba-slider__img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; display: block; pointer-events: none; -webkit-user-drag: none;
    }
    /* BEFORE overlays the AFTER base, revealed from the left up to --ba-pos. */
    .ba-slider__img--before { clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0); z-index: 2; }
    .ba-slider__label {
      position: absolute; bottom: 0.85rem; z-index: 3; pointer-events: none;
      font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
      padding: 0.35rem 0.7rem; background: rgba(255, 255, 255, 0.92); border-radius: var(--r-pill);
      box-shadow: 0 4px 14px rgba(27, 18, 20, 0.14);
    }
    .ba-slider__label--before { left: 0.85rem; color: var(--midnight); }
    .ba-slider__label--after { right: 0.85rem; color: var(--primary); }
    .ba-slider__divider {
      position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); width: 3px;
      transform: translateX(-50%); background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 0 14px rgba(27, 18, 20, 0.35); z-index: 4; pointer-events: none;
    }
    .ba-slider__handle {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 46px; height: 46px; border-radius: 50%; background: #fff;
      border: 3px solid var(--primary); box-shadow: var(--shadow-lg);
      display: flex; align-items: center; justify-content: center; color: var(--primary);
    }
    .ba-slider__handle svg { width: 1.2rem; height: 1.2rem; }
    .ba-slider__range {
      position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
      opacity: 0; cursor: ew-resize; z-index: 5; -webkit-appearance: none; appearance: none; background: transparent;
    }
    .ba-slider__range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100%; cursor: ew-resize; }
    .ba-slider__range::-moz-range-thumb { width: 46px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
    .ba-slider__range:focus-visible + .ba-slider__divider,
    .ba-slider:focus-within .ba-slider__handle { outline: 2px solid var(--primary); outline-offset: 2px; }

    /* Before/after block — 3-column layout (copy · slider · features). */
    .ba-block__grid { display: grid; gap: clamp(1.75rem, 4vw, 3.25rem); align-items: center; text-align: left; }
    @media (min-width: 980px) { .ba-block__grid { grid-template-columns: 1fr minmax(0, 420px) 1fr; } }
    .ba-block__copy .kicker { justify-content: flex-start; }
    .ba-block__copy p { color: var(--muted); margin: 0.9rem 0 0; line-height: 1.6; max-width: 32rem; }
    .ba-block__copy .btn { margin-top: 1.5rem; }
    .ba-block__media .ba-slider { margin-top: 0; }
    .ba-block__feats { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
    .ba-feat { display: flex; gap: 0.85rem; align-items: flex-start; }
    .ba-feat__icon {
      flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: 50%;
      background: var(--whisper); border: 1px solid var(--line);
      display: flex; align-items: center; justify-content: center; color: var(--primary);
    }
    .ba-feat__icon .ui-icon { width: 1.3rem; height: 1.3rem; }
    .ba-feat strong { display: block; font-family: var(--font-display); font-size: 1.1rem; line-height: 1.15; margin-bottom: 0.25rem; }
    .ba-feat p { color: var(--muted); font-size: 0.86rem; line-height: 1.5; margin: 0; }

    /* Body-type carousel */
    .scroll-row { display: flex; gap: 1rem; overflow-x: auto; padding: 0.5rem 0 1.5rem; scroll-snap-type: x mandatory; }
    .body-card {
      flex: 0 0 240px; scroll-snap-align: start; border-radius: var(--r-md); overflow: hidden;
      background: var(--cloud); border: 2px solid var(--line); box-shadow: var(--shadow);
    }
    .body-card .ph { aspect-ratio: 3/4; background: linear-gradient(160deg, var(--flirt), var(--kiss)); }
    .body-card__cap { padding: 0.85rem 1rem; }
    .body-card__cap strong { font-size: 0.92rem; }
    .body-card__cap small { display: block; color: var(--muted); font-size: 0.78rem; }

    /* Reviews */
    .reviews-summary {
      display: grid; gap: 1.25rem 2.5rem; align-items: center;
      max-width: 720px; margin: 1.5rem auto 0; padding: 1.6rem 2rem;
      background: var(--cloud); border: 1px solid var(--line);
      border-radius: var(--r-lg); box-shadow: var(--shadow);
    }
    @media (min-width: 620px) { .reviews-summary { grid-template-columns: auto 1fr; } }
    .reviews-summary__score { text-align: center; }
    @media (min-width: 620px) { .reviews-summary__score { padding-right: 2.5rem; border-right: 1px solid var(--line); } }
    .reviews-summary__score p { margin: 0; }
    .rating-big { font-family: var(--font-display); font-size: 3.25rem; font-weight: 700; line-height: 1; color: var(--primary); }
    .bars { display: grid; gap: 0.35rem; }
    .bar-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--muted); }
    .bar-track { flex: 1; height: 0.55rem; border-radius: var(--r-pill); background: var(--kiss); overflow: hidden; }
    .bar-fill { display: block; height: 100%; background: linear-gradient(90deg, #ffd35c, #e8a200); border-radius: var(--r-pill); }
    .reviews-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
    @media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
    .review { padding: 1.35rem; border-radius: var(--r-md); background: var(--cloud); border: 1px solid var(--line); box-shadow: var(--shadow); }
    .review__top { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.6rem; }
    .review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--flirt); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: var(--midnight); }
    .review__name { font-weight: 700; font-size: 0.88rem; }
    .review__name small { display: block; font-weight: 500; color: var(--success); font-size: 0.68rem; }
    /* Reviews wall — full-width grid (1 / 2 / 3 columns), all reviews visible. */
    .reviews-wall { margin-top: 2rem; }
    .reviews-wall__track { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
    @media (min-width: 680px) { .reviews-wall__track { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 980px) { .reviews-wall__track { grid-template-columns: repeat(3, 1fr); } }
    .reviews-wall__nav { display: none; }
    .review h4 { margin: 0.2rem 0 0.35rem; font-family: var(--font-display); font-size: 1.05rem; }
    .review p { margin: 0; font-size: 0.86rem; color: var(--muted); }

    /* Reviews — before/after polaroid carousel (home block) */
    .reviews-boomba { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-top: 2rem; }
    @media (min-width: 860px) { .reviews-boomba { grid-template-columns: 0.95fr 1.05fr; } }
    .reviews-boomba__visual { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; }
    .polaroid {
      margin: 0; padding: 0.7rem 0.7rem 2.4rem; background: var(--cloud);
      border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-lg);
      width: min(58%, 250px); position: relative;
    }
    .polaroid img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; background: linear-gradient(160deg, var(--flirt), var(--kiss)); }
    .polaroid img[hidden] { display: none; }
    .polaroid .ph[hidden] { display: none; }
    .polaroid .ph { aspect-ratio: 3/4; border-radius: 4px; background: linear-gradient(160deg, var(--flirt), var(--kiss)); display: flex; align-items: center; justify-content: center; color: rgba(27,18,20,0.45); font-size: 0.8rem; font-weight: 700; }
    .polaroid figcaption { position: absolute; left: 0; right: 0; bottom: 0.8rem; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--midnight); }
    .polaroid--before { transform: rotate(-5deg); z-index: 1; }
    .polaroid--after { transform: rotate(4deg); margin-left: -16%; margin-top: 2.4rem; z-index: 2; }
    .polaroid--before figcaption { color: var(--muted); }
    .polaroid--after figcaption { color: var(--primary); }
    .reviews-boomba__card {
      background: var(--cloud); border: 1px solid var(--line); border-radius: var(--r-lg);
      box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.4rem); position: relative;
    }
    .reviews-boomba__quote { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: var(--line); display: block; height: 1.5rem; overflow: hidden; margin-bottom: 0.15rem; }
    .reviews-boomba__product { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin: 0 0 0.4rem; }
    .reviews-boomba__title { margin: 0 0 0.5rem; font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
    .reviews-boomba__body { margin: 0 0 1.4rem; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
    .reviews-boomba__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .reviews-boomba__author { display: flex; align-items: center; gap: 0.7rem; }
    .reviews-boomba__author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--flirt); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: var(--midnight); }
    .reviews-boomba__author strong { display: block; font-size: 0.9rem; }
    .reviews-boomba__author small { color: var(--muted); font-size: 0.76rem; }
    .reviews-boomba__nav { display: flex; gap: 0.5rem; }
    .reviews-boomba__nav button {
      width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
      background: var(--whisper); color: var(--midnight); cursor: pointer; display: flex;
      align-items: center; justify-content: center; transition: background 0.15s, color 0.15s, border-color 0.15s;
    }
    .reviews-boomba__nav button:hover:not(:disabled) { background: var(--primary); color: #fff; border-color: var(--primary); }
    .reviews-boomba__nav button:disabled { opacity: 0.35; cursor: default; }
    .reviews-boomba__nav svg { width: 18px; height: 18px; }
    .reviews-boomba__prev svg { transform: scaleX(-1); }

    /* Add-review form */
    .add-review { max-width: 640px; margin: 2rem auto 0; padding: 1.6rem clamp(1.25rem, 4vw, 2rem); background: var(--cloud); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); }
    .add-review > summary { cursor: pointer; list-style: none; font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .add-review > summary::-webkit-details-marker { display: none; }
    .add-review > summary::after { content: '+'; font-size: 1.4rem; line-height: 1; color: var(--primary); }
    .add-review[open] > summary::after { content: '–'; }
    .add-review__form { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
    .add-review__row { display: grid; gap: 0.9rem; }
    @media (min-width: 520px) { .add-review__row { grid-template-columns: 1fr 1fr; } }
    .add-review label { display: block; font-size: 0.78rem; font-weight: 700; margin-bottom: 0.3rem; }
    .add-review input, .add-review textarea, .add-review select {
      width: 100%; padding: 0.7rem 0.85rem; font: inherit; font-size: 0.9rem;
      border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--whisper); color: var(--midnight);
    }
    .add-review textarea { min-height: 96px; resize: vertical; }
    .add-review input:focus, .add-review textarea:focus, .add-review select:focus { outline: none; border-color: var(--primary); background: #fff; }
    .add-review__stars { display: inline-flex; flex-direction: row-reverse; gap: 0.15rem; font-size: 1.6rem; }
    .add-review__stars input { position: absolute; opacity: 0; width: 0; height: 0; }
    .add-review__stars label { color: var(--line); cursor: pointer; margin: 0; font-size: inherit; transition: color 0.1s; }
    .add-review__stars label:hover, .add-review__stars label:hover ~ label,
    .add-review__stars input:checked ~ label { color: var(--primary); }

    /* Cross-sell */
    .grid-4 { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); max-width: 1040px; margin: 1rem auto 0; }
    @media (min-width: 880px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
    /* compact secondary section (cross-sell) — lower, more subtle */
    .section--compact { padding-block: clamp(1.25rem, 2.6vw, 2rem); }
    .section--compact .h-section { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 0.2rem; }
    .section--compact .kicker { margin-bottom: 0.5rem; }
    .card { position: relative; background: var(--cloud); border-radius: var(--r-md); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
    .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .card__img { position: relative; aspect-ratio: 4/5; margin: 0.6rem 0.6rem 0; border-radius: calc(var(--r-md) - 8px); overflow: hidden; background: linear-gradient(160deg, var(--flirt), var(--kiss)); }
    .card__badge { position: absolute; top: 10px; left: 10px; z-index: 3; padding: 0.35rem 0.7rem; font-size: 0.56rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--midnight); border-radius: var(--r-pill); box-shadow: 0 4px 12px rgba(27, 18, 20, 0.25); }
    .card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .card__collage { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
    .card__collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .card__body { padding: 0.75rem 0.9rem 0.95rem; }
    .card__title { margin: 0 0 0.2rem; font-family: var(--font-display); font-size: 1.1rem; }
    .card__sub { margin: 0 0 0.5rem; font-size: 0.76rem; color: var(--muted); }
    .card__price { display: flex; align-items: baseline; gap: 0.4rem; }
    .card__price .now { font-weight: 800; color: var(--primary); }
    .card__price .was { text-decoration: line-through; color: var(--muted); font-size: 0.78rem; }
    .quick-add { margin-top: 0.7rem; width: 100%; padding: 0.6rem; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--midnight); background: var(--whisper); border: 1px solid var(--line); border-radius: var(--r-pill); cursor: pointer; transition: background 0.15s, color 0.15s; }
    .quick-add:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    /* Bundle nudge */
    .bundle-nudge {
      display: grid; gap: 1.25rem; align-items: center; margin-top: 1rem;
      padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--r-lg);
      background: var(--midnight); color: #fff;
    }
    @media (min-width: 760px) { .bundle-nudge { grid-template-columns: 1.4fr 1fr; } }
    .bundle-pucks { display: flex; align-items: center; gap: 0; flex-wrap: wrap; margin: 0.5rem 0; }
    .bundle-puck { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--cloud); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; color: var(--midnight); text-align: center; margin-left: -14px; box-shadow: var(--shadow); }
    .bundle-puck:first-child { margin-left: 0; }
    .bundle-puck img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .bundle-nudge .price-now { color: #fff; }

    /* Size calculator */
    .calc-box { max-width: 620px; margin: 1.5rem auto 0; padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--r-lg); background: var(--cloud); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
    .calc-fields { display: grid; gap: 1rem; margin-top: 1.25rem; }
    @media (min-width: 560px) { .calc-fields { grid-template-columns: 1fr 1fr; } }
    .field label { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
    .field input, .field select { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--line); border-radius: var(--r-sm); font: inherit; background: var(--cloud); }
    .calc-result { margin-top: 1.25rem; padding: 1rem 1.15rem; border-radius: var(--r-sm); background: var(--whisper); border: 1px solid var(--line); font-size: 0.9rem; text-align: center; }
    .calc-result strong { color: var(--primary); }

    /* Size table (matrix) */
    .size-table-wrap { overflow-x: auto; margin: 0.85rem 0 0.85rem; -webkit-overflow-scrolling: touch; }
    .size-table { border-collapse: separate; border-spacing: 2px; width: 100%; min-width: 320px; font-size: 0.74rem; text-align: center; }
    .size-table th, .size-table td { padding: 0.4rem 0.2rem; border-radius: 4px; font-weight: 700; }
    .size-table thead th { background: var(--primary); color: #fff; letter-spacing: 0.02em; }
    .size-table thead th.size-table__corner, .size-table tbody th { background: var(--midnight); color: #fff; }
    .size-table tbody th { font-weight: 800; }
    .size-table td { cursor: pointer; transition: transform 0.1s; }
    .size-table td:hover { transform: scale(1.08); }
    .size-table td.s-A, .size-legend i.s-A { background: var(--whisper); color: var(--midnight); }
    .size-table td.s-B, .size-legend i.s-B { background: var(--line); color: var(--midnight); }
    .size-table td.s-C, .size-legend i.s-C { background: var(--flirt); color: #fff; }
    .size-table td.s-D, .size-legend i.s-D { background: var(--primary); color: #fff; }
    .size-table td.is-match { outline: 3px solid var(--midnight); outline-offset: -1px; transform: scale(1.12); position: relative; z-index: 2; box-shadow: 0 4px 14px rgba(27,18,20,0.25); }
    .size-legend { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.74rem; color: var(--muted); font-weight: 600; }
    .size-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
    .size-legend i { width: 1rem; height: 1rem; border-radius: 4px; display: inline-block; border: 1px solid rgba(27,18,20,0.08); }

    /* Trust badges */
    .badges-row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
    @media (min-width: 700px) { .badges-row { grid-template-columns: repeat(3, 1fr); } }
    .badge-card { display: flex; align-items: center; gap: 0.85rem; padding: 1.1rem 1.25rem; border-radius: var(--r-md); background: var(--cloud); border: 1px solid var(--line); box-shadow: var(--shadow); }
    .badge-card svg { width: 1.6rem; height: 1.6rem; color: var(--primary); flex-shrink: 0; }
    .badge-card strong { display: block; font-size: 0.92rem; }
    .badge-card small { color: var(--muted); font-size: 0.78rem; }

    /* Footer */
    .footer-main { background: var(--midnight); color: rgba(255,255,255,0.75); padding: 2.5rem clamp(1rem, 4vw, 2rem) 1.5rem; font-size: 0.85rem; position: relative; overflow: hidden; }
    .footer-grid { display: grid; gap: 2rem; max-width: var(--max); margin: 0 auto 2rem; position: relative; z-index: 1; }
    @media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
    .footer-main a:hover { color: var(--accent); }
    .footer-main h4 { margin: 0 0 0.75rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
    .footer-main ul { list-style: none; margin: 0; padding: 0; }
    .footer-main li { margin: 0.35rem 0; }
    .footer-logo { filter: brightness(0) invert(1); opacity: 0.95; height: 30px; width: auto; }
    .footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.75rem; text-align: center; position: relative; z-index: 1; }
    .footer-watermark {
      position: absolute; bottom: -2.5rem; left: 50%; transform: translateX(-50%);
      font-family: var(--font-display); font-style: italic; font-weight: 600;
      font-size: clamp(5rem, 22vw, 16rem); line-height: 1; color: rgba(255,255,255,0.04);
      pointer-events: none; white-space: nowrap; z-index: 0;
    }

    /* Sticky mobile add-to-cart */
    .sticky-buy {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; gap: 1rem; justify-content: space-between;
      padding: 0.7rem clamp(1rem, 4vw, 2rem); background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px); border-top: 1px solid var(--line);
      box-shadow: 0 -8px 30px rgba(27,18,20,0.08);
    }
    .sticky-buy__info strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
    .sticky-buy__info span { font-size: 0.78rem; color: var(--muted); }
    .sticky-buy__info .now { color: var(--primary); font-weight: 800; }
    .sticky-buy .btn { padding: 0.8rem 1.5rem; font-size: 0.7rem; margin: 0; }
    @media (min-width: 900px) { .sticky-buy { display: none; } }

    /* ============================================================
       Kadence container reset — only on the Liftaya PDP page.
       This stylesheet is enqueued solely on the wow-lift product,
       so these unscoped rules are safe here. They let our full-bleed
       sections span edge-to-edge and match the home page background.
       ============================================================ */
    body.single-product { background: var(--cloud); overflow-x: hidden; }
    body.single-product #wrapper,
    body.single-product #inner-wrap,
    body.single-product .content-bg,
    body.single-product .site-container,
    body.single-product .content-area { background: var(--cloud) !important; }
    /* Remove Kadence's content-width clamp + side padding so the PDP is full-bleed. */
    body.single-product main#inner-wrap.wrap {
      max-width: 100% !important;
      width: 100% !important;
      margin: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    /* The PDP manages its own background per-section; root stays white like the mockup. */
    .liftaya-pdp { background: var(--cloud); }

    /* Kadence styles every <button> with the white palette button color
       (--global-palette-btn: #fff). Our size + lookbook controls are bare
       <button>s without an explicit color, so their labels (A/B/C/D, occasion
       names) turned white-on-white. Re-assert readable text, scoped to the PDP. */
    .liftaya-pdp .size-btn,
    .liftaya-pdp .size-btn--active { color: var(--midnight) !important; }
    .liftaya-pdp .size-btn small { color: var(--muted) !important; }
    .liftaya-pdp .pill { color: var(--midnight) !important; }
    .liftaya-pdp .pill--active { color: #fff !important; }

    /* UGC social-proof grid — mirrors the home "#Liftaya — Wasze stylizacje" block. */
    .pdp-ugc {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem;
      margin-top: clamp(1.5rem, 3vw, 2.5rem);
    }
    @media (min-width: 760px) { .pdp-ugc { grid-template-columns: repeat(5, 1fr); } }
    .pdp-ugc__item {
      position: relative; margin: 0; aspect-ratio: 3/4; overflow: hidden;
      border-radius: 18px; background: #fff; box-shadow: var(--shadow);
    }
    .pdp-ugc__item img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 12%;
    }
    .pdp-ugc__tag {
      position: absolute; top: 30%; right: 0; left: auto; transform: translateY(-50%);
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem; background: rgba(255, 255, 255, 0.72);
      -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
      border-radius: var(--r-pill); color: var(--primary); white-space: nowrap;
      box-shadow: 0 4px 14px rgba(27, 18, 20, 0.08);
    }

    /* "Dlaczego Liftaya?" — bra page (replaces lookbook on backless). */
    .liftaya-pdp .why__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
    @media (min-width: 900px) { .liftaya-pdp .why__grid { grid-template-columns: 1.05fr 0.95fr; } }
    .liftaya-pdp .why__visual { position: relative; background: radial-gradient(120% 120% at 50% 40%, var(--whisper), var(--kiss)); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); aspect-ratio: 1 / 0.72; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .liftaya-pdp .why__img { position: relative; z-index: 1; width: clamp(16rem, 48vw, 27rem); height: auto; filter: drop-shadow(0 22px 40px rgba(27, 18, 20, 0.22)); }
    .liftaya-pdp .why__cue { position: absolute; z-index: 3; display: flex; flex-direction: column; gap: 0.55rem; max-width: 9rem; font-size: 0.9rem; font-weight: 700; line-height: 1.22; color: var(--midnight); }
    .liftaya-pdp .why__cue__ico { width: 2.7rem; height: 2.7rem; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 18px rgba(27, 18, 20, 0.10); display: flex; align-items: center; justify-content: center; color: var(--primary); flex: none; }
    .liftaya-pdp .why__cue__ico svg { width: 1.35rem; height: 1.35rem; }
    .liftaya-pdp .why__cue--tl, .liftaya-pdp .why__cue--bl { align-items: flex-start; text-align: left; }
    .liftaya-pdp .why__cue--tr, .liftaya-pdp .why__cue--br { align-items: flex-end; text-align: right; }
    .liftaya-pdp .why__cue--tl { top: 7%; left: 5%; }
    .liftaya-pdp .why__cue--tr { top: 7%; right: 5%; }
    .liftaya-pdp .why__cue--bl { bottom: 7%; left: 5%; }
    .liftaya-pdp .why__cue--br { bottom: 7%; right: 5%; }
    .liftaya-pdp .why__copy h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(1.9rem, 4.5vw, 2.9rem); line-height: 1.05; margin: 0 0 1rem; }
    .liftaya-pdp .why__copy h2 em { font-style: normal; color: var(--primary); }
    .liftaya-pdp .why__copy p { color: #3a2f33; font-size: 1rem; line-height: 1.6; margin: 0 0 1rem; max-width: 32rem; }
    .liftaya-pdp .why__copy p:last-child { margin-bottom: 0; }
    @media (min-width: 641px) { .liftaya-pdp .why__cues-mobile { display: contents; } }
    @media (max-width: 640px) {
      .liftaya-pdp .why__visual { flex-direction: column; gap: 1.25rem; aspect-ratio: auto; padding-bottom: 1.5rem; }
      .liftaya-pdp .why__img { width: 14rem; }
      .liftaya-pdp .why__cues-mobile { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; }
      .liftaya-pdp .why__cue { position: static; max-width: none; flex-direction: row; align-items: center !important; gap: 0.6rem; text-align: left !important; font-size: 0.86rem; }
      .liftaya-pdp .why__cue__ico { width: 2.2rem; height: 2.2rem; }
      .liftaya-pdp .why__cue__ico svg { width: 1.1rem; height: 1.1rem; }
    }
