/* ============================================================
   PEDALIX — Feuille de styles principale
   Palette : blanc / noir / vert électrique #16a34a
   Mobile-first — breakpoint principal : 768px
   ============================================================ */

/* ---- Variables ---- */
:root {
  --green:        #16a34a;
  --green-dark:   #15803d;
  --green-light:  #f0fdf4;
  --green-mid:    #dcfce7;
  --text:         #111827;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --bg:           #ffffff;
  --bg-soft:      #f9fafb;
  --border:       #e5e7eb;
  --border-dark:  #d1d5db;
  --score-good:   #16a34a;
  --score-mid:    #f59e0b;
  --score-bad:    #ef4444;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --max-w:        820px;
  --transition:   .2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }

/* ---- Utilitaires ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .22em .7em;
  border-radius: 999px;
  background: var(--green-mid);
  color: var(--green-dark);
}

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1f2937;
  color: #f9fafb;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  z-index: 1000;
  font-size: .88rem;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
#cookie-banner.hidden { display: none; }
#cookie-banner p { flex: 1 1 260px; }
#cookie-banner a { color: #86efac; }
.cookie-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.btn-cookie-accept, .btn-cookie-refuse {
  padding: .5em 1.1em;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition);
}
.btn-cookie-accept { background: var(--green); color: #fff; }
.btn-cookie-refuse { background: #374151; color: #d1d5db; }
.btn-cookie-accept:hover, .btn-cookie-refuse:hover { opacity: .88; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: .75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  text-decoration: none;
}
.logo span { color: var(--green); }
.site-nav { display: flex; gap: 1.5rem; align-items: center; }
.site-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--text); }
.site-nav a.active { color: var(--green); font-weight: 600; }
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: .42em .9em;
  border-radius: 6px;
  font-size: .82rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-dark); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 4px 0;
  transition: var(--transition);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: .75rem 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; }
.breadcrumb li + li::before { content: "›"; margin-right: .3rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ---- Hero ---- */
.hero {
  padding: 1.75rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.hero-top { display: flex; gap: 1.5rem; align-items: flex-start; }
.hero-content { flex: 1; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.hero h1 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .85rem;
}
.hero-verdict {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--green);
  padding-left: .85rem;
}
.hero-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
}
.hero-price-note {
  font-size: .78rem;
  color: var(--text-muted);
  display: block;
  margin-top: .1rem;
}
.hero-date {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .5rem;
}

/* ---- Score Circle ---- */
.score-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.score-circle-svg { width: 100px; height: 100px; }
.score-bg { fill: none; stroke: var(--border); stroke-width: 7; }
.score-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1);
}
.score-fill.score-mid { stroke: var(--score-mid); }
.score-fill.score-bad { stroke: var(--score-bad); }
.score-value {
  font-size: 1.55rem;
  font-weight: 800;
  dominant-baseline: middle;
  text-anchor: middle;
  fill: var(--text);
}
.score-max {
  font-size: .75rem;
  fill: var(--text-light);
  dominant-baseline: middle;
  text-anchor: middle;
}
.score-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* ---- Boutons CTA ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: .75em 1.5em;
  font-size: 1rem;
}
.btn-primary:hover { background: var(--green-dark); text-decoration: none; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
  padding: .65em 1.3em;
  font-size: .92rem;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); text-decoration: none; }
.btn-lg { padding: .9em 1.8em; font-size: 1.05rem; }
.btn svg { width: 16px; height: 16px; }
.btn-arrow::after { content: "→"; font-size: 1.1em; }

/* ---- Section générique ---- */
.section { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.section:last-of-type { border-bottom: none; }
.section-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.section-title::before {
  content: "";
  display: block;
  width: 3px;
  height: 1.1em;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---- Specs Table ---- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  margin-top: .5rem;
}
.specs-table tr:nth-child(even) td { background: var(--bg-soft); }
.specs-table td {
  padding: .65rem .85rem;
  border: 1px solid var(--border);
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-muted);
  width: 40%;
  background: var(--bg-soft) !important;
}
.specs-table td:last-child { font-weight: 500; }

/* ---- Pour qui / Pour qui pas ---- */
.pourqui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .5rem;
}
.pourqui-card {
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
}
.pourqui-card.oui {
  background: var(--green-light);
  border-color: #bbf7d0;
}
.pourqui-card.non {
  background: #fff7f7;
  border-color: #fecaca;
}
.pourqui-card h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pourqui-card.oui h3 { color: var(--green-dark); }
.pourqui-card.non h3 { color: #b91c1c; }
.pourqui-card ul { list-style: none; padding: 0; font-size: .88rem; }
.pourqui-card ul li {
  padding: .3rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid transparent;
}
.pourqui-card.oui ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pourqui-card.non ul li::before { content: "✗"; position: absolute; left: 0; color: #b91c1c; font-weight: 700; }

/* ---- Sous-scores ---- */
.subscores { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.subscore-row {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.subscore-label {
  width: 160px;
  flex-shrink: 0;
  font-size: .88rem;
  font-weight: 600;
}
.subscore-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.subscore-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--green);
  width: 0;
  transition: width 1s cubic-bezier(.4,0,.2,1);
}
.subscore-fill.mid { background: var(--score-mid); }
.subscore-fill.bad { background: var(--score-bad); }
.subscore-val {
  width: 36px;
  text-align: right;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ---- Avis détaillé ---- */
.review-sections { display: flex; flex-direction: column; gap: 1.5rem; margin-top: .5rem; }
.review-block {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.review-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.review-block-title {
  font-size: .95rem;
  font-weight: 700;
}
.score-badge {
  font-size: .85rem;
  font-weight: 700;
  padding: .2em .65em;
  border-radius: 6px;
  background: var(--green-mid);
  color: var(--green-dark);
}
.score-badge.mid { background: #fef3c7; color: #92400e; }
.score-badge.bad { background: #fee2e2; color: #991b1b; }
.review-block p {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
}

/* ---- Pros / Cons ---- */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .5rem;
}
.pros-block, .cons-block {
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.pros-block {
  background: var(--green-light);
  border: 1px solid #bbf7d0;
}
.cons-block {
  background: #fff7f7;
  border: 1px solid #fecaca;
}
.pros-block h3, .cons-block h3 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pros-block h3 { color: var(--green-dark); }
.cons-block h3 { color: #b91c1c; }
.pros-block ul, .cons-block ul { list-style: none; padding: 0; }
.pros-block li, .cons-block li {
  font-size: .88rem;
  padding: .3rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.pros-block li:last-child, .cons-block li:last-child { border-bottom: none; }
.pros-block li::before { content: "✅"; position: absolute; left: 0; font-size: .8rem; }
.cons-block li::before { content: "❌"; position: absolute; left: 0; font-size: .8rem; }

/* ---- Alternative (concurrent direct) ---- */
.alternative-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: .5rem;
}
.alt-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.alt-content h3 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.alt-content p { font-size: .88rem; color: var(--text-muted); margin-bottom: .6rem; line-height: 1.55; }

/* ---- Verdict final ---- */
.verdict-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: #fff;
  margin-top: .5rem;
}
.verdict-box h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .8;
  margin-bottom: .4rem;
}
.verdict-box p {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: .95;
  margin-bottom: 1.25rem;
}
.verdict-score-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.verdict-score {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.verdict-score span { font-size: 1rem; font-weight: 400; opacity: .7; }
.btn-verdict {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--green-dark);
  padding: .8em 1.6em;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn-verdict:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.2); text-decoration: none; color: var(--green-dark); }
.btn-verdict::after { content: "→"; font-size: 1.1em; }

/* ---- Key Takeaway ---- */
.key-takeaway {
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  margin: 1.25rem 0;
  font-size: .9rem;
}
.key-takeaway strong { color: var(--green-dark); }

/* ---- FAQ ---- */
.faq-list { margin-top: .5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.1rem;
  font-size: .92rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-soft); }
.faq-question[aria-expanded="true"] { color: var(--green); background: var(--green-light); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: all var(--transition);
  color: var(--text-muted);
}
.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--green);
  color: var(--green);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.1rem 1rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ---- Footer ---- */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
  font-size: .85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: .6rem;
  display: block;
}
.footer-logo span { color: var(--green); }
.footer-desc { font-size: .85rem; line-height: 1.6; margin-bottom: .75rem; }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #f9fafb;
  margin-bottom: .75rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a { color: #9ca3af; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
}
.footer-bottom a { color: #6b7280; text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.affiliate-disclosure {
  background: #1f2937;
  border-left: 3px solid #374151;
  padding: .75rem 1rem;
  font-size: .8rem;
  color: #6b7280;
  margin-top: .75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.55;
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* Hero landing */
.hero-home {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-home .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: .85rem;
}
.hero-home h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-home h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-home .hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text);
}
.hero-stat span {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Categories grid */
.categories-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.section-header a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  background: var(--bg);
  transition: all var(--transition);
  text-align: center;
}
.category-card:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
}
.category-icon {
  font-size: 1.9rem;
  line-height: 1;
}
.category-name {
  font-size: .88rem;
  font-weight: 700;
}
.category-count {
  font-size: .75rem;
  color: var(--text-muted);
}
.category-card.featured {
  background: var(--green-light);
  border-color: #bbf7d0;
  grid-column: span 2;
  flex-direction: row;
  text-align: left;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
}
.category-card.featured .category-icon { font-size: 2.4rem; }
.category-card.featured .category-name { font-size: 1rem; }
.category-card.featured .category-desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .15rem;
  line-height: 1.4;
}

/* Review cards */
.reviews-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  background: var(--bg);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}
.review-card-img {
  height: 130px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}
.review-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}
.review-card-tag {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.review-card-score {
  font-size: .82rem;
  font-weight: 800;
  color: var(--green);
  background: var(--green-mid);
  padding: .15em .55em;
  border-radius: 999px;
}
.review-card h3 {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .4rem;
}
.review-card-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-top: auto;
  padding-top: .6rem;
}
.review-card-verdict {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: .3rem;
}

/* Method banner */
.method-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2.5rem 0;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}
.method-banner:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
}
.method-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--green-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.method-banner h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.method-banner p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.method-banner .arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Comparatifs section */
.comparatifs-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.comparatifs-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .25rem;
}
.comparatif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
  gap: 1rem;
}
.comparatif-row:hover {
  border-color: var(--green);
  background: var(--green-light);
  text-decoration: none;
  color: var(--text);
}
.comparatif-row .vs-badge {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  background: var(--border);
  padding: .2em .5em;
  border-radius: 4px;
  color: var(--text-muted);
}
.comparatif-row .caret { color: var(--text-muted); font-size: .9rem; flex-shrink: 0; }

/* Hot badge — carte Femme */
.category-card.hot {
  border-color: #fde68a;
  background: #fffbeb;
  position: relative;
}
.category-card.hot:hover {
  border-color: #f59e0b;
  background: #fef3c7;
}
.hot-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: #f59e0b;
  color: #fff;
  border-radius: 999px;
  padding: .1em .45em;
  vertical-align: middle;
  margin-left: .3em;
  line-height: 1.5;
}

/* Comparatif row — ligne mise en avant */
.comparatif-row--hot {
  background: #fffbeb;
  border-color: #fde68a;
}
.comparatif-row--hot:hover {
  background: #fef3c7;
  border-color: #f59e0b;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; gap: .75rem; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-top { flex-direction: column-reverse; gap: 1rem; }
  .score-wrap { flex-direction: row; align-self: flex-start; }
  .pourqui-grid { grid-template-columns: 1fr; }
  .proscons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .subscore-label { width: 120px; }
  /* Homepage responsive */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card.featured { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .method-banner { flex-wrap: wrap; }
  .method-banner .arrow { display: none; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.3rem; }
  .hero-price { font-size: 1.35rem; }
  .verdict-box { padding: 1.25rem; }
  .verdict-score { font-size: 2rem; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-light);
  border-bottom: 1px solid #bbf7d0;
  padding: .9rem 0;
}
.trust-items {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  max-width: 220px;
}
.trust-item > span:first-child {
  font-size: 1.2rem;
  line-height: 1.3;
  flex-shrink: 0;
  margin-top: .05rem;
}
.trust-item strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .1rem;
}
.trust-item span:not(:first-child) {
  font-size: .76rem;
  color: #4b7c5a;
  line-height: 1.45;
}

/* Hero stat dividers */
.hero-stats {
  position: relative;
}
.hero-stat {
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 12%;
  height: 76%;
  width: 1px;
  background: var(--border);
}

/* Review card — "soon" score badge */
.review-card-score--soon {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: .15em .55em;
  border-radius: 999px;
}

/* Review card — CTA variant (placeholder "voir plus") */
.review-card-cta {
  background: var(--green-light) !important;
  border-color: #bbf7d0 !important;
  border-style: dashed !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  text-decoration: none;
}
.review-card-cta:hover {
  background: #dcfce7 !important;
  border-color: var(--green) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.review-card-cta-inner {
  text-align: center;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.review-card-cta-icon {
  font-size: 1.75rem;
  color: var(--green);
  margin-bottom: .2rem;
  font-weight: 900;
}
.review-card-cta-inner strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--green-dark);
}
.review-card-cta-inner span {
  font-size: .8rem;
  color: #4b7c5a;
}

/* ============================================================
   HUB PAGES (pages catégorie)
   ============================================================ */
.hub-hero {
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid var(--border);
}
.hub-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.hub-count {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: .25em .8em;
  border-radius: 999px;
}
.hub-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.hub-hero p {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
}

/* ---- Pages internes (breadcrumb, prose, coming-soon) ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text-muted);
  padding: .85rem 0 0;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: var(--border-dark); font-size: .75rem; }

.page-hero {
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.page-hero-desc {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 58ch;
  line-height: 1.6;
}

.prose {
  padding: 2rem 0 3rem;
}
.prose h2 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 2rem 0 .6rem;
}
.prose h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 1.5rem 0 .4rem;
}
.edito-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.6rem 0 .5rem;
}
.quick-answer {
  background: var(--bg-soft, #f1f7f2);
  border: 1px solid var(--border, #e5e7eb);
  border-left: 4px solid var(--green, #1f9d55);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.1rem 0 1.4rem;
}
.quick-answer .qa-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--green, #1f9d55);
  margin-bottom: .35rem;
}
.quick-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text, #111);
}
.prose p { margin-bottom: .9rem; line-height: 1.78; }
.prose ul, .prose ol { margin-bottom: .9rem; }
.prose li { margin-bottom: .3rem; line-height: 1.7; }
.prose a { color: var(--green); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin: 1.25rem 0;
}
.prose th, .prose td {
  text-align: left;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
}
.prose th { background: var(--bg-soft); font-weight: 600; }
.prose-note {
  background: var(--bg-soft);
  border-left: 3px solid var(--green);
  padding: .75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .88rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
}

.hub-subcats {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.hub-subcats h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: .6rem;
}
.subcat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  text-decoration: none;
  color: var(--text);
  background: var(--bg);
  transition: all var(--transition);
}
.subcat-card:hover {
  border-color: var(--green);
  background: var(--green-light);
  text-decoration: none;
}
.subcat-card-label { font-weight: 600; font-size: .88rem; display: block; }
.subcat-card-sub { color: var(--text-muted); font-size: .78rem; margin-top: .1rem; display: block; }

.coming-soon-section { padding: 2.5rem 0; }
.coming-soon-card {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  background: var(--bg-soft);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.coming-soon-card .cs-icon { font-size: 1.75rem; margin-bottom: .6rem; }
.coming-soon-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.coming-soon-card p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; }

/* Responsive additions */
@media (max-width: 768px) {
  .trust-items { gap: 1.25rem; justify-content: flex-start; }
  .trust-item { max-width: 100%; }
  .hero-stat + .hero-stat::before { display: none; }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
}
