/* Shooezer — direction « Programme » : clair éditorial parquet + scoreboard */
:root {
  --paper: #F3ECDE;        /* fond parquet */
  --card: #FBF7EE;         /* surfaces */
  --ink: #161616;          /* encre */
  --ink-soft: #6b6456;     /* texte secondaire */
  --line: #ddd3bf;         /* filets doux */
  --line-strong: #161616;  /* filets forts */
  --accent: #E4572E;       /* terracotta */
  --accent-bright: #FF6B2C; /* orange lumineux (scoreboard) */
  --scoreboard: #121212;   /* fond du panneau */
  --radius: 4px;
  /* grille de lecture des scores */
  --s90: #B8860B;   /* or : > 90 */
  --s80: #E4572E;   /* terracotta : 80-90 */
  --s70: #D18A1F;   /* ambre : 70-79 */
  --s60: #8a8578;   /* gris : 60-69 */
  --s-60: #B3261E;  /* rouge : < 60 */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ── Typo ── */
h1, h2, h3, .display, .logo {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.score, .score-max, .stat-num {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
}
.mono { font-family: monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

/* ── Texture parquet en filigrane (hero) ── */
.parquet {
  background:
    repeating-linear-gradient(90deg, rgba(22,22,22,.045) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(22,22,22,.028) 0 1px, transparent 1px 60px);
}

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 15px; letter-spacing: 3px; color: var(--ink); text-decoration: none; }
.logo b { color: var(--accent); }
.header-cta {
  padding: 10px 18px; background: var(--ink); color: var(--paper);
  font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none; border-radius: var(--radius);
  transition: opacity .2s;
}
.header-cta:hover { background: var(--accent); }
.header-cta.muted { opacity: .35; pointer-events: none; }

/* ── Hero ── */
.hero { padding: 56px 20px 44px; border-bottom: 3px solid var(--ink); }
.hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.hero h1 { font-size: clamp(44px, 13vw, 84px); line-height: .92; letter-spacing: 1px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .sub { margin-top: 16px; font-size: 15px; color: var(--ink-soft); max-width: 34ch; font-weight: 500; }
.hero .cta-row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-block; padding: 15px 30px;
  font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
  text-decoration: none; border-radius: var(--radius); cursor: pointer; border: none;
  font-family: 'Inter', system-ui, sans-serif;
}
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--accent); }
.btn-line { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 13px 30px; }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--ink); }

/* ── Sections ── */
section { padding: 44px 20px; border-bottom: 1px solid var(--line); }
.section-title { font-size: 26px; letter-spacing: 1px; margin-bottom: 6px; }
.section-kicker { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 800; margin-bottom: 8px; }
.section-desc { color: var(--ink-soft); font-size: 14px; max-width: 60ch; margin-bottom: 22px; }

/* ── Quiz ── */
.quiz-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; max-width: 560px; margin: 0 auto;
}
.quiz-progress { display: flex; gap: 0; border-bottom: 2px solid var(--ink); margin-bottom: 18px; }
.quiz-progress i { height: 4px; flex: 1; background: transparent; border-left: 1px solid var(--ink); }
.quiz-progress i:first-child { border-left: none; }
.quiz-progress i.on { background: var(--accent); }
.quiz-count { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 800; margin-bottom: 8px; }
.quiz-question { font-family: 'Anton'; font-size: 24px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-option {
  text-align: left; padding: 14px 16px; background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--radius); font-family: 'Inter'; font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: background .12s, color .12s;
}
.quiz-option:hover { background: var(--ink); color: var(--paper); }
.quiz-option.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.quiz-hint { font-size: 12px; color: var(--ink-soft); margin-top: 8px; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 18px; align-items: center; }
.quiz-back {
  background: none; border: none; color: var(--ink-soft); font-size: 13px; font-weight: 600;
  cursor: pointer; padding: 8px 0; text-transform: uppercase; letter-spacing: 1px;
}
.quiz-back:hover { color: var(--ink); }
.quiz-next {
  background: var(--accent); color: #fff; border: none; padding: 12px 26px; border-radius: var(--radius);
  font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
}
.quiz-next:hover { background: var(--ink); }
.quiz-next:disabled { opacity: .35; cursor: default; }

/* ── Résultats ── */
.results { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 0 auto; }
.result-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; display: grid; grid-template-columns: 1fr auto; gap: 4px 14px; align-items: center;
  text-decoration: none; color: var(--ink); transition: border-color .12s, transform .12s;
}
.result-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.result-rank { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); }
.result-name { font-family: 'Anton'; font-size: 20px; text-transform: uppercase; letter-spacing: .5px; }
.result-for { grid-column: 1 / -1; font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 10px; margin-top: 4px; }
.result-for strong { color: var(--ink); }
.result-badge { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin-left: 8px; font-weight: 700; }

/* ── Image paire ── */
.pair-img-wrap { grid-column: 1 / -1; }
.pair-img {
  width: 100%; height: 150px; object-fit: contain; object-position: center;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  display: block;
}
.pair-img-sm { height: 120px; }
.pair-img-lg { height: 220px; }

/* ── Scoreboard (signature) ── */
.scoreboard {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--scoreboard); border-radius: var(--radius);
  padding: 12px 18px; border: 1px solid #2c2c2c;
  box-shadow: inset 0 0 16px rgba(0,0,0,.85);
}
.scoreboard .score {
  font-size: 44px; line-height: 1; color: var(--accent-bright);
  text-shadow: 0 0 14px rgba(255,107,44,.8), 0 0 40px rgba(255,107,44,.35);
  letter-spacing: 2px;
}
.scoreboard .score-small { font-size: 24px; }
.scoreboard .score-max { font-size: 16px; color: #888; letter-spacing: 1px; }
.scoreboard .score-tag { font-size: 9px; color: #999; letter-spacing: 2px; text-transform: uppercase; margin-left: 4px; }

/* ── Grille de lecture des scores ── */
.tier-badge { display: inline-flex; align-items: center; gap: 4px; margin-left: 8px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.tier-badge svg { width: 14px; height: 14px; }
.t90 { color: var(--s90); }
.t80 { color: var(--s80); }
.t70 { color: var(--s70); }
.t60 { color: var(--s60); }
.t-60 { color: var(--s-60); }
.tier-badge.t90 { border: 1px solid var(--s90); border-radius: 2px; padding: 2px 6px; }
.tier-badge.t-60 { border: 1px solid var(--s-60); border-radius: 2px; padding: 2px 6px; }
.bar-fill.t90 { background: var(--s90); }
.bar-fill.t80 { background: var(--accent); }
.bar-fill.t70 { background: var(--s70); }
.bar-fill.t60 { background: var(--s60); }
.bar-fill.t-60 { background: var(--s-60); }
.stat-num.t90 { color: var(--s90); }
.stat-num.t80 { color: var(--accent); }
.stat-num.t70 { color: var(--s70); }
.stat-num.t60 { color: var(--s60); }
.stat-num.t-60 { color: var(--s-60); }

/* ── Bons plans ── */
.deals { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0 auto; }
.deal {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px;
  text-decoration: none; color: var(--ink); transition: border-color .12s;
}
.deal:hover { border-color: var(--ink); }
.deal-main { display: flex; align-items: center; gap: 12px; min-width: 0; }
.deal-img { width: 56px; height: 56px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); flex-shrink: 0; }
.deal-name { font-family: 'Anton'; font-size: 17px; text-transform: uppercase; letter-spacing: .5px; }
.deal-sub { font-size: 12px; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 30ch; }
.deal-price { text-align: right; flex-shrink: 0; }
.deal-old { font-size: 12px; color: var(--ink-soft); text-decoration: line-through; }
.deal-new { font-family: 'Orbitron'; font-weight: 900; font-size: 18px; color: var(--accent); }
.deal-save { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); font-weight: 800; }
.deal-verify { font-size: 10px; color: var(--ink-soft); font-style: italic; }

/* ── Articles / guides ── */
.articles-list { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0 auto; }
.article-card {
  display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; text-decoration: none; color: var(--ink); transition: border-color .12s, transform .12s;
}
.article-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.article-card-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 800; margin-bottom: 6px; }
.article-card-title { font-family: 'Anton'; font-size: 19px; text-transform: uppercase; letter-spacing: .5px; }
.article-card-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

/* ── Confiance ── */
.trust { display: flex; flex-direction: column; gap: 10px; max-width: 560px; margin: 0 auto; }
.trust-row {
  display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}
.trust-num { font-family: 'Orbitron'; font-weight: 900; color: var(--accent); font-size: 16px; min-width: 30px; }
.trust-txt { font-size: 13.5px; }
.trust-txt strong { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }

/* ── Footer ── */
footer { padding: 30px 20px 40px; border-top: 3px solid var(--ink); }
.footer-inner { max-width: 560px; margin: 0 auto; font-size: 12px; color: var(--ink-soft); display: flex; flex-direction: column; gap: 8px; }
.footer-inner .logo { font-size: 14px; }
.footer-cta { margin: 8px 0; padding: 12px 16px; background: var(--ink); color: var(--paper); border-radius: var(--radius); font-size: 13px; }
.footer-cta strong { color: var(--accent-bright); }

/* ═══════════ FICHE PAIRE ═══════════ */
.fiche { max-width: 560px; margin: 0 auto; padding: 24px 20px 50px; }
.back-link { display: inline-block; margin-bottom: 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-soft); text-decoration: none; }
.back-link:hover { color: var(--ink); }
.fiche-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.fiche-name { font-size: 34px; line-height: .95; }
.fiche-meta { font-size: 12px; color: var(--ink-soft); margin-top: 8px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.f-badge { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--ink); color: var(--paper); padding: 4px 8px; border-radius: 2px; font-weight: 700; }
.f-badge.joueurs { background: var(--accent); color: #fff; }
.f-badge.experts { background: var(--ink-soft); color: var(--paper); }

.scoreboard-wrap { margin: 22px 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.bars { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.bar-row { margin-bottom: 12px; }
.bar-row:last-child { margin-bottom: 0; }
.bar-head { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.bar-head .stat-num { font-size: 13px; }
.bar-track { height: 7px; background: #e3d9c4; border-radius: 0; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); }

.desaccord {
  margin-top: 14px; padding: 12px 14px; border: 1px dashed var(--s70); background: rgba(209,138,31,.06);
  border-radius: var(--radius); font-size: 13px; color: var(--ink);
}
.desaccord b { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 4px; color: var(--s70); }

.verdict { margin: 22px 0; padding: 18px; background: var(--ink); color: var(--paper); border-radius: var(--radius); }
.verdict .v-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-bright); font-weight: 800; margin-bottom: 8px; }
.verdict p { font-size: 14.5px; line-height: 1.6; }
.verdict .pour-qui { margin-top: 10px; font-size: 13px; color: #cfcfcf; }
.verdict .pour-qui strong { color: #fff; }

.prix { margin: 22px 0; }
.prix h3 { font-size: 18px; margin-bottom: 4px; }
.prix-sub { font-size: 12px; color: var(--ink-soft); margin-bottom: 12px; }
.prix-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  border: 1px solid var(--line); background: var(--card); border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 8px;
}
.prix-boutique { font-size: 14px; font-weight: 700; }
.prix-montant { font-family: 'Orbitron'; font-weight: 700; font-size: 15px; }
.prix-row .btn { padding: 9px 16px; font-size: 11px; }
.alerte { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); border-left: 3px solid var(--accent); padding-left: 10px; }

.similaires { margin-top: 30px; }
.similaires h3 { font-size: 18px; margin-bottom: 12px; }
.sim-list { display: flex; flex-direction: column; gap: 10px; }
.sim-card {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px;
  text-decoration: none; color: var(--ink); background: var(--card);
}
.sim-card:hover { border-color: var(--ink); }
.sim-name { font-family: 'Anton'; font-size: 16px; text-transform: uppercase; letter-spacing: .5px; }
.sim-score { font-family: 'Orbitron'; font-weight: 900; color: var(--accent); font-size: 16px; }

/* ── Sticky CTA mobile ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  padding: 12px 20px; background: var(--paper); border-top: 2px solid var(--ink);
  display: none;
}
.sticky-cta .btn { width: 100%; text-align: center; }
@media (max-width: 639px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
  .hero .cta-row { flex-direction: column; }
  .hero .cta-row .btn { width: 100%; text-align: center; }
  .trust-row { align-items: flex-start; }
}

.hidden { display: none !important; }

/* ═══════════ ARTICLES & GUIDES ═══════════ */
.article { max-width: 640px; margin: 0 auto; padding: 0 20px 60px; }
.article-hero {
  padding: 30px 0 26px; border-bottom: 3px solid var(--ink);
  margin: 0 -20px 0; padding-left: 20px; padding-right: 20px;
}
.article-kicker { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.article-kicker svg { width: 14px; height: 14px; }
.article h1 { font-size: clamp(32px, 8.5vw, 52px); line-height: .95; letter-spacing: 1px; margin: 0 0 6px; }
.article .sub { font-size: 14.5px; color: var(--ink-soft); max-width: 46ch; }
.article-meta { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); margin-top: 14px; display: flex; gap: 14px; flex-wrap: wrap; }
.article-meta b { color: var(--ink); }

/* Hero produit : scoreboard + photo */
.hero-product { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
.hero-score { background: var(--scoreboard); border-radius: var(--radius); padding: 18px 20px; border: 1px solid #2c2c2c; box-shadow: inset 0 0 16px rgba(0,0,0,.85); display: flex; flex-direction: column; gap: 10px; }
.hero-score .row { display: flex; align-items: baseline; gap: 8px; }
.hero-score .score { font-size: 56px; line-height: 1; color: var(--accent-bright); text-shadow: 0 0 14px rgba(255,107,44,.8), 0 0 40px rgba(255,107,44,.35); letter-spacing: 2px; }
.hero-score .score-max { font-size: 18px; color: #888; letter-spacing: 1px; }
.hero-score .tag { font-size: 9px; color: #999; letter-spacing: 2px; text-transform: uppercase; }
.hero-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; border-top: 1px solid #2c2c2c; padding-top: 10px; }
.hero-price .old { font-size: 13px; color: #888; text-decoration: line-through; }
.hero-price .new { font-family: 'Orbitron'; font-weight: 900; font-size: 22px; color: var(--accent-bright); }
.hero-price .save { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-bright); font-weight: 800; border: 1px solid var(--accent-bright); padding: 2px 6px; border-radius: 2px; }
.hero-price .check { font-size: 10px; color: #999; width: 100%; }
.hero-photo { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 14px; min-height: 200px; }
.hero-photo img { max-width: 100%; max-height: 220px; object-fit: contain; }
@media (min-width: 560px) {
  .hero-product { grid-template-columns: 1.1fr .9fr; align-items: stretch; }
  .hero-photo { min-height: auto; }
}

/* Verdict coach : carte scoreboard + micro */
.verdict-coach {
  background: var(--scoreboard); color: var(--paper); border-radius: var(--radius);
  padding: 20px; margin: 26px 0; border: 1px solid #2c2c2c;
  box-shadow: inset 0 0 16px rgba(0,0,0,.85);
}
.verdict-coach .v-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.verdict-coach .v-head svg { width: 26px; height: 26px; color: var(--accent-bright); }
.verdict-coach .v-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-bright); font-weight: 800; }
.verdict-coach p { font-size: 15px; line-height: 1.65; }
.verdict-coach .pour-qui { margin-top: 12px; padding-top: 12px; border-top: 1px solid #2c2c2c; font-size: 13px; color: #cfcfcf; }
.verdict-coach .pour-qui strong { color: #fff; }

/* Notes par critère : cartes + icônes + barres */
.crit-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin: 12px 0; }
.crit-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.crit-ico { width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--accent-bright); border-radius: var(--radius); }
.crit-ico svg { width: 18px; height: 18px; }
.crit-name { font-family: 'Anton'; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; flex: 1; }
.crit-score { font-family: 'Orbitron'; font-weight: 900; font-size: 22px; }
.crit-bar { height: 8px; background: #e3d9c4; margin: 12px 0 10px; overflow: hidden; border-radius: 0; }
.crit-bar i { display: block; height: 100%; }
.crit-bar i.t90 { background: var(--s90); }
.crit-bar i.t80 { background: var(--accent); }
.crit-bar i.t70 { background: var(--s70); }
.crit-bar i.t60 { background: var(--s60); }
.crit-bar i.t-60 { background: var(--s-60); }
.crit-why { font-size: 14px; line-height: 1.65; }
.crit-quote { margin: 10px 0 0; padding: 10px 14px; border-left: 3px solid var(--accent); background: var(--paper); font-size: 14px; font-style: italic; position: relative; }
.crit-quote::before { content: "«"; position: absolute; left: 6px; top: 2px; color: var(--accent); font-family: 'Anton'; font-size: 22px; }
.crit-quote span { padding-left: 12px; }

/* Alertes & consensus */
.alert-band { border: 1px dashed var(--s70); background: rgba(209,138,31,.06); border-radius: var(--radius); padding: 14px 16px; margin: 18px 0; font-size: 13.5px; }
.alert-band .a-head { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--s70); font-weight: 800; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.alert-band .a-head svg { width: 14px; height: 14px; }
.alert-band ul { list-style: none; }
.alert-band li { padding: 3px 0 3px 18px; position: relative; }
.alert-band li::before { content: "›"; position: absolute; left: 4px; color: var(--s70); font-weight: 900; }
.alert-band b { font-weight: 800; }

/* Pros / cons */
.procon { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 16px 0; }
.procon .col { border-radius: var(--radius); padding: 14px 16px; font-size: 14px; }
.procon .col h4 { font-family: 'Anton'; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.procon .pro { background: #eef2e6; border: 1px solid #d3ddc0; }
.procon .pro h4 { color: #4a6a2a; }
.procon .con { background: #f6e9e4; border: 1px solid #e6c9bc; }
.procon .con h4 { color: #a4442a; }
.procon ul { list-style: none; }
.procon li { padding: 3px 0 3px 22px; position: relative; }
.procon .pro li::before { content: "✔"; position: absolute; left: 0; color: #4a6a2a; font-weight: 900; }
.procon .con li::before { content: "✘"; position: absolute; left: 0; color: #a4442a; font-weight: 900; }
@media (min-width: 560px) { .procon { grid-template-columns: 1fr 1fr; } }

/* Prix / boutiques */
.shop-block { border: 2px solid var(--ink); border-radius: var(--radius); padding: 16px; margin: 18px 0; background: var(--card); }
.shop-block h3 { font-size: 16px; margin-bottom: 2px; }
.shop-block .sub { font-size: 12px; color: var(--ink-soft); margin-bottom: 12px; }
.shop-btn { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 13px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius); text-decoration: none; color: var(--ink); font-weight: 800; font-size: 13.5px; margin-bottom: 8px; transition: background .12s, color .12s; }
.shop-btn:last-child { margin-bottom: 0; }
.shop-btn:hover { background: var(--ink); color: var(--paper); }
.shop-btn .go { font-size: 11px; color: var(--ink-soft); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.shop-btn:hover .go { color: var(--accent-bright); }
.shop-btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.shop-btn.primary .go { color: rgba(255,255,255,.8); }
.shop-btn.primary:hover { background: var(--ink); border-color: var(--ink); }

/* En bref : feuille de stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0; }
.stat-box { background: var(--scoreboard); border: 1px solid #2c2c2c; border-radius: var(--radius); padding: 14px; box-shadow: inset 0 0 12px rgba(0,0,0,.7); }
.stat-box .k { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #999; }
.stat-box .v { font-family: 'Orbitron'; font-weight: 900; font-size: 22px; color: var(--accent-bright); margin-top: 4px; line-height: 1.1; }
.stat-box .v small { font-size: 12px; color: #bbb; font-weight: 400; }
@media (min-width: 480px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

/* Paires similaires : cartes cliquables */
.sim-cards { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.sim-card2 {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--radius);
  text-decoration: none; color: var(--ink); transition: transform .12s, box-shadow .12s;
}
.sim-card2:hover { transform: translateY(-2px); box-shadow: 0 4px 0 var(--ink); }
.sim-card2 .sim-ico { width: 38px; height: 38px; flex-shrink: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sim-card2 .sim-ico img { max-width: 90%; max-height: 90%; object-fit: contain; }
.sim-card2 .sim-txt { flex: 1; min-width: 0; }
.sim-card2 .sim-name { font-family: 'Anton'; font-size: 15px; text-transform: uppercase; letter-spacing: .5px; }
.sim-card2 .sim-sub { font-size: 11.5px; color: var(--ink-soft); }
.sim-card2 .sim-score { font-family: 'Orbitron'; font-weight: 900; font-size: 17px; }
.sim-card2 .sim-arrow { font-size: 18px; color: var(--accent); font-weight: 900; }

/* Tableau comparatif (variante comparateur) */
.compare-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.compare-table th { background: var(--ink); color: var(--paper); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 12px; text-align: left; }
.compare-table td { border-bottom: 1px solid var(--line); padding: 10px 12px; vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .c-score { font-family: 'Orbitron'; font-weight: 900; font-size: 16px; white-space: nowrap; }
.compare-table .c-name { font-family: 'Anton'; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.compare-table .mini-bar { height: 5px; background: #e3d9c4; margin-top: 4px; overflow: hidden; max-width: 90px; }
.compare-table .mini-bar i { display: block; height: 100%; }
.compare-table .mini-bar i.t90 { background: var(--s90); }
.compare-table .mini-bar i.t80 { background: var(--accent); }
.compare-table .mini-bar i.t70 { background: var(--s70); }
.compare-table .mini-bar i.t60 { background: var(--s60); }
.compare-table .mini-bar i.t-60 { background: var(--s-60); }
.rank-panel { background: var(--scoreboard); border-radius: var(--radius); padding: 18px 20px; margin: 20px 0; border: 1px solid #2c2c2c; box-shadow: inset 0 0 16px rgba(0,0,0,.85); }
.rank-panel .r-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rank-panel .r-head svg { width: 24px; height: 24px; color: var(--accent-bright); }
.rank-panel .r-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-bright); font-weight: 800; }
.rank-panel ol { list-style: none; counter-reset: rank; }
.rank-panel li { counter-increment: rank; display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid #2c2c2c; font-size: 14px; color: #ddd; }
.rank-panel li:last-child { border-bottom: none; }
.rank-panel li::before { content: counter(rank); font-family: 'Orbitron'; font-weight: 900; color: var(--accent-bright); font-size: 18px; min-width: 22px; }
.rank-panel li strong { color: #fff; }

/* Pair card (variante comparateur) */
.pair-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 18px; margin: 16px 0; }
.pair-card .pc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.pair-card h3 { font-size: 19px; }
.pair-card .pc-note { font-family: 'Orbitron'; font-weight: 900; font-size: 26px; }
.pair-card .pc-meta { font-size: 11px; color: var(--ink-soft); letter-spacing: 1px; text-transform: uppercase; margin: 4px 0 10px; }
.pair-card .pc-photo { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 12px; margin: 10px 0; }
.pair-card .pc-photo img { max-width: 100%; max-height: 150px; object-fit: contain; }
.pair-card p { font-size: 14px; line-height: 1.65; }

.section-title-sm { font-family: 'Anton'; font-size: 22px; text-transform: uppercase; letter-spacing: 1px; margin: 34px 0 8px; display: flex; align-items: center; gap: 10px; }
.section-title-sm svg { width: 20px; height: 20px; color: var(--accent); }
.article-back { display: inline-block; margin: 18px 0 0; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-soft); text-decoration: none; }
.article-back:hover { color: var(--ink); }

/* ═══════════ RESPONSIVE (base) ═══════════ */
@media (min-width: 640px) {
  .results { flex-direction: row; flex-wrap: wrap; max-width: none; }
  .result-card { flex: 1 1 250px; }
  .deals { flex-direction: row; flex-wrap: wrap; max-width: none; }
  .deal { flex: 1 1 240px; }
  .trust { flex-direction: row; max-width: none; }
  .trust-row { flex: 1; flex-direction: column; gap: 4px; align-items: flex-start; }
}
