/* ==================================================================
   The Passive PDF — Book Landing Page System
   Loads ON TOP of css/style.css (shares all design tokens, nav, hero
   background, buttons, footer, reveal animations).

   This file only adds the conversion-focused sections that are unique
   to an individual product page:
     hero price block · benefit cards · what's-inside chapters ·
     dark testimonials · audience grid · offer stack · comparison ·
     FAQ accordion · guarantee band · final CTA · sticky buy bar
================================================================== */

/* ------------------------------------------------------------------
   Section scaffold + heads
------------------------------------------------------------------- */

.bsection { padding: 96px 0; position: relative; }
.bsection--cloud { background: var(--cloud); color: var(--ink-1); }
.bsection--white { background: var(--white); color: var(--ink-1); }
.bsection--ink   { background: var(--ink); }
.bsection--navy  { background: var(--navy); }

@media (max-width: 720px) { .bsection { padding: 68px 0; } }

/* Dark centred section head (mirror of .section-head-light) */
.section-head-dark { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.eyebrow-dark {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-weight: 700;
    margin-bottom: 16px;
}
.title-dark {
    font-family: var(--serif);
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin-bottom: 16px;
    font-weight: 400;
}
.title-dark em { font-style: italic; color: var(--gold); }
.sub-dark {
    font-size: 16px;
    line-height: 1.65;
    color: var(--paper-dim);
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
}
.title-light em { font-style: italic; color: var(--gold-deep); }

/* ------------------------------------------------------------------
   HERO — book-specific additions to the homepage hero
   (rating line, 4-up trust icons, price block in the left column)
------------------------------------------------------------------- */

/* Star rating + review count */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.hero-rating .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.hero-rating .rate-score { font-weight: 700; color: var(--paper); font-size: 14px; }
.hero-rating .rate-count { font-size: 13px; color: var(--paper-dim); }

/* 4-up trust icons row (instant download / lifetime / secure / guarantee) */
.hero-trust {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 12px 26px;
    margin-bottom: 28px;
}
.hero-trust li { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 500; color: var(--paper-dim); }
.hero-trust .ht-ic {
    width: 32px; height: 32px; flex: none;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    background: rgba(198,168,92,0.10);
    border: 1px solid rgba(198,168,92,0.22);
}

/* Price block in the hero left column */
.hero-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.hero-price .hp-now {
    font-family: var(--serif);
    font-size: 54px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.01em;
}
.hero-price .hp-was { font-size: 19px; color: var(--paper-faint); text-decoration: line-through; }
.hero-price .hp-off {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold-soft);
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(198,168,92,0.14);
    border: 1px solid rgba(198,168,92,0.3);
    align-self: center;
}

.hero-cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
.hero-cta-row .btn { padding: 17px 34px; font-size: 15px; }
.hero-microcopy {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; color: var(--paper-dim);
}
.hero-microcopy svg { color: var(--gold-soft); flex: none; }

/* Bestseller seal sizing on book hero (reuse .sc-seal from style.css) */
.book-hero-stage { height: 676px; }
@media (max-width: 980px) { .book-hero-stage { height: 572px; } }
@media (max-width: 560px) { .book-hero-stage { height: 494px; } }

/* Gold edge glow hugging the book cover PNG (follows alpha channel) */
.hero-right-col .book-3d img {
    filter:
        drop-shadow(0 0 14px rgba(198,168,92,0.80))
        drop-shadow(0 0 32px rgba(198,168,92,0.50))
        drop-shadow(0 0 60px rgba(198,168,92,0.22));
}

/* Remove sc-top's default bottom margin on book pages (sc-buy-under follows below instead) */
.has-sticky-buy .hero-right-col .sc-top { margin-bottom: 0; }

/* Price + CTA block below the book in the right column */
.sc-buy-under {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}
.sc-buy-under .hero-price {
    justify-content: center;
    margin-bottom: 0;
}
.sc-buy-under .hero-cta-row {
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}
.sc-buy-under .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
}
.sc-buy-under .hero-microcopy {
    justify-content: center;
}

/* ------------------------------------------------------------------
   BENEFITS — problem framing + benefit cards (light section)
------------------------------------------------------------------- */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1000px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .benefit-grid { grid-template-columns: 1fr; } }

.benefit-card {
    background: linear-gradient(165deg, var(--navy-3), var(--ink));
    border: 1px solid var(--line-2);
    border-radius: 18px;
    padding: 30px 26px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198,168,92,0.4);
    box-shadow: 0 24px 50px rgba(20,23,30,0.18);
}
.benefit-ic {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    background: rgba(198,168,92,0.12);
    border: 1px solid rgba(198,168,92,0.26);
    margin-bottom: 20px;
}
.benefit-card h3 { font-size: 17px; font-weight: 700; color: var(--paper); margin-bottom: 9px; letter-spacing: -0.01em; }
.benefit-card p { font-size: 13.5px; line-height: 1.6; color: var(--paper-dim); font-weight: 300; }

/* ------------------------------------------------------------------
   WHAT'S INSIDE — book image + numbered chapter breakdown
------------------------------------------------------------------- */

.inside-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 940px) { .inside-layout { grid-template-columns: 1fr; gap: 40px; } }

.inside-media {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
@media (max-width: 940px) { .inside-media { position: static; } }

.inside-figure {
    position: relative;
    width: 100%;
    border-radius: 22px;
    padding: 38px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 50% 36%, rgba(198,168,92,0.20), transparent 70%),
        linear-gradient(160deg, var(--navy-3), var(--ink));
    border: 1px solid rgba(198,168,92,0.28);
    box-shadow: 0 30px 60px rgba(20,23,30,0.20);
}
.inside-figure img {
    position: relative;
    max-height: 420px; width: auto;
    filter: drop-shadow(0 30px 44px rgba(0,0,0,0.5));
}
.inside-stats {
    display: flex;
    gap: 12px;
    width: 100%;
}
.inside-stat {
    flex: 1;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--light-line);
    border-radius: 14px;
    padding: 16px 10px;
}
.inside-stat strong { display: block; font-family: var(--serif); font-size: 26px; color: var(--gold-deep); line-height: 1; margin-bottom: 5px; }
.inside-stat span { font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }

.chapter-list { display: flex; flex-direction: column; gap: 14px; }
.chapter-item {
    display: flex;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--light-line);
    border-radius: 16px;
    padding: 22px 24px;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.chapter-item:hover {
    transform: translateX(4px);
    border-color: rgba(198,168,92,0.5);
    box-shadow: 0 14px 30px rgba(20,23,30,0.08);
}
.chapter-num {
    flex: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--gold-deep);
    background: var(--cream-1);
    border: 1px solid rgba(198,168,92,0.4);
}
.chapter-body h3 { font-size: 16.5px; font-weight: 700; color: var(--ink-1); margin-bottom: 5px; letter-spacing: -0.01em; }
.chapter-body p { font-size: 13.5px; line-height: 1.6; color: var(--ink-2); }

/* ------------------------------------------------------------------
   TESTIMONIALS — dark variant of homepage .reviews
------------------------------------------------------------------- */

.reviews-dark { background: linear-gradient(180deg, var(--ink), var(--navy)); }
.reviews-dark .review {
    background: rgba(255,255,255,0.025);
    border-color: var(--line-2);
}
.reviews-dark .review::before { color: rgba(198,168,92,0.3); }
.reviews-dark .review blockquote { color: var(--paper); font-weight: 300; }
.reviews-dark .review blockquote strong { color: var(--paper); font-weight: 700; }
.reviews-dark .rev-name { color: var(--paper); }
.reviews-dark .rev-role { color: var(--paper-dim); }

/* full-width story card option */
.reviews-grid .review-wide { grid-column: 1 / -1; }
@media (min-width: 881px) {
    .reviews-grid.has-wide { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------------
   WHO IT'S FOR — audience self-identification (light)
------------------------------------------------------------------- */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
    background: var(--white);
    border: 1px solid var(--light-line);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 1px 2px rgba(20,23,30,0.04), 0 12px 26px rgba(20,23,30,0.05);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.audience-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(20,23,30,0.10); }
.audience-ic {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-deep);
    background: var(--cream-1);
    border: 1px solid rgba(198,168,92,0.34);
    margin-bottom: 18px;
}
.audience-card h3 { font-size: 15.5px; font-weight: 700; color: var(--ink-1); margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.01em; }
.audience-card p { font-size: 13px; line-height: 1.55; color: var(--ink-2); }

/* ------------------------------------------------------------------
   OFFER STACK — everything you get (dark)
------------------------------------------------------------------- */

.stack-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-3), var(--ink));
    border: 1px solid rgba(198,168,92,0.3);
    border-radius: 24px;
    padding: 14px 40px 40px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}
@media (max-width: 600px) { .stack-wrap { padding: 6px 22px 30px; } }

.stack-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.stack-item:last-of-type { border-bottom: none; }
.stack-ic {
    width: 44px; height: 44px;
    flex: none;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    background: rgba(198,168,92,0.12);
    border: 1px solid rgba(198,168,92,0.26);
}
.stack-text { flex: 1; }
.stack-text h3 { font-size: 16px; font-weight: 700; color: var(--paper); margin-bottom: 3px; letter-spacing: -0.01em; }
.stack-text p { font-size: 13px; line-height: 1.5; color: var(--paper-dim); font-weight: 300; }
.stack-value { font-size: 14px; font-weight: 700; color: var(--gold-soft); white-space: nowrap; }
.stack-value s { color: var(--paper-faint); font-weight: 400; }

.stack-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding: 22px 26px;
    border-radius: 16px;
    background: rgba(198,168,92,0.08);
    border: 1px solid rgba(198,168,92,0.3);
}
.stack-total .st-label { font-size: 14px; color: var(--paper-dim); }
.stack-total .st-label strong { color: var(--paper); font-weight: 700; }
.stack-total .st-price { display: flex; align-items: baseline; gap: 12px; }
.stack-total .st-was { font-size: 17px; color: var(--paper-faint); text-decoration: line-through; }
.stack-total .st-now { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--gold); }
.stack-cta { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.stack-cta .btn { width: 100%; max-width: 420px; }

/* ------------------------------------------------------------------
   COMPARISON — without / with (light)
------------------------------------------------------------------- */

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 940px;
    margin: 0 auto;
}
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; gap: 16px; } }

.compare-card {
    border-radius: 20px;
    padding: 34px 30px;
}
.compare-card h3 {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 22px;
}
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.compare-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.45; }
.compare-card li svg { flex: none; margin-top: 1px; }

.compare-card.is-without {
    background: var(--white);
    border: 1px solid var(--light-line);
    color: var(--ink-2);
}
.compare-card.is-without h3 { color: #9a917f; }
.compare-card.is-without li svg { color: #c2766a; }

.compare-card.is-with {
    background: linear-gradient(160deg, var(--navy-3), var(--ink));
    border: 1px solid rgba(198,168,92,0.4);
    color: var(--paper);
    box-shadow: 0 30px 60px rgba(20,23,30,0.22);
}
.compare-card.is-with h3 { color: var(--gold-soft); }
.compare-card.is-with li svg { color: var(--gold); }

.compare-vs {
    width: 56px; height: 56px;
    flex: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
    color: var(--ink-1);
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    box-shadow: 0 10px 24px rgba(198,168,92,0.4);
    margin: 0 auto;
}
@media (max-width: 760px) { .compare-vs { transform: rotate(90deg); } }

/* ------------------------------------------------------------------
   FAQ — accordion (light)
------------------------------------------------------------------- */

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--light-line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] { border-color: rgba(198,168,92,0.5); box-shadow: 0 14px 30px rgba(20,23,30,0.07); }
.faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink-1);
    letter-spacing: -0.01em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .faq-plus {
    flex: none;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--light-line);
    position: relative;
    transition: transform 0.35s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-q .faq-plus::before,
.faq-q .faq-plus::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-deep);
    border-radius: 2px;
}
.faq-q .faq-plus::before { width: 11px; height: 1.8px; }
.faq-q .faq-plus::after { width: 1.8px; height: 11px; transition: transform 0.35s var(--ease); }
.faq-item[open] .faq-q .faq-plus { background: var(--cream-1); border-color: rgba(198,168,92,0.5); }
.faq-item[open] .faq-q .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { padding: 0 24px 24px; font-size: 14px; line-height: 1.65; color: var(--ink-2); max-width: 680px; }

/* ------------------------------------------------------------------
   GUARANTEE — badge + reassurance (light/cloud)
------------------------------------------------------------------- */

.guarantee-band {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border: 1px solid var(--light-line);
    border-radius: 24px;
    padding: 44px 48px;
    box-shadow: 0 30px 60px rgba(20,23,30,0.08);
}
@media (max-width: 720px) { .guarantee-band { flex-direction: column; text-align: center; gap: 26px; padding: 36px 28px; } }

.guarantee-badge {
    flex: none;
    width: 132px; height: 132px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2px;
    color: #2a2007;
    background: radial-gradient(circle at 50% 30%, var(--cream-1), var(--cream-2));
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 6px rgba(198,168,92,0.12), 0 16px 34px rgba(160,120,48,0.28);
    text-align: center;
}
.guarantee-badge .gb-num { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--gold-deep); }
.guarantee-badge .gb-day { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: #6b5c33; }
.guarantee-copy .eyebrow-light { margin-bottom: 12px; }
.guarantee-copy h2 { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.08; letter-spacing: -0.02em; color: var(--ink-1); margin-bottom: 14px; font-weight: 400; }
.guarantee-copy p { font-size: 15px; line-height: 1.7; color: var(--ink-2); }

/* ------------------------------------------------------------------
   FINAL CTA — closing purchase card (dark)
------------------------------------------------------------------- */

.final-card {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    border-radius: 26px;
    padding: 44px 50px;
    background:
        radial-gradient(ellipse at 88% 10%, rgba(198,168,92,0.16), transparent 55%),
        linear-gradient(135deg, var(--navy-3), var(--ink));
    border: 1px solid rgba(198,168,92,0.34);
    box-shadow: 0 40px 90px rgba(0,0,0,0.5);
}
@media (max-width: 860px) { .final-card { grid-template-columns: 1fr; text-align: center; gap: 26px; padding: 38px 28px; } }

.final-media { flex: none; }
.final-media img {
    height: 190px; width: auto;
    filter: drop-shadow(0 22px 34px rgba(0,0,0,0.55));
}
@media (max-width: 860px) { .final-media { margin: 0 auto; } .final-media img { height: 160px; } }

.final-body { position: relative; z-index: 2; }
.final-body .eyebrow-dark { margin-bottom: 12px; }
.final-body h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin-bottom: 12px;
    font-weight: 400;
}
.final-body h2 em { font-style: italic; color: var(--gold); }
.final-body p { font-size: 14.5px; line-height: 1.6; color: var(--paper-dim); font-weight: 300; max-width: 440px; }
@media (max-width: 860px) { .final-body p { margin: 0 auto; } }

.final-buy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: stretch; gap: 14px; flex: none; min-width: 230px; }
.final-price { display: flex; align-items: baseline; gap: 12px; justify-content: center; }
.final-price .fp-now { font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--gold); }
.final-price .fp-was { font-size: 17px; color: var(--paper-faint); text-decoration: line-through; }
.final-badge {
    align-self: center;
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
    color: var(--gold-soft);
    padding: 5px 12px; border-radius: 999px;
    background: rgba(198,168,92,0.14);
    border: 1px solid rgba(198,168,92,0.3);
}
.final-buy .btn { width: 100%; }
.final-microcopy {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    flex-wrap: wrap;
    font-size: 12px; color: var(--paper-dim);
}
.final-microcopy span { display: inline-flex; align-items: center; gap: 6px; }
.final-microcopy svg { color: var(--gold-soft); }

/* ------------------------------------------------------------------
   STICKY BUY BAR
------------------------------------------------------------------- */

.sticky-buy {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    transform: translateY(110%);
    transition: transform 0.45s var(--ease);
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-top: 1px solid var(--line-2);
}
body.show-sticky .sticky-buy { transform: translateY(0); }
.sticky-buy-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.sticky-buy-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.sticky-buy-info img { height: 44px; width: auto; flex: none; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5)); }
.sticky-buy-title { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sticky-buy-title strong { font-size: 14px; font-weight: 700; color: var(--paper); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy-title span { font-size: 12px; color: var(--paper-dim); }
.sticky-buy-price { display: flex; align-items: baseline; gap: 8px; margin-left: auto; }
.sticky-buy-price .sb-now { font-size: 20px; font-weight: 800; color: var(--gold-soft); }
.sticky-buy-price .sb-was { font-size: 13px; color: var(--paper-faint); text-decoration: line-through; }
.sticky-buy .btn { flex: none; }

@media (max-width: 720px) {
    .sticky-buy-inner { padding: 10px 16px; gap: 12px; }
    .sticky-buy-info img { display: none; }
    .sticky-buy-title span { display: none; }
    .sticky-buy-price { display: none; }
    .sticky-buy .btn { padding: 13px 20px; }
}
@media (max-width: 380px) {
    .sticky-buy-title strong { font-size: 13px; }
}

/* Give the page bottom room so the sticky bar never covers the footer end */
body.has-sticky-buy .foot { padding-bottom: 90px; }
@media (max-width: 720px) { body.has-sticky-buy .foot { padding-bottom: 86px; } }
