/* ============================================================
   Fontanella d'Acqua per Cani in Acciaio Inox — Felici Insieme
   Layout/ritmo replicati dal funnel Selene (selenepets.com),
   palette e tipografia dal Brandbook FI v1.0.
   Vanilla, zero dipendenze.
   ============================================================ */

:root {
    --primary: #2A6F75;
    --primary-dark: #1f545a;
    --primary-soft: #eaf3f3;
    --accent: #ECA72C;
    --accent-ink: #B0771A;      /* variante scura del senape: usata SOLO come colore testo (contrasto AA) */
    --cta: #D95A40;             /* terracotta: solo bottoni acquisto */
    --cta-dark: #b84c36;
    --text: #2C303A;
    --text-soft: #5a5f6b;
    --bg: #FDFBF7;
    --bg-alt: #F5EFE4;
    --card: #ffffff;
    --border: #E6E0D4;
    --ok: #2A6F75;
    --ko: #c9c2b6;

    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    --w-mobile: 480px;
    --w-wide: 1100px;
    --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--font-b);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 84px; /* spazio sticky bar mobile */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2 { font-family: var(--font-h); font-weight: 800; color: var(--text); line-height: 1.18; letter-spacing: -0.2px; }
h3, h4 { font-family: var(--font-b); font-weight: 800; color: var(--text); line-height: 1.3; }
em.hl { font-style: italic; color: var(--accent-ink); }

.wrap { width: 100%; max-width: var(--w-mobile); margin: 0 auto; padding: 0 18px; }
.wide { width: 100%; max-width: var(--w-wide); margin: 0 auto; padding: 0 18px; }

section { padding: 38px 0; }
.sec-alt { background: var(--bg-alt); }
.sec-white { background: #fff; }

.center { text-align: center; }
.eyebrow { font-size: .74rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--primary); }

/* ── Barra annuncio ─────────────────────────────────── */
.announce {
    background: var(--primary);
    color: #fff;
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    padding: 9px 14px;
    line-height: 1.35;
}

/* ── Header + nav ancore ────────────────────────────── */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 60;
}
.site-header .bar { display: flex; align-items: center; justify-content: center; padding: 8px 0; }
.site-header img { height: 34px; width: auto; }
.anchors {
    display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
    border-top: 1px solid var(--border); padding: 0 8px;
}
.anchors::-webkit-scrollbar { display: none; }
.anchors a {
    flex: 0 0 auto; padding: 10px 8px; font-size: .72rem; font-weight: 700;
    color: var(--text-soft); white-space: nowrap;
}
.anchors a:hover { color: var(--primary); }

/* ── Stelle + rating reale ──────────────────────────── */
.stars { color: var(--accent); letter-spacing: 1px; font-size: .95rem; }
.rating-line { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .8rem; color: var(--text-soft); font-weight: 700; }

/* ── Hero ───────────────────────────────────────────── */
.hero { padding: 26px 0 30px; }
.hero h1 { font-size: 1.72rem; margin: 12px 0 12px; }
.hero .sub { font-size: .98rem; color: var(--text-soft); margin-bottom: 18px; }
.hero-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #fff; margin-bottom: 18px; }
.hero-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* ── Check list ─────────────────────────────────────── */
.checks { display: grid; gap: 11px; margin: 18px 0 22px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; text-align: left; }
.checks li .ic {
    flex: 0 0 auto; width: 21px; height: 21px; border-radius: 50%;
    background: var(--primary-soft); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .68rem; font-weight: 900; margin-top: 2px;
}
.checks strong { font-weight: 800; }

/* ── CTA ────────────────────────────────────────────── */
.cta {
    display: block; width: 100%; text-align: center;
    padding: 16px 18px; border-radius: 999px;
    font-weight: 900; letter-spacing: .2px;
    /* Una riga sola: l'italiano e' piu' lungo dell'inglese di Selene, quindi il
       corpo scala col viewport invece di mandare a capo. */
    white-space: nowrap; font-size: clamp(.82rem, 3.9vw, 1rem);
    color: #fff; background: var(--primary);
    box-shadow: 0 6px 16px rgba(42,111,117,.22);
    transition: transform .12s ease, background .2s ease;
}
.cta:hover { background: var(--primary-dark); }
.cta:active { transform: translateY(1px); }
.cta-buy { background: var(--cta); box-shadow: 0 6px 16px rgba(217,90,64,.26); }
.cta-buy:hover { background: var(--cta-dark); }

.cta-trust {
    margin-top: 10px; font-size: .74rem; color: var(--text-soft);
    text-align: center; line-height: 1.5; font-weight: 600;
}
.cta-trust b { color: var(--text); font-weight: 800; }

/* ── Mini testimonial hero ──────────────────────────── */
.mini-quotes { display: grid; gap: 10px; margin-top: 22px; }
.mini-quote {
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 12px 14px; font-size: .84rem; text-align: left;
}
.mini-quote p { color: var(--text); }
.mini-quote span { display: block; margin-top: 6px; font-size: .74rem; color: var(--text-soft); font-weight: 800; }
.mini-quote .stars { display: inline; margin-top: 0; color: var(--accent); font-size: .95rem; }

/* ── Carosello ──────────────────────────────────────── */
.carousel { position: relative; }
.carousel-track {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track figure {
    flex: 0 0 78%; scroll-snap-align: center;
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #fff;
}
.carousel-track img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.carousel-track figcaption { font-size: .78rem; padding: 9px 12px; color: var(--text-soft); font-weight: 700; }
.dots { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: background .2s; }
.dots span.on { background: var(--primary); }

/* ── Miniature del modello nel box offerta ──────────── */
.offer-thumbs { display: flex; gap: 8px; margin: 10px 0 4px; overflow-x: auto; scrollbar-width: none; }
.offer-thumbs::-webkit-scrollbar { display: none; }
.offer-thumb {
    flex: 0 0 60px; width: 60px; height: 60px; padding: 0; border-radius: 10px; overflow: hidden;
    border: 2px solid var(--border); background: #fff; cursor: pointer;
}
.offer-thumb img { width: 100%; height: 100%; object-fit: cover; }
.offer-thumb.on { border-color: var(--primary); }
.offer-thumbs:empty { display: none; }

/* ── Blocchi PAS ────────────────────────────────────── */
.pas h2 { font-size: 1.5rem; text-align: center; margin-bottom: 16px; }
.pas .shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 16px; }
.pas .shot img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pas p { margin-bottom: 12px; font-size: .95rem; }
.pas p strong { font-weight: 800; }

/* ── Griglia feature ────────────────────────────────── */
.features { display: grid; gap: 12px; margin-top: 22px; }
.feature {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 16px 16px 18px;
}
.feature .ic-badge {
    width: 38px; height: 38px; border-radius: 10px; background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.feature .ic-badge svg { width: 21px; height: 21px; stroke: var(--primary); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: .87rem; color: var(--text-soft); }

/* ── Recensioni ─────────────────────────────────────── */
.reviews { display: grid; gap: 14px; margin-top: 22px; }
.review {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px;
}
.review .head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.review h3 { font-size: .98rem; }
.review .body { font-size: .89rem; color: var(--text); }
.review .who { margin-top: 10px; font-size: .78rem; font-weight: 800; color: var(--text-soft); }
.review .verified { color: var(--primary); font-weight: 800; }
.review-pics { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.review-pics img {
    width: 74px; height: 74px; object-fit: cover; border-radius: 9px; border: 1px solid var(--border); cursor: zoom-in;
}

/* ── Tre osservazioni (sostituisce le citazioni vet) ── */
.notes { display: grid; gap: 12px; margin-top: 20px; }
.note {
    background: var(--primary-soft); border-radius: var(--radius); padding: 16px;
    border: 1px solid rgba(42,111,117,.16);
}
.note h3 { font-size: .95rem; color: var(--primary); margin-bottom: 6px; }
.note p { font-size: .87rem; }
.note span { display: block; margin-top: 8px; font-size: .75rem; font-weight: 800; color: var(--text-soft); }
.note-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; display: block; margin-bottom: 10px; border: 2px solid var(--primary-soft, #E3F0F1); }

/* ── Popup sconto (Selene: "Get 10% off") ───────────── */
.popup-backdrop {
    position: fixed; inset: 0; z-index: 90; background: rgba(44,48,58,.55);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
/* `display:flex` batte l'hint presentazionale di [hidden]: senza questa riga il
   popup resta visibile all'apertura della pagina e dopo la ×. */
.popup-backdrop[hidden] { display: none; }
.popup {
    background: var(--bg); border-radius: 16px; padding: 26px 22px; width: 100%; max-width: 380px;
    position: relative; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.popup-close { position: absolute; top: 8px; right: 12px; background: none; border: 0; font-size: 1.6rem; line-height: 1; color: var(--text-soft); cursor: pointer; }
.popup h3 { font-family: var(--font-serif, 'Playfair Display', serif); font-size: 1.5rem; margin-bottom: 6px; }
.popup .popup-big { font-size: 2.4rem; font-weight: 900; color: var(--cta); line-height: 1.1; margin: 4px 0 8px; }
.popup p { font-size: .88rem; color: var(--text-soft); margin-bottom: 14px; }
.popup input[type="email"] {
    width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: 10px;
    font: inherit; font-size: 1rem; margin-bottom: 10px; background: #fff;
}
.popup .cta { padding: 14px 18px; }
.popup .popup-legal { font-size: .68rem; margin: 10px 0 0; line-height: 1.4; }
.popup .popup-legal a { color: var(--text-soft); text-decoration: underline; }
.popup .popup-code { font-size: 1.6rem; font-weight: 900; letter-spacing: 2px; background: var(--primary-soft, #E3F0F1); color: var(--primary); border-radius: 10px; padding: 10px; margin: 10px 0; user-select: all; }
.popup .popup-error { color: var(--cta); font-size: .8rem; margin-top: 6px; }

/* ── Tabella comparativa ────────────────────────────── */
.table-scroll { overflow-x: auto; margin-top: 20px; -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; min-width: 330px; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
table.compare th, table.compare td { padding: 10px 5px; text-align: center; font-size: .76rem; border-bottom: 1px solid var(--border); }
table.compare th:first-child, table.compare td:first-child { text-align: left; font-weight: 700; padding-left: 10px; width: 40%; }
table.compare thead th { background: var(--primary); color: #fff; font-weight: 800; font-size: .7rem; line-height: 1.25; }
table.compare thead th:first-child { background: var(--primary-dark); }
table.compare tbody tr:last-child td { border-bottom: none; }
.yes { color: var(--ok); font-weight: 900; }
.no { color: var(--ko); font-weight: 900; }

/* ── Garanzia ───────────────────────────────────────── */
.guarantees { display: grid; gap: 12px; margin-top: 20px; }
.guarantee {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px;
    display: flex; gap: 14px; align-items: flex-start;
}
.guarantee svg { flex: 0 0 auto; width: 34px; height: 34px; stroke: var(--primary); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.guarantee h3 { font-size: 1rem; margin-bottom: 5px; }
.guarantee p { font-size: .87rem; color: var(--text-soft); }

/* ── Box offerta ────────────────────────────────────── */
.offer-box {
    background: #fff; border: 2px solid var(--primary); border-radius: 18px;
    padding: 20px 16px 22px; box-shadow: 0 10px 30px rgba(42,111,117,.10);
}
.offer-box h2 { font-size: 1.32rem; text-align: center; margin-bottom: 6px; }
.offer-lead { text-align: center; font-size: .87rem; color: var(--text-soft); margin-bottom: 16px; }

.picker-label { font-size: .78rem; font-weight: 900; letter-spacing: 1.1px; text-transform: uppercase; color: var(--text-soft); margin: 16px 0 8px; }
.qty-options { display: grid; gap: 9px; }
.qty-option {
    display: flex; align-items: center; gap: 11px; padding: 13px 13px;
    border: 2px solid var(--border); border-radius: 12px; cursor: pointer; background: #fff;
    transition: border-color .18s, background .18s;
}
.qty-option.on { border-color: var(--primary); background: var(--primary-soft); }
.qty-option input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; flex: 0 0 auto; }
.qty-option .t { flex: 1; }
.qty-option .t strong { display: block; font-size: .93rem; font-weight: 800; }
.qty-option .t span { font-size: .76rem; color: var(--text-soft); }
.qty-option .p { font-weight: 900; font-size: .95rem; white-space: nowrap; }

.included { margin-top: 18px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.included li { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-bottom: 1px solid var(--border); font-size: .87rem; }
.included li:last-child { border-bottom: none; }
.included li .ic { flex: 0 0 auto; width: 19px; height: 19px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 900; }
.included li .v { margin-left: auto; font-weight: 800; font-size: .82rem; color: var(--primary); white-space: nowrap; }
.total-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 13px; background: var(--primary-soft); font-weight: 900; font-size: 1.05rem;
}
.total-row .amount { color: var(--cta); font-size: 1.32rem; }

.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.pay-badges span {
    font-size: .72rem; font-weight: 800; color: var(--text-soft);
    border: 1px solid var(--border); border-radius: 999px; padding: 6px 11px; background: #fff;
}

/* ── Badge fiducia (3 colonne) ──────────────────────── */
.trust-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.trust-3 div { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 8px; }
.trust-3 svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 7px; }
.trust-3 strong { display: block; font-size: .8rem; font-weight: 800; }
.trust-3 span { font-size: .71rem; color: var(--text-soft); }

/* ── FAQ ────────────────────────────────────────────── */
.faq { margin-top: 18px; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 15px 2px; font-weight: 800; font-size: .93rem; cursor: pointer; list-style: none;
    min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--primary); flex: 0 0 auto; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 2px 16px; font-size: .89rem; color: var(--text-soft); }
.faq .a p + p { margin-top: 9px; }
.faq .a ul { margin-top: 8px; display: grid; gap: 6px; }
.faq .a ul li { padding-left: 16px; position: relative; }
.faq .a ul li::before { content: "•"; position: absolute; left: 3px; color: var(--primary); }

/* ── Sticky bar mobile ──────────────────────────────── */
.sticky-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: rgba(253,251,247,.97); border-top: 1px solid var(--border);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    display: flex; align-items: center; gap: 12px;
    transform: translateY(120%); transition: transform .25s ease;
    backdrop-filter: blur(6px);
}
.sticky-bar.on { transform: translateY(0); }
.sticky-bar .info { flex: 0 0 auto; line-height: 1.15; }
.sticky-bar .info strong { display: block; font-size: 1.05rem; font-weight: 900; color: var(--cta); }
.sticky-bar .info span { font-size: .68rem; color: var(--text-soft); font-weight: 700; }
.sticky-bar .cta { flex: 1; padding: 13px 12px; font-size: .92rem; }

/* ── Lightbox ───────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; background: rgba(20,20,20,.9); z-index: 200;
    display: none; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out;
}
.lightbox.on { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer { background: var(--primary); color: #fff; padding: 32px 0 40px; margin-top: 10px; }
.site-footer .wrap { text-align: center; }
.site-footer img { height: 40px; width: auto; margin: 0 auto 14px; filter: brightness(0) invert(1); }
.site-footer p { font-size: .8rem; opacity: .92; margin-bottom: 8px; line-height: 1.6; }
.site-footer a { text-decoration: underline; }
.site-footer .legal { font-size: .72rem; opacity: .78; margin-top: 16px; }
.site-footer .footer-legal-links {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px;
    font-size: .78rem; font-weight: 700; margin-top: 12px;
}

/* ── Fascia "Come visto su" ─────────────────────────── */
.as-seen { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); }
.as-seen-label {
    text-align: center; font-size: .7rem; font-weight: 900; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px;
}
.as-seen-logos {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 18px 26px;
}
.as-seen-logos img {
    height: 22px; width: auto; opacity: .55;
    filter: grayscale(100%);
}
.as-seen-logos img:last-child { height: 34px; }

/* ── Sottotitoli di sezione ─────────────────────────── */
.sec-sub, .pas-sub { font-size: .93rem; color: var(--text-soft); margin-top: 10px; }
.pas .pas-sub { font-weight: 700; }

/* ── Box offerta: barra sconto e countdown ──────────── */
.offer-flag {
    text-align: center; font-family: var(--font-h); font-weight: 800;
    font-size: 1.1rem; margin-bottom: 8px;
}
.offer-discount {
    background: var(--accent); color: #4a3208; border-radius: 10px;
    text-align: center; font-weight: 900; font-size: .84rem;
    padding: 9px 12px; line-height: 1.35;
}
.offer-last {
    text-align: center; margin-top: 14px; font-size: .82rem;
    font-weight: 800; color: var(--cta);
}
.countdown { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.countdown div {
    background: var(--primary); color: #fff; border-radius: 10px;
    min-width: 60px; padding: 8px 6px; text-align: center;
}
.countdown strong {
    display: block; font-size: 1.42rem; font-weight: 900;
    line-height: 1.1; font-variant-numeric: tabular-nums;
}
.countdown span { font-size: .64rem; font-weight: 700; opacity: .88; text-transform: uppercase; letter-spacing: .6px; }

.offer-box .offer-checks { margin: 14px 0 4px; gap: 8px; }
.offer-box .offer-checks li { font-size: .88rem; }

/* ── Guida alla scelta (popup) ──────────────────────── */
.picker-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.picker-head .picker-label { margin-bottom: 8px; }
.c-guide { position: relative; }
.c-guide-trigger {
    font-size: .76rem; font-weight: 800; color: var(--primary);
    text-decoration: underline; padding: 4px 0;
}
.c-guide-popup {
    display: none; position: absolute; right: 0; top: calc(100% + 6px); z-index: 40;
    width: min(300px, 78vw); background: #fff; border: 1px solid var(--border);
    border-radius: 12px; padding: 13px 14px; box-shadow: 0 12px 28px rgba(0,0,0,.14);
    text-align: left;
}
.c-guide.is-open .c-guide-popup { display: block; }
.c-guide-popup p { font-size: .8rem; margin-bottom: 8px; }
.c-guide-popup p:last-child { margin-bottom: 0; }
.c-guide-popup .tip { color: var(--text-soft); font-size: .75rem; font-weight: 700; }

/* ── Stack "Cosa e' incluso" ────────────────────────── */
.included li .lbl { flex: 1; }
.included li .lbl b { font-weight: 800; }
.included s { color: var(--text-soft); font-weight: 700; opacity: .8; }
.included .v b { font-weight: 900; }
.included .v .free { color: var(--ok); letter-spacing: .4px; }
.total-row s { font-size: .85rem; margin-right: 6px; }

.save-row { display: flex; gap: 8px; margin-top: 10px; }
.save-row span {
    flex: 1; text-align: center; border-radius: 999px; padding: 8px 6px;
    font-size: .74rem; font-weight: 900; letter-spacing: .5px;
}
.save-row .save { background: var(--cta); color: #fff; }
.save-row .gifts { background: var(--primary-soft); color: var(--primary); }

.buyers {
    text-align: center; margin-top: 14px; font-size: .8rem;
    font-weight: 700; color: var(--text-soft);
}
.buyers strong { color: var(--cta); font-weight: 900; font-variant-numeric: tabular-nums; }

.smart-buy {
    margin-top: 14px; text-align: center; font-size: .78rem;
    color: var(--text-soft); font-weight: 700; line-height: 1.5;
}

.pay-badges b { font-weight: 900; color: var(--text); }

/* ── Desktop: due colonne dove Selene le usa ────────── */
@media (min-width: 860px) {
    body { font-size: 17px; }
    section { padding: 56px 0; }

    .hero .wide {
        display: grid; column-gap: 44px; row-gap: 20px;
        grid-template-columns: 1.05fr 1fr;
        grid-template-areas: "top media" "bottom media" "quotes quotes";
        align-items: start;
    }
    .hero-top { grid-area: top; }
    .hero-media { grid-area: media; align-self: center; margin-bottom: 0; }
    .hero-bottom { grid-area: bottom; }
    .mini-quotes { grid-area: quotes; grid-template-columns: repeat(3, 1fr); margin-top: 8px; }
    .hero-top, .hero-bottom { text-align: left; }
    .hero .rating-line { justify-content: flex-start; }
    .hero h1 { font-size: 2.5rem; }
    .hero .cta { max-width: 420px; }

    .carousel-track figure { flex-basis: 32%; }

    .pas .wide { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
    .pas.flip .shot { order: 2; }
    .pas h2 { font-size: 1.95rem; text-align: left; }
    .pas .shot { margin-bottom: 0; }

    .features { grid-template-columns: repeat(3, 1fr); }
    .reviews { grid-template-columns: repeat(2, 1fr); align-items: start; }
    .notes { grid-template-columns: repeat(3, 1fr); }
    .guarantees { grid-template-columns: repeat(2, 1fr); }
    .qty-options { grid-template-columns: repeat(2, 1fr); }

    .offer-box { max-width: 620px; margin: 0 auto; padding: 30px 28px 32px; }
    .faq-wrap { max-width: 760px; margin: 0 auto; }
    .sec-head { text-align: center; max-width: 720px; margin: 0 auto; }
    .sec-head h2 { font-size: 2rem; }

    .as-seen-logos img { height: 26px; }
    .as-seen-logos img:last-child { height: 40px; }
    .countdown div { min-width: 72px; }

    .sticky-bar { justify-content: center; }
    .sticky-bar .cta { flex: 0 0 auto; min-width: 320px; }
    body { padding-bottom: 0; }
}

@media (max-width: 859px) {
    .sec-head h2, .center h2 { font-size: 1.55rem; }

    /* Ordine hero come Selene su mobile: prima l'immagine prodotto, poi stelle,
       H1, sottotitolo, bullet e CTA. Su desktop resta la griglia a due colonne. */
    .hero .wide { display: flex; flex-direction: column; }
    .hero-media { order: -1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}

/* ── Carosello: slide video UGC ─────────────────────── */
.carousel-track { align-items: flex-start; }
.carousel-track figure.v { position: relative; background: #12262A; }
/* height:auto annulla l'hint presentazionale dell'attributo height="1280",
   altrimenti il video resta alto 1280px e ignora l'aspect-ratio. */
.carousel-track figure.v video {
    display: block; width: 100%; height: auto; aspect-ratio: 9/16;
    object-fit: cover; background: #12262A;
}
.carousel-track figure.v figcaption { color: #E9EFEF; }
.carousel-track figure.v .v-sound {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    background: rgba(18,38,42,.72); color: #fff; border-radius: 999px;
    padding: 7px 12px; font-size: .7rem; font-weight: 800; letter-spacing: .3px;
    backdrop-filter: blur(4px);
}
.carousel-track figure.v.sound-on .v-sound { background: var(--primary); }

/* ── Box offerta: immagine del modello scelto ───────── */
.offer-media {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
    background: #fff; margin-bottom: 4px;
}
.offer-media img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* ── Order bump pre-checkout ────────────────────────── */
.bumps { display: grid; gap: 10px; margin-top: 14px; }
.bump {
    display: grid; grid-template-columns: auto 56px 1fr; gap: 3px 11px;
    align-items: center; cursor: pointer; text-align: left;
    border: 2px dashed var(--accent); border-radius: var(--radius);
    background: #FFF9EE; padding: 12px;
}
.bump.on { border-style: solid; border-color: var(--primary); background: var(--primary-soft); }
.bump input { grid-row: 1 / span 2; width: 20px; height: 20px; accent-color: var(--primary); cursor: pointer; }
.bump img { grid-row: 1 / span 2; width: 56px; height: 56px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border); }
.bump .tt { grid-column: 3; align-self: end; font-size: .88rem; font-weight: 800; line-height: 1.3; }
.bump .p { grid-column: 3; align-self: start; font-weight: 900; font-size: .92rem; color: var(--cta); }
.bump .cp { grid-column: 1 / -1; margin-top: 5px; font-size: .76rem; color: var(--text-soft); line-height: 1.45; }

/* ── Widget recensioni (sostituto di Judge.me) ──────── */
.rw { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-top: 20px; }
.rw-head { display: grid; gap: 16px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.rw-score { text-align: center; }
.rw-score strong { display: block; font-family: var(--font-h); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.rw-score .stars { display: block; color: var(--accent); font-size: 1.1rem; margin: 4px 0 3px; }
.rw-score > span:last-child { display: block; font-size: .8rem; color: var(--text-soft); font-weight: 700; }
.rw-bars { display: grid; gap: 5px; }
.rw-bars li { display: flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 700; color: var(--text-soft); }
.rw-bars .bar { flex: 1; height: 8px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.rw-bars .bar i { display: block; height: 100%; background: var(--accent); }
.rw-bars .n { min-width: 22px; text-align: right; font-variant-numeric: tabular-nums; }
.rw-list { max-height: 560px; overflow-y: auto; padding: 4px 4px 4px 0; margin-top: 14px; scrollbar-width: thin; }
.rw-item { border-bottom: 1px solid var(--border); padding: 14px 2px 16px; }
.rw-item:last-child { border-bottom: 0; }
.rw-item .head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rw-item .who { font-size: .84rem; font-weight: 800; }
.rw-item .who .vfy { display: inline-block; margin-left: 6px; font-size: .68rem; font-weight: 800; color: var(--ok); letter-spacing: .3px; }
.rw-item .date { font-size: .72rem; color: var(--text-soft); font-weight: 700; }
.rw-item h4 { font-size: .9rem; margin: 6px 0 4px; }
.rw-item p { font-size: .86rem; color: var(--text); }
.rw-item .pics { display: flex; gap: 7px; margin-top: 9px; flex-wrap: wrap; }
.rw-item .pics img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); cursor: zoom-in; }
.rw-foot { margin-top: 12px; font-size: .74rem; color: var(--text-soft); font-weight: 700; text-align: center; }

@media (min-width: 860px) {
    .rw-head { grid-template-columns: 200px 1fr; gap: 28px; }
}
