/* =========================================================
   ZOT AUTO — boutique pièces & produits auto · La Réunion
   Thème clair · tricolore marque  bleu #2a52e0 / rouge #e01f2b / jaune #ffcb00
   ========================================================= */

:root {
  --blue: #2a52e0;
  --blue-600: #1f3fc0;
  --blue-700: #16308f;
  --blue-050: #eef2ff;
  --red: #e01f2b;
  --red-600: #c0121d;
  --yellow: #ffcb00;
  --yellow-600: #eab800;

  --ink: #0e1b33;
  --ink-2: #2c3a55;
  --muted: #556275;
  --muted-2: #6b7a8f;

  --page: #f3f6fb;
  --soft: #eef2f8;
  --card: #ffffff;
  --line: #e4eaf2;
  --line-2: #d4ddea;

  --ok: #15a34a;
  --warn: #d97706;
  --wa: #25d366;
  --wa-600: #1eb955;

  --container: 1240px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(14, 27, 51, 0.06);
  --shadow: 0 12px 30px -12px rgba(14, 27, 51, 0.18);
  --shadow-lg: 0 30px 70px -30px rgba(14, 27, 51, 0.4);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--page);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 6px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--blue); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 0; }

.container { width: min(100% - 36px, var(--container)); margin-inline: auto; }
.hl-yellow { color: var(--yellow); }
.hl-red { color: var(--red); }
.hl-blue { color: var(--blue); }

.tricolor { display: flex; height: 4px; }
.tricolor i { flex: 1; }
.tricolor i:nth-child(1) { background: var(--blue); }
.tricolor i:nth-child(2) { background: var(--yellow); }
.tricolor i:nth-child(3) { background: var(--red); }

/* ---------- Boutons ---------- */
.btn {
  --py: 12px; --px: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--py) var(--px); border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; cursor: pointer; white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { --py: 14px; --px: 26px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn:hover { transform: translateY(-2px); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 22px -10px rgba(42, 82, 224, 0.7); }
.btn--blue:hover { background: var(--blue-600); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 22px -10px rgba(224, 31, 43, 0.7); }
.btn--red:hover { background: var(--red-600); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-600); }
.btn--wa svg { fill: #fff; }
.btn--light { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--light:hover { border-color: var(--blue); color: var(--blue); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }

/* =========================================================
   Topbar
   ========================================================= */
.topbar { background: var(--ink); color: #cfd8e8; font-size: 0.82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.topbar__loc, .topbar__right { display: flex; align-items: center; gap: 8px; }
.topbar__loc strong { color: #fff; }
.topbar svg { width: 15px; height: 15px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.topbar__right { gap: 14px; }
.topbar__right a { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar__right a:hover { color: #fff; }
.topbar__sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* =========================================================
   Header
   ========================================================= */
.header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow-sm); }
.header.is-stuck { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; gap: 22px; height: 84px; }
.logo img { height: 56px; width: auto; }

.search { flex: 1; display: flex; align-items: center; gap: 8px; max-width: 620px; background: var(--soft); border: 1.5px solid var(--line); border-radius: 999px; padding: 5px 6px 5px 16px; transition: border-color 0.2s, box-shadow 0.2s; }
.search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,82,224,0.14); background: #fff; }
.search__ic { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; }
.search input { flex: 1; border: none; background: transparent; outline: none; font-size: 0.95rem; min-width: 0; }
.search__btn { background: var(--blue); color: #fff; border: none; border-radius: 999px; padding: 10px 22px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background 0.2s; }
.search__btn:hover { background: var(--blue-600); }

.header__actions { display: flex; align-items: center; gap: 8px; }
.iconbtn--call { display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; border-radius: 12px; transition: background 0.2s; }
.iconbtn--call:hover { background: var(--soft); }
.iconbtn--call svg { width: 30px; height: 30px; padding: 6px; background: var(--blue-050); border-radius: 9px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.iconbtn--call span { display: flex; flex-direction: column; line-height: 1.15; }
.iconbtn--call small { color: var(--muted); font-size: 0.72rem; }
.iconbtn--call strong { font-family: var(--font-display); font-size: 0.92rem; }

.cartbtn { position: relative; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; transition: border-color 0.2s, background 0.2s; }
.cartbtn:hover { border-color: var(--blue); background: var(--blue-050); }
.cartbtn svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.cartbtn__count { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--red); color: #fff; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; display: grid; place-items: center; box-shadow: 0 0 0 2px #fff; }
.cartbtn__count.bump { animation: bump 0.4s var(--ease); }

.burger { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Catnav */
.catnav { background: #fff; border-top: 1px solid var(--line); }
.catnav__inner { display: flex; align-items: center; gap: 4px; height: 50px; overflow-x: auto; scrollbar-width: none; }
.catnav__inner::-webkit-scrollbar { display: none; }
.catnav a { padding: 8px 14px; border-radius: 9px; font-size: 0.9rem; font-weight: 500; color: var(--ink-2); white-space: nowrap; transition: background 0.2s, color 0.2s; }
.catnav a:hover { background: var(--soft); color: var(--blue); }
.catnav__all { font-family: var(--font-display); font-weight: 600 !important; color: var(--ink) !important; display: inline-flex; align-items: center; gap: 8px; }
.catnav__all svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.catnav__promo { color: var(--red) !important; font-weight: 600 !important; }

/* =========================================================
   Hero + sélecteur
   ========================================================= */
.hero { position: relative; background: linear-gradient(120deg, #16308f 0%, var(--blue) 55%, #3a63ec 100%); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(circle at 85% 15%, rgba(255,203,0,0.25), transparent 40%), radial-gradient(circle at 10% 90%, rgba(224,31,43,0.25), transparent 45%), linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: auto, auto, 46px 46px, 46px 46px; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: clamp(40px, 6vw, 76px) 0; }
.hero__eyebrow { display: inline-block; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25); padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 500; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
.hero__text > p { color: rgba(255,255,255,0.88); font-size: clamp(1rem, 1.3vw, 1.15rem); margin-top: 16px; max-width: 480px; }
.hero__usp { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.hero__usp li { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.92rem; }
.hero__usp svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: var(--yellow); stroke: var(--ink); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Finder card */
.finder { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.finder__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.finder__head svg { width: 44px; height: 44px; flex: 0 0 auto; padding: 10px; background: var(--blue-050); border-radius: 12px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.finder__head strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.finder__head small { color: var(--muted); font-size: 0.85rem; }
.finder__tabs { display: flex; gap: 6px; background: var(--soft); padding: 5px; border-radius: 12px; margin-bottom: 16px; }
.finder__tab { flex: 1; padding: 10px; border: none; background: transparent; border-radius: 9px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.finder__tab.is-active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.finder__panel { display: grid; gap: 12px; }
.finder__panel[hidden] { display: none; }
.finder__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.finder select { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); background: #fff; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m3 5 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.finder select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,82,224,0.14); }

/* Plaque immatriculation */
.plate { display: flex; align-items: stretch; height: 56px; border: 2px solid var(--ink); border-radius: 10px; overflow: hidden; background: #fff; }
.plate__eu { width: 42px; background: var(--blue); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; }
.plate__stars { color: var(--yellow); font-size: 0.7rem; line-height: 1; }
.plate__input { flex: 1; border: none; outline: none; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); }
.plate__input::placeholder { color: var(--line-2); letter-spacing: 2px; }
.plate__dom { width: 46px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.finder__note { margin-top: 14px; font-size: 0.84rem; color: var(--muted); text-align: center; }
.finder__note a { color: var(--blue); font-weight: 600; }

/* =========================================================
   Réassurance
   ========================================================= */
.assur { background: #fff; border-bottom: 1px solid var(--line); }
.assur__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px 0; }
.assur__item { display: flex; align-items: center; gap: 13px; padding: 8px 12px; }
.assur__ic { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; background: var(--blue-050); display: grid; place-items: center; }
.assur__ic svg { width: 22px; height: 22px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.assur__item strong { display: block; font-family: var(--font-display); font-size: 0.94rem; }
.assur__item small { color: var(--muted); font-size: 0.82rem; }

/* =========================================================
   Sections génériques
   ========================================================= */
.section { padding: clamp(46px, 6vw, 80px) 0; }
.section--soft { background: var(--soft); }
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(26px, 3.5vw, 42px); flex-wrap: wrap; }
.shead--center { justify-content: center; text-align: center; }
.kicker { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.shead h2 { font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; }

/* =========================================================
   Catégories
   ========================================================= */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cat__ic { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; }
.cat__ic svg { width: 28px; height: 28px; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cat__ic--blue { background: var(--blue-050); } .cat__ic--blue svg { stroke: var(--blue); }
.cat__ic--red { background: #fdeaeb; } .cat__ic--red svg { stroke: var(--red); }
.cat__ic--yellow { background: #fff5d6; } .cat__ic--yellow svg { stroke: var(--yellow-600); }
.cat__ic--green { background: #e3f9ec; } .cat__ic--green svg { fill: var(--wa); stroke: none; }
.cat h3 { font-size: 1.05rem; }
.cat small { color: var(--muted); font-size: 0.85rem; }
.cat--wa { border-style: dashed; border-color: var(--line-2); }

/* =========================================================
   Produits
   ========================================================= */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line-2); background: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.84rem; color: var(--ink-2); cursor: pointer; transition: all 0.2s; }
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }

.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.product.is-hidden { display: none; }
.product__media { position: relative; aspect-ratio: 4/3; background: #fff; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.product__media--logo { background: var(--soft); }
.product__media--logo img { object-fit: contain; padding: 22px; mix-blend-mode: multiply; }
.product:hover .product__media img { transform: scale(1.05); }
.product__badge { position: absolute; top: 10px; left: 10px; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; padding: 4px 9px; border-radius: 7px; }
.product__badge--promo { background: var(--red); }
.product__body { padding: 14px 15px 16px; display: flex; flex-direction: column; flex: 1; }
.product__brand { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue); }
.product__name { font-size: 0.98rem; font-weight: 600; margin: 4px 0 8px; line-height: 1.3; }
.product__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: var(--yellow); letter-spacing: 1px; font-size: 0.9rem; }
.product__rating small { color: var(--muted); font-size: 0.78rem; }
.product__stock { font-size: 0.8rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.product__stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.product__stock.in { color: var(--ok); } .product__stock.in::before { background: var(--ok); }
.product__stock.soon { color: var(--warn); } .product__stock.soon::before { background: var(--warn); }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product__price { display: flex; flex-direction: column; line-height: 1.1; }
.product__price .now { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.product__price .was { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; }
.btn-add { background: var(--red); color: #fff; border: none; border-radius: 10px; padding: 10px 16px; font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-add:hover { background: var(--red-600); }
.btn-add:active { transform: scale(0.95); }
.products__note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 22px; }
.products__empty { text-align: center; color: var(--muted); padding: 30px 0; }

/* =========================================================
   Services
   ========================================================= */
.shead__link { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--blue); white-space: nowrap; }
.shead__link:hover { text-decoration: underline; }
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.service__ic { font-size: 2rem; line-height: 1; }
.service__badge { background: #fff5d6; color: var(--ink); border: 1px solid var(--yellow); font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; padding: 4px 9px; border-radius: 999px; }
.service__name { font-size: 1.08rem; margin-bottom: 8px; }
.service__desc { color: var(--muted); font-size: 0.9rem; flex: 1; }
.service__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; }
.service__price { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: 1rem; }
.service__btn { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: #fff; background: var(--blue); padding: 9px 15px; border-radius: 10px; transition: background 0.2s; white-space: nowrap; }
.service__btn:hover { background: var(--blue-600); }

/* =========================================================
   Sélecteur véhicule — VIN, carte résultat, états
   ========================================================= */
.finder__hint, .vinfield__hint { display: block; margin-top: 9px; font-size: 0.78rem; color: var(--muted); line-height: 1.45; }
.vinfield__input { width: 100%; padding: 14px 15px; border: 2px solid var(--ink); border-radius: 10px; text-transform: uppercase; letter-spacing: 0.12em; font-family: ui-monospace, "Cascadia Code", "Consolas", monospace; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.vinfield__input::placeholder { color: var(--line-2); }
.vinfield__input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,82,224,0.16); }

.finder__result { margin-top: 14px; outline: none; }
.finder__result > div { display: none; }
.finder__result[data-state="loading"] .finder__loading { display: flex; align-items: center; gap: 10px; }
.finder__result[data-state="success"] .vcard { display: block; }
.finder__result[data-state="error"] .finder__error { display: block; }
.finder__loading { color: var(--muted); font-size: 0.92rem; padding: 8px 2px; }
.spinner { width: 18px; height: 18px; flex: 0 0 auto; border: 2px solid var(--line-2); border-top-color: var(--blue); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.vcard { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: var(--soft); }
.vcard__head { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; font-family: var(--font-display); font-size: 1rem; }
.vcard__head strong { display: inline-flex; align-items: center; gap: 8px; }
.vcard__head strong::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--ok); color: #fff; font-size: 0.72rem; }
.vcard__demo { font-size: 0.68rem; background: #fff5d6; color: #7a5b00; border: 1px solid var(--yellow); padding: 2px 9px; border-radius: 999px; font-weight: 700; }
.vcard__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 16px; margin: 0 0 16px; }
.vcard__specs > div { min-width: 0; }
.vcard__specs dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.vcard__specs dd { margin: 2px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 0.96rem; overflow-wrap: anywhere; }
.vcard__actions { display: grid; gap: 10px; }
.finder__error { background: #fdeaeb; border: 1px solid #f5b5b9; border-radius: 14px; padding: 16px; }
.finder__error p { color: var(--red-600); font-size: 0.9rem; margin: 0 0 12px; }
@media (min-width: 470px) { .vcard__actions { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Accessibilité — texte réservé aux lecteurs d'écran
   ========================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =========================================================
   Empilement des badges produit (promo / nouveau / coup de cœur)
   ========================================================= */
.product__badges { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 2; pointer-events: none; }
.pbadge { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; padding: 4px 9px; border-radius: 7px; background: var(--ink); color: #fff; line-height: 1.2; }
.pbadge--promo { background: var(--red); }
.pbadge--new { background: var(--blue); }
.pbadge--heart { margin-left: auto; background: #fff; color: var(--red); border: 1.5px solid var(--red); border-radius: 999px; width: 26px; height: 26px; padding: 0; display: grid; place-items: center; font-size: 0.82rem; box-shadow: var(--shadow-sm); }

/* carte produit : zone cliquable (aperçu rapide) + curseur */
.product { position: relative; cursor: pointer; }
.product.is-featured { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow) inset; }
/* la zone d'ouverture couvre toute la carte ; seul "Ajouter" passe au-dessus */
.product__open { position: absolute; inset: 0; z-index: 2; background: transparent; border: 0; cursor: pointer; }
.product__open:focus-visible { outline: 2px solid var(--blue); outline-offset: -3px; border-radius: var(--radius); }
.btn-add { position: relative; z-index: 3; }
.product__ref { font-size: 0.74rem; color: var(--muted); margin: 0 0 6px; font-variant-numeric: tabular-nums; }

/* =========================================================
   Coups de cœur (rangée de mise en avant)
   ========================================================= */
.section--featured { padding: clamp(40px, 5vw, 64px) 0; background: linear-gradient(180deg, #fff 0%, var(--blue-050) 100%); }
.kicker--heart { color: var(--red); }
.featured { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fcard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--yellow); }
.fcard__open { position: absolute; inset: 0; z-index: 2; background: transparent; border: 0; cursor: pointer; }
.fcard__open:focus-visible { outline: 2px solid var(--blue); outline-offset: -3px; border-radius: var(--radius); }
.fcard__heart { position: absolute; top: 10px; right: 10px; z-index: 3; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 999px; background: var(--red); color: #fff; font-size: 0.86rem; box-shadow: var(--shadow); pointer-events: none; }
.fcard__media { position: relative; aspect-ratio: 4/3; background: #fff; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.fcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.fcard:hover .fcard__media img { transform: scale(1.05); }
.fcard__media--logo { background: var(--soft); }
.fcard__media--logo img { object-fit: contain; padding: 20px; mix-blend-mode: multiply; }
.fcard__media .pbadge--new { position: absolute; top: 10px; left: 10px; z-index: 3; }
.fcard__body { padding: 14px 15px 16px; display: flex; flex-direction: column; flex: 1; }
.fcard__brand { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue); }
.fcard__name { font-size: 0.98rem; font-weight: 600; margin: 4px 0 8px; line-height: 1.3; }
.fcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.fcard__foot .btn-add { position: relative; z-index: 3; }

/* accent "service phare" */
.service.is-featured { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow) inset; }
.service__star { color: var(--yellow-600); font-size: 1.1rem; line-height: 1; margin-left: auto; }
.service__top .service__badge { margin-left: 8px; }

/* =========================================================
   Barre d'outils produits (compteur · recherche active · tri)
   ========================================================= */
.ptools { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.ptools__left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-height: 38px; }
.ptools__count { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.ptools__search { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-050); border: 1px solid var(--line-2); color: var(--blue-700); border-radius: 999px; padding: 6px 12px; font-size: 0.84rem; font-weight: 600; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.ptools__search:hover { background: #fff; border-color: var(--blue); }
.ptools__search-x { display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 0.62rem; }
.ptools__sort { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--muted); white-space: nowrap; }
.ptools__sort select { padding: 9px 34px 9px 12px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m3 5 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.ptools__sort select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,82,224,0.14); }

/* état "aucun résultat" enrichi */
.products__empty { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; color: var(--muted); padding: 44px 16px; }
.products__empty svg { width: 46px; height: 46px; fill: none; stroke: var(--line-2); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.products__empty p { font-size: 1rem; color: var(--ink-2); }

/* bouton "Voir plus" */
.products__more { display: flex; justify-content: center; margin-top: 26px; }

/* =========================================================
   Aperçu rapide (modale produit)
   ========================================================= */
.qv { position: fixed; inset: 0; z-index: 220; visibility: hidden; }
.qv.open { visibility: visible; }
.qv__overlay { position: absolute; inset: 0; background: rgba(14,27,51,0.55); opacity: 0; transition: opacity 0.3s; }
.qv.open .qv__overlay { opacity: 1; }
.qv__dialog { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%); width: min(880px, calc(100% - 32px)); max-height: calc(100vh - 48px); overflow: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; opacity: 0; transition: opacity 0.25s var(--ease), transform 0.3s var(--ease); }
.qv.open .qv__dialog { transform: translate(-50%, -50%); opacity: 1; }
.qv__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 10px; border: none; background: rgba(255,255,255,0.92); box-shadow: var(--shadow-sm); cursor: pointer; font-size: 1rem; color: var(--ink); }
.qv__close:hover { background: var(--soft); }
.qv__media { position: relative; background: var(--soft); display: grid; place-items: center; min-height: 320px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); overflow: hidden; }
.qv__media img { width: 100%; height: 100%; object-fit: cover; }
.qv__media--logo img { object-fit: contain; padding: 36px; mix-blend-mode: multiply; }
.qv__badges { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; pointer-events: none; }
.qv__badges .pbadge--heart { margin-left: auto; }
.qv__body { padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; }
.qv__brand { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue); }
.qv__name { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; margin: 6px 0 4px; }
.qv__ref { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.qv__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.qv__rating small { color: var(--muted); font-size: 0.84rem; }
.qv__desc { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 16px; }
.qv__stock { font-size: 0.86rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.qv__stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.qv__stock.in { color: var(--ok); } .qv__stock.in::before { background: var(--ok); }
.qv__stock.soon { color: var(--warn); } .qv__stock.soon::before { background: var(--warn); }
.qv__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.qv__price .now { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink); }
.qv__price .was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.qv__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.qv__actions .btn { flex: 1; min-width: 180px; }

/* =========================================================
   Promo
   ========================================================= */
.promo { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.promo__media { position: relative; min-height: 280px; }
.promo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__body { padding: clamp(24px, 4vw, 48px); }
.promo__tag { display: inline-block; background: #fff5d6; color: var(--ink); border: 1px solid var(--yellow); font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; padding: 6px 13px; border-radius: 999px; margin-bottom: 14px; }
.promo__body h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; }
.promo__body p { color: var(--ink-2); margin: 14px 0 24px; max-width: 460px; }
.promo__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   Marques
   ========================================================= */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.brandbox { flex: 0 0 auto; width: 180px; height: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; padding: 18px; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.brandbox:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.brandbox img { max-height: 54px; max-width: 130px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.brandbox--text { font-family: var(--font-display); font-weight: 800; color: var(--blue-700); letter-spacing: 0.03em; font-size: 1.05rem; }

/* =========================================================
   Avis
   ========================================================= */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review .stars { font-size: 1.05rem; margin-bottom: 12px; }
.review blockquote { font-size: 0.98rem; color: var(--ink-2); }
.review figcaption { display: flex; align-items: center; gap: 11px; margin-top: 18px; font-size: 0.86rem; color: var(--muted); }
.ava { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 700; }

/* =========================================================
   CTA band
   ========================================================= */
.ctaband { padding: clamp(40px, 5vw, 64px) 0; }
.ctaband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); position: relative; overflow: hidden; }
.ctaband__inner::after { content: ""; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,203,0,0.25), transparent 70%); }
.ctaband h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); position: relative; }
.ctaband p { color: rgba(255,255,255,0.8); margin-top: 6px; position: relative; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: #fff; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: clamp(40px, 5vw, 64px) 0 36px; }
.footer__brand img { height: 56px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: all 0.2s; }
.socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); font-size: 0.9rem; padding: 5px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--blue); }
.footer__pay { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; }
.pays { display: flex; gap: 8px; flex-wrap: wrap; }
.pays i { font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-2); background: var(--soft); border: 1px solid var(--line); padding: 6px 11px; border-radius: 7px; }
.pays--wa { color: #fff !important; background: var(--wa) !important; border-color: var(--wa) !important; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 18px 0; color: var(--muted); font-size: 0.84rem; }
.footer__creole { color: var(--red); font-weight: 600; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer__legal a { color: var(--muted); transition: color 0.2s; }
.footer__legal a:hover { color: var(--blue); }

/* =========================================================
   Panier (drawer)
   ========================================================= */
.cart { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.cart.open { visibility: visible; }
.cart__overlay { position: absolute; inset: 0; background: rgba(14,27,51,0.5); opacity: 0; transition: opacity 0.3s; }
.cart.open .cart__overlay { opacity: 1; }
.cart__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(410px, 92vw); background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s var(--ease); box-shadow: var(--shadow-lg); }
.cart.open .cart__panel { transform: none; }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--line); }
.cart__head strong { font-family: var(--font-display); font-size: 1.15rem; }
.cart__close { width: 36px; height: 36px; border-radius: 10px; border: none; background: var(--soft); cursor: pointer; font-size: 1rem; color: var(--ink); }
.cart__close:hover { background: var(--line); }
.cart__items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-item { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-item__info { flex: 1; }
.cart-item__name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; }
.cart-item__brand { font-size: 0.76rem; color: var(--muted); }
.cart-item__price { font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: 0.92rem; margin-top: 2px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.cart-item__qty button { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line-2); background: #fff; cursor: pointer; font-weight: 700; color: var(--ink); }
.cart-item__qty button:hover { border-color: var(--blue); color: var(--blue); }
.cart-item__qty span { min-width: 18px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.cart__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 30px; text-align: center; color: var(--muted); }
.cart__empty svg { width: 56px; height: 56px; fill: none; stroke: var(--line-2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cart__foot { padding: 18px 20px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.cart__total { display: flex; align-items: center; justify-content: space-between; }
.cart__total strong { font-family: var(--font-display); font-size: 1.4rem; }
.cart__hint { text-align: center; font-size: 0.78rem; color: var(--muted); }

/* Toast */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translate(-50%, 20px); z-index: 250; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 999px; font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; display: flex; align-items: center; gap: 9px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--ok); color: #fff; font-size: 0.7rem; }

/* WhatsApp flottant */
.fab-wa { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,0.7); transition: transform 0.25s var(--ease); }
.fab-wa svg { width: 30px; height: 30px; fill: #fff; }
.fab-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); animation: ring 2.4s infinite; }
.fab-wa:hover { transform: scale(1.08); }

/* =========================================================
   Animations
   ========================================================= */
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes bump { 0%,100% { transform: scale(1); } 40% { transform: scale(1.35); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .finder { max-width: 520px; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .featured { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .search { order: 3; flex-basis: 100%; max-width: none; }
  .header__inner { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 12px; }
  .iconbtn--call { display: none; }
  .burger { display: flex; }
  .catnav { display: none; }
  .catnav.is-open { display: block; }
  .catnav__inner { flex-direction: column; align-items: stretch; height: auto; padding: 8px 0; overflow: visible; }
  .catnav a { padding: 13px 14px; border-radius: 9px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .assur__grid { grid-template-columns: 1fr 1fr; }
  .promo { grid-template-columns: 1fr; }
  .promo__media { min-height: 200px; }
  .reviews { grid-template-columns: 1fr; }
  /* modale aperçu : passe en pleine largeur empilée */
  .qv__dialog { grid-template-columns: 1fr; }
  .qv__media { min-height: 220px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}
@media (max-width: 560px) {
  .topbar__right a:last-child { display: none; }
  .cats { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .shead { flex-direction: column; align-items: flex-start; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
  .chips { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  /* barre d'outils produits : empilée et pleine largeur */
  .ptools { flex-direction: column; align-items: stretch; }
  .ptools__sort { justify-content: space-between; }
  .ptools__sort select { flex: 1; }
  .qv__actions .btn { flex: 1 1 100%; }
}
@media (max-width: 420px) {
  .products { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
}

/* =========================================================
   Ticker défilant
   ========================================================= */
.ticker {
  background: var(--blue-600);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  letter-spacing: 0.01em;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: ticker-scroll 35s linear infinite;
}
.ticker__dot { color: var(--yellow); font-weight: 800; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Barre de stats
   ========================================================= */
.stats {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff;
  padding: 2.5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat__n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat__n span { font-size: 0.7em; }
.stat > span { font-size: 0.875rem; opacity: 0.8; }
@media (max-width: 600px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* =========================================================
   Comment commander — 3 étapes
   ========================================================= */
.howto { background: var(--soft); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step__ic { font-size: 2.5rem; margin-bottom: 0.75rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--ink); }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.step__arrow {
  flex: 0 0 auto;
  align-self: center;
  color: var(--blue);
  opacity: 0.4;
}
.step__arrow svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.howto__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 720px) {
  .steps { flex-direction: column; align-items: stretch; }
  .step__arrow { transform: rotate(90deg); align-self: center; }
}

/* =========================================================
   Avis clients améliorés
   ========================================================= */
.reviews__score {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 480px;
}
.reviews__big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.stars--lg { font-size: 1.4rem; color: var(--yellow); margin-bottom: 4px; }
.reviews__score p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.reviews__bars { display: flex; flex-direction: column; gap: 5px; }
.rbar { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--muted); }
.rbar span { width: 22px; text-align: right; }
.rbar__track { flex: 1; height: 7px; background: var(--line); border-radius: 999px; overflow: hidden; }
.rbar__fill { height: 100%; background: var(--yellow); border-radius: 999px; }
.rbar small { width: 28px; }
.review {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.review:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review__head { display: flex; align-items: center; gap: 12px; }
.review__head div { display: flex; flex-direction: column; gap: 2px; }
.review__head strong { font-size: 0.95rem; }
.review__head small { font-size: 0.78rem; color: var(--muted); }
.review .stars { font-size: 1rem; color: var(--yellow); letter-spacing: 1px; }
.review blockquote { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; font-style: normal; }
.ava--blue { background: var(--blue); }
.ava--red { background: var(--red); }
.ava--yellow { background: var(--yellow); color: var(--ink) !important; }

/* =========================================================
   Hero — badge stock animé + bandeau de confiance + RGPD finder
   ========================================================= */
.hero__live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; padding: 0.45rem 1rem 0.45rem 0.75rem;
  background: #fff8e1; border: 1.5px solid var(--yellow); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: #7a5800;
  box-shadow: 0 2px 8px rgba(255,203,0,0.18);
  animation: badge-pulse 2.6s ease-in-out infinite;
}
.hero__live-badge__dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: dot-blink 1.3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100% { box-shadow: 0 2px 8px rgba(255,203,0,0.18); }
  50%      { box-shadow: 0 4px 18px rgba(255,203,0,0.42); }
}
@keyframes dot-blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.35; transform: scale(0.72); }
}
.hero__trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem 0;
  margin-top: 1.1rem; padding: 0.7rem 1rem;
  background: rgba(42,82,224,0.08); border: 1px solid rgba(42,82,224,0.15); border-radius: 10px;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  flex: 1 1 auto; min-width: 0; padding: 0.2rem 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.9); white-space: nowrap;
}
.hero__trust-item svg { width: 17px; height: 17px; color: var(--yellow); flex-shrink: 0; }
.hero__trust-sep { width: 1px; height: 22px; background: rgba(255,255,255,0.2); flex-shrink: 0; margin: 0 0.1rem; }
.finder__rgpd {
  display: flex; align-items: center; gap: 0.35rem;
  margin-top: 0.5rem; font-size: 0.72rem; color: var(--muted); font-weight: 500;
}
.finder__rgpd svg { flex-shrink: 0; opacity: 0.7; }

/* =========================================================
   Catégories — layout vertical style Oscaro
   ========================================================= */
.cats { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.cat {
  flex-direction: column; align-items: center; text-align: center; gap: 12px;
  border-top: 4px solid var(--line);
  padding: 28px 16px 22px; position: relative;
}
.cat:has(.cat__ic--blue)   { border-top-color: var(--blue); }
.cat:has(.cat__ic--red)    { border-top-color: var(--red); }
.cat:has(.cat__ic--yellow) { border-top-color: var(--yellow-600); }
.cat:has(.cat__ic--green)  { border-top-color: var(--wa); }
.cat__ic { width: 60px; height: 60px; border-radius: 16px; }
.cat h3 { font-size: 0.95rem; line-height: 1.3; }
.cat small { color: var(--muted); font-size: 0.8rem; line-height: 1.4; }
.cat__arrow {
  position: absolute; bottom: 12px; right: 14px;
  font-size: 1rem; color: var(--muted-2);
  transition: transform 0.22s var(--ease), color 0.22s;
}
.cat:hover .cat__arrow { transform: translateX(5px); color: var(--ink-2); }
.cat--wa { border-top-style: solid; }

/* =========================================================
   Carrousel marques — auto-scroll
   ========================================================= */
.brands-carousel {
  overflow: hidden; width: 100%; padding: 12px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.brands-track {
  display: inline-flex; align-items: center; gap: 20px;
  width: max-content;
  animation: brands-scroll 22s linear infinite;
}
.brands-carousel:hover .brands-track { animation-play-state: paused; }
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   CTA band — gradient bleu + silhouette voiture + badge
   ========================================================= */
.ctaband .tricolor { margin-bottom: 0; }
.ctaband__inner {
  background: linear-gradient(135deg, #2a52e0 0%, #1e3fc2 50%, #16308f 100%);
}
.ctaband__inner::after { display: none; }
.ctaband__car-deco {
  position: absolute; right: -20px; bottom: 10px;
  width: clamp(200px, 36vw, 380px); opacity: 0.07;
  pointer-events: none; user-select: none;
}
.ctaband__badge {
  display: inline-block; background: var(--yellow); color: var(--ink);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 3px 12px; border-radius: 999px; margin: 8px 0 10px; line-height: 1.6;
}

/* =========================================================
   Promo — ribbon + stock bars + réassurance
   ========================================================= */
.promo__ribbon {
  position: absolute; top: 14px; left: 0; z-index: 2;
  background: var(--red); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 14px 6px 10px; border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 6px rgba(224,31,43,.35); pointer-events: none;
}
.promo__stock-bar { margin: 1rem 0 1.25rem; }
.promo__stock-label { display: block; font-size: .78rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .45rem; }
.promo__stock-tracks { display: flex; flex-direction: column; gap: 6px; }
.promo__stock-track { height: 8px; background: var(--line); border-radius: 99px; overflow: hidden; }
.promo__stock-fill { height: 100%; background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 100%); border-radius: 99px; animation: stockPulse 2.4s ease-in-out infinite alternate; }
@keyframes stockPulse { from { opacity: 1; } to { opacity: .75; } }
.promo__reassurance { margin-top: .9rem; font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* =========================================================
   Services — cartes améliorées
   ========================================================= */
.services { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.service {
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  padding: 28px 24px 22px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.service:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(42,82,224,0.13); border-color: transparent; }
.service__ic { font-size: 1.7rem; width: 52px; height: 52px; border-radius: 14px; background: var(--blue-050); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service.is-featured { border-color: var(--yellow); }
.service[data-popular]::after {
  content: "⭐ Populaire"; position: absolute; top: -10px; right: 14px;
  background: var(--blue); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 0.67rem; padding: 3px 10px; border-radius: 999px;
  box-shadow: 0 2px 6px rgba(42,82,224,.25);
}

/* =========================================================
   Footer améliorations
   ========================================================= */
.footer__hours { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--muted); font-size: 0.875rem; }
.footer__hours-icon { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer__map-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; color: var(--blue); font-size: 0.875rem; font-weight: 600; transition: opacity 0.2s; }
.footer__map-link:hover { opacity: 0.75; text-decoration: underline; }
.footer__pay-label { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink-2); font-size: 0.86rem; }
.footer__pay-icon { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pays { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.pays-card {
  font-style: normal; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.03em;
  padding: 7px 14px; border-radius: 10px; background: #fff; border: 1.5px solid var(--line);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06); color: var(--ink-2); min-height: 40px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pays-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.10); transform: translateY(-2px); }
.pays--wa { color: #075e2f !important; border-color: #b5f0c8 !important; background: #f0fdf4 !important; font-size: 0.78rem; }
.pays--cash { color: #2a7a2a !important; border-color: #c8e6c8 !important; background: #f4fdf4 !important; font-size: 0.78rem; }
.footer__copy { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.footer__https-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--blue-050); border: 1px solid #c5d1f7; color: var(--blue); font-size: 0.75rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.footer__lock-icon { width: 12px; height: 12px; flex-shrink: 0; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   UX — pulse WA + scroll-to-top + overlay produit
   ========================================================= */
.fab-wa { position: relative; }
.fab-wa__ring { position: absolute; inset: 0; border-radius: 50%; pointer-events: none; }
.fab-wa__ring::before, .fab-wa__ring::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--wa); opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
}
.fab-wa__ring::after { animation-delay: 1.2s; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.2); opacity: 0; } }

.scroll-top {
  position: fixed; bottom: 5rem; right: 1.25rem; z-index: 900;
  width: 2.75rem; height: 2.75rem; border-radius: 50%; border: none; cursor: pointer;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(42,82,224,.35);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.scroll-top svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--blue-600); }

.product__media::after {
  content: '🔍 Aperçu rapide';
  position: absolute; bottom: 0; left: 0; width: 100%;
  padding: .6rem 0; text-align: center;
  font-size: .8rem; font-weight: 600; color: #fff;
  background: rgba(42,82,224,.75);
  transform: translateY(100%); transition: transform .28s ease;
  pointer-events: none;
}
.product:hover .product__media::after { transform: translateY(0); }

/* ── Compteurs stats ── */
.stat__n { font-variant-numeric: tabular-nums; }

/* ── Cookie banner RGPD ── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 9990;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  padding: 14px 20px;
  background: #1a1a2e; color: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,.35);
  transform: translateY(110%);
  transition: transform .45s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__text { margin: 0; font-size: .92rem; line-height: 1.45; max-width: 760px; }
.cookie-banner__link { color: #ffcb00; text-decoration: underline; font-weight: 600; }
.cookie-banner__link:hover { color: #fff; }
.cookie-banner__btn { flex-shrink: 0; background: #ffcb00; color: #000; border: none; border-radius: 6px; padding: 10px 22px; font-size: .92rem; font-weight: 700; cursor: pointer; transition: filter .2s ease, transform .15s ease; }
.cookie-banner__btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; gap: 10px; padding: 12px 16px; }
  .cookie-banner__text { font-size: .8rem; }
  .cookie-banner__btn { width: 100%; padding: 12px; }
}

/* ── Top ventes podium ── */
.top-sellers { background: #fff; padding: 60px 16px; }
.top-sellers-title { text-align: center; font-size: 2rem; font-weight: 800; color: #1a1a2e; margin: 0 0 40px; }
.podium { display: flex; align-items: flex-end; justify-content: center; gap: 16px; max-width: 760px; margin: 0 auto; }
.podium-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; max-width: 220px; }
.podium-emoji { font-size: 3rem; line-height: 1; margin-bottom: 10px; }
.podium-name { font-weight: 700; font-size: 1rem; color: #1a1a2e; margin: 0 0 4px; }
.podium-sub { font-size: 0.85rem; color: #666; margin: 0 0 12px; }
.podium-step { position: relative; width: 100%; border-radius: 10px 10px 0 0; display: flex; align-items: flex-start; justify-content: center; overflow: hidden; }
.step-gold   { height: 140px; background: var(--yellow,#ffcb00); }
.step-silver { height: 100px; background: #c0c4cc; }
.step-bronze { height: 80px;  background: #cd9b6a; }
.podium-badge { margin-top: 10px; background: #1a1a2e; color: #fff; font-weight: 800; font-size: 0.8rem; padding: 4px 12px; border-radius: 999px; z-index: 1; }
.podium-num { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-size: 6rem; font-weight: 900; color: #fff; opacity: 0.35; line-height: 1; pointer-events: none; }
.top-sellers-cta { text-align: center; margin-top: 40px; }
.btn-top-sellers { display: inline-block; background: var(--blue,#2a52e0); color: #fff; font-weight: 700; padding: 14px 32px; border-radius: 999px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-top-sellers:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42,82,224,0.35); }
@media (max-width: 640px) {
  .top-sellers { padding: 40px 10px; }
  .top-sellers-title { font-size: 1.4rem; margin-bottom: 28px; }
  .podium { gap: 8px; }
  .podium-emoji { font-size: 2rem; }
  .podium-item { max-width: 120px; }
  .podium-name { font-size: 0.8rem; }
  .podium-sub { font-size: 0.7rem; }
  .step-gold   { height: 110px; }
  .step-silver { height: 80px; }
  .step-bronze { height: 64px; }
  .podium-num { font-size: 4rem; }
  .podium-badge { font-size: 0.65rem; padding: 3px 8px; }
}

/* ── Cat marquee ── */
.cat-marquee { background: #1a1a2e; height: 64px; display: flex; align-items: center; overflow: hidden; position: relative; }
.cat-marquee::before, .cat-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.cat-marquee::before { left: 0; background: linear-gradient(90deg,#1a1a2e,transparent); }
.cat-marquee::after { right: 0; background: linear-gradient(-90deg,#1a1a2e,transparent); }
.cat-marquee__track { display: flex; width: max-content; animation: cat-scroll 40s linear infinite; will-change: transform; }
.cat-marquee:hover .cat-marquee__track { animation-play-state: paused; }
.cat-marquee__group { display: flex; align-items: center; gap: 16px; padding-right: 16px; flex-shrink: 0; }
.cat-pill { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 10px 22px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: .95rem; font-weight: 600; text-decoration: none; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.cat-pill:hover { background: var(--blue,#2a52e0); border-color: var(--blue,#2a52e0); transform: translateY(-2px); }
@keyframes cat-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   MODE SOMBRE
   ========================================================= */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--card); cursor: pointer; font-size: 1.15rem;
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.theme-toggle:hover { border-color: var(--blue); background: var(--blue-050); transform: scale(1.08); }

body, body * { transition-property: background-color, color, border-color, box-shadow, fill, stroke;
  transition-duration: 0s; transition-timing-function: ease; }
body.dark-transition, body.dark-transition * { transition-duration: 0.3s; }

body.dark {
  --page: #0f172a;
  --soft: #162035;
  --card: #1e293b;
  --ink: #e2e8f0;
  --ink-2: #cbd5e1;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --line: #334155;
  --line-2: #475569;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
  --shadow-lg: 0 30px 70px -30px rgba(0,0,0,0.7);
}
body.dark .header { background: #1e293b; }
body.dark .catnav { background: #1e293b; border-top-color: #334155; }
body.dark .topbar { background: #0b1120; }
body.dark .search { background: #162035; border-color: #334155; }
body.dark .search:focus-within { background: #1e293b; }
body.dark .search input { color: #e2e8f0; }
body.dark .search__btn { background: var(--blue); }
body.dark .cartbtn { background: #1e293b; border-color: #334155; }
body.dark .cartbtn svg { stroke: #e2e8f0; }
body.dark .burger { background: #1e293b; border-color: #334155; }
body.dark .burger span { background: #e2e8f0; }
body.dark .assur { background: #1e293b; border-bottom-color: #334155; }
body.dark .finder { background: #1e293b; }
body.dark .finder__tab { color: #94a3b8; }
body.dark .finder__tab.is-active { background: #0f172a; color: var(--blue); }
body.dark .finder__tabs { background: #162035; }
body.dark .product, body.dark .fcard, body.dark .service, body.dark .review,
body.dark .cat, body.dark .step, body.dark .guarantee-card, body.dark .why-card,
body.dark .blog-card, body.dark .testimonial-card { background: #1e293b; border-color: #334155; }
body.dark .product__media { background: #162035; border-bottom-color: #334155; }
body.dark .section--soft { background: #162035; }
body.dark .footer { background: #1e293b; border-top-color: #334155; }
body.dark .promo { background: #1e293b; border-color: #334155; }
body.dark .vcard { background: #162035; border-color: #334155; }
body.dark .chip { background: #1e293b; border-color: #475569; color: #94a3b8; }
body.dark .chip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
body.dark .btn--light { background: #1e293b; color: #e2e8f0; border-color: #475569; }
body.dark .btn--ghost { color: #e2e8f0; border-color: #475569; }
body.dark .plate { border-color: #475569; }
body.dark .plate__input { background: #1e293b; color: #e2e8f0; }
body.dark .vinfield__input { border-color: #475569; background: #1e293b; color: #e2e8f0; }
body.dark .top-sellers { background: #0f172a; }
body.dark .top-sellers-title { color: #e2e8f0; }
body.dark .podium-name { color: #e2e8f0; }
body.dark .podium-sub { color: #94a3b8; }
body.dark .guarantees { background: #0f172a; }
body.dark .guarantees-title { color: #e2e8f0; }
body.dark .guarantee-card { background: #1e293b; border-color: rgba(42,82,224,0.15); }
body.dark .guarantee-icon-wrap { background: #162035; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
body.dark .compare-table { background: #162035; }
body.dark .ct-table { background: #1e293b; }
body.dark .ct-td-criteria { background: #162035 !important; color: #e2e8f0; }
body.dark .ct-featured-col { background: #1a2744; color: #93b4ff; }
body.dark .ct-row-alt td:not(.ct-td-criteria):not(.ct-featured-col) { background: #162035; }
body.dark .ct-row-alt .ct-featured-col { background: #152040; }
body.dark .ct-cta-row td { background: #1e293b !important; }
body.dark .why-us { background: #162035; }
body.dark .why-us .section-header h2 { color: #e2e8f0; }
body.dark .why-us .section-header p { color: #94a3b8; }
body.dark .why-card h3 { color: #e2e8f0; }
body.dark .why-card p { color: #94a3b8; }
body.dark .partners { background: #162035; }
body.dark .partners__title { color: #e2e8f0; }
body.dark .brandbox { background: #1e293b; border-color: #334155; }
body.dark .reviews__score { background: #1e293b; border-color: #334155; }
body.dark .reviews__big { color: #e2e8f0; }
body.dark .visit-us { background: #0f172a; }
body.dark .visit-info h2 { color: #e2e8f0; }
body.dark .hours-card { background: #1e293b; box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
body.dark .hours-card h3 { color: #e2e8f0; }
body.dark .hours-table td { border-bottom-color: #334155; color: #cbd5e1; }
body.dark .hours-table td:last-child { color: #e2e8f0; }
body.dark .blog-preview { background: #162035; }
body.dark .blog-preview__title { color: #e2e8f0; }
body.dark .blog-card__heading { color: #e2e8f0; }
body.dark .blog-card__excerpt { color: #94a3b8; }
body.dark .blog-card__footer { border-top-color: #334155; }
body.dark .faq { background: #162035; }
body.dark .faq .section-title { color: #e2e8f0; }
body.dark .faq__item { background: #1e293b; border-color: #334155; }
body.dark .faq__item[open] { border-color: var(--blue); }
body.dark .faq__question { color: #e2e8f0; }
body.dark .faq__body > p { color: #94a3b8; border-top-color: #334155; }
body.dark .cookie-banner { background: #1e293b; }
body.dark .social-proof { background: #1e293b; }
body.dark .social-proof__text { color: #e2e8f0; }
body.dark .wa-bubble { background: #1e293b; box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
body.dark .wa-bubble__text { color: #e2e8f0; }
body.dark .wa-bubble__arrow { border-left-color: #1e293b; }
body.dark .trust-banner { background: linear-gradient(to right, #0f172a, #162035 50%, #0f172a); }
body.dark .trust-banner__title { color: #e2e8f0; }
body.dark .trust-badge { background: #1e293b; border-color: #334155; }
body.dark .trust-badge__label { color: var(--blue); }
body.dark .testimonials { background: #0f172a; }
body.dark .testimonials-title { color: #e2e8f0; }
body.dark .testimonial-card { background: #1e293b; border-color: #334155; }
body.dark .testimonial-name { color: #e2e8f0; }
body.dark .testimonial-body { color: #cbd5e1; }
body.dark .delivery-strip { background: #1e293b; border-bottom-color: var(--blue); }
body.dark .delivery-strip__item { color: #e2e8f0; }
body.dark .delivery-strip__sep { background: #475569; }
body.dark .search-bar-group { background: #1e293b; box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
body.dark .search-bar-input { color: #e2e8f0; }
body.dark .search-bar-input::placeholder { color: #64748b; }
body.dark .ptools__sort select { background: #1e293b; color: #e2e8f0; border-color: #475569; }
body.dark .ptools__search { background: #162035; border-color: #475569; }
body.dark .qv__dialog { background: #1e293b; }
body.dark .qv__media { background: #162035; }
body.dark .qv__name { color: #e2e8f0; }
body.dark .qv__desc { color: #94a3b8; }
body.dark .cart__panel { background: #1e293b; }
body.dark .cart__head { border-bottom-color: #334155; }
body.dark .cart__close { background: #162035; color: #e2e8f0; }
body.dark .cart__foot { border-top-color: #334155; }
body.dark .cart-item { border-bottom-color: #334155; }
body.dark .cart-item__qty button { background: #162035; border-color: #475569; color: #e2e8f0; }
body.dark .product__price .now { color: #e2e8f0; }
body.dark .qv__price .now { color: #e2e8f0; }
body.dark .howto { background: #162035; }
body.dark .iconbtn--call svg { background: #162035; }
body.dark .assur__ic { background: #162035; }
body.dark .finder select { background: #1e293b; border-color: #475569; color: #e2e8f0; }
body.dark .product__media--logo { background: #162035; }
body.dark .fcard__media--logo { background: #162035; }

/* =========================================================
   LOADING SKELETON
   ========================================================= */
.skeleton-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--page, #f3f6fb);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; padding: 2rem;
  transition: opacity 0.4s ease;
}
body.dark .skeleton-screen { background: #0f172a; }
.skeleton-screen.is-hidden { opacity: 0; pointer-events: none; }
.skeleton-bar {
  width: min(600px, 80%); height: 48px; border-radius: 999px;
  background: linear-gradient(90deg, #e4eaf2 25%, #f0f4f8 50%, #e4eaf2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
body.dark .skeleton-bar {
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; width: min(1240px, 90%); }
.skeleton-card {
  background: var(--card, #fff); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line, #e4eaf2); padding-bottom: 16px;
}
body.dark .skeleton-card { background: #1e293b; border-color: #334155; }
.skeleton-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(90deg, #e4eaf2 25%, #f0f4f8 50%, #e4eaf2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
body.dark .skeleton-img {
  background: linear-gradient(90deg, #162035 25%, #253350 50%, #162035 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-line {
  margin: 12px 16px 0; border-radius: 6px; height: 14px;
  background: linear-gradient(90deg, #e4eaf2 25%, #f0f4f8 50%, #e4eaf2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
body.dark .skeleton-line {
  background: linear-gradient(90deg, #162035 25%, #253350 50%, #162035 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-line--lg { width: 75%; }
.skeleton-line--md { width: 50%; height: 12px; }
.skeleton-line--sm { width: 35%; height: 10px; margin-top: 8px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (max-width: 860px) { .skeleton-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .skeleton-cards { grid-template-columns: 1fr; } }


/* =========================================================
   Roue de la chance (Spin to Win)
   ========================================================= */
.fab-spin {
  position: fixed; left: 18px; bottom: 18px; z-index: 90;
  background: var(--red); color: #fff; border: none; border-radius: 999px;
  padding: 12px 20px; font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; cursor: pointer; box-shadow: 0 10px 28px -8px rgba(224,31,43,0.6);
  transition: transform 0.25s var(--ease); animation: fab-spin-bounce 2.4s ease-in-out infinite;
}
.fab-spin:hover { transform: scale(1.06); }
@keyframes fab-spin-bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.spin-modal { position: fixed; inset: 0; z-index: 230; visibility: hidden; display: flex; align-items: center; justify-content: center; }
.spin-modal[aria-hidden="false"] { visibility: visible; }
.spin-modal__overlay { position: absolute; inset: 0; background: rgba(14,27,51,0.6); opacity: 0; transition: opacity 0.3s; }
.spin-modal[aria-hidden="false"] .spin-modal__overlay { opacity: 1; }
.spin-modal__dialog {
  position: relative; z-index: 1; background: #fff; border-radius: var(--radius-lg);
  padding: clamp(24px,4vw,40px); max-width: 420px; width: calc(100% - 32px);
  text-align: center; box-shadow: var(--shadow-lg);
  opacity: 0; transform: scale(0.92); transition: opacity 0.3s, transform 0.3s var(--ease);
}
.spin-modal[aria-hidden="false"] .spin-modal__dialog { opacity: 1; transform: scale(1); }
.spin-modal__x { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 10px; border: none; background: var(--soft); cursor: pointer; font-size: 1rem; color: var(--ink); }
.spin-modal__title { font-size: 1.5rem; margin-bottom: 4px; }
.spin-modal__sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.spin-wheel-wrap { position: relative; width: 240px; height: 240px; margin: 0 auto 20px; }
.spin-pointer { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); font-size: 1.6rem; color: var(--ink); z-index: 2; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.spin-wheel { width: 100%; height: 100%; transition: transform 4s cubic-bezier(0.17,0.67,0.12,0.99); }
.spin-wheel__svg { width: 100%; height: 100%; border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 0 0 6px var(--ink); }
.spin-wheel.is-spinning { pointer-events: none; }
.spin-modal__go { width: 100%; margin-bottom: 14px; }
.spin-modal__result { margin-top: 10px; }
.spin-modal__prize { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.spin-modal__code { font-size: 1.1rem; margin-bottom: 6px; }
.spin-modal__code strong { background: var(--blue-050); color: var(--blue); padding: 4px 12px; border-radius: 8px; letter-spacing: 0.08em; font-family: ui-monospace, monospace; }
.spin-modal__hint { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
@media (max-width: 767px) {
  .fab-spin { bottom: 70px; left: 12px; font-size: 0.82rem; padding: 10px 16px; }
}

/* =========================================================
   Barre livraison gratuite
   ========================================================= */
.free-shipping-bar {
  position: sticky; top: 0; z-index: 99;
  background: linear-gradient(90deg, #e8f5e9 0%, #c8e6c9 100%);
  border-bottom: 1px solid #a5d6a7;
  padding: 8px 16px;
}
.free-shipping-bar__inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.free-shipping-bar__text { font-size: 0.88rem; font-weight: 600; color: #1b5e20; flex: 1; min-width: 200px; }
.free-shipping-bar__text strong { color: #e01f2b; }
.free-shipping-bar__track { flex: 0 0 180px; height: 8px; background: #c8e6c9; border-radius: 999px; overflow: hidden; }
.free-shipping-bar__fill { height: 100%; background: linear-gradient(90deg, var(--ok) 0%, #4caf50 100%); border-radius: 999px; transition: width 0.6s var(--ease); }
.free-shipping-bar.is-complete { background: linear-gradient(90deg, #c8e6c9 0%, #a5d6a7 100%); }
.free-shipping-bar.is-complete .free-shipping-bar__text { color: #2e7d32; }
.free-shipping-bar.is-complete .free-shipping-bar__text strong { color: #2e7d32; }
@media (max-width: 560px) {
  .free-shipping-bar__track { flex: 1 1 100%; }
}

/* =========================================================
   Vus recemment
   ========================================================= */
.recently-viewed { padding: 36px 0 48px; background: var(--soft); }
.recently-viewed__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--ink); }
.recently-viewed__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.recently-viewed__track::-webkit-scrollbar { height: 6px; }
.recently-viewed__track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.rv-card {
  flex: 0 0 200px; scroll-snap-align: start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.rv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rv-card__media { aspect-ratio: 4/3; background: var(--soft); display: grid; place-items: center; overflow: hidden; }
.rv-card__media img { width: 100%; height: 100%; object-fit: cover; }
.rv-card__media--logo img { object-fit: contain; padding: 14px; mix-blend-mode: multiply; }
.rv-card__body { padding: 10px 12px; }
.rv-card__brand { font-family: var(--font-display); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--blue); }
.rv-card__name { font-size: 0.85rem; font-weight: 600; line-height: 1.3; margin-top: 2px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-card__price { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--ink); margin-top: 4px; }


/* ── Reassurance strip (SVG icons + fade-in staggered) ── */
.reassurance-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--blue, #2a52e0);
  padding: 0.65rem 1rem;
  flex-wrap: wrap;
}
.reassurance-strip__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 1.4rem;
  font-size: 0.85rem;
  color: #1a1a1a;
  line-height: 1.3;
}
.reassurance-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-050, #eef2ff);
  flex-shrink: 0;
}
.reassurance-strip__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue, #2a52e0);
}
.reassurance-strip__text strong { color: var(--blue, #2a52e0); font-weight: 700; }
.reassurance-strip__sep { width: 1px; height: 1.6rem; background: #d0d7f5; flex-shrink: 0; }
.reassurance-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reassurance-reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 480px) {
  .reassurance-strip { flex-direction: column; gap: 0.1rem; padding: 0.5rem 1rem; align-items: flex-start; }
  .reassurance-strip__item { padding: 0.25rem 0; }
  .reassurance-strip__sep { display: none; }
}

/* ── Trust logos marquee ── */
.trust-logos {
  background: #f7f8fc;
  padding: 2.5rem 0;
  overflow: hidden;
}
.trust-logos__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.trust-logos__title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--muted, #64748b);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.trust-logos__track {
  display: flex;
  width: max-content;
  animation: trust-scroll 25s linear infinite;
}
.trust-logos:hover .trust-logos__track { animation-play-state: paused; }
.trust-logos__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
}
.trust-logos__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  background: #fff;
  border: 1.5px solid #e4eaf2;
  border-radius: 10px;
  font-family: var(--font-display, "Sora", sans-serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-2, #2c3a55);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-logos__logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(42, 82, 224, 0.1);
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Instagram feed ── */
.insta-feed {
  background: #fff;
  padding: 4rem 0;
}
.insta-feed__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.insta-feed__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.insta-feed__handle {
  font-size: 1rem;
  color: var(--muted, #64748b);
  margin-bottom: 2rem;
}
.insta-feed__handle a {
  color: var(--blue, #2a52e0);
  font-weight: 600;
  transition: color 0.2s;
}
.insta-feed__handle a:hover { color: var(--blue-600, #1f3fc0); }
.insta-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.insta-card:hover { transform: scale(1.05); }
.insta-card__icon {
  font-size: 2rem;
  opacity: 0.4;
}
.insta-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 12px;
}
.insta-card:hover .insta-card__overlay { opacity: 1; }
.insta-feed__btn {
  display: inline-block;
  margin-top: 2rem;
  background: var(--blue, #2a52e0);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.insta-feed__btn:hover {
  background: var(--blue-600, #1f3fc0);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .insta-feed__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .insta-feed__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) { .cat-marquee__track { animation: none; } .cat-marquee { overflow-x: auto; } }

/* ── Visit us / horaires ── */
.visit-us { background: #fff; padding: 80px 20px; }
.visit-us-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.visit-kicker { display: inline-block; background: var(--red); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; }
.visit-info h2 { font-size: clamp(1.6rem,3vw,2.2rem); color: #111; margin: 0 0 14px; line-height: 1.2; }
.visit-text { color: #555; line-height: 1.6; margin: 0 0 22px; }
.visit-lines { list-style: none; margin: 0 0 28px; padding: 0; }
.visit-lines li { display: flex; align-items: center; gap: 10px; color: #333; font-weight: 500; padding: 7px 0; }
.visit-emoji { font-size: 1.1rem; }
.visit-btn { display: inline-block; background: var(--blue); color: #fff; font-weight: 600; padding: 14px 28px; border-radius: 10px; text-decoration: none; transition: background .2s, transform .2s; }
.visit-btn:hover { background: #1e3eb0; transform: translateY(-2px); }
.hours-card { background: #f7f8fc; border-radius: 16px; padding: 32px; box-shadow: 0 6px 24px rgba(42,82,224,.08); }
.open-badge { display: inline-block; background: rgba(34,170,90,.12); color: #1d9a52; font-size: .82rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.open-badge.is-closed { background: rgba(224,31,43,.10); color: var(--red,#e01f2b); }
.hours-card h3 { margin: 0 0 18px; color: #111; font-size: 1.15rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 4px; border-bottom: 1px solid #e4e7f2; color: #333; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: #111; }
.hours-table tr.closed td:last-child { color: var(--red); }
.hours-table tr.is-today td { background: #e8f1fb; font-weight: 700; }
@media (max-width: 820px) { .visit-us { padding: 56px 16px; } .visit-us-inner { grid-template-columns: 1fr; gap: 32px; } .hours-card { padding: 24px; } }

/* ── Share FAB ── */
.share-fab { position: fixed; bottom: 90px; left: 24px; z-index: 9997; }
.share-fab-btn { width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--blue,#2a52e0); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 14px rgba(42,82,224,0.4); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.share-fab-btn:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(42,82,224,0.55); }
.share-menu { position: absolute; bottom: 56px; left: 4px; display: flex; flex-direction: column; gap: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; }
.share-fab.open .share-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.share-menu-btn { position: relative; width: 40px; height: 40px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; box-shadow: 0 3px 10px rgba(0,0,0,0.25); transition: transform 0.15s ease; }
.share-menu-btn:hover { transform: scale(1.1); }
.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-copy { background: var(--red,#e01f2b); }
.share-tooltip { position: absolute; left: 48px; top: 50%; transform: translateY(-50%); background: #222; color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.share-tooltip.visible { opacity: 1; }
@media (max-width: 480px) { .share-fab { display: none; } }

/* ── Guarantees ── */
.guarantees { padding: 5rem 0; background: #fff; }
.guarantees-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.guarantees-title { text-align: center; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: #1a1a2e; margin-bottom: 3rem; letter-spacing: -0.02em; }
.guarantees-title::after { content: ''; display: block; width: 56px; height: 4px; background: var(--blue,#2a52e0); border-radius: 2px; margin: 0.75rem auto 0; }
.guarantees-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .guarantees-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .guarantees-grid { grid-template-columns: 1fr; } }
.guarantee-card { background: #f7f8fc; border-radius: 16px; padding: 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: transform 0.25s ease, box-shadow 0.25s ease; border: 1px solid rgba(42,82,224,0.06); }
.guarantee-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(42,82,224,0.12); }
.guarantee-icon-wrap { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background: #fff; box-shadow: 0 4px 16px rgba(42,82,224,0.10),0 1px 4px rgba(0,0,0,0.06); flex-shrink: 0; }
.guarantee-card-title { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin: 0; line-height: 1.3; }
.guarantee-card-desc { font-size: 0.9rem; color: #5a5a72; line-height: 1.6; margin: 0; }

/* ── Compare table ── */
.compare-table { padding: 5rem 0; background: #f7f8fc; }
.ct-container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.ct-header { text-align: center; margin-bottom: 2.5rem; }
.ct-title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: #1a1a2e; margin: 0 0 0.75rem; }
.ct-subtitle { font-size: 1rem; color: #555; max-width: 580px; margin: 0 auto; line-height: 1.6; }
.ct-scroll-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; box-shadow: 0 4px 32px rgba(42,82,224,0.10); }
.ct-table { width: 100%; min-width: 620px; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: 14px; overflow: hidden; }
.ct-table thead tr th { padding: 1.4rem 1.1rem 1.2rem; text-align: center; font-size: 0.92rem; font-weight: 700; vertical-align: bottom; position: relative; }
.ct-th-criteria { text-align: left !important; background: #1a1a2e; color: #fff; width: 22%; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.ct-th-entry { background: #e8eaf6; color: #1a1a2e; border-left: 1px solid #dce0f0; }
.ct-th-standard { background: var(--blue,#2a52e0); color: #fff; border-left: 1px solid #2040c0; border-right: 1px solid #2040c0; }
.ct-th-premium { background: #1a1a2e; color: #ffcb00; border-left: 1px solid #2a52e0; }
.ct-col-label { font-size: 1.05rem; font-weight: 800; line-height: 1.3; }
.ct-badge { display: inline-block; background: #ffcb00; color: #1a1a2e; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.2rem 0.7rem; border-radius: 20px; margin-bottom: 0.55rem; }
.ct-table tbody tr td { padding: 1rem 1.1rem; font-size: 0.93rem; text-align: center; color: #2d2d2d; vertical-align: middle; border-top: 1px solid #e9ecf5; }
.ct-td-criteria { text-align: left !important; font-weight: 700; color: #1a1a2e; background: #f0f2fa !important; font-size: 0.88rem; }
.ct-td-entry { border-left: 1px solid #dce0f0; }
.ct-featured-col { background: #eef1fb; border-left: 2px solid var(--blue,#2a52e0); border-right: 2px solid var(--blue,#2a52e0); font-weight: 600; color: #1a2a7a; }
.ct-td-premium { border-left: 1px solid #dce0f0; }
.ct-row-alt td:not(.ct-td-criteria):not(.ct-featured-col) { background: #f7f8fc; }
.ct-row-alt .ct-featured-col { background: #e4e9f8; }
.ct-check { color: #18a558; font-weight: 700; font-size: 1.1rem; }
.ct-cross { color: var(--red,#e01f2b); font-weight: 700; font-size: 1.1rem; }
.ct-cta-row td { padding: 1.2rem 1rem !important; border-top: 2px solid #dce0f0 !important; background: #fff !important; }
.ct-cta-row .ct-featured-col { background: #eef1fb !important; }
.ct-btn { display: inline-block; padding: 0.6rem 1.15rem; border-radius: 8px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: transform 0.15s, opacity 0.15s; white-space: nowrap; }
.ct-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.ct-btn-outline { border: 2px solid #2a52e0; color: #2a52e0; background: transparent; }
.ct-btn-outline:hover { background: #eef1fb; }
.ct-btn-primary { background: var(--blue,#2a52e0); color: #fff; border: 2px solid var(--blue,#2a52e0); box-shadow: 0 4px 14px rgba(42,82,224,0.35); }
.ct-btn-premium { background: #1a1a2e; color: #ffcb00; border: 2px solid #1a1a2e; box-shadow: 0 4px 14px rgba(26,26,46,0.25); }
@media (max-width: 768px) { .compare-table { padding: 3rem 0; } .ct-table { min-width: 560px; } .ct-table thead tr th, .ct-table tbody tr td { padding: 0.85rem 0.75rem; font-size: 0.82rem; } .ct-btn { padding: 0.5rem 0.85rem; font-size: 0.78rem; } }

/* ── Eco engage ── */
.eco-engage { background: linear-gradient(160deg, #1a3326 0%, #0d1f16 100%); padding: 5rem 0; color: #fff; }
.eco-engage__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.eco-engage__title { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 700; margin: 0 0 0.75rem; letter-spacing: -0.01em; color: #fff; }
.eco-engage__subtitle { font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,0.7); margin: 0 0 3rem; }
.eco-engage__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
@media (max-width: 900px) { .eco-engage__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .eco-engage__grid { grid-template-columns: 1fr; } }
.eco-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.eco-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(40,180,100,0.25); border-color: rgba(40,180,100,0.45); }
.eco-card__emoji { display: block; font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; }
.eco-card__title { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.75rem; color: #fff; }
.eco-card__text { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 0; }

/* ── Reading progress bar ── */
#readingProgress { position: fixed; bottom: 0; left: 0; width: 0%; height: 4px; background: linear-gradient(to right, var(--blue,#2a52e0), var(--red,#e01f2b)); z-index: 9999; pointer-events: none; }

/* ── Scroll-top wrapper with SVG ring ── */
.scroll-top-wrapper { position: fixed; bottom: 2rem; right: 2rem; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.scroll-top-wrapper.visible { opacity: 1; visibility: visible; }
.scroll-progress-ring { position: absolute; top: 0; left: 0; width: 50px; height: 50px; transform: rotate(-90deg); pointer-events: none; }
.scroll-progress-ring__track { fill: none; stroke: rgba(42,82,224,0.15); stroke-width: 3; }
.scroll-progress-ring__fill { fill: none; stroke: var(--blue,#2a52e0); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 138.23; stroke-dashoffset: 138.23; transition: stroke-dashoffset 0.1s linear; }
.scroll-top-wrapper .scroll-top { position: relative; bottom: auto; right: auto; opacity: 1; visibility: visible; z-index: 1; width: 42px; height: 42px; }

/* ── Search bar section ── */
.search-bar-section { background: #1a1a2e; padding: 1.5rem 0; }
.search-bar-inner { max-width: 700px; margin: 0 auto; padding: 0 1rem; }
.search-bar-form { width: 100%; }
.search-bar-group { display: flex; align-items: center; background: #fff; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.35); overflow: hidden; }
.search-bar-input { flex: 1; border: none; outline: none; padding: 0.85rem 1.1rem; font-size: 1rem; color: #1a1a2e; background: transparent; min-width: 0; }
.search-bar-input::placeholder { color: #999; }
.search-bar-btn { flex-shrink: 0; background: var(--blue,#2a52e0); color: #fff; border: none; padding: 0.85rem 1.4rem; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease; border-radius: 0 12px 12px 0; white-space: nowrap; }
.search-bar-btn:hover { background: #1e3fb8; }
.search-bar-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.search-pill { background: rgba(255,255,255,0.1); color: #ccc; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 0.3rem 0.85rem; font-size: 0.85rem; cursor: pointer; transition: background 0.18s ease, color 0.18s ease; }
.search-pill:hover { background: rgba(255,255,255,0.22); color: #fff; }
@media (max-width: 520px) {
  .search-bar-group { flex-direction: column; border-radius: 12px; }
  .search-bar-btn { width: 100%; border-radius: 0 0 12px 12px; }
  .search-bar-input { width: 100%; border-radius: 12px 12px 0 0; }
}

/* ── Flash sale banner ── */
.flash-sale { display: flex; align-items: center; justify-content: center; gap: 24px; background: #ffcb00; height: 64px; padding: 0 16px; flex-wrap: wrap; }
.flash-sale__label { font-weight: 700; font-size: 0.95rem; color: #111; white-space: nowrap; }
.flash-sale__timer { font-size: 0.9rem; font-weight: 600; color: #111; white-space: nowrap; }
#flash-countdown { font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.flash-sale__btn { display: inline-block; background: #111; color: #fff; font-weight: 700; font-size: 0.85rem; padding: 8px 18px; border-radius: 4px; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.flash-sale__btn:hover { background: #2a52e0; }
@media (max-width: 600px) { .flash-sale { height: auto; padding: 10px 12px; gap: 10px; } }

/* ── Delivery zones ── */
.delivery-zones { background: #fff; padding: 80px 0; overflow: hidden; }
.delivery-zones__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 60fr 40fr; gap: 64px; align-items: center; }
.delivery-zones__kicker { display: inline-block; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 20px; }
.delivery-zones__title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: #111827; line-height: 1.25; margin: 0 0 20px 0; }
.delivery-zones__desc { font-size: 1rem; color: #4b5563; line-height: 1.7; margin: 0 0 28px 0; max-width: 480px; }
.delivery-zones__list { list-style: none; margin: 0 0 32px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.zone-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: #1f2937; }
.zone-item__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.delivery-zones__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; font-size: 0.9rem; font-weight: 700; padding: 10px 22px; border-radius: 8px; }
.delivery-zones__visual { display: flex; justify-content: center; align-items: center; }
.reunion-map { display: flex; flex-direction: column; align-items: center; gap: 14px; background: linear-gradient(135deg,#e8f4f0 0%,#ddeaf4 100%); border-radius: 24px; padding: 32px; width: 100%; max-width: 340px; box-shadow: 0 8px 32px rgba(42,82,224,0.1); }
.reunion-shape { width: 100%; max-width: 280px; height: auto; display: block; }
.reunion-map__caption { font-size: 0.8rem; font-weight: 600; color: #4b5563; text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
@keyframes pulse-ring { 0% { r: 7; opacity: 0.9; } 100% { r: 18; opacity: 0; } }
.pulse-ring { animation: pulse-ring 2s ease-out infinite; transform-origin: center; }
.pulse-ring--delay1 { animation-delay: 0.65s; }
.pulse-ring--delay2 { animation-delay: 1.3s; }
@media (max-width: 768px) {
  .delivery-zones { padding: 56px 0; }
  .delivery-zones__container { grid-template-columns: 1fr; gap: 40px; }
  .delivery-zones__visual { order: -1; }
  .reunion-map { max-width: 280px; padding: 24px; }
  .delivery-zones__list { grid-template-columns: 1fr; }
  .delivery-zones__desc { max-width: 100%; }
}

/* ── Newsletter WA ── */
.newsletter { background: linear-gradient(135deg, #2a52e0 0%, #1a3bbf 100%); padding: 3.5rem 1rem; text-align: center; }
.newsletter__inner { max-width: 640px; margin: 0 auto; }
.newsletter__icon { display: flex; justify-content: center; margin-bottom: 1rem; }
.newsletter__title { color: #fff; font-size: clamp(1.4rem,4vw,1.9rem); font-weight: 700; margin: 0 0 0.75rem; line-height: 1.25; }
.newsletter__desc { color: rgba(255,255,255,0.88); font-size: 1rem; margin: 0 0 1.75rem; line-height: 1.6; }
.newsletter__form { width: 100%; }
.newsletter__form-row { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 0.75rem; }
.newsletter__input { flex: 1 1 220px; min-width: 0; max-width: 380px; padding: 0.75rem 1rem; border: 2px solid transparent; border-radius: 6px; font-size: 1rem; outline: none; transition: border-color 0.2s; background: #fff; color: #111; }
.newsletter__input:focus { border-color: #ffcb00; }
.newsletter__input::placeholder { color: #888; }
.newsletter__btn { flex: 0 0 auto; padding: 0.75rem 1.4rem; background: #ffcb00; color: #111; border: none; border-radius: 6px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.1s; white-space: nowrap; }
.newsletter__btn:hover { background: #f0be00; }
.newsletter__btn:active { transform: scale(0.97); }
.newsletter__disclaimer { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0; }
.newsletter__confirm { display: none; color: #fff; font-size: 1.05rem; font-weight: 600; padding: 1rem; background: rgba(255,255,255,0.12); border-radius: 8px; margin-top: 0.5rem; }
.newsletter__confirm.is-visible { display: block; }
@media (max-width: 480px) { .newsletter__form-row { flex-direction: column; align-items: stretch; } .newsletter__input, .newsletter__btn { width: 100%; max-width: 100%; } }

/* ── Progress bar page load ── */
#pageProgress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, #2a52e0, #e01f2b, #ffcb00);
  z-index: 99999;
  animation: progressFill 1.2s ease-out forwards;
  opacity: 1;
  transition: opacity 0.4s ease;
}
#pageProgress.done { opacity: 0; }
@keyframes progressFill { from { width: 0%; } to { width: 100%; } }
.anim-ready { opacity: 0; }
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Partners ── */
.partners { padding: 4rem 0; background: #f7f8fc; }
.partners__inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.partners__title { text-align: center; font-size: 1.75rem; font-weight: 700; color: #1a1a2e; margin-bottom: 2.5rem; letter-spacing: -0.01em; }
.partners__title::after { content: ''; display: block; width: 56px; height: 4px; background: #e01f2b; border-radius: 2px; margin: 0.6rem auto 0; }
.partners__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; justify-items: center; }
.partners__card { width: 140px; height: 80px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; box-shadow: 0 4px 14px rgba(0,0,0,0.12); cursor: default; transition: transform 0.22s ease, box-shadow 0.22s ease; padding: 0.5rem; box-sizing: border-box; }
.partners__card:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }
.partners__card-name { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; line-height: 1.1; }
.partners__card-sub { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; line-height: 1; }
.partners__card--valeo { background: #2a52e0; color: #fff; }
.partners__card--mann { background: #1a1a2e; color: #fff; }
.partners__card--mann .partners__card-name { font-size: 0.78rem; letter-spacing: 0.02em; }
.partners__card--gates { background: #e01f2b; color: #fff; }
.partners__card--monroe { background: #ffcb00; color: #1a1a2e; }
.partners__card--monroe .partners__card-sub { opacity: 0.7; }
.partners__card--ngk { background: #1a1a2e; color: #fff; border-bottom: 3px solid #e01f2b; }
.partners__card--ngk .partners__card-name { font-size: 1.2rem; letter-spacing: 0.1em; }
@media (max-width: 768px) { .partners__grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px) { .partners__grid { grid-template-columns: repeat(2,1fr); } }

/* ── WA Bubble ── */
.wa-bubble {
  position: fixed;
  bottom: 80px; right: 84px;
  max-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13), 0 1.5px 6px rgba(0,0,0,0.08);
  padding: 16px 16px 14px;
  z-index: 9998;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.wa-bubble.wa-bubble--visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-bubble__close { position: absolute; top: 8px; right: 10px; background: none; border: none; cursor: pointer; font-size: 13px; color: #888; line-height: 1; padding: 2px 4px; border-radius: 4px; transition: color 0.15s, background 0.15s; }
.wa-bubble__close:hover { color: #333; background: #f0f0f0; }
.wa-bubble__text { margin: 0; font-size: 14px; line-height: 1.45; color: #222; padding-right: 18px; }
.wa-bubble__btn { display: inline-block; background: var(--wa,#25d366); color: #fff; text-decoration: none; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; text-align: center; transition: background 0.18s, transform 0.15s; align-self: flex-start; }
.wa-bubble__btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.wa-bubble__arrow { position: absolute; bottom: 18px; right: -10px; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 10px solid #fff; filter: drop-shadow(2px 0 2px rgba(0,0,0,0.07)); }
@media (max-width: 480px) { .wa-bubble { right: 70px; bottom: 72px; max-width: 200px; } }

/* ── Blog preview ── */
.blog-preview { padding: 72px 20px; background-color: #f7f8fc; }
.blog-preview__inner { max-width: 1140px; margin: 0 auto; }
.blog-preview__title { text-align: center; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: #1a1a2e; margin-bottom: 48px; position: relative; }
.blog-preview__title::after { content: ''; display: block; width: 56px; height: 4px; background: #e01f2b; border-radius: 2px; margin: 12px auto 0; }
.blog-preview__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 10px 28px rgba(0,0,0,0.14); }
.blog-card__image { height: 160px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.blog-card__emoji { font-size: 3rem; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.blog-card__body { padding: 20px 22px 18px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.blog-card__tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; align-self: flex-start; }
.blog-card__tag--entretien { background-color: #e8edff; color: #2a52e0; }
.blog-card__tag--huile { background-color: #e8f5e9; color: #2e7d32; }
.blog-card__tag--batterie { background-color: #fdecea; color: #e01f2b; }
.blog-card__heading { font-size: 1rem; font-weight: 700; color: #1a1a2e; line-height: 1.4; margin: 0; }
.blog-card__excerpt { font-size: 0.875rem; color: #555; line-height: 1.55; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid #f0f0f0; }
.blog-card__date { font-size: 0.78rem; color: #999; }
.blog-card__link { font-size: 0.85rem; font-weight: 700; color: #2a52e0; text-decoration: none; transition: color 0.2s ease; }
.blog-card__link:hover { color: #e01f2b; }
@media (max-width: 900px) { .blog-preview__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .blog-preview { padding: 48px 16px; } .blog-preview__grid { grid-template-columns: 1fr; } }

/* ── Sticky promo banner ── */
.sticky-promo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 44px;
  background-color: #e01f2b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 48px 0 16px;
  font-size: 0.85rem;
  font-family: inherit;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.sticky-promo.is-visible { transform: translateY(0); }
.sticky-promo__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-promo__btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  background-color: #fff;
  color: #e01f2b;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.sticky-promo__btn:hover, .sticky-promo__btn:focus { background-color: #ffcb00; color: #1a1a1a; outline: none; }
.sticky-promo__close {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: transparent; border: none;
  color: #fff; font-size: 1rem; line-height: 1;
  cursor: pointer; padding: 4px 6px; border-radius: 4px;
  transition: background-color 0.2s;
}
.sticky-promo__close:hover, .sticky-promo__close:focus { background-color: rgba(255,255,255,0.2); outline: none; }
body.has-sticky { padding-top: 44px; }

/* ── Click & Collect ── */
.click-collect {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a52e0 100%);
  padding: 72px 24px;
  overflow: hidden;
}
.cc-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
}
.cc-badge {
  display: inline-block; background: #e01f2b; color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 20px;
}
.cc-title { color: #fff; font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 800; line-height: 1.25; margin: 0 0 18px 0; }
.cc-desc { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.7; margin: 0 0 32px 0; max-width: 480px; }
.cc-btn {
  display: inline-block; background: #fff; color: #2a52e0;
  font-size: 1rem; font-weight: 700; padding: 14px 30px; border-radius: 8px;
  text-decoration: none; transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.cc-btn:hover, .cc-btn:focus { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); color: #1a3bbf; }
.cc-visual { display: flex; justify-content: center; align-items: center; }
.cc-icon { width: 120px; height: 120px; filter: drop-shadow(0 8px 32px rgba(255,255,255,0.15)); animation: cc-float 3.6s ease-in-out infinite; }
@keyframes cc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 768px) {
  .cc-container { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .cc-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .cc-btn { width: 100%; text-align: center; }
  .cc-visual { order: -1; }
}

/* ── Testimonials ── */
.testimonials { background: #fff; padding: 72px 20px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-title { text-align: center; font-size: 2rem; font-weight: 700; color: #111; margin-bottom: 48px; letter-spacing: -0.01em; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
  position: relative; background: #f7f8fc; border-radius: 14px;
  padding: 36px 28px 28px; overflow: hidden; border: 1px solid #e8eaf0;
  display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(42,82,224,0.10); transform: translateY(-3px); }
.testimonial-quote-bg {
  position: absolute; top: -12px; right: 16px;
  font-size: 8rem; line-height: 1; color: #2a52e0; opacity: 0.07;
  font-family: Georgia, serif; pointer-events: none; user-select: none;
}
.testimonial-header { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; letter-spacing: 0.03em; }
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-weight: 700; font-size: 0.97rem; color: #111; }
.testimonial-city { font-size: 0.82rem; color: #666; }
.testimonial-stars { font-size: 0.9rem; color: #ffcb00; letter-spacing: 1px; }
.testimonial-body { margin: 0; padding: 0; font-style: italic; font-size: 0.97rem; line-height: 1.65; color: #333; position: relative; z-index: 1; border: none; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonials-title { font-size: 1.5rem; } }

/* ── Footer map iframe ── */
.footer__map { position: relative; margin-top: 12px; }
.footer__map iframe { width: 100%; height: 180px; border: none; border-radius: 10px; display: block; }
.footer__map .footer__map-link { display: inline-block; margin-top: 8px; font-size: 0.85rem; color: var(--yellow,#ffcb00); text-decoration: none; transition: opacity 0.2s; }
.footer__map .footer__map-link:hover { opacity: 0.8; text-decoration: underline; }

/* ── Delivery strip ── */
.delivery-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--blue, #2a52e0);
  padding: 0.55rem 1rem;
  flex-wrap: wrap;
}
.delivery-strip__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 1.4rem;
  font-size: 0.82rem;
  color: #1a1a1a;
  line-height: 1.3;
}
.delivery-strip__icon { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.delivery-strip__text strong { color: var(--blue, #2a52e0); font-weight: 700; }
.delivery-strip__sep { width: 1px; height: 1.4rem; background: #d0d7f5; flex-shrink: 0; }
@media (max-width: 480px) {
  .delivery-strip { flex-direction: column; gap: 0.1rem; padding: 0.5rem 1rem; align-items: flex-start; }
  .delivery-strip__item { padding: 0.25rem 0; }
  .delivery-strip__sep { display: none; }
}

/* ─── WHY US ─── */
.why-us { background: #f7f8fc; padding: 4.5rem 0; }
.why-us .section-header { text-align: center; margin-bottom: 2.5rem; }
.why-us .section-header h2 { font-size: 2rem; font-weight: 700; color: #1a1a2e; margin-bottom: .5rem; }
.why-us .section-header p { color: #666; font-size: 1.05rem; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(42, 82, 224, 0.08);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 8px 28px rgba(42, 82, 224, 0.15); }
.why-icon { font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; display: block; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: .6rem; }
.why-card p { font-size: .93rem; color: #555; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } .why-us { padding: 3rem 0; } }

/* ── Hero typewriter cursor ── */
#heroSubtitle {
  display: block;
  font-size: inherit;
  color: inherit;
  margin-bottom: 1.25rem;
  min-height: 1.5em;
}
#heroSubtitle::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--blue, #2a52e0);
  animation: tw-blink 0.7s step-end infinite;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Trust banner ── */
.trust-banner {
  padding: 3rem 0;
  background: linear-gradient(to right, #ffffff, #f0f3ff 50%, #ffffff);
  text-align: center;
}
.trust-banner__title { font-size: 1.5rem; font-weight: 300; color: #1a1a2e; margin: 0 0 2rem 0; letter-spacing: 0.02em; }
.trust-banner__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid #d6ddf7;
  border-radius: 10px;
  padding: 1rem 1.4rem;
  min-width: 130px;
  box-shadow: 0 1px 4px rgba(42, 82, 224, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.trust-badge:hover { box-shadow: 0 4px 14px rgba(42, 82, 224, 0.14); transform: translateY(-2px); }
.trust-badge__icon { font-size: 1.6rem; line-height: 1; }
.trust-badge__label { font-size: 0.82rem; font-weight: 600; color: #2a52e0; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
@media (max-width: 600px) {
  .trust-banner__badges { gap: 0.75rem; }
  .trust-badge { min-width: 110px; padding: 0.8rem 1rem; }
  .trust-badge__label { font-size: 0.75rem; white-space: normal; text-align: center; }
}

/* ===== SOCIAL PROOF NOTIFICATION ===== */
.social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-left: 4px solid #2a52e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 14px 16px 14px 14px;
  max-width: 320px;
  min-width: 260px;
  transform: translateX(calc(-100% - 32px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}
.social-proof.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.social-proof__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #fff5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-proof__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.social-proof__text {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
  display: block;
}
.social-proof__text strong { color: #2a52e0; }
.social-proof__time {
  font-size: 11px;
  color: #888;
  font-style: italic;
}
.social-proof__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: #aaa;
  padding: 0 0 0 6px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.social-proof__close:hover { color: #e01f2b; }
@media (max-width: 480px) {
  .social-proof { left: 12px; right: 12px; bottom: 16px; max-width: none; min-width: 0; }
}

/* ░░ FAQ ACCORDION ░░ */
.faq {
  padding: 5rem 0 5.5rem;
  background: #f7f8fc;
}
.faq .section-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2a52e0;
  background: rgba(42,82,224,.10);
  padding: .25em .9em;
  border-radius: 2em;
  margin-bottom: .85rem;
}
.faq .section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #111;
  margin: 0 0 2.8rem;
  line-height: 1.2;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq__item {
  background: #fff;
  border: 1.5px solid #e4e8f5;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] {
  border-color: #2a52e0;
  box-shadow: 0 4px 24px rgba(42,82,224,.10);
}
.faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  user-select: none;
  -webkit-user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; }
.faq__question:hover { color: #2a52e0; }
.faq__icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #f0f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .25s, transform .35s cubic-bezier(.4,0,.2,1);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: #2a52e0;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s;
}
.faq__icon::before { width: .75rem; height: 2px; }
.faq__icon::after  { width: 2px; height: .75rem; }
.faq__item[open] .faq__icon { background: #2a52e0; transform: rotate(45deg); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: #fff; }
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4,0,.2,1);
}
details[open] > .faq__body { grid-template-rows: 1fr; }
.faq__body > p {
  overflow: hidden;
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  color: #444;
  font-size: .96rem;
  line-height: 1.65;
  border-top: 1px solid #eef0f8;
  padding-top: .9rem;
}
@media (max-width: 600px) {
  .faq .section-title { margin-bottom: 2rem; }
  .faq__question { font-size: .93rem; padding: 1rem 1rem; }
  .faq__body > p { padding: .8rem 1rem 1rem; font-size: .9rem; }
}

/* ── Countdown urgence promo ── */
.promo__countdown { margin: 1.25rem 0 1.5rem; text-align: center; }
.promo__countdown-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: .6rem;
}
.promo__countdown-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}
.promo__countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a2e;
  border-radius: 8px;
  padding: .55rem .9rem .45rem;
  min-width: 64px;
  box-shadow: 0 2px 8px rgba(224,31,43,.18);
}
.promo__countdown-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffcb00;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.promo__countdown-unit {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #e01f2b;
  margin-top: .25rem;
  text-transform: uppercase;
}
.promo__countdown-sep {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e01f2b;
  line-height: 1;
  margin-bottom: .8rem;
}
@keyframes promo-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  15%       { transform: translateX(-4px) rotate(-1.5deg); }
  30%       { transform: translateX(4px) rotate(1.5deg); }
  45%       { transform: translateX(-3px) rotate(-1deg); }
  60%       { transform: translateX(3px) rotate(1deg); }
  75%       { transform: translateX(-2px) rotate(-.5deg); }
  90%       { transform: translateX(2px) rotate(.5deg); }
}
.promo__actions .btn--red {
  animation: promo-shake 3s ease-in-out infinite;
  transform-origin: center;
}
.promo__actions .btn--red:hover,
.promo__actions .btn--red:focus { animation-play-state: paused; }

/* ── Overlay menu mobile ── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.25s ease;
}
body.menu-open .menu-overlay { display: block; opacity: 1; }

@media (max-width: 767px) {
  .catnav {
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
    z-index: 200;
    position: relative;
  }
  .catnav.is-open { display: block; transform: translateY(0); opacity: 1; }
  .burger { transition: background 0.2s; }
  .burger[aria-expanded="true"] { background: #f0f3ff; border-color: var(--blue, #2a52e0); }
  .burger span { transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s; }
}

/* ── Barre fixe mobile bas ── */
.mob-bar { display: none; }
@media (max-width: 767px) {
  .mob-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: #fff;
    border-top: 1.5px solid #e5e7ef;
    box-shadow: 0 -2px 16px rgba(42, 82, 224, 0.10);
    height: 60px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mob-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #555;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 6px 0 4px;
    transition: color 0.18s, background 0.18s;
    border-radius: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-bar__btn svg { width: 22px; height: 22px; flex-shrink: 0; }
  .mob-bar__btn:active,
  .mob-bar__btn:focus-visible { background: #f0f3ff; color: #2a52e0; }
  .mob-bar__btn--wa { color: #25d366; }
  .mob-bar__btn--wa:active,
  .mob-bar__btn--wa:focus-visible { background: #e6faf0; color: #128c7e; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
}

/* =========================================================
   HERO REDESIGN — gradient animé + particules + CTA pulse
   ========================================================= */
.hero {
  background: linear-gradient(120deg, #16308f 0%, var(--blue) 30%, #3a63ec 60%, #2a1a6e 100%);
  background-size: 300% 300%;
  animation: hero-gradient 12s ease infinite;
}
@keyframes hero-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Particules flottantes CSS pur */
.hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero__particle {
  position: absolute;
  opacity: 0.12;
  animation: hero-float linear infinite;
}
.hero__particle--circle {
  border-radius: 50%;
  background: var(--yellow);
}
.hero__particle--triangle {
  width: 0; height: 0;
  background: none;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid var(--red);
}
.hero__particle--square {
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
}
.hero__particle:nth-child(1) { width: 18px; height: 18px; top: 12%; left: 8%;  animation-duration: 18s; animation-delay: 0s; }
.hero__particle:nth-child(2) { width: 14px; height: 14px; top: 65%; left: 15%; animation-duration: 22s; animation-delay: -4s; }
.hero__particle:nth-child(3) { top: 30%; left: 75%; animation-duration: 20s; animation-delay: -2s; }
.hero__particle:nth-child(4) { width: 10px; height: 10px; top: 80%; left: 60%; animation-duration: 25s; animation-delay: -8s; }
.hero__particle:nth-child(5) { top: 20%; left: 50%; animation-duration: 16s; animation-delay: -6s; }
.hero__particle:nth-child(6) { width: 22px; height: 22px; top: 50%; left: 90%; animation-duration: 19s; animation-delay: -3s; }
.hero__particle:nth-child(7) { width: 8px; height: 8px; top: 85%; left: 35%; animation-duration: 23s; animation-delay: -10s; }
.hero__particle:nth-child(8) { top: 10%; left: 40%; animation-duration: 21s; animation-delay: -5s; }

@keyframes hero-float {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.12; }
  25%  { transform: translateY(-40px) rotate(90deg); opacity: 0.18; }
  50%  { transform: translateY(-80px) rotate(180deg); opacity: 0.12; }
  75%  { transform: translateY(-40px) rotate(270deg); opacity: 0.18; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.12; }
}

/* CTA principal pulse */
.hero .btn--blue.btn--cta-pulse {
  animation: cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 10px 22px -10px rgba(42, 82, 224, 0.7); }
  50%      { box-shadow: 0 10px 36px -6px rgba(42, 82, 224, 0.95), 0 0 0 6px rgba(42, 82, 224, 0.15); }
}

/* Compteur animé sous le hero */
.hero-counter {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
.hero-counter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-counter__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.hero-counter__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--yellow);
}
.hero-counter__sep {
  width: 1px;
  height: 1.5rem;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .hero-counter__inner { gap: 1rem; font-size: 0.85rem; }
  .hero-counter__num { font-size: 1.1rem; }
  .hero-counter__sep { display: none; }
}

/* =========================================================
   MICRO-ANIMATIONS GLOBALES
   ========================================================= */

/* Cards hover lift + ombre grandissante */
.why-card,
.guarantee-card,
.eco-card,
.blog-card,
.testimonial-card,
.partners__card,
.trust-badge {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Boutons — effet ripple CSS ::after */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 10%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: none;
  border-radius: inherit;
  pointer-events: none;
}
.btn:active::after {
  transform: scale(2.5);
  opacity: 1;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
}

/* Links — underline animée slide gauche → droite */
.footer__col a,
.catnav a,
.shead__link,
.blog-card__link {
  position: relative;
  display: inline-block;
}
.footer__col a::after,
.catnav a::after,
.shead__link::after,
.blog-card__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.footer__col a:hover::after,
.catnav a:hover::after,
.shead__link:hover::after,
.blog-card__link:hover::after {
  width: 100%;
}

/* Images produits — subtle zoom au hover */
.blog-card__image,
.fcard__media,
.product__media {
  overflow: hidden;
}
.blog-card__emoji {
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .blog-card__emoji {
  transform: scale(1.1);
}

/* Smooth scroll amélioré */
html {
  scroll-behavior: smooth;
}


/* =========================================================
   MODE SOMBRE
   ========================================================= */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--card); cursor: pointer; font-size: 1.15rem;
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.theme-toggle:hover { border-color: var(--blue); background: var(--blue-050); transform: scale(1.08); }

body, body * { transition-property: background-color, color, border-color, box-shadow, fill, stroke;
  transition-duration: 0s; transition-timing-function: ease; }
body.dark-transition, body.dark-transition * { transition-duration: 0.3s; }

body.dark {
  --page: #0f172a;
  --soft: #162035;
  --card: #1e293b;
  --ink: #e2e8f0;
  --ink-2: #cbd5e1;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --line: #334155;
  --line-2: #475569;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
  --shadow-lg: 0 30px 70px -30px rgba(0,0,0,0.7);
}
body.dark .header { background: #1e293b; }
body.dark .catnav { background: #1e293b; border-top-color: #334155; }
body.dark .topbar { background: #0b1120; }
body.dark .search { background: #162035; border-color: #334155; }
body.dark .search:focus-within { background: #1e293b; }
body.dark .search input { color: #e2e8f0; }
body.dark .search__btn { background: var(--blue); }
body.dark .cartbtn { background: #1e293b; border-color: #334155; }
body.dark .cartbtn svg { stroke: #e2e8f0; }
body.dark .burger { background: #1e293b; border-color: #334155; }
body.dark .burger span { background: #e2e8f0; }
body.dark .assur { background: #1e293b; border-bottom-color: #334155; }
body.dark .finder { background: #1e293b; }
body.dark .finder__tab { color: #94a3b8; }
body.dark .finder__tab.is-active { background: #0f172a; color: var(--blue); }
body.dark .finder__tabs { background: #162035; }
body.dark .product, body.dark .fcard, body.dark .service, body.dark .review,
body.dark .cat, body.dark .step, body.dark .guarantee-card, body.dark .why-card,
body.dark .blog-card, body.dark .testimonial-card { background: #1e293b; border-color: #334155; }
body.dark .product__media { background: #162035; border-bottom-color: #334155; }
body.dark .section--soft { background: #162035; }
body.dark .footer { background: #1e293b; border-top-color: #334155; }
body.dark .promo { background: #1e293b; border-color: #334155; }
body.dark .vcard { background: #162035; border-color: #334155; }
body.dark .chip { background: #1e293b; border-color: #475569; color: #94a3b8; }
body.dark .chip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
body.dark .btn--light { background: #1e293b; color: #e2e8f0; border-color: #475569; }
body.dark .btn--ghost { color: #e2e8f0; border-color: #475569; }
body.dark .plate { border-color: #475569; }
body.dark .plate__input { background: #1e293b; color: #e2e8f0; }
body.dark .vinfield__input { border-color: #475569; background: #1e293b; color: #e2e8f0; }
body.dark .top-sellers { background: #0f172a; }
body.dark .top-sellers-title { color: #e2e8f0; }
body.dark .podium-name { color: #e2e8f0; }
body.dark .podium-sub { color: #94a3b8; }
body.dark .guarantees { background: #0f172a; }
body.dark .guarantees-title { color: #e2e8f0; }
body.dark .guarantee-card { background: #1e293b; border-color: rgba(42,82,224,0.15); }
body.dark .guarantee-icon-wrap { background: #162035; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
body.dark .compare-table { background: #162035; }
body.dark .ct-table { background: #1e293b; }
body.dark .ct-td-criteria { background: #162035 !important; color: #e2e8f0; }
body.dark .ct-featured-col { background: #1a2744; color: #93b4ff; }
body.dark .ct-row-alt td:not(.ct-td-criteria):not(.ct-featured-col) { background: #162035; }
body.dark .ct-row-alt .ct-featured-col { background: #152040; }
body.dark .ct-cta-row td { background: #1e293b !important; }
body.dark .why-us { background: #162035; }
body.dark .why-us .section-header h2 { color: #e2e8f0; }
body.dark .why-us .section-header p { color: #94a3b8; }
body.dark .why-card h3 { color: #e2e8f0; }
body.dark .why-card p { color: #94a3b8; }
body.dark .partners { background: #162035; }
body.dark .partners__title { color: #e2e8f0; }
body.dark .brandbox { background: #1e293b; border-color: #334155; }
body.dark .reviews__score { background: #1e293b; border-color: #334155; }
body.dark .reviews__big { color: #e2e8f0; }
body.dark .visit-us { background: #0f172a; }
body.dark .visit-info h2 { color: #e2e8f0; }
body.dark .hours-card { background: #1e293b; box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
body.dark .hours-card h3 { color: #e2e8f0; }
body.dark .hours-table td { border-bottom-color: #334155; color: #cbd5e1; }
body.dark .hours-table td:last-child { color: #e2e8f0; }
body.dark .blog-preview { background: #162035; }
body.dark .blog-preview__title { color: #e2e8f0; }
body.dark .blog-card__heading { color: #e2e8f0; }
body.dark .blog-card__excerpt { color: #94a3b8; }
body.dark .blog-card__footer { border-top-color: #334155; }
body.dark .faq { background: #162035; }
body.dark .faq .section-title { color: #e2e8f0; }
body.dark .faq__item { background: #1e293b; border-color: #334155; }
body.dark .faq__item[open] { border-color: var(--blue); }
body.dark .faq__question { color: #e2e8f0; }
body.dark .faq__body > p { color: #94a3b8; border-top-color: #334155; }
body.dark .cookie-banner { background: #1e293b; }
body.dark .social-proof { background: #1e293b; }
body.dark .social-proof__text { color: #e2e8f0; }
body.dark .wa-bubble { background: #1e293b; box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
body.dark .wa-bubble__text { color: #e2e8f0; }
body.dark .wa-bubble__arrow { border-left-color: #1e293b; }
body.dark .trust-banner { background: linear-gradient(to right, #0f172a, #162035 50%, #0f172a); }
body.dark .trust-banner__title { color: #e2e8f0; }
body.dark .trust-badge { background: #1e293b; border-color: #334155; }
body.dark .trust-badge__label { color: var(--blue); }
body.dark .testimonials { background: #0f172a; }
body.dark .testimonials-title { color: #e2e8f0; }
body.dark .testimonial-card { background: #1e293b; border-color: #334155; }
body.dark .testimonial-name { color: #e2e8f0; }
body.dark .testimonial-body { color: #cbd5e1; }
body.dark .delivery-strip { background: #1e293b; border-bottom-color: var(--blue); }
body.dark .delivery-strip__item { color: #e2e8f0; }
body.dark .delivery-strip__sep { background: #475569; }
body.dark .search-bar-group { background: #1e293b; box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
body.dark .search-bar-input { color: #e2e8f0; }
body.dark .search-bar-input::placeholder { color: #64748b; }
body.dark .ptools__sort select { background: #1e293b; color: #e2e8f0; border-color: #475569; }
body.dark .ptools__search { background: #162035; border-color: #475569; }
body.dark .qv__dialog { background: #1e293b; }
body.dark .qv__media { background: #162035; }
body.dark .qv__name { color: #e2e8f0; }
body.dark .qv__desc { color: #94a3b8; }
body.dark .cart__panel { background: #1e293b; }
body.dark .cart__head { border-bottom-color: #334155; }
body.dark .cart__close { background: #162035; color: #e2e8f0; }
body.dark .cart__foot { border-top-color: #334155; }
body.dark .cart-item { border-bottom-color: #334155; }
body.dark .cart-item__qty button { background: #162035; border-color: #475569; color: #e2e8f0; }
body.dark .product__price .now { color: #e2e8f0; }
body.dark .qv__price .now { color: #e2e8f0; }
body.dark .howto { background: #162035; }
body.dark .iconbtn--call svg { background: #162035; }
body.dark .assur__ic { background: #162035; }
body.dark .finder select { background: #1e293b; border-color: #475569; color: #e2e8f0; }
body.dark .product__media--logo { background: #162035; }
body.dark .fcard__media--logo { background: #162035; }

/* =========================================================
   LOADING SKELETON
   ========================================================= */
.skeleton-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--page, #f3f6fb);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; padding: 2rem;
  transition: opacity 0.4s ease;
}
body.dark .skeleton-screen { background: #0f172a; }
.skeleton-screen.is-hidden { opacity: 0; pointer-events: none; }
.skeleton-bar {
  width: min(600px, 80%); height: 48px; border-radius: 999px;
  background: linear-gradient(90deg, #e4eaf2 25%, #f0f4f8 50%, #e4eaf2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
body.dark .skeleton-bar {
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; width: min(1240px, 90%); }
.skeleton-card {
  background: var(--card, #fff); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line, #e4eaf2); padding-bottom: 16px;
}
body.dark .skeleton-card { background: #1e293b; border-color: #334155; }
.skeleton-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(90deg, #e4eaf2 25%, #f0f4f8 50%, #e4eaf2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
body.dark .skeleton-img {
  background: linear-gradient(90deg, #162035 25%, #253350 50%, #162035 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-line {
  margin: 12px 16px 0; border-radius: 6px; height: 14px;
  background: linear-gradient(90deg, #e4eaf2 25%, #f0f4f8 50%, #e4eaf2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
body.dark .skeleton-line {
  background: linear-gradient(90deg, #162035 25%, #253350 50%, #162035 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-line--lg { width: 75%; }
.skeleton-line--md { width: 50%; height: 12px; }
.skeleton-line--sm { width: 35%; height: 10px; margin-top: 8px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (max-width: 860px) { .skeleton-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .skeleton-cards { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track, .brands-track, .fab-wa__ring::before, .fab-wa__ring::after, .trust-logos__track { animation: none; }
  .reassurance-reveal { opacity: 1; transform: none; }
  .hero { animation: none; }
  .hero__particle { animation: none; display: none; }
  .hero .btn--blue.btn--cta-pulse { animation: none; }
  .btn::after { display: none; }
}
