/* ============================================================
   Séparateur Graisse — design system unifié
   Blanc · navy #111111 · police système · pill · arrondis
   ============================================================ */
:root{
  --ink:#1d1d1f; --muted:#6e6e73; --line:#e3e3e8; --line-2:#d2d2d7;
  --surface:#f5f5f7; --white:#fff;
  --accent:#111111; --accent-h:#333333;
  --green:#1f9d55; --red:#c0392b;
  --r:12px; --r-lg:18px; --pill:980px;
  --wrap:1240px;
  --gutter:clamp(24px, 4vw, 56px); /* marge latérale : respire avec l'écran */
  --font:-apple-system,BlinkMacSystemFont,"SF Pro Text","Inter",system-ui,"Segoe UI",Roboto,sans-serif;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:var(--font); font-size:17px; line-height:1.6; color:var(--ink); background:#fff; letter-spacing:-.011em; -webkit-font-smoothing:antialiased; }
img{ max-width:100%; display:block; }
a{ color:var(--ink); text-decoration:none; }

h1,h2,h3,h4{ font-family:var(--font); font-weight:700; line-height:1.08; letter-spacing:-.022em; margin:0 0 .4em; color:var(--ink); text-wrap:balance; }
h1{ font-size:clamp(2.4rem,5vw,3.6rem); }
h2{ font-size:clamp(1.9rem,3.6vw,2.7rem); }
h3{ font-size:1.3rem; font-weight:600; }
p{ margin:0 0 1em; }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 var(--gutter); }
.section{ padding:80px 0; }

.eyebrow{ color:var(--accent); font-weight:600; font-size:1.02rem; margin-bottom:10px; }
.section-head{ margin-bottom:44px; }
.section-head.center{ text-align:center; }
.section-sub{ font-size:1.2rem; color:var(--muted); line-height:1.4; max-width:60ch; margin:0; }
.section-head.center .section-sub{ margin:0 auto; }

/* ---------- Boutons ---------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:var(--font); font-weight:500; font-size:1.05rem; padding:14px 26px; border:none; border-radius:var(--pill); cursor:pointer; transition:background .15s, transform .08s, opacity .15s; line-height:1; }
.btn:active{ transform:scale(.98); }
.btn-lg{ padding:16px 30px; font-size:1.12rem; }
.btn-block{ width:100%; }
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ background:var(--accent-h); color:#fff; }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ opacity:.88; color:#fff; }
.btn-ghost{ background:var(--surface); color:var(--ink); }
.btn-ghost:hover{ background:#e8e8ed; color:var(--ink); }
.btn-outline-light{ background:var(--surface); color:var(--ink); }
.btn-outline-light:hover{ background:#e8e8ed; }

/* ---------- Topbar / Header ---------- */
.topbar{ background:var(--surface); color:var(--muted); font-size:.82rem; }
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; gap:14px; padding:9px var(--gutter); flex-wrap:wrap; }
.topbar strong{ color:var(--ink); font-weight:600; }
.topbar .tb-item{ display:inline-flex; align-items:center; gap:8px; }
.topbar .tb-item svg{ width:15px; height:15px; fill:var(--muted); }
.header{ position:sticky; top:0; z-index:50; background:rgba(255,255,255,.85); backdrop-filter:saturate(180%) blur(20px); }
.header .wrap{ display:flex; align-items:center; gap:30px; height:92px; }
.logo img{ height:76px; width:auto; display:block; }
.nav{ display:flex; gap:6px; margin-left:auto; }
.nav a{ font-weight:400; font-size:1.15rem; color:var(--ink); padding:8px 14px; border-radius:8px; }
.nav a:hover,.nav a.active{ color:var(--accent); }
.header-cta{ display:flex; align-items:center; gap:14px; }
.cart-btn{ position:relative; background:none; border:none; width:44px; height:44px; border-radius:50%; cursor:pointer; display:grid; place-items:center; }
.cart-btn:hover{ background:var(--surface); }
.cart-btn svg{ width:22px; height:22px; fill:none; stroke:var(--ink); }
.cart-count{ position:absolute; top:2px; right:2px; background:var(--accent); color:#fff; font-size:.72rem; font-weight:700; min-width:19px; height:19px; border-radius:10px; display:grid; place-items:center; padding:0 5px; }
.cart-count[data-empty="1"]{ display:none; }
.burger{ display:none; background:none; border:none; cursor:pointer; padding:8px; }
.burger svg{ width:28px; height:28px; fill:var(--ink); }

/* ---------- Hero industriel pro (split pleine largeur) ---------- */
.hero{ background:linear-gradient(180deg,#fff 0%,var(--surface) 100%); border-bottom:1px solid var(--line); }
.hero .wrap{ display:grid; grid-template-columns:1.08fr .92fr; gap:56px; align-items:center; padding:64px var(--gutter) 72px; }
.hero .eyebrow{ font-weight:600; font-size:.92rem; text-transform:uppercase; letter-spacing:.08em; }
.promo-ribbon{ display:inline-flex; align-items:center; gap:8px; background:var(--accent); color:#fff; font-weight:600; font-size:.95rem; padding:7px 14px; border-radius:var(--pill); margin-bottom:18px; }
.promo-ribbon svg{ display:none; }
.hero h1{ font-size:clamp(2.6rem,4.4vw,4rem); margin-bottom:.35em; }
.hero h1 span{ color:var(--accent); }
.hero .lead{ font-size:1.3rem; color:var(--muted); max-width:44ch; margin:0 0 26px; }
.hero .lead strong{ color:var(--ink); font-weight:700; }
.hero-specs{ display:grid; grid-template-columns:repeat(4,auto); justify-content:start; gap:0; margin:26px 0 30px; border:1px solid var(--line-2); border-radius:var(--r); overflow:hidden; width:fit-content; }
.hero-spec{ text-align:left; padding:14px 20px; border-right:1px solid var(--line-2); }
.hero-spec:last-child{ border-right:none; }
.hero-spec .k{ font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); }
.hero-spec .v{ font-size:1.15rem; font-weight:700; margin-top:3px; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.hero-visual{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:48px; display:grid; place-items:center; box-shadow:0 20px 50px rgba(0,0,0,.10); }
.hero-visual img{ max-height:440px; width:auto; mix-blend-mode:multiply; }

/* ---------- Tuiles marketing ---------- */
.ftile{ text-align:center; padding:72px 24px 0; }
.ftile.grey{ background:var(--surface); }
.ft-inner{ max-width:900px; margin:0 auto; }
.ft-eyebrow{ color:var(--accent); font-size:1.15rem; font-weight:600; margin-bottom:6px; }
.ft-title{ font-size:clamp(2.2rem,4.6vw,3.4rem); font-weight:700; letter-spacing:-.028em; margin:0 0 12px; }
.ft-sub{ font-size:clamp(1.15rem,2.2vw,1.5rem); color:var(--muted); max-width:36ch; margin:0 auto 16px; }
.ft-links{ display:flex; gap:26px; justify-content:center; }
.ft-links a{ color:var(--accent); font-size:1.15rem; }
.ft-links a:hover{ text-decoration:underline; }
.ft-img{ margin:24px auto 0; max-height:420px; width:auto; mix-blend-mode:multiply; }

/* ---------- Bande réassurance ---------- */
.trust-strip{ background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-strip .wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; padding:34px var(--gutter); }
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item svg{ width:26px; height:26px; fill:var(--accent); flex:none; }
.trust-item strong{ display:block; font-weight:600; }
.trust-item span{ font-size:.86rem; color:var(--muted); }

/* ---------- Bande explication (icône+titre+texte) ---------- */
.trustbar{ background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trustbar .wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:34px; padding:44px var(--gutter); }
.tb-col{ display:flex; gap:14px; align-items:flex-start; }
.tb-col svg{ width:28px; height:28px; fill:var(--accent); flex:none; margin-top:2px; }
.tb-col strong{ display:block; font-weight:600; margin-bottom:5px; }
.tb-col span{ font-size:.92rem; color:var(--muted); line-height:1.45; display:block; }

/* ---------- Configurateur ---------- */
.cfg{ max-width:720px; margin:0 auto; }
.cfg-q{ margin-bottom:24px; }
.cfg-q label{ display:block; font-weight:600; margin-bottom:10px; font-size:1.08rem; }
.cfg-opts{ display:flex; flex-wrap:wrap; gap:10px; }
.cfg-opts button{ padding:11px 18px; border:1px solid var(--line-2); border-radius:var(--pill); background:#fff; cursor:pointer; font-size:1rem; font-family:var(--font); color:var(--ink); }
.cfg-opts button:hover{ border-color:var(--ink); }
.cfg-opts button.on{ background:var(--accent); border-color:var(--accent); color:#fff; }
#cfgCouverts{ width:100%; max-width:260px; padding:13px 16px; border:1px solid var(--line-2); border-radius:var(--r); font-size:1.05rem; font-family:var(--font); }
.cfg-reco{ margin-top:12px; padding:30px; background:var(--surface); border-radius:var(--r-lg); text-align:center; display:flex; flex-direction:column; align-items:center; gap:12px; }
.cfg-reco-k{ color:var(--muted); font-size:.95rem; }
.cfg-reco strong{ font-size:2rem; font-weight:700; }
.cfg-reco-note{ color:var(--muted); font-size:.82rem; }

/* ---------- Métiers ---------- */
.metiers{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.metier{ display:flex; flex-direction:column; align-items:center; text-align:center; border:1px solid var(--line); border-radius:var(--r-lg); padding:22px 12px; background:#fff; transition:box-shadow .18s, transform .18s; }
.metier:hover{ box-shadow:0 12px 30px rgba(0,0,0,.08); transform:translateY(-3px); }
.metier img{ width:100%; max-width:150px; height:110px; object-fit:contain; }
.metier span{ margin-top:12px; font-weight:600; }

/* ---------- Grille produits ---------- */
.grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card{ position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; display:flex; flex-direction:column; text-align:center; transition:box-shadow .18s, transform .18s; }
.card:hover{ box-shadow:0 12px 30px rgba(0,0,0,.10); transform:translateY(-4px); }
.card-badge{ position:absolute; top:12px; left:12px; z-index:2; background:var(--ink); color:#fff; font-size:.72rem; font-weight:600; padding:5px 10px; border-radius:8px; }
.card-disc{ position:absolute; top:12px; right:12px; z-index:2; background:var(--accent); color:#fff; font-size:.8rem; font-weight:700; padding:5px 9px; border-radius:8px; }
.card-media{ background:var(--surface); aspect-ratio:1/1; display:grid; place-items:center; padding:22px; }
.card-media img{ max-height:100%; width:auto; mix-blend-mode:multiply; }
.card-body{ padding:18px 20px 20px; display:flex; flex-direction:column; flex:1; }
.card-ref{ font-size:.72rem; letter-spacing:.04em; color:var(--muted); text-transform:uppercase; margin-bottom:6px; }
.card h3{ font-size:1.2rem; font-weight:600; margin-bottom:12px; }
.card h3 a{ color:var(--ink); }
.card h3 a:hover{ color:var(--accent); }
.card-specs{ text-align:left; border-top:1px solid var(--line); margin-bottom:14px; }
.card-spec{ display:flex; justify-content:space-between; padding:7px 0; border-bottom:1px solid var(--line); font-size:.86rem; }
.card-spec .k{ color:var(--muted); }
.card-spec .v{ font-weight:600; }
.card-price{ margin-top:auto; display:flex; align-items:baseline; justify-content:center; gap:10px; }
.price-ht{ font-size:1.6rem; font-weight:700; letter-spacing:-.02em; }
.price-ht .u{ font-size:.8rem; color:var(--muted); font-weight:500; }
.price-compare{ text-decoration:line-through; color:var(--muted); font-size:.92rem; }
.card-save{ font-size:.82rem; color:var(--muted); margin:2px 0 14px; }
.price-ttc{ display:none; }
.card-actions{ display:flex; gap:8px; }

/* ---------- Boutique ---------- */
.shop-head{ background:var(--surface); padding:52px 0; }
.shop-head h1{ margin-bottom:6px; }
.shop-head p{ color:var(--muted); margin:0; }
.filters{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.filter-btn{ padding:10px 20px; border:1px solid var(--line-2); border-radius:var(--pill); background:#fff; cursor:pointer; font-size:.95rem; font-family:var(--font); color:var(--ink); }
.filter-btn:hover{ border-color:var(--ink); }
.filter-btn.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

/* ---------- Fiche produit ---------- */
.pdp{ display:grid; grid-template-columns:1.56fr 1fr; gap:48px; padding:44px 0; } /* colonne droite = buybox, ~465px */
.pdp-gallery{ position:sticky; top:110px; }
.pdp-main{ position:relative; background:var(--surface); border-radius:var(--r-lg); aspect-ratio:1/1; display:grid; place-items:center; padding:34px; }
.pdp-main::before{ content:attr(data-ref); position:absolute; top:16px; left:18px; font-size:.74rem; letter-spacing:.06em; color:var(--muted); text-transform:uppercase; }
.pdp-main img{ max-width:100%; max-height:100%; width:auto; mix-blend-mode:multiply; }
.pdp-thumbs{ display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:8px; }
.pdp-thumb{ aspect-ratio:1/1; background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:6px; cursor:pointer; display:grid; place-items:center; }
.pdp-thumb.active{ border-color:var(--ink); border-width:2px; }
.pdp-thumb img{ max-width:100%; max-height:100%; width:auto; mix-blend-mode:multiply; }
.pdp-cat{ font-size:.78rem; letter-spacing:.06em; color:var(--muted); text-transform:uppercase; }
.pdp-info{ min-width:0; } /* sans ça, la colonne refuse de rétrécir (min-content) */
.pdp-info h1{ margin:8px 0 6px; font-size:clamp(1.7rem,2.6vw,2.2rem); }
.pdp-tag{ display:inline-flex; align-items:center; gap:8px; background:var(--surface); border-radius:var(--pill); font-size:.85rem; padding:7px 14px; margin:6px 0 8px; }
.pdp-tag svg{ width:16px; height:16px; fill:var(--accent); }
.vol-nav{ display:flex; flex-wrap:wrap; align-items:center; gap:5px; margin:14px 0 18px; }
.vol-nav::-webkit-scrollbar{ display:none; }
.vol-nav-label{ flex:0 0 100%; font-size:.82rem; color:var(--muted); margin:0 0 8px; white-space:nowrap; }
.vol-nav a{ flex:1 1 0; min-width:0; text-align:center; padding:6px 4px; border:1px solid var(--line-2); border-radius:var(--pill); font-size:.8rem; color:var(--ink); white-space:nowrap; }
.vol-nav a:hover{ border-color:var(--ink); }
.vol-nav a.on{ background:var(--accent); border-color:var(--accent); color:#fff; }
.pdp-price{ display:flex; align-items:center; gap:14px; margin:18px 0 6px; flex-wrap:wrap; }
.pdp-price .price-ht{ display:inline-flex; align-items:baseline; gap:5px; font-size:2.6rem; line-height:1; }
.pdp-price .price-ht .u{ font-size:.9rem; font-weight:600; color:var(--muted); }
.price-was{ text-decoration:line-through; color:var(--muted); font-size:1.05rem; font-weight:500; }
.pdp-disc{ background:var(--accent); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.02em; padding:3px 7px; border-radius:5px; line-height:1.2; }
.pdp-disc{ background:var(--accent); color:#fff; font-weight:700; font-size:.95rem; padding:4px 10px; border-radius:var(--pill); align-self:center; }
.pdp-ttc{ font-size:.84rem; color:var(--muted); margin:0 0 4px; }
.badge-stock{ display:inline-flex; align-items:center; gap:8px; color:var(--green); font-weight:600; font-size:1.05rem; margin:16px 0 12px; }
.badge-stock svg{ width:20px; height:20px; fill:var(--green); }
.cutoff-urgency{ background:#fff; border:1.5px solid var(--accent); color:var(--ink); padding:11px 14px; border-radius:var(--r); font-size:.82rem; margin:12px 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; text-align:center; }
.cutoff-urgency strong{ color:var(--accent); font-weight:700; }
.delivery-est{ display:flex; align-items:center; justify-content:center; gap:8px; color:var(--ink); font-size:.9rem; margin:5px 0 0; white-space:nowrap; }
.delivery-est strong{ font-weight:700; }
.dpd-logo{ height:24px; width:auto; flex:none; }
.up-was{ display:block; order:2; text-decoration:line-through; color:var(--muted); font-weight:400; font-size:.72rem; margin:2px 0 0; }

/* upsell + docs */
.pdp-upsell{ margin:24px 0; }
.po-head{ font-size:1.12rem; font-weight:600; margin-bottom:12px; }
.upsell-opt{ display:flex; align-items:center; gap:12px; border:1px solid var(--line); border-radius:var(--r); padding:10px 14px; margin-bottom:8px; cursor:pointer; transition:border-color .12s, background .12s; }
.upsell-opt:hover{ border-color:var(--line-2); }
.upsell-opt:has(.upsell-cb:checked){ background:var(--surface); border-color:var(--accent); }
.upsell-cb{ width:20px; height:20px; flex:none; accent-color:var(--accent); cursor:pointer; }
.upsell-opt img,.upsell-gift-ico{ width:34px; height:34px; object-fit:contain; mix-blend-mode:multiply; flex:none; display:grid; place-items:center; }
.upsell-gift-ico svg{ width:22px; height:22px; fill:var(--ink); }
.upsell-opt .po-txt{ flex:1; display:flex; flex-direction:column; gap:1px; min-width:0; }
.upsell-opt .po-txt strong{ font-size:.92rem; line-height:1.2; }
.upsell-opt .po-txt span{ font-size:.78rem; color:var(--muted); }
.upsell-price{ display:flex; flex-direction:column; align-items:flex-end; font-weight:600; white-space:nowrap; line-height:1.25; }
.upsell-price.offert{ color:var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:.03em; font-size:.78rem; }

.pdp-buy{ margin:20px 0; }
.pdp-usps{ list-style:none; padding:20px 0 0; margin:22px 0; display:grid; gap:11px; border-top:1px solid var(--line); }
.pdp-usps li{ display:flex; gap:11px; align-items:flex-start; font-size:.96rem; }
.pdp-usps svg{ width:18px; height:18px; fill:var(--ink); flex:none; margin-top:3px; }
.specs-title{ font-size:1.1rem; font-weight:600; margin:26px 0 0; padding-bottom:8px; border-bottom:2px solid var(--ink); }
.specs{ width:100%; border-collapse:collapse; }
.specs th,.specs td{ text-align:left; padding:11px 0; border-bottom:1px solid var(--line); font-size:.94rem; }
.specs th{ color:var(--muted); font-weight:500; width:44%; }
.specs td{ font-weight:600; }

/* ---------- Avis ---------- */
.reviews-band{ background:var(--surface); }
.tp-rating{ display:flex; align-items:center; justify-content:center; gap:12px; margin:14px 0 0; flex-wrap:wrap; }
.tp-text{ font-size:.95rem; color:var(--ink); }
.tp-score{ font-weight:700; }
.tp-stars{ height:25px; width:auto; }
.tp-logo{ height:21px; width:auto; }
.reviews.grid{ margin-top:8px; }
.review-card{ background:#fff; border-radius:var(--r-lg); padding:26px; display:flex; flex-direction:column; gap:14px; box-shadow:0 4px 20px rgba(0,0,0,.05); }
.review-stars{ display:flex; gap:2px; }
.review-stars svg{ width:18px; height:18px; fill:#00b67a; }
.review-card p{ margin:0; font-size:1.02rem; line-height:1.55; }
.review-author{ font-size:.85rem; color:var(--muted); margin-top:auto; }
.review-author strong{ color:var(--ink); }

/* ---------- Peur / Solution ---------- */
.fearsol{ background:#fff; }
.fearsol .section-sub{ color:var(--muted); }
.fs-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fs-col{ padding:30px 28px; border-radius:var(--r-lg); }
.fs-risk{ background:#faf1f1; }
.fs-sol{ background:#f0f7f2; }
.fs-col h3{ margin-bottom:18px; }
.fs-risk h3{ color:var(--red); }
.fs-sol h3{ color:var(--green); }
.fs-col ul{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.fs-col li{ display:flex; gap:12px; align-items:flex-start; }
.fs-col li::before{ font-weight:700; }
.fs-risk li::before{ content:"✕"; color:var(--red); }
.fs-sol li::before{ content:"✓"; color:var(--green); }

/* ---------- Réglementation / SEO ---------- */
.reg .reg-list{ list-style:none; padding:0; margin:20px 0; display:grid; gap:12px; }
.reg-list li{ display:flex; gap:12px; align-items:flex-start; padding:14px 16px; background:var(--surface); border-radius:var(--r); }
.reg-list svg{ width:20px; height:20px; fill:var(--accent); flex:none; margin-top:2px; }
.seo-block{ background:var(--surface); }
.seo-block .wrap{ padding:48px var(--gutter); }
.seo-block h2{ font-size:1.5rem; }
.seo-block h3{ font-size:1.05rem; margin:22px 0 8px; color:var(--muted); }
.seo-block p{ color:var(--muted); max-width:75ch; }

/* ---------- FAQ ---------- */
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:var(--r); margin-bottom:10px; overflow:hidden; }
.faq-q{ width:100%; text-align:left; padding:18px 22px; background:none; border:none; cursor:pointer; font-family:var(--font); font-size:1.1rem; font-weight:600; color:var(--ink); display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-q::after{ content:"+"; font-size:1.4rem; color:var(--accent); }
.faq-item.open .faq-q::after{ content:"−"; }
.faq-a{ padding:0 22px; max-height:0; overflow:hidden; transition:max-height .25s, padding .25s; }
.faq-item.open .faq-a{ padding:0 22px 20px; max-height:420px; }

/* ---------- Bandes CTA / Expert ---------- */
.cta-band{ background:var(--surface); }
.cta-band .wrap{ display:flex; justify-content:space-between; align-items:center; gap:24px; padding:44px var(--gutter); flex-wrap:wrap; }
.cta-band h2{ margin:0; }
.cta-band p{ margin:6px 0 0; color:var(--muted); }
.help-band{ background:var(--ink); }
.help-band .wrap{ display:flex; justify-content:space-between; align-items:center; gap:24px; padding:44px var(--gutter); flex-wrap:wrap; }
.help-band .hb-eyebrow{ color:#9aa0a6; font-weight:600; margin-bottom:6px; }
.help-band h3{ color:#fff; font-size:1.6rem; }
.help-band p{ color:#aeb6c0; margin:6px 0 0; max-width:54ch; }
.help-band .hb-contact{ text-align:right; }
.help-band .big-phone{ display:block; color:#fff; font-size:1.7rem; font-weight:700; }
.help-band .hb-contact a[href^="mailto"]{ display:block; color:#aeb6c0; font-size:.95rem; margin-top:4px; }

/* ---------- Footer ---------- */
.footer{ background:var(--surface); padding:56px 0 26px; }
.footer .wrap{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:34px; }
.footer .logo img{ height:44px; margin-bottom:14px; }
.footer h4{ font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; color:var(--ink); margin-bottom:14px; }
.footer a{ display:block; padding:5px 0; color:var(--muted); font-size:.94rem; }
.footer a:hover{ color:var(--accent); }
.footer p{ color:var(--muted); }
.footer .pill{ font-size:.78rem; font-weight:600; padding:7px 12px; border:1px solid var(--line-2); border-radius:var(--pill); color:var(--muted); }
.footer-bottom{ grid-column:1/-1; border-top:1px solid var(--line-2); margin-top:34px; padding-top:20px; font-size:.8rem; color:var(--muted); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* ---------- Panier ---------- */
.drawer-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.4); opacity:0; visibility:hidden; transition:opacity .2s; z-index:90; }
.drawer-overlay.open{ opacity:1; visibility:visible; }
.drawer{ position:fixed; top:0; right:0; height:100%; width:430px; max-width:92vw; background:#fff; z-index:100; transform:translateX(100%); transition:transform .25s; display:flex; flex-direction:column; }
.drawer.open{ transform:translateX(0); }
.drawer-head{ padding:22px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; }
.drawer-head h3{ margin:0; }
.drawer-close{ background:none; border:none; font-size:1.7rem; cursor:pointer; color:var(--muted); line-height:1; }
.drawer-items{ flex:1; overflow-y:auto; padding:8px 22px; }
.drawer-empty{ text-align:center; color:var(--muted); padding:44px 10px; }
.line-item{ display:grid; grid-template-columns:54px 1fr auto; column-gap:12px; align-items:center; padding:14px 0; border-bottom:1px solid var(--line); }
.line-item > div{ min-width:0; }
.line-item img{ width:54px; height:54px; object-fit:contain; background:var(--surface); border-radius:var(--r); mix-blend-mode:multiply; }
.li-title{ font-weight:600; font-size:.92rem; }
.li-price{ color:var(--muted); font-size:.82rem; }
.li-qty{ display:flex; align-items:center; gap:8px; margin-top:6px; }
.li-qty button{ width:28px; height:28px; border:1px solid var(--line-2); background:#fff; border-radius:50%; cursor:pointer; }
.li-remove{ background:none; border:none; color:var(--muted); cursor:pointer; font-size:.8rem; padding-left:6px; margin-left:auto; }
.li-remove:hover{ color:var(--red); }
.line-item > div:last-child{ font-weight:600; white-space:nowrap; align-self:start; padding-top:2px; }
.drawer-foot{ padding:22px; border-top:1px solid var(--line); }
.drawer-total{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px; }
.drawer-total .t-label{ font-weight:600; }
.drawer-total .t-val{ font-size:1.6rem; font-weight:700; }
.drawer-note{ font-size:.78rem; color:var(--muted); margin-bottom:14px; }
#paypal-container{ margin-top:10px; }
#checkoutMsg{ font-size:.85rem; color:var(--muted); text-align:center; margin-top:8px; }

/* ---------- Toast / mobile ---------- */
.toast{ position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(30px); background:var(--ink); color:#fff; padding:14px 22px; border-radius:var(--r); z-index:120; opacity:0; transition:all .25s; font-weight:600; display:flex; align-items:center; gap:10px; }
.toast svg{ width:18px; height:18px; fill:#fff; }
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
.mobile-buy{ display:none; position:fixed; bottom:0; left:0; right:0; z-index:80; background:#fff; border-top:1px solid var(--line); padding:10px 16px; align-items:center; gap:12px; box-shadow:0 -4px 16px rgba(0,0,0,.08); }
.mobile-buy .mb-price{ font-size:1.3rem; font-weight:700; }
.mobile-buy .mb-price small{ display:block; font-size:.62rem; color:var(--muted); text-decoration:line-through; }
.mobile-buy .btn{ flex:1; padding:14px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.contact-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:34px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-weight:600; margin-bottom:7px; font-size:.9rem; }
.field input,.field textarea,.field select{ width:100%; padding:13px 14px; border:1px solid var(--line-2); border-radius:var(--r); font-family:var(--font); font-size:1rem; }
.field textarea{ min-height:130px; resize:vertical; }
.contact-info-row{ display:flex; gap:13px; align-items:flex-start; margin-bottom:20px; }
.contact-info-row svg{ width:22px; height:22px; fill:var(--accent); flex:none; margin-top:2px; }

/* ---------- Masqués (composants dépréciés) ---------- */
.docs-gift,.docs-included,.pdp-badges,.guarantee-bar,.hazard-bar,.sizer{ display:none; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .hero .wrap{ grid-template-columns:1fr; gap:32px; padding:44px var(--gutter) 52px; }
  .hero-visual{ order:-1; }
  .grid{ grid-template-columns:repeat(2,1fr); }
  .pdp{ grid-template-columns:1fr; gap:32px; }
  .pdp-gallery{ position:static; }
  .trust-strip .wrap,.trustbar .wrap{ grid-template-columns:1fr 1fr; }
  .metiers{ grid-template-columns:repeat(2,1fr); }
  .footer .wrap{ grid-template-columns:1fr 1fr; }
  .contact-grid,.fs-grid{ grid-template-columns:1fr; }
  .help-band .wrap,.cta-band .wrap{ flex-direction:column; align-items:flex-start; }
  .help-band .hb-contact{ text-align:left; }
}
@media (max-width:640px){
  .section{ padding:56px 0; }
  .nav{ display:none; position:absolute; top:92px; left:0; right:0; background:#fff; flex-direction:column; border-bottom:1px solid var(--line); padding:8px; }
  .nav.open{ display:flex; }
  .burger{ display:block; margin-left:auto; }
  .grid{ grid-template-columns:1fr; }
  .metiers{ grid-template-columns:1fr; }
  .trust-strip .wrap,.trustbar .wrap{ grid-template-columns:1fr; }
  .footer .wrap{ grid-template-columns:1fr 1fr; }
  .mobile-buy{ display:flex; }
  body{ padding-bottom:72px; }
  .hero-specs{ gap:24px; }
}

/* ============ Filet de sécurité icônes + sections manquantes ============ */
/* Plancher global : toute icône SVG sans taille propre reste petite (jamais géante). */
svg{ width:20px; height:20px; }
.logo img, img{ width:auto; }

/* Tableau comparatif */
.compare{ overflow-x:auto; margin-top:8px; border:1px solid var(--line); border-radius:var(--r-lg); }
.compare table{ width:100%; border-collapse:collapse; font-size:.95rem; }
.compare th, .compare td{ padding:14px 16px; text-align:center; border-bottom:1px solid var(--line); }
.compare thead th{ font-weight:700; color:var(--ink); background:var(--surface); }
.compare tbody th{ text-align:left; font-weight:600; color:var(--ink); }
.compare .us{ background:#f5f5f7; color:var(--accent); font-weight:700; }
.compare thead th.us{ background:var(--accent); color:#fff; }
.compare tr:last-child td, .compare tr:last-child th{ border-bottom:none; }
.compare .yes svg{ width:18px; height:18px; fill:var(--green); vertical-align:middle; }
.compare .no{ color:#c0392b; font-weight:700; font-size:1.1rem; }

/* Bandeau meilleur prix garanti */
.price-guarantee{ padding:16px 0; }
.price-guarantee .wrap{ display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:20px 26px; }
.price-guarantee svg{ width:34px; height:34px; fill:var(--accent); flex:none; }
.price-guarantee strong{ color:var(--ink); }
.price-guarantee span{ color:var(--muted); }

/* Bouton contact sidebar aide (évite débordement) */
.aide-side-box .btn-block{ font-size:.9rem; padding:11px 14px; white-space:nowrap; }

/* ============ Page calculateur ============ */
.calc-why{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:8px; }
.calc-why-item{ display:flex; gap:12px; align-items:flex-start; text-align:left; }
.calc-why-item svg{ width:26px; height:26px; color:var(--accent); flex-shrink:0; }
.calc-why-item strong{ display:block; color:var(--ink); margin-bottom:4px; }
.calc-why-item p{ margin:0; font-size:.9rem; color:var(--muted); line-height:1.55; }
.calc-why-note{ text-align:center; font-size:.85rem; color:var(--muted); margin-top:28px; }
.calc-why-note a{ color:var(--accent); }
@media (max-width:760px){ .calc-why{ grid-template-columns:1fr; gap:16px; } }

/* ============ Centre d'aide ============ */
.aide-cats{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.aide-cat{ border:1px solid var(--line); border-radius:var(--r-lg); padding:24px; background:#fff; }
.aide-cat-head{ display:flex; align-items:center; gap:11px; margin-bottom:14px; }
.aide-cat-ico{ width:38px; height:38px; border-radius:10px; background:var(--surface); display:grid; place-items:center; color:var(--accent); flex-shrink:0; }
.aide-cat-ico svg{ width:20px; height:20px; }
.aide-cat h2{ font-size:1.05rem; margin:0; }
.aide-cat-list{ list-style:none; margin:0; padding:0; }
.aide-cat-list li{ border-top:1px solid var(--line); }
.aide-cat-list li:first-child{ border-top:none; }
.aide-cat-list a{ display:block; padding:10px 0; color:var(--ink); font-size:.92rem; }
.aide-cat-list a:hover{ color:var(--accent); }
.aide-help-band{ margin-top:32px; background:var(--surface); border-radius:var(--r-lg); padding:26px 32px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.aide-article{ display:grid; grid-template-columns:1fr 300px; gap:44px; padding-top:36px; padding-bottom:20px; align-items:start; }
.aide-crumb{ grid-column:1/-1; font-size:.85rem; color:var(--muted); margin-bottom:4px; }
.aide-crumb a{ color:var(--accent); }
.aide-crumb span{ margin:0 6px; }
.aide-body h1{ font-size:2.1rem; margin-bottom:.5em; }
.aide-body h2{ font-size:1.3rem; margin:1.4em 0 .5em; }
.aide-body p{ margin:0 0 1em; color:var(--ink); line-height:1.7; }
.aide-body ul{ margin:0 0 1.2em; padding-left:1.2em; }
.aide-body li{ margin:.4em 0; line-height:1.6; }
.aide-body a{ color:var(--accent); text-decoration:underline; text-underline-offset:2px; }
.aide-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; padding-top:24px; border-top:1px solid var(--line); }
.aide-body a.btn, .aide-side-box a.btn{ text-decoration:none; }
.aide-body a.btn-primary, .aide-side-box a.btn-primary{ color:#fff; }
.aide-body a.btn-ghost{ color:var(--accent); }
.aide-side{ position:sticky; top:90px; display:flex; flex-direction:column; gap:16px; }
.aide-side-box{ border:1px solid var(--line); border-radius:var(--r); padding:20px; }
.aide-side-box h3{ font-size:.95rem; margin:0 0 12px; }
.aide-side-box ul{ list-style:none; margin:0; padding:0; }
.aide-side-box li{ border-top:1px solid var(--line); }
.aide-side-box li:first-child{ border-top:none; }
.aide-side-box a{ display:block; padding:9px 0; font-size:.88rem; color:var(--ink); }
.aide-side-box a:hover{ color:var(--accent); }
.aide-side-contact p{ font-size:.9rem; color:var(--muted); margin:0 0 14px; line-height:1.6; }
@media (max-width:900px){
  .aide-cats{ grid-template-columns:1fr 1fr; }
  .aide-article{ grid-template-columns:1fr; gap:28px; }
  .aide-side{ position:static; }
}
@media (max-width:600px){ .aide-cats{ grid-template-columns:1fr; } }

/* ============ Calculateur NF EN 1825 - design Séparateur Graisse épuré ============ */
/* Aucun code visuel repris de bacgraisse : barre de progression fine (pas de pastilles),
   cartes aérées, compteur rond minimal, résultat clair sur blanc. */
.sg-shell{ max-width:720px; margin:0 auto; background:transparent; }
.sg-header, .sg-header-left, .sg-header-title, .sg-header-sub, .sg-header-steps, .sg-pill, .sg-pill-line{ display:none; }
/* Barre de progression fine, visible partout */
.sg-mprog{ display:flex; align-items:center; gap:14px; margin:0 auto 34px; }
.sg-mprog-bar{ flex:1; height:4px; background:var(--surface); border-radius:4px; overflow:hidden; }
.sg-mprog-bar span{ display:block; height:100%; width:16.66%; background:var(--accent); border-radius:4px; transition:width .35s ease; }
.sg-mprog-txt{ font-size:.78rem; font-weight:600; color:var(--muted); white-space:nowrap; font-variant-numeric:tabular-nums; }
.sg-content-zone{ position:relative; }
.sg-panel{ display:none; }
.sg-panel.active{ display:block; }
#panel-2.active{ display:flex; flex-direction:column; }
.sg-anim-fwd{ animation:sgFade .3s ease; }
.sg-anim-back{ animation:sgFade .3s ease; }
@keyframes sgFade{ from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.sg-panel-q{ font-size:1.7rem; font-weight:700; color:var(--ink); text-align:center; margin-bottom:32px; line-height:1.25; letter-spacing:-.01em; }
.sg-grid-6{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.sg-grid-4{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; max-width:600px; margin:0 auto; }
.sg-grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.sg-grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; max-width:460px; }
.sg-centered{ margin-left:auto; margin-right:auto; }
.sg-card{ position:relative; border:1px solid var(--line); border-radius:16px; padding:26px 14px; text-align:center; cursor:pointer; transition:border-color .15s, background .15s; background:#fff; display:flex; flex-direction:column; align-items:center; gap:12px; color:var(--ink); user-select:none; }
.sg-card span{ font-size:.95rem; font-weight:600; line-height:1.35; color:var(--ink); }
.sg-card small{ font-size:.78rem; font-weight:400; color:var(--muted); }
.sg-card:hover{ border-color:var(--accent); background:#f5f5f7; }
.sg-card.selected{ border-color:var(--accent); background:#f5f5f7; }
.sg-card.selected::after{ content:""; position:absolute; top:10px; right:10px; width:18px; height:18px; border-radius:50%; background:var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; animation:sgPop .25s cubic-bezier(.2,1.5,.5,1); }
@keyframes sgPop{ from{transform:scale(0)} to{transform:scale(1)} }
.sg-ico{ width:30px; height:30px; flex-shrink:0; color:var(--accent); }
.sg-ico-sm{ width:20px; height:20px; }
/* Compteur épuré (boutons ronds) */
.sg-counter-wrap{ display:flex; align-items:center; justify-content:center; gap:30px; margin:6px auto 4px; }
.sg-counter-btn{ width:52px; height:52px; border-radius:50%; background:#fff; border:1.5px solid var(--line-2); color:var(--accent); font-size:1.5rem; font-weight:400; cursor:pointer; transition:border-color .15s, background .15s; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sg-counter-btn:hover{ border-color:var(--accent); background:var(--surface); }
.sg-counter-btn:active{ background:#f5f5f7; }
.sg-counter-display{ display:flex; flex-direction:column; align-items:center; gap:2px; min-width:150px; }
.sg-counter-display input{ font-size:4rem; font-weight:800; color:var(--ink); border:none; background:transparent; text-align:center; width:180px; outline:none; line-height:1; -moz-appearance:textfield; letter-spacing:-.02em; }
.sg-counter-display input::-webkit-inner-spin-button,.sg-counter-display input::-webkit-outer-spin-button{ -webkit-appearance:none; }
.sg-counter-label{ font-size:.75rem; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; }
.sg-counter-hint{ text-align:center; font-size:.75rem; color:var(--muted); margin:16px 0 2px; }
.sg-nav-row{ display:flex; justify-content:space-between; align-items:center; margin-top:38px; }
.sg-btn-back{ background:none; border:none; color:var(--muted); font-size:.92rem; font-weight:600; cursor:pointer; padding:12px 2px; transition:color .15s; }
.sg-btn-back:hover{ color:var(--accent); }
.sg-btn-next{ background:var(--accent); color:#fff; border:none; padding:14px 34px; border-radius:var(--pill); font-size:.98rem; font-weight:600; cursor:pointer; transition:background .15s, transform .1s; }
.sg-btn-next:hover{ background:#333333; transform:translateY(-1px); }
.sg-btn-go{ background:var(--accent); }
.sg-btn-go:hover{ background:#333333; }
/* Résultat clair */
.sg-fit-row{ display:flex; align-items:center; gap:11px; padding:0 2px 22px; }
.sg-fit-dot{ width:10px; height:10px; border-radius:50%; flex-shrink:0; background:var(--green,#11b67a); }
.sg-fit-msg{ font-size:1rem; font-weight:600; color:var(--ink); }
.sg-res-card{ display:flex; align-items:center; justify-content:space-between; background:var(--surface); border:1px solid var(--line); border-radius:18px; padding:24px 26px; margin-bottom:16px; gap:16px; }
.sg-res-left{ display:flex; align-items:center; gap:22px; }
.sg-volume-badge{ text-align:left; }
.sg-vol-num{ display:block; font-size:2.6rem; font-weight:800; color:var(--accent); line-height:1; letter-spacing:-.02em; }
.sg-vol-unit{ display:block; font-size:.72rem; font-weight:700; color:var(--muted); margin-top:3px; text-transform:uppercase; letter-spacing:.05em; }
.sg-res-name{ font-size:1.15rem; font-weight:700; color:var(--ink); margin-bottom:3px; }
.sg-res-ref{ font-size:.78rem; color:var(--muted); }
.sg-norm-badge{ background:#fff; border:1px solid var(--line); border-radius:12px; padding:10px 14px; font-size:.72rem; color:var(--accent); font-weight:700; text-align:center; line-height:1.5; flex-shrink:0; }
.sg-reco{ display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--line); border-radius:14px; padding:12px 14px; margin-bottom:14px; }
.sg-reco-img{ width:62px; height:62px; object-fit:contain; border-radius:10px; background:var(--surface); flex-shrink:0; mix-blend-mode:multiply; }
.sg-reco-info{ display:flex; flex-direction:column; gap:3px; }
.sg-reco-price{ font-size:1.5rem; font-weight:800; color:var(--ink); line-height:1; }
.sg-reco-ht{ font-size:.75rem; font-weight:700; color:var(--muted); margin-left:4px; }
.sg-reco-meta{ font-size:.78rem; color:var(--muted); }
.sg-instk{ color:var(--green,#11b67a); font-weight:700; }
.sg-gauge-wrap{ margin-bottom:16px; }
.sg-gauge-head{ display:flex; justify-content:space-between; font-size:.78rem; font-weight:700; color:var(--ink); margin-bottom:6px; }
.sg-gauge{ height:8px; background:var(--surface); border-radius:6px; overflow:hidden; }
.sg-gauge span{ display:block; height:100%; width:0; background:var(--green,#11b67a); border-radius:6px; transition:width .7s cubic-bezier(.4,0,.2,1); }
.sg-gauge-foot{ display:flex; justify-content:space-between; font-size:.68rem; color:var(--muted); margin-top:4px; }
.sg-alts-wrap{ margin-bottom:16px; }
.sg-alts-lbl{ font-size:.7rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; }
.sg-alts{ display:flex; gap:8px; margin-top:8px; flex-wrap:wrap; }
.sg-alt{ background:#fff; border:1px solid var(--line-2); border-radius:var(--pill); padding:8px 14px; font-size:.78rem; color:var(--accent); cursor:pointer; font-family:inherit; transition:all .15s; }
.sg-alt:hover{ border-color:var(--accent); background:var(--surface); }
.sg-specs-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:16px; }
.sg-spec{ display:flex; gap:11px; align-items:flex-start; border:1px solid var(--line); border-radius:14px; padding:13px 15px; color:var(--accent); }
.sg-spec div{ display:flex; flex-direction:column; gap:2px; }
.sg-spec strong{ font-size:.78rem; color:var(--ink); font-weight:700; }
.sg-spec span{ font-size:.82rem; color:var(--muted); }
.sg-detail-toggle{ font-size:.82rem; font-weight:600; color:var(--accent); cursor:pointer; padding:13px 4px; display:flex; justify-content:space-between; border-top:1px solid var(--line); margin-bottom:0; }
.sg-detail-body{ border-bottom:1px solid var(--line); margin-bottom:16px; }
.sg-drow{ display:flex; justify-content:space-between; padding:9px 4px; font-size:.8rem; color:var(--muted); border-bottom:1px solid var(--line); }
.sg-drow:last-child{ border-bottom:none; }
.sg-drow-hl{ color:var(--ink); font-weight:700; }
.sg-btn-shop{ background:var(--accent); color:#fff; padding:14px 28px; border-radius:var(--pill); font-weight:600; font-size:.95rem; text-decoration:none; transition:background .15s, transform .1s; }
.sg-btn-shop:hover{ background:#333333; transform:translateY(-1px); }
.sg-legal{ font-size:.72rem; color:var(--muted); margin-top:18px; padding-top:14px; border-top:1px solid var(--line); line-height:1.6; }
.sg-resume{ display:flex; align-items:center; gap:12px; padding:12px 16px; background:var(--surface); border-radius:12px; margin-bottom:24px; font-size:.82rem; color:var(--ink); font-weight:600; }
.sg-resume span{ flex:1; }
.sg-resume-btn{ background:var(--accent); color:#fff; border:0; border-radius:var(--pill); padding:8px 16px; font-size:.75rem; font-weight:600; cursor:pointer; font-family:inherit; }
.sg-resume-x{ background:none; border:0; color:var(--muted); font-size:1.1rem; cursor:pointer; line-height:1; }
@media (max-width:600px){
  .sg-panel-q{ font-size:1.3rem; margin-bottom:24px; }
  .sg-grid-6, .sg-grid-4, .sg-grid-3{ grid-template-columns:repeat(2,1fr); }
  .sg-specs-grid{ grid-template-columns:1fr; }
  .sg-res-card{ flex-direction:column; align-items:flex-start; }
  .sg-counter-display input{ font-size:3.2rem; width:140px; }
}

/* ============ Caractéristiques techniques horizontales (bas de fiche produit) ============ */
.pdp-specs{ border-top:1px solid var(--line); padding:48px 0; }
.pdp-specs-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:24px; }
.pdp-specs-head h2{ font-size:1.5rem; margin:0; }
.specs-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.spec-cell{ border:1px solid var(--line); border-radius:var(--r); padding:15px 16px; display:flex; flex-direction:column; gap:4px; }
.spec-cell .sc-k{ font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); }
.spec-cell .sc-v{ font-size:.98rem; font-weight:600; color:var(--ink); }
@media (max-width:860px){ .specs-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .specs-grid{ grid-template-columns:1fr; } }

/* ============ Bandeau logos clients ============ */
.clients-band{ padding:64px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.clients-line{ text-align:center; font-size:1.1rem; font-weight:600; color:var(--ink); margin:0; }
.clients-title{ text-align:center; font-size:1.5rem; font-weight:700; color:var(--ink); margin:0 0 28px; }
.clients-viewport{ overflow:hidden; width:100%; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.clients-track{ display:flex; align-items:center; gap:56px; width:max-content; animation:clientsScroll 40s linear infinite; }
.clients-item img{ height:72px; width:auto; transition:transform .2s; }
@media (max-width:768px){ .clients-item img{ height:48px; } }
.clients-item img:hover{ transform:scale(1.06); }
@keyframes clientsScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .clients-track{ animation:none; } }

/* ============ Bloc expert / conseil ============ */
.expert-block{ display:flex; align-items:center; gap:16px; border:1px solid var(--line); border-radius:var(--r-lg); padding:16px 18px; margin-top:20px; }
.expert-avatar{ position:relative; width:56px; height:56px; flex-shrink:0; }
.expert-img{ width:56px; height:56px; border-radius:50%; object-fit:cover; }
.expert-initials{ width:56px; height:56px; border-radius:50%; background:var(--ink); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.4rem; font-weight:700; }
.expert-online{ position:absolute; bottom:1px; right:1px; width:12px; height:12px; background:var(--green); border:2px solid #fff; border-radius:50%; }
.expert-headline{ font-size:1.05rem; font-weight:700; margin:0 0 5px; color:var(--ink); }
.expert-contact{ display:flex; align-items:center; gap:10px; font-size:.95rem; flex-wrap:wrap; }
.expert-contact a{ display:inline-flex; align-items:center; gap:6px; color:var(--ink); font-weight:500; }
.expert-contact a:hover{ color:var(--accent); }
.expert-contact svg{ width:15px; height:15px; fill:currentColor; }
.expert-sep{ color:var(--line-2); }
@media (max-width:480px){ .expert-contact{ flex-direction:column; align-items:flex-start; gap:4px; } .expert-sep{ display:none; } }

/* ============ Fiche technique imprimable ============ */
.fiche{ max-width:800px; margin:0 auto; padding:40px 32px; font-family:var(--font); color:var(--ink); }
.fiche-head{ display:flex; align-items:center; justify-content:space-between; border-bottom:2px solid var(--ink); padding-bottom:16px; margin-bottom:28px; }
.fiche-logo{ height:44px; width:auto; }
.fiche-meta{ text-align:right; }
.fiche-meta strong{ display:block; font-size:1.1rem; }
.fiche-meta span{ font-size:.82rem; color:var(--muted); }
.fiche-body{ display:grid; grid-template-columns:240px 1fr; gap:32px; align-items:start; }
.fiche-visual{ border:1px solid var(--line); border-radius:var(--r); padding:20px; display:grid; place-items:center; }
.fiche-visual img{ max-height:220px; width:auto; mix-blend-mode:multiply; }
.fiche-main h1{ font-size:1.6rem; margin:0 0 8px; }
.fiche-usage{ color:var(--muted); margin:0 0 20px; }
.fiche-specs{ width:100%; border-collapse:collapse; }
.fiche-specs th,.fiche-specs td{ text-align:left; padding:10px 12px; border-bottom:1px solid var(--line); font-size:.92rem; }
.fiche-specs th{ color:var(--muted); font-weight:500; width:42%; }
.fiche-specs td{ font-weight:600; }
.fiche-usps{ display:flex; flex-wrap:wrap; gap:10px; margin:28px 0; }
.fiche-usps span{ background:var(--surface); border:1px solid var(--line); border-radius:var(--pill); padding:8px 14px; font-size:.82rem; font-weight:600; }
.fiche-foot{ display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); padding-top:16px; font-size:.8rem; color:var(--muted); gap:16px; }
.fiche-print{ background:var(--ink); color:#fff; border:0; border-radius:var(--pill); padding:10px 20px; font-weight:600; cursor:pointer; font-family:inherit; }
@media (max-width:560px){ .fiche-body{ grid-template-columns:1fr; } }
@media print{ .fiche-print{ display:none; } .fiche{ padding:0; } }

/* ============ Étoiles Trustpilot (cartes avis) ============ */
.tp-stars{ display:inline-flex; gap:3px; margin-bottom:14px; }
.tp-star{ width:22px; height:22px; background:#00b67a; display:inline-flex; align-items:center; justify-content:center; border-radius:2px; }
.tp-star svg{ width:15px; height:15px; }

/* ============ Bloc demande de devis (fiche produit) ============ */
.devis-block{ display:flex; align-items:center; justify-content:space-between; gap:16px; border:1px solid var(--line); border-radius:var(--r-lg); padding:16px 20px; margin-top:20px; transition:border-color .15s, background .15s; }
.devis-block:hover{ border-color:var(--accent); background:var(--surface); }
.devis-txt{ display:flex; flex-direction:column; }
.devis-txt strong{ color:var(--ink); font-size:1.02rem; }
.devis-txt span{ font-size:.9rem; color:var(--muted); }
.devis-cta{ font-weight:600; color:var(--accent); white-space:nowrap; }

.tp-img{ height:26px; width:auto; display:block; align-self:flex-start; margin-bottom:0; }

/* ============ Articles d'aide enrichis ============ */
.aide-lead{ font-size:1.15rem; color:var(--ink); font-weight:500; line-height:1.6; margin:0 0 1.4em; }
.aide-body h2{ margin-top:1.6em; }
.aide-inline-cta{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r); padding:16px 20px; margin:26px 0 6px; font-size:.95rem; line-height:1.55; }
.aide-inline-cta strong{ color:var(--ink); }
.aide-table-wrap{ overflow-x:auto; margin:1em 0 1.4em; border:1px solid var(--line); border-radius:var(--r); }
.aide-table{ width:100%; border-collapse:collapse; font-size:.92rem; }
.aide-table th,.aide-table td{ padding:11px 14px; text-align:left; border-bottom:1px solid var(--line); }
.aide-table thead th{ background:var(--surface); font-weight:700; color:var(--ink); }
.aide-table tbody tr:last-child td{ border-bottom:none; }
.aide-table td:nth-child(3){ font-weight:700; color:var(--ink); white-space:nowrap; }

/* ============ Mini-widget Trustpilot (sous titre produit) ============ */
.tp-widget{ display:inline-flex; align-items:center; gap:8px; margin:2px 0 16px; }
.tp-widget-stars{ height:19px; width:auto; }
.tp-widget-text{ font-size:.85rem; color:var(--ink); display:inline-flex; align-items:center; gap:5px; }
.tp-widget-text strong{ font-weight:700; }
.tp-widget .tp-sep{ color:var(--muted); }
.tp-avis{ text-decoration:underline; text-underline-offset:2px; }
.tp-widget:hover .tp-avis{ color:var(--accent); }

.pdp-toprow{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:8px; }
.pdp-toprow .tp-widget{ margin:0; }
.pdp-toprow .pdp-tag{ margin:0; }

.pdp-info .tp-widget{ display:flex; width:fit-content; margin:4px 0 12px; }
.pdp-info .pdp-tag{ display:inline-flex; }

/* ============ Documents offerts en 3 colonnes ============ */
.upsell-docs{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:8px; }
.upsell-doc{ border:1px solid var(--line); border-radius:var(--r); padding:10px 12px; display:grid; grid-template-columns:auto 1fr; grid-template-areas:"cb txt" "off off"; align-items:center; column-gap:8px; row-gap:6px; cursor:pointer; background:#fff; transition:border-color .15s; }
.upsell-doc:hover{ border-color:var(--line-2); }
.upsell-doc .upsell-cb{ grid-area:cb; width:15px; height:15px; margin:0; cursor:pointer; }
.upsell-doc .upsell-gift-ico{ grid-area:ico; }
.upsell-doc .upsell-gift-ico svg{ width:18px; height:18px; fill:var(--ink); }
.upsell-doc .ud-txt{ grid-area:txt; min-width:0; }
.upsell-doc .ud-txt strong{ font-size:.66rem; display:block; line-height:1.18; color:var(--ink); }
.upsell-doc .ud-txt span{ display:none; }
.upsell-doc .ud-offert{ grid-area:off; justify-self:center; font-size:.6rem; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:.04em; }
@media (max-width:560px){ .upsell-docs{ grid-template-columns:1fr; } .upsell-doc{ height:auto; padding:12px; } }

/* ============ Dot En stock qui pulse ============ */
.badge-stock .stock-dot{ position:relative; display:inline-block; width:9px; height:9px; border-radius:50%; background:var(--green); margin-right:3px; flex:none; }
.badge-stock .stock-dot::after{ content:""; position:absolute; inset:0; border-radius:50%; background:var(--green); animation:stockPulse 1.8s ease-out infinite; }
@keyframes stockPulse{ 0%{ transform:scale(1); opacity:.55; } 70%{ transform:scale(2.8); opacity:0; } 100%{ opacity:0; } }
@media (prefers-reduced-motion:reduce){ .badge-stock .stock-dot::after{ animation:none; } }

/* ---------- Carte de preuve sociale (buybox fiche produit) ---------- */
/* Dimensions = valeurs d'origine +10 %. Contenu centré, largeur alignée sur le bouton d'achat. */
.bg-proof-card {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 13.34px;
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: 14.55px;
  padding: 9.70px 16.98px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  font-family: "Inter", -apple-system, sans-serif;
  margin-top: 14px;
  margin-bottom: 2px;
}
.bg-proof-card__logos { display: flex; align-items: center; flex-shrink: 0; }
.bg-proof-card__logo {
  width: 37.60px; height: 37.60px;
  border-radius: 50%;
  margin-right: -4.85px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  background: #fff;
}
.bg-proof-card__logo:nth-child(1){ z-index:5; }
.bg-proof-card__logo:nth-child(2){ z-index:4; }
.bg-proof-card__logo:nth-child(3){ z-index:3; }
.bg-proof-card__logo:nth-child(4){ z-index:2; }
.bg-proof-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.bg-proof-card__text {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  line-height: 1.25;
}
.bg-proof-card__brands {
  display: flex; align-items: center; justify-content: center;
  gap: 4.85px;
  font-size: 12.98px; font-weight: 700; color: #111;
}
.bg-proof-card__check { width: 13.95px; height: 13.95px; fill: #1d9bf0; flex-shrink: 0; }
.bg-proof-card__sub { font-size: 11.64px; color: #6b7280; font-weight: 400; margin-top: 1px; }
@media (max-width: 480px) {
  .bg-proof-card { padding: 8.49px 13.34px; gap: 9.70px; }
  .bg-proof-card__brands { font-size: 12.01px; }
  .bg-proof-card__sub { font-size: 11.15px; }
  .bg-proof-card__logo { width: 32.75px; height: 32.75px; }
}

/* ---------- Cellule "Fiche technique (PDF)" dans la grille de specs ---------- */
/* Strictement le même rendu que les autres cellules (hérité de .spec-cell).
   Seule l'icône PDF est rouge, pour signaler qu'on peut cliquer. */
.spec-cell-pdf { text-decoration: none; }
.spec-cell-pdf .sc-v { display: inline-flex; align-items: center; gap: 6px; }
.spec-cell-pdf .pdf-ico { width: 14px; height: 14px; flex-shrink: 0; color: #d32f2f; }
.spec-cell-pdf:hover .sc-v { text-decoration: underline; }

/* ---------- Bloc de relance en bas de la FAQ ---------- */
/* Reprend le rythme vertical des autres sections (80px) pour ne pas coller au footer. */
.faq-cta { padding: 72px 0 88px; text-align: center; border-top: 1px solid var(--line); }
.faq-cta h2 { margin-bottom: 10px; }
.faq-cta p { color: var(--muted); margin-bottom: 24px; }
.faq-cta .btn { margin-top: 4px; }

/* ---------- Bandeau livraison / paiement (home) ---------- */
/* Ce bloc était généré sans aucun CSS : les logos sortaient à leur taille naturelle (300px). */
.pay-strip { padding: 56px 0; border-top: 1px solid var(--line); background: #fff; }
.pay-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.pay-col h4 { font-size: .95rem; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.pay-col .logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; min-height: 40px; }
.pay-col .logos img { height: 34px; width: auto; object-fit: contain; }
.pay-note { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); }
.pay-note svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 768px) {
  .pay-strip { padding: 40px 0; }
  .pay-strip .wrap { grid-template-columns: 1fr; gap: 30px; }
  .pay-col .logos img { height: 28px; }
}

/* Icônes image du bandeau de réassurance (les 4 tuiles). */
.tb-col .tb-ico { width: 40px; height: 40px; flex: none; object-fit: contain; margin-top: 1px; }
@media (max-width: 768px) { .tb-col .tb-ico { width: 34px; height: 34px; } }
