/*
  YOYOTEST.COM — CSS Complet (Homepage + Article)
  ================================================
  OÙ COLLER : Apparence > Personnaliser > CSS Additionnel
  PRÉREQUIS : Google Fonts "DM Sans" ajouté dans GP > Typographie
*/


/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
  --white:       #ffffff;
  --cream:       #fef7e5;
  --light:       #f3f3f7;
  --border:      #ebebeb;
  --text:        #212121;
  --muted:       #69727d;
  --xmuted:      #9ca3af;
  --dark:        #1f2124;
  --amazon:      #ff9900;
  --green:       #1a7a4a;
  --green-pale:  #edfbf4;
  --red:         #c0392b;
  --red-pale:    #fef2f0;
  --accent:      #3b3fce;
  --accent-pale: #eef0ff;
  --r:           10px;
  --max:         1140px;
  --font:        'DM Sans', system-ui, sans-serif;
}


/* ============================================================
   2. BASE & TYPOGRAPHIE
   ============================================================ */
body {
  font-family: var(--font) !important;
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font) !important;
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(26px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: 19px; font-weight: 700; }

p { margin-bottom: 1.1em; }
a { transition: opacity .15s; }
img { max-width: 100%; }


/* ============================================================
   3. TOP BAR (GP Premium > Personnaliser > Header > Top Bar)
   ============================================================ */
.top-bar {
  background: var(--dark) !important;
  color: rgba(255,255,255,.75) !important;
  font-size: 13px;
  overflow: hidden;
  height: 38px !important;
  display: flex;
  align-items: center;
  padding: 0 !important;
}
.top-bar .inside-top-bar {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
}
.top-bar a { color: #fff !important; font-weight: 700; }

.yoyo-ticker {
  display: flex;
  gap: 72px;
  animation: yoyo-tick 30s linear infinite;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding-left: 100%;
}
.yoyo-ticker strong { color: #fff; }
@keyframes yoyo-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   4. HEADER & NAVIGATION (GeneratePress natif)
   ============================================================ */
.site-header {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
}
.site-header.is-sticky {
  box-shadow: 0 4px 20px rgba(0,0,0,.1) !important;
}

.inside-header { max-width: var(--max) !important; }

/* Logo */
.site-title a {
  font-family: var(--font) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  letter-spacing: -0.5px;
}

/* Navigation */
.main-navigation .menu-item > a,
.main-navigation .menu-item > a:visited {
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  padding: 7px 13px !important;
  border-radius: 7px;
  transition: background .15s, color .15s !important;
}
.main-navigation .menu-item > a:hover,
.main-navigation .current-menu-item > a {
  background: var(--light) !important;
  color: var(--dark) !important;
}

/* Bouton CTA nav — ajouter la classe CSS "nav-cta" dans Apparence > Menus */
.nav-cta > a,
.nav-cta > a:visited {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 9px !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
}
.nav-cta > a:hover {
  background: #333 !important;
  color: var(--white) !important;
}

/* Sous-menus */
.main-navigation .sub-menu {
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.1) !important;
  padding: 6px !important;
}
.main-navigation .sub-menu .menu-item > a {
  border-radius: 6px !important;
  font-size: 13px !important;
}


/* ============================================================
   5. BREADCRUMB (activer dans Personnaliser > Layout > Breadcrumb)
   ============================================================ */
.breadcrumb-trail {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 11px 0 !important;
  font-size: 13px !important;
  color: var(--muted) !important;
}
.breadcrumb-trail .breadcrumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb-trail a { color: var(--muted) !important; }
.breadcrumb-trail a:hover { color: var(--dark) !important; }
.breadcrumb-trail .trail-end { color: var(--dark); font-weight: 500; }
.breadcrumb-trail .sep { color: var(--xmuted); margin: 0 5px; }


/* ============================================================
   6. BOUTONS GLOBAUX
   ============================================================ */
.wp-block-button.is-style-fill .wp-block-button__link,
.button, .btn-dark {
  font-family: var(--font) !important;
  font-weight: 700 !important;
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  padding: 13px 26px !important;
  font-size: 15px !important;
  border: none !important;
  transition: background .15s, transform .15s !important;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.btn-dark:hover {
  background: #333 !important;
  transform: translateY(-1px) !important;
  color: var(--white) !important;
}

.btn-amazon, .wp-block-button.is-style-amazon .wp-block-button__link {
  background: var(--amazon) !important;
  color: #111 !important;
  font-weight: 700 !important;
  border-radius: 9px !important;
  padding: 12px 22px !important;
  border: none !important;
  transition: background .15s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.btn-amazon:hover { background: #e88800 !important; }


/* ============================================================
   7. PAGE D'ACCUEIL — Sections (blocs HTML dans Gutenberg)
   ============================================================ */

/* Utilitaire pleine largeur — appliqué aux sections de la homepage */
.yoyo-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}
.yoyo-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.yoyo-hero { background: var(--white); padding: 72px 0 64px; }
.yoyo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
}
.yoyo-hero h1 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -1.5px; margin-bottom: 18px; }
.hero-desc { font-size: 18px; color: var(--muted); line-height: 1.6; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 13px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.hero-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  background: var(--cream);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
}

/* Stats band */
.yoyo-stats { background: var(--dark); padding: 52px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-block:last-child { border-right: none; }
.stat-num { font-size: 48px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; letter-spacing: -2px; }
.stat-num em { font-style: normal; color: rgba(255,255,255,.35); font-size: 22px; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.45; }

/* À propos */
.yoyo-about { background: var(--light); padding: 80px 0; position: relative; }
.yoyo-about::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dark), var(--muted));
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #e0e7ff 0%, var(--cream) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  position: relative;
}
.about-ribbon {
  position: absolute; bottom: 20px; right: -16px;
  background: var(--white); border-radius: 12px;
  padding: 14px 18px; text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  transform: rotate(2deg);
  font-size: 13px; line-height: 1.5;
}
.about-ribbon strong { display: block; font-size: 20px; font-weight: 800; color: var(--dark); }
.eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 10px;
}
.about-quote {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  line-height: 1.25; color: var(--dark);
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.about-text p { font-size: 16px; color: var(--muted); }

/* Section dark (8 raisons) */
.yoyo-dark-section { background: var(--dark); padding: 80px 0; text-align: center; }
.yoyo-dark-section h2 { color: var(--white); margin-bottom: 12px; }
.yoyo-dark-section .section-sub { font-size: 17px; color: rgba(255,255,255,.5); font-style: italic; margin-bottom: 48px; }
.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; }
.reason-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 24px 20px;
  transition: background .2s;
}
.reason-card:hover { background: rgba(255,255,255,.09); }
.reason-num { font-size: 32px; font-weight: 800; color: rgba(255,255,255,.15); line-height: 1; margin-bottom: 8px; }
.reason-card h3 { font-size: 15px; color: var(--white); margin-bottom: 7px; }
.reason-card p { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; line-height: 1.5; }
.reason-card.reason-highlight { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.reason-card.reason-highlight h3 { color: var(--white); }

/* Vague SVG */
.yoyo-wave { overflow: hidden; line-height: 0; margin-bottom: -1px; }
.yoyo-wave svg { display: block; width: 100%; }
.yoyo-wave-bottom { margin-top: -1px; margin-bottom: 0; }

/* Produits / comparatif */
.yoyo-products { background: var(--white); padding: 80px 0; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 16px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card-home {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  background: var(--white);
}
.product-card-home:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.pch-img {
  background: var(--cream);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; border-bottom: 1px solid var(--border);
}
.pch-badge {
  display: inline-block; background: var(--dark); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: .04em;
}
.pch-body { padding: 18px 20px; }
.pch-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.pch-price { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.pch-price small { font-size: 14px; font-weight: 400; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.btn-amazon-card {
  display: block; text-align: center;
  background: var(--amazon); color: #111;
  font-weight: 700; font-size: 14px;
  padding: 11px; border-radius: 8px;
  transition: background .15s;
  text-decoration: none;
}
.btn-amazon-card:hover { background: #e88800; color: #111; text-decoration: none; }

/* Témoignages */
.yoyo-testi { background: var(--cream); padding: 80px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testi-card {
  background: var(--white); border-radius: var(--r);
  padding: 26px 22px; box-shadow: 0 2px 14px rgba(0,0,0,.05);
}
.testi-stars { color: var(--amazon); font-size: 16px; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.testi-text { font-size: 15px; color: var(--text); font-style: italic; line-height: 1.65; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--light); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.testi-loc { font-size: 12px; color: var(--muted); }


/* ============================================================
   8. PAGE ARTICLE — Structure GP natif
   ============================================================ */

/* Conteneur article */
.single .content-area { max-width: 100%; }
.single .inside-article { max-width: 100% !important; }

/* Titre natif GP (entry-title) */
.single .entry-title {
  font-size: clamp(26px, 4vw, 48px) !important;
  font-weight: 700 !important;
  letter-spacing: -1px !important;
  color: var(--dark) !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
}

/* Méta natif GP */
.single .entry-meta {
  font-size: 13px !important;
  color: var(--muted) !important;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.single .entry-meta .posted-on a,
.single .entry-meta .byline a { color: var(--muted) !important; text-decoration: none; }
.single .entry-meta .byline a { font-weight: 700; color: var(--dark) !important; }

/* Featured image — masquée (on la gère manuellement) */
.single .post-image { display: none; }

/* Catégories en haut */
.entry-categories {
  display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
}
.cat-tag {
  display: inline-block;
  background: var(--accent-pale); color: var(--accent);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .04em;
}
.cat-tag.green { background: var(--green-pale); color: var(--green); }

/* Contenu article */
.single .entry-content {
  font-size: 17px !important;
  line-height: 1.78 !important;
  color: var(--text) !important;
}
.single .entry-content h2 {
  font-size: clamp(20px, 2.5vw, 27px) !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin: 48px 0 14px !important;
  padding-bottom: 14px !important;
  border-bottom: 2px solid var(--border) !important;
  letter-spacing: -0.5px;
  scroll-margin-top: 90px;
}
.single .entry-content h3 {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin: 28px 0 10px !important;
}
.single .entry-content strong { color: var(--dark); font-weight: 700; }
.single .entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(59,63,206,.3);
  font-weight: 500;
  transition: text-decoration-color .15s;
}
.single .entry-content a:hover { text-decoration-color: var(--accent); }

/* Intro article */
.article-intro {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 28px;
}

/* Score strip */
.score-strip {
  display: flex;
  align-items: stretch;
  background: var(--dark);
  border-radius: var(--r);
  overflow: hidden;
  margin: 28px 0 40px;
  max-width: 500px;
}
.score-main {
  background: #0a0000;
  padding: 20px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.score-big { font-size: 50px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -2px; }
.score-big sub { font-size: 20px; font-weight: 400; color: rgba(255,255,255,.3); vertical-align: baseline; }
.score-stars-sm { color: var(--amazon); font-size: 14px; letter-spacing: 2px; margin-top: 4px; text-align: center; }
.score-bars { flex: 1; padding: 16px 22px; }
.score-bars-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.score-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.sbl { font-size: 11px; color: rgba(255,255,255,.45); width: 74px; flex-shrink: 0; }
.sbt { flex: 1; height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.sbf { height: 100%; background: rgba(255,255,255,.45); border-radius: 2px; }
.sbv { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55); width: 22px; text-align: right; }


/* ============================================================
   9. ENCADRÉS ARTICLE
   ============================================================ */
.notice {
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15.5px;
  line-height: 1.65;
}
.notice-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 6px;
}
.notice-info   { background: var(--accent-pale); border-left: 4px solid var(--accent); }
.notice-info   .notice-label { color: var(--accent); }
.notice-ok     { background: var(--green-pale); border-left: 4px solid var(--green); }
.notice-ok     .notice-label { color: var(--green); }
.notice-alert  { background: var(--red-pale); border-left: 4px solid var(--red); }
.notice-alert  .notice-label { color: var(--red); }
.notice-neutral { background: var(--cream); border-left: 4px solid #c8a96e; }
.notice-neutral .notice-label { color: #8a6200; }

/* Pullquote */
.pullquote {
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 600; font-style: italic;
  color: var(--dark); line-height: 1.4;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--dark);
  margin: 36px 0;
}


/* ============================================================
   10. CARTE PRODUIT IN-ARTICLE
   ============================================================ */
.product-card {
  border: 1.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
  margin: 36px 0; background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
}
.product-card.featured { border-color: var(--dark); border-width: 2px; }
.pc-banner {
  background: var(--dark); color: var(--white);
  padding: 10px 22px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
}
.pc-body { display: grid; grid-template-columns: 180px 1fr; }
.pc-img {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; border-right: 1px solid var(--border); padding: 24px;
}
.pc-info { padding: 22px 24px; }
.pc-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pc-stars { color: var(--amazon); font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.pc-stars span { font-size: 13px; color: var(--muted); font-weight: 400; }
.pc-specs { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.pc-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 14px 22px; border-top: 1px solid var(--border);
  background: var(--light); flex-wrap: wrap;
}
.pc-price { font-size: 30px; font-weight: 800; color: var(--dark); line-height: 1; }
.pc-price small { font-size: 14px; font-weight: 400; color: var(--muted); text-decoration: line-through; }
.btn-amazon-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amazon); color: #111;
  font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 9px;
  text-decoration: none; transition: background .15s;
}
.btn-amazon-lg:hover { background: #e88800; color: #111; text-decoration: none; }


/* ============================================================
   11. PROS / CONS
   ============================================================ */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin: 32px 0;
}
.pc-bloc { border-radius: var(--r); overflow: hidden; }
.pc-bloc-head {
  padding: 11px 18px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  display: flex; align-items: center; gap: 7px; color: var(--white);
}
.pc-bloc-head.pros { background: var(--green); }
.pc-bloc-head.cons { background: var(--red); }
.pc-bloc-body {
  border: 1.5px solid var(--border); border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  padding: 14px 18px; background: var(--white);
}
.pc-bloc-body ul { list-style: none; }
.pc-bloc-body li {
  font-size: 14px; color: var(--text);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.45;
}
.pc-bloc-body li:last-child { border-bottom: none; }
.pros-body li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.cons-body li::before { content: '✗'; color: var(--red); font-weight: 800; flex-shrink: 0; }


/* ============================================================
   12. TABLE COMPARATIF
   ============================================================ */
.table-wrap {
  overflow-x: auto; margin: 32px 0;
  border-radius: var(--r);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
table.compare {
  width: 100%; border-collapse: collapse;
  font-size: 14px; background: var(--white);
}
table.compare th {
  background: var(--dark); color: var(--white);
  padding: 13px 16px; text-align: left;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .08em; font-weight: 700;
}
table.compare td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
}
table.compare tr:last-child td { border-bottom: none; }
table.compare tr:nth-child(even) td { background: var(--light); }
table.compare tr.winner td { background: var(--cream); font-weight: 600; }
table.compare tr.winner td:first-child { border-left: 3px solid #c8a96e; }
.win-badge {
  display: inline-block; background: var(--dark); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: 100px; vertical-align: middle; margin-left: 5px;
  text-transform: uppercase;
}
.chk-yes { color: var(--green); font-weight: 800; }
.chk-no  { color: var(--red); }


/* ============================================================
   13. VERDICT
   ============================================================ */
.verdict-block {
  background: var(--dark); border-radius: 18px;
  padding: 36px 40px; margin: 36px 0; color: var(--white);
}
.verdict-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.verdict-block p { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 12px; }
.verdict-score-row {
  display: flex; align-items: center; gap: 20px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.verdict-num { font-size: 60px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -2px; }
.verdict-num sub { font-size: 22px; font-weight: 400; color: rgba(255,255,255,.3); }
.verdict-stars { color: var(--amazon); font-size: 20px; letter-spacing: 2px; display: block; margin-bottom: 4px; }
.verdict-label { font-weight: 700; font-size: 16px; color: var(--white); }
.verdict-sub { font-size: 13px; color: rgba(255,255,255,.45); }


/* ============================================================
   14. FAQ
   ============================================================ */
.faq-wrap { margin: 44px 0; }
.faq-section-title {
  font-size: 22px; font-weight: 700; color: var(--dark);
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--r);
  margin-bottom: 10px; overflow: hidden; background: var(--white);
}
.faq-q {
  padding: 17px 20px; font-weight: 700; font-size: 15px;
  cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  color: var(--dark); user-select: none; transition: background .12s;
}
.faq-q:hover { background: var(--light); }
.faq-arrow { font-size: 18px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 14px 20px 16px; font-size: 15px;
  color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item:not(.open) .faq-a { display: none; }


/* ============================================================
   15. SIDEBAR ARTICLE
   ============================================================ */
.widget-area .widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px !important;
  padding: 0 !important;
}
.widget-area .widget-title {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 13px 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  margin-bottom: 0 !important;
}

/* TOC dans widget */
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list li { border-bottom: 1px solid var(--border); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: background .12s, color .12s;
}
.toc-list a:hover { background: var(--light); color: var(--dark); }
.toc-n {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--muted);
  flex-shrink: 0;
}
.toc-list a:hover .toc-n { background: var(--dark); color: var(--white); }

/* Carte produit sidebar */
.sidebar-product-img {
  background: var(--cream);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; border-bottom: 1px solid var(--border);
}
.sidebar-product-body { padding: 18px; }
.sidebar-product-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 5px; }
.sidebar-product-name { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.sidebar-product-price { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1; }
.sidebar-product-price small { font-size: 13px; font-weight: 400; color: var(--muted); text-decoration: line-through; }
.btn-amazon-sidebar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--amazon); color: #111;
  font-weight: 700; font-size: 14px; padding: 11px;
  border-radius: 8px; text-decoration: none; transition: background .15s;
}
.btn-amazon-sidebar:hover { background: #e88800; color: #111; text-decoration: none; }

/* Verdict rapide sidebar */
.vq-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px; font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.vq-row:last-child { border-bottom: none; }
.vq-icon { font-size: 15px; flex-shrink: 0; }
.vq-label { flex: 1; color: var(--muted); }
.vq-val { font-weight: 700; color: var(--dark); }
.badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.badge-yes { background: var(--green-pale); color: var(--green); border: 1px solid rgba(26,122,74,.2); }
.badge-no  { background: var(--red-pale);   color: var(--red);   border: 1px solid rgba(192,57,43,.15); }
.badge-ok  { background: var(--accent-pale); color: var(--accent); border: 1px solid rgba(59,63,206,.2); }


/* ============================================================
   16. HOOK — BOÎTE AUTEUR (injecté via Elements)
   ============================================================ */
.author-box {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--cream); border-radius: 16px;
  padding: 26px 30px; margin: 48px 0 0;
}
.author-av {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--white); display: flex;
  align-items: center; justify-content: center;
  font-size: 30px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.author-role-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.author-name { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.author-bio { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0 0 12px; }
.author-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.author-tag {
  display: inline-block; background: var(--white);
  color: var(--muted); font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border);
}


/* ============================================================
   17. HOOK — ARTICLES LIÉS (injecté via Elements)
   ============================================================ */
.yoyo-related { background: var(--cream); padding: 64px 0; }
.related-title {
  font-size: 26px; font-weight: 700; letter-spacing: -0.5px;
  color: var(--dark); margin-bottom: 28px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  display: block; text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.related-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,.08); transform: translateY(-2px); }
.related-thumb {
  aspect-ratio: 16/9; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; border-bottom: 1px solid var(--border);
}
.related-body { padding: 16px 18px; }
.related-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: 5px; }
.related-name { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 7px; }
.related-meta { font-size: 12px; color: var(--muted); }


/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark) !important;
  color: rgba(255,255,255,.35) !important;
}
.site-footer a { color: rgba(255,255,255,.35) !important; }
.site-footer a:hover { color: rgba(255,255,255,.8) !important; }
.site-footer .widget-title {
  color: rgba(255,255,255,.6) !important;
  font-size: 12px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: .09em !important;
}
.footer-bar {
  background: rgba(0,0,0,.25) !important;
  color: rgba(255,255,255,.3) !important;
  font-size: 12px !important;
}
.footer-bar a { color: rgba(255,255,255,.3) !important; text-decoration: underline; }


/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .yoyo-hero-grid, .about-grid { grid-template-columns: 1fr; }
  .yoyo-hero-grid > div:last-child { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .yoyo-hero { padding: 48px 0; }
  .stat-num { font-size: 36px; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .pc-body { grid-template-columns: 1fr; }
  .verdict-block { padding: 28px 24px; }
  .verdict-num { font-size: 46px; }
  .author-box { flex-direction: column; padding: 22px; }
  .score-strip { flex-direction: column; max-width: 100%; }
}
@media (max-width: 480px) {
  .stats-grid, .reasons-grid { grid-template-columns: 1fr; }
  .related-grid, .testi-grid, .products-grid { grid-template-columns: 1fr; }
  .single .entry-title { font-size: 26px !important; }
}
