/* ===== VARIABLES ===== */
:root {
  --blue:         #0095ff;
  --blue-dark:    #0077cc;
  --blue-light:   #e6f4ff;
  --white:        #ffffff;
  --gray:         #aaaaaa;
  --gray-light:   #f5f7fa;
  --gray-border:  #e0e6ed;
  --text:         #1a1a1a;
  --text-muted:   #666666;
  --radius:       8px;
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,149,255,0.15);
  --green:        #16a34a;
  --red:          #dc2626;
  --orange:       #f59e0b;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

/* Logo */
.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--blue); }
.logo:hover { text-decoration: none; color: var(--text); }

/* Nav */
.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 2px;
}
.main-nav > ul > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  background: var(--blue-light);
  color: var(--blue);
  text-decoration: none;
}
.nav-blog { margin-left: auto; }
.nav-blog > a { color: var(--gray) !important; }
.nav-blog > a:hover { color: var(--text) !important; background: var(--gray-light) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.6; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  padding: 6px;
  list-style: none;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background 0.1s, color 0.1s;
}
.dropdown li a:hover { background: var(--blue-light); color: var(--blue); text-decoration: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
  margin-left: auto;
  padding: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-border);
  padding: 10px 0;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb li + li::before { content: '›'; margin-right: 4px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb li:last-child { color: var(--text-muted); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 580px; margin: 0 auto 28px; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--blue-light); text-decoration: none; color: var(--blue-dark); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); text-decoration: none; color: var(--white); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: var(--white); text-decoration: none; }

/* ===== SECTION TITLES ===== */
.section { padding: 56px 0; }
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.section-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; }
.section-sep { height: 1px; background: var(--gray-border); margin: 48px 0; }

/* ===== GRID SILOS ===== */
.silo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.silo-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.silo-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  text-decoration: none;
}
.silo-card-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.silo-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.silo-card p { font-size: 14px; color: var(--text-muted); }

/* ===== PRODUCT CARD ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); text-decoration: none; }
.product-card-img {
  background: var(--gray-light);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 6px; }
.product-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.product-card-desc { font-size: 13px; color: var(--text-muted); flex: 1; margin-bottom: 14px; }
.product-card-price { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.product-card-footer { padding: 14px 18px; border-top: 1px solid var(--gray-border); }

/* Product types badges */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 4px;
}
.badge-elec   { background: #e8f0fe; color: #1a73e8; }
.badge-hydro  { background: #fce8e6; color: #d93025; }
.badge-hors   { background: #fef3e2; color: #e37400; }

/* ===== ARTICLE CARDS (blog / guide) ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.article-card-img { background: var(--gray-light); min-height: 140px; }
.article-card-body { padding: 18px; }
.article-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 8px; }
.article-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); line-height: 1.3; }
.article-card p { font-size: 13px; color: var(--text-muted); }
.article-card a { color: inherit; }
.article-card a:hover { text-decoration: none; }

/* ===== LISTING PAGE ===== */
.listing-header { padding: 40px 0 32px; }
.listing-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.listing-header p { font-size: 1rem; color: var(--text-muted); max-width: 640px; }
.listing-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--gray);
  font-size: 1rem;
  border: 2px dashed var(--gray-border);
  border-radius: var(--radius);
}
.listing-empty span { display: block; font-size: 2rem; margin-bottom: 12px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gray-border);
  color: var(--text);
  transition: all 0.15s;
}
.pagination a:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); text-decoration: none; }
.pagination .current { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pagination .prev-next { width: auto; padding: 0 14px; }

/* ===== EDITORIAL (bas de silo marque) ===== */
.editorial { background: var(--gray-light); border-top: 1px solid var(--gray-border); padding: 48px 0; margin-top: 48px; }
.editorial h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.editorial p { color: var(--text-muted); margin-bottom: 14px; }

/* ===== BLOG RELATED (liens cocon) ===== */
.cocon-links { margin-top: 40px; }
.cocon-links h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-size: 12px; }
.cocon-links ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cocon-links ul li a {
  color: var(--blue);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
  transition: background 0.15s;
}
.cocon-links ul li a:hover { background: var(--blue-light); text-decoration: none; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #cccccc;
  margin-top: 64px;
  border-top: 3px solid var(--blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding: 48px 0 36px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: #999999; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #333333;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-logo { font-size: 15px; font-weight: 800; color: var(--blue); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: #666666; }
.footer-legal a:hover { color: var(--gray); text-decoration: none; }
.footer-copy { font-size: 12px; color: #555555; }

/* ===== ARTICLE PAGE — HERO ===== */
.article-hero { padding: 24px 0 0; }
.article-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
  background: var(--gray-light);
}
.article-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ===== ARTICLE PAGE — LAYOUT ===== */
.article-section { padding-top: 32px; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ===== ARTICLE — HEADER ===== */
.article-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-border); }
.article-header h1 { font-size: 1.85rem; font-weight: 800; line-height: 1.25; color: var(--text); }
.article-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-meta time { color: var(--text-muted); }
.article-meta-sep { opacity: 0.4; }
.article-meta-cocon {
  background: var(--blue-light);
  color: var(--blue);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ARTICLE — TLDR BOX ===== */
.article-tldr {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin-bottom: 36px;
}
.article-tldr h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 12px;
  padding: 0;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-tldr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-tldr ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
.article-tldr ul li:last-child { margin-bottom: 0; }
.article-tldr ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}

/* ===== ARTICLE — BODY TYPOGRAPHY ===== */
.article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text);
}
.article-body p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
.article-body ul,
.article-body ol {
  margin-bottom: 16px;
  padding-left: 1.6em;
}
.article-body li { margin-bottom: 6px; line-height: 1.65; color: var(--text); }
.article-body strong { color: var(--text); }
.article-body a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(0,149,255,0.3); text-underline-offset: 2px; }
.article-body a:hover { text-decoration-color: var(--blue); }
.article-body .btn { text-decoration: none; }
.article-body .btn-blue { color: var(--white); }
.article-body .btn-blue:hover { color: var(--white); }
.article-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 14px 20px;
  margin: 20px 0;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-style: italic;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.article-body table th,
.article-body table td {
  padding: 10px 14px;
  border: 1px solid var(--gray-border);
  text-align: left;
}
.article-body table th { background: var(--gray-light); font-weight: 600; font-size: 13px; }
.article-body table tr:hover td { background: rgba(0,149,255,0.02); }

/* ===== ARTICLE — FIGURE ===== */
.article-figure {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
}
.article-figure img { width: 100%; display: block; }
.article-figure figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--gray);
  background: var(--gray-light);
  text-align: center;
}

/* ===== ARTICLE — CTA IN-CONTENT ===== */
.article-cta-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--blue-light);
  border: 1px solid rgba(0,149,255,0.15);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-cta-inline-icon { font-size: 1.8rem; flex-shrink: 0; }
.article-cta-inline div { flex: 1; }
.article-cta-inline strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.article-cta-inline p { font-size: 13px; color: var(--text-muted); margin: 0; }
.article-cta-inline .btn { flex-shrink: 0; padding: 10px 20px; font-size: 14px; white-space: nowrap; }

/* ===== ARTICLE — CTA BOTTOM ===== */
.article-cta-bottom {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
}
.article-cta-bottom h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.article-cta-bottom p { font-size: 15px; opacity: 0.9; margin-bottom: 18px; max-width: 480px; margin-left: auto; margin-right: auto; }
.article-cta-bottom .btn { background: var(--white); color: var(--blue); }
.article-cta-bottom .btn:hover { background: var(--blue-light); text-decoration: none; }

/* ===== ARTICLE — AUTHOR BOX ===== */
.article-author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
}
.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.article-author-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.article-author-name a { color: var(--text); text-decoration: none; }
.article-author-name a:hover { color: var(--blue); }
.article-author-box p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===== SIDEBAR ===== */
.article-sidebar { position: sticky; top: 88px; }

/* Sidebar — Boxes marque/type */
.sidebar-box {
  padding: 16px 18px;
  margin-bottom: 14px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.sidebar-box-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--blue);
}
.sidebar-box-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s;
}
.sidebar-box-link:hover { background: var(--gray-light); text-decoration: none; }
.sidebar-box-arrow { font-size: 16px; opacity: 0.5; transition: transform 0.15s; }
.sidebar-box-link:hover .sidebar-box-arrow { transform: translateX(3px); opacity: 1; }

/* Sidebar — CTA */
.sidebar-cta {
  padding: 20px;
  margin-bottom: 14px;
  background: var(--blue-light);
  border: 1px solid rgba(0,149,255,0.12);
  border-radius: var(--radius);
  text-align: center;
}
.sidebar-cta-icon { font-size: 1.6rem; margin-bottom: 8px; }
.sidebar-cta strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.sidebar-cta p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }

/* Sidebar — Derniers articles */
.sidebar-latest {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sidebar-latest h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-border);
}
.sidebar-latest ul { list-style: none; padding: 0; margin: 0; }
.sidebar-latest li { border-bottom: 1px solid var(--gray-border); }
.sidebar-latest li:last-child { border-bottom: none; }
.sidebar-latest li a {
  display: block;
  padding: 10px 8px;
  border-radius: 4px;
  transition: background 0.15s;
}
.sidebar-latest li a:hover { background: var(--gray-light); text-decoration: none; }
.sidebar-latest li a.active { background: var(--blue-light); }
.sidebar-latest-title { display: block; font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.35; }
.sidebar-latest-date { display: block; font-size: 11px; color: var(--gray); margin-top: 3px; }
.sidebar-latest-empty { padding: 16px 8px; font-size: 13px; color: var(--gray); text-align: center; }
.sidebar-latest-all {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border-radius: 6px;
  transition: background 0.15s;
}
.sidebar-latest-all:hover { background: var(--blue-light); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   AVIS PRODUIT (PAGE AFFILIATION)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.product-hero { padding: 40px 0; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.product-hero-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-border); background: var(--gray-light); }
.product-hero-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.product-hero-info h1 { font-size: 1.7rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.product-hero-highlights { list-style: none; padding: 0; margin: 0 0 20px; }
.product-hero-highlights li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 15px; line-height: 1.5; color: var(--text); }
.product-hero-highlights li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.product-hero-rating { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding: 16px 20px; background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius); }
.product-hero-score { font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.product-hero-score-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.btn-cta { background: var(--blue); color: var(--white); font-size: 18px; padding: 16px 40px; border-radius: var(--radius); display: inline-block; font-weight: 700; transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,149,255,0.25); }
.btn-cta:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,149,255,0.35); text-decoration: none; color: var(--white); }
.section-sep { height: 1px; background: var(--gray-border); margin: 0; }

/* Target section */
.avis-target-section { background: var(--blue-light); border: 1px solid rgba(0,149,255,0.12); border-radius: var(--radius); padding: 32px 36px; margin: 0 auto; max-width: 800px; text-align: center; }
.avis-target-section h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.avis-target-section p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
.avis-target-section strong { color: var(--text); }

/* Section title (reusable) */
.avis-section-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); max-width: 800px; margin-left: auto; margin-right: auto; }

/* Rating */
.avis-rating-section { max-width: 800px; margin: 0 auto; }
.avis-rating-section h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); }
.avis-rating-grid { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; }
.avis-rating-bars { display: flex; flex-direction: column; gap: 16px; }
.avis-rating-bar-row { display: flex; align-items: center; gap: 12px; }
.avis-rating-bar-label { width: 140px; font-size: 14px; font-weight: 600; color: var(--text); flex-shrink: 0; }
.avis-rating-bar-track { flex: 1; height: 10px; background: var(--gray-border); border-radius: 5px; overflow: hidden; }
.avis-rating-bar-fill { height: 100%; background: var(--blue); border-radius: 5px; transition: width 0.5s; }
.avis-rating-bar-value { width: 40px; font-size: 14px; font-weight: 700; color: var(--blue); text-align: right; }
.avis-rating-summary { background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 24px; text-align: center; }
.avis-rating-summary-score { font-size: 3rem; font-weight: 800; color: var(--blue); line-height: 1; }
.avis-rating-summary-label { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.avis-rating-summary-verdict { font-size: 14px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.avis-rating-expert { font-size: 14px; color: var(--text-muted); line-height: 1.65; text-align: left; border-top: 1px solid var(--gray-border); padding-top: 14px; margin-top: 4px; font-style: italic; }

/* Pros / Cons */
.avis-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.avis-proscons h2 { grid-column: 1 / -1; font-size: 1.3rem; font-weight: 800; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); margin-bottom: 8px; }
.avis-pros, .avis-cons { padding: 24px; border-radius: var(--radius); border: 1px solid var(--gray-border); }
.avis-pros { background: var(--blue-light); border-color: rgba(0,149,255,0.2); }
.avis-cons { background: #fef2f2; border-color: #fecaca; }
.avis-pros h3 { color: var(--blue-dark); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.avis-cons h3 { color: var(--red); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.avis-pros ul, .avis-cons ul { list-style: none; padding: 0; margin: 0; }
.avis-pros li, .avis-cons li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 14px; line-height: 1.55; }
.avis-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.avis-cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* Specs table */
.avis-specs-table { width: 100%; border-collapse: collapse; font-size: 14px; max-width: 800px; margin: 0 auto; }
.avis-specs-table th, .avis-specs-table td { padding: 12px 16px; border: 1px solid var(--gray-border); text-align: left; }
.avis-specs-table th { background: var(--gray-light); font-weight: 600; font-size: 13px; width: 40%; color: var(--text-muted); }
.avis-specs-table td { color: var(--text); }
.avis-specs-table tr:hover td { background: rgba(0,149,255,0.02); }

/* CTA box (with product image) */
.avis-cta-box { display: flex; align-items: center; gap: 24px; background: var(--gray-light); border: 1px solid var(--gray-border); border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 24px; margin: 40px auto; max-width: 600px; }
.avis-cta-box-img { width: 110px; height: 110px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; background: var(--white); padding: 4px; border: 1px solid var(--gray-border); }
.avis-cta-box-content { text-align: left; flex: 1; }
.avis-cta-box h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.avis-cta-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.4; }

/* Features */
.avis-feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-bottom: 48px; }
.avis-feature-block.reverse { direction: rtl; }
.avis-feature-block.reverse > * { direction: ltr; }
.avis-feature-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-border); }
.avis-feature-img img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.avis-feature-text h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.avis-feature-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* Verdict box */
.avis-verdict-box { background: var(--gray-light); border: 1px solid var(--gray-border); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 28px 32px; max-width: 800px; margin: 0 auto; }
.avis-verdict-box h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.avis-verdict-box p { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 12px; }

/* Comparison table */
.avis-compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.avis-compare-table th, .avis-compare-table td { padding: 12px 14px; border: 1px solid var(--gray-border); text-align: center; }
.avis-compare-table th { background: var(--gray-light); font-weight: 600; font-size: 13px; }
.avis-compare-table td:first-child { text-align: left; font-weight: 600; }
.avis-compare-table tr:hover td { background: rgba(0,149,255,0.02); }
.avis-compare-highlight { background: var(--blue-light) !important; border-color: rgba(0,149,255,0.2) !important; }

/* FAQ */
.avis-faq-item { border-bottom: 1px solid var(--gray-border); padding: 18px 0; }
.avis-faq-item:first-of-type { border-top: 1px solid var(--gray-border); }
.avis-faq-q { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.avis-faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Internal links */
.avis-internal-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.avis-internal-link-card { border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 18px; background: var(--white); box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s; }
.avis-internal-link-card:hover { box-shadow: 0 6px 24px rgba(0,149,255,0.15); transform: translateY(-2px); text-decoration: none; }
.avis-internal-link-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.avis-internal-link-card p { font-size: 12px; color: var(--text-muted); margin: 0; }
.avis-il-price { font-size: 15px; font-weight: 800; color: var(--blue); margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .silo-grid, .products-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--blue); padding: 16px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .main-nav.open > ul { flex-direction: column; gap: 0; }
  .main-nav.open > ul > li > a { padding: 12px 8px; border-radius: 0; border-bottom: 1px solid var(--gray-border); }
  .nav-toggle { display: block; }
  .dropdown { position: static; border: none; box-shadow: none; padding-left: 16px; }
  .hero h1 { font-size: 1.6rem; }
  /* Article responsive */
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
  .article-sidebar { position: static; }
  .article-cta-inline { flex-direction: column; text-align: center; }
  .article-cta-inline .btn { width: 100%; }
  /* Avis responsive */
  .product-hero-grid, .avis-feature-block, .avis-rating-grid, .avis-proscons, .avis-internal-links { grid-template-columns: 1fr; }
  .avis-feature-block.reverse { direction: ltr; }
  .avis-proscons h2 { grid-column: auto; }
  .avis-cta-box { flex-direction: column; text-align: center; padding: 24px 16px; }
  .avis-cta-box-content { text-align: center; }
}
@media (max-width: 600px) {
  .silo-grid, .products-grid, .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 0; }
  /* Article responsive small */
  .article-hero-img, .article-hero-img img { max-height: 240px; height: 240px; }
  .article-header h1 { font-size: 1.4rem; }
  .article-author-box { flex-direction: column; text-align: center; }
  /* Avis responsive small */
  .product-hero-info h1 { font-size: 1.35rem; }
  .avis-compare-table { font-size: 12px; }
  .avis-compare-table th, .avis-compare-table td { padding: 8px 6px; }
  .avis-internal-links { grid-template-columns: 1fr; }
}
