/* ============================================
   RoboPure — CSS Homepage dynamique
   Fichier : assets/css/robopure.css
   ============================================ */

:root {
  --rp-text: #0F172A;
  --rp-muted: #64748B;
  --rp-subtle: #94A3B8;
  --rp-border: #E2E8F0;
  --rp-border-strong: #CBD5E1;
  --rp-bg-soft: #F8FAFC;
  --rp-accent: #2563EB;
}

/* Reset spécifique homepage */
.rp-home {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--rp-text);
  line-height: 1.6;
}
.rp-home a {
  text-decoration: none;
  transition: color 0.15s;
}

/* Container */
.rp-home .rp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Helpers */
.rp-home .rp-kicker {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rp-accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.rp-home .rp-byline {
  font-size: 13px;
  color: var(--rp-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rp-home .rp-byline strong {
  color: var(--rp-text);
  font-weight: 500;
}
.rp-home .rp-byline .dot,
.rp-home .dot {
  width: 3px;
  height: 3px;
  background: var(--rp-subtle);
  border-radius: 50%;
  display: inline-block;
}

/* Masquer titre de page d'accueil */
.home .entry-header,
.home .page-header,
.home .entry-title {
  display: none;
}

/* ============================================
   SECTION HERO
   ============================================ */
.rp-home .rp-hero {
  padding: 48px 0 64px;
  border-bottom: 1px solid var(--rp-border);
}

.rp-home .rp-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.rp-home .rp-hero-image {
  display: block;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #1E293B, #334155);
  position: relative;
}
.rp-home .rp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-home .rp-hero-text h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 20px 0;
  font-weight: 500;
  color: var(--rp-text);
}
.rp-home .rp-hero-text h1 a {
  color: inherit;
}
.rp-home .rp-hero-text h1 a:hover {
  color: var(--rp-accent);
}

.rp-home .rp-hero-text p {
  font-size: 17px;
  color: var(--rp-muted);
  line-height: 1.55;
  margin: 0 0 24px 0;
  max-width: 540px;
}

.rp-hero-empty {
  border: 1px dashed var(--rp-border-strong);
  background: var(--rp-bg-soft);
  margin: 32px 0;
}

/* ============================================
   SECTION DERNIERS TESTS (grille 4 cartes)
   ============================================ */
.rp-home .rp-reviews {
  padding: 64px 0;
}

.rp-home .rp-section-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--rp-text);
  padding-bottom: 12px;
  margin-bottom: 28px;
}

.rp-home .rp-section-label h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rp-text);
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.rp-home .rp-section-label a {
  font-size: 13px;
  color: var(--rp-muted);
  font-weight: 500;
}
.rp-home .rp-section-label a:hover {
  color: var(--rp-accent);
}

.rp-home .rp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

.rp-home .rp-review-card {
  display: flex;
  flex-direction: column;
}

.rp-home .rp-review-card .rp-thumb {
  display: block;
  aspect-ratio: 4/3;
  background: var(--rp-bg-soft);
  border: 1px solid var(--rp-border);
  border-radius: 3px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.rp-home .rp-review-card .rp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rp-home .rp-review-card:hover .rp-thumb {
  border-color: var(--rp-border-strong);
}

.rp-home .rp-review-card .rp-category {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--rp-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.rp-home .rp-review-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 0 0 8px 0;
}

.rp-home .rp-review-card h3 a {
  color: var(--rp-text);
}
.rp-home .rp-review-card h3 a:hover {
  color: var(--rp-accent);
}

.rp-home .rp-review-card p {
  font-size: 14px;
  color: var(--rp-muted);
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.rp-home .rp-review-card .rp-meta {
  font-size: 12px;
  color: var(--rp-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.rp-home .rp-review-card .rp-score {
  font-weight: 700;
  font-size: 12px;
  color: var(--rp-text);
}
.rp-home .rp-review-card .rp-score span {
  color: var(--rp-subtle);
  font-weight: 400;
}
/* ============================================
   SECTION SPLIT (Enquête + Rail)
   ============================================ */
.rp-home .rp-split {
  padding: 64px 0;
  border-top: 1px solid var(--rp-border);
}

.rp-home .rp-split-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
}

/* Colonne gauche : grosse enquête */
.rp-home .rp-big-feature {
  display: flex;
  flex-direction: column;
}

.rp-home .rp-big-feature .rp-thumb-big {
  display: block;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #475569, #1E293B);
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.rp-home .rp-big-feature .rp-thumb-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-home .rp-big-feature h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 14px 0;
}
.rp-home .rp-big-feature h2 a {
  color: var(--rp-text);
}
.rp-home .rp-big-feature h2 a:hover {
  color: var(--rp-accent);
}

.rp-home .rp-big-feature p {
  font-size: 16px;
  color: var(--rp-muted);
  line-height: 1.55;
  margin: 0 0 16px 0;
  max-width: 600px;
}

/* Colonne droite : rail */
.rp-home .rp-rail h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rp-text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rp-text);
  margin: 0 0 20px 0;
  font-family: 'Inter', sans-serif;
}

.rp-home .rp-rail-story {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rp-border);
}
.rp-home .rp-rail-story:last-child {
  border-bottom: none;
}

.rp-home .rp-rail-thumb {
  display: block;
  aspect-ratio: 1;
  background: var(--rp-bg-soft);
  border: 1px solid var(--rp-border);
  border-radius: 3px;
  overflow: hidden;
}
.rp-home .rp-rail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-home .rp-rail .rp-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rp-accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.rp-home .rp-rail h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 0 0 6px 0;
  font-weight: 500;
}
.rp-home .rp-rail h4 a {
  color: var(--rp-text);
}
.rp-home .rp-rail h4 a:hover {
  color: var(--rp-accent);
}

.rp-home .rp-rail-meta {
  font-size: 11px;
  color: var(--rp-subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}/* ============================================
   SECTION GUIDES (6 cartes catégories)
   ============================================ */
.rp-home .rp-guides {
  padding: 64px 0;
  background: var(--rp-bg-soft);
  margin-top: 32px;
}

.rp-home .rp-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rp-home .rp-guide-card {
  background: #FFFFFF;
  border: 1px solid var(--rp-border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.rp-home .rp-guide-card:hover {
  border-color: var(--rp-text);
  transform: translateY(-2px);
}

.rp-home .rp-guide-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--rp-accent);
}
.rp-home .rp-guide-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.rp-home .rp-guide-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 8px 0;
  color: var(--rp-text);
}

.rp-home .rp-guide-card p {
  font-size: 14px;
  color: var(--rp-muted);
  line-height: 1.5;
  margin: 0 0 18px 0;
  flex: 1;
}

.rp-home .rp-guide-footer {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--rp-muted);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid var(--rp-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rp-home .rp-guide-footer .arrow {
  color: var(--rp-text);
  font-weight: 600;
  transition: color 0.2s;
}

.rp-home .rp-guide-card:hover .rp-guide-footer .arrow {
  color: var(--rp-accent);
}/* ============================================
   SECTION SCORE ROBOPURE (méthodologie)
   ============================================ */
.rp-home .rp-score-section {
  padding: 72px 0;
  border-top: 1px solid var(--rp-border);
  border-bottom: 1px solid var(--rp-border);
}

.rp-home .rp-score-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.rp-home .rp-score-left h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 0 0 20px 0;
  font-weight: 500;
  color: var(--rp-text);
}

.rp-home .rp-score-left p {
  font-size: 16px;
  color: var(--rp-muted);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.rp-home .rp-methodo-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--rp-accent);
  border-bottom: 1px solid var(--rp-accent);
  padding-bottom: 2px;
}
.rp-home .rp-methodo-link:hover {
  color: var(--rp-text);
  border-bottom-color: var(--rp-text);
}

.rp-home .rp-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}

.rp-home .rp-criterion {
  padding: 16px 0;
  border-top: 1px solid var(--rp-border);
}

.rp-home .rp-criterion-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.rp-home .rp-criterion-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--rp-text);
}

.rp-home .rp-criterion-weight {
  font-size: 12px;
  color: var(--rp-subtle);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.rp-home .rp-criterion p {
  font-size: 13px;
  color: var(--rp-muted);
  line-height: 1.45;
  margin: 0;
}

.rp-home .rp-bar {
  height: 3px;
  background: var(--rp-border);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.rp-home .rp-fill {
  height: 100%;
  background: var(--rp-accent);
  border-radius: 2px;
}
/* ============================================
   SECTION CLASSEMENT TOP 5
   ============================================ */
.rp-home .rp-rankings {
  padding: 64px 0;
}

.rp-home .rp-ranking-intro {
  max-width: 680px;
  margin-bottom: 32px;
}

.rp-home .rp-ranking-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rp-text);
  border-bottom: 2px solid var(--rp-text);
  padding-bottom: 12px;
  margin-bottom: 24px;
  display: block;
}

.rp-home .rp-ranking-intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 14px 0;
  font-weight: 500;
  color: var(--rp-text);
}

.rp-home .rp-ranking-intro p {
  font-size: 16px;
  color: var(--rp-muted);
  margin: 0;
}

.rp-home .rp-rank-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  border-top: 1px solid var(--rp-border);
}

.rp-home .rp-rank-table tr {
  border-bottom: 1px solid var(--rp-border);
  transition: background 0.15s;
}
.rp-home .rp-rank-table tr:hover {
  background: var(--rp-bg-soft);
}

.rp-home .rp-rank-table td {
  padding: 22px 16px;
  vertical-align: middle;
}

.rp-home .rp-rank-pos {
  width: 50px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--rp-text);
  font-variant-numeric: tabular-nums;
}

.rp-home .rp-rank-thumb {
  width: 84px;
}
.rp-home .rp-rank-thumb a {
  display: block;
  aspect-ratio: 1;
}
.rp-home .rp-rank-thumb img,
.rp-home .rp-rank-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--rp-bg-soft);
  border: 1px solid var(--rp-border);
  border-radius: 3px;
  object-fit: cover;
  display: block;
}

.rp-home .rp-rank-main {
  min-width: 260px;
}

.rp-home .rp-rank-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--rp-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.rp-home .rp-rank-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  font-weight: 500;
}
.rp-home .rp-rank-name a {
  color: var(--rp-text);
}
.rp-home .rp-rank-name a:hover {
  color: var(--rp-accent);
}

.rp-home .rp-rank-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.rp-home .rp-badge {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid;
}
.rp-home .badge-editor { background: #FEF9C3; color: #713F12; border-color: #FDE68A; }
.rp-home .badge-reco   { background: #EFF6FF; color: #1E3A8A; border-color: #BFDBFE; }
.rp-home .badge-value  { background: #F0FDF4; color: #14532D; border-color: #BBF7D0; }
.rp-home .badge-pets   { background: #F5F3FF; color: #5B21B6; border-color: #DDD6FE; }

.rp-home .rp-rank-score {
  text-align: center;
  width: 120px;
}
.rp-home .rp-rank-score-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  color: var(--rp-text);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.rp-home .rp-rank-score-label {
  font-size: 10px;
  color: var(--rp-subtle);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.rp-home .rp-rank-price {
  text-align: right;
  width: 140px;
}
.rp-home .rp-rank-price-label {
  font-size: 11px;
  color: var(--rp-subtle);
  margin-bottom: 3px;
}
.rp-home .rp-rank-price-value {
  font-weight: 700;
  font-size: 18px;
  color: var(--rp-text);
  letter-spacing: -0.3px;
  font-variant-numeric: tabular-nums;
}

.rp-home .rp-rank-cta {
  width: 140px;
  text-align: right;
}
.rp-home .rp-rank-cta a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--rp-text);
  color: var(--rp-text);
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.15s;
}
.rp-home .rp-rank-cta a:hover {
  background: var(--rp-text);
  color: #FFFFFF;
}
/* ============================================
   SECTION BANDEAU MARQUES
   ============================================ */
.rp-home .rp-brands {
  padding: 48px 0;
  border-top: 1px solid var(--rp-border);
  background: var(--rp-bg-soft);
}

.rp-home .rp-brands-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--rp-muted);
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.rp-home .rp-brands-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.rp-home .rp-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--rp-muted);
  padding: 8px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: color 0.15s;
}
.rp-home .rp-brand:hover {
  color: var(--rp-text);
}

.rp-home .rp-brand-count {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  color: var(--rp-subtle);
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   SECTION NEWSLETTER
   ============================================ */
.rp-home .rp-newsletter {
  padding: 72px 0;
  border-top: 1px solid var(--rp-border);
}

.rp-home .rp-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rp-home .rp-newsletter-text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 0 0 12px 0;
  font-weight: 500;
  color: var(--rp-text);
}

.rp-home .rp-newsletter-text p {
  font-size: 16px;
  color: var(--rp-muted);
  max-width: 440px;
  margin: 0;
}

.rp-home .rp-newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.rp-home .rp-newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--rp-border-strong);
  border-radius: 3px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.rp-home .rp-newsletter-form input:focus {
  border-color: var(--rp-text);
}

.rp-home .rp-newsletter-form button {
  padding: 14px 22px;
  background: var(--rp-text);
  color: #FFFFFF;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.rp-home .rp-newsletter-form button:hover {
  background: #1E293B;
}

.rp-home .rp-newsletter-tiny {
  font-size: 12px;
  color: var(--rp-subtle);
}
/* ============================================================================
   PAGE ÉDITORIALE ROBOPURE
   Template : page.php — appliqué à toutes les pages standards
   ============================================================================ */

.rp-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--rp-text);
  background: #FFFFFF;
}

/* === Hero header === */
.rp-page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--rp-border);
  background: #FFFFFF;
}

.rp-page-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.rp-page-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--rp-accent);
  margin-bottom: 18px;
}

.rp-page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.8px;
  font-weight: 500;
  color: var(--rp-text);
  margin: 0 0 20px 0;
  max-width: 900px;
}

.rp-page-chapo {
  font-size: 21px;
  line-height: 1.5;
  color: var(--rp-muted);
  margin: 0;
  max-width: 760px;
  font-weight: 400;
}

/* === Corps : colonne lisible === */
.rp-page-body {
  padding: 64px 0 96px;
  background: #FFFFFF;
}

.rp-page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  font-size: 18px;
  line-height: 1.75;
  color: #334155;
}

/* Paragraphes */
.rp-page-content p {
  margin: 0 0 24px 0;
}

/* Premier paragraphe : un peu plus gros (lead) */
.rp-page-content > p:first-of-type {
  font-size: 19px;
  color: var(--rp-text);
}

/* Liens dans le corps */
.rp-page-content a {
  color: var(--rp-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.rp-page-content a:hover {
  color: var(--rp-text);
}

/* Titres */
.rp-page-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  font-weight: 500;
  color: var(--rp-text);
  margin: 56px 0 16px 0;
}

.rp-page-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.4px;
  font-weight: 500;
  color: var(--rp-text);
  margin: 40px 0 14px 0;
}

.rp-page-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rp-text);
  margin: 32px 0 12px 0;
}

/* Premier titre : pas de marge top excessive */
.rp-page-content > h2:first-child,
.rp-page-content > h3:first-child {
  margin-top: 0;
}

/* Citations */
.rp-page-content blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--rp-accent);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--rp-text);
}
.rp-page-content blockquote p {
  margin: 0;
}

/* Listes */
.rp-page-content ul,
.rp-page-content ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
}
.rp-page-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}
.rp-page-content ul li::marker {
  color: var(--rp-accent);
  font-size: 1.1em;
}
.rp-page-content ol li::marker {
  color: var(--rp-muted);
  font-weight: 700;
}

/* Strong et emphasis */
.rp-page-content strong {
  font-weight: 700;
  color: var(--rp-text);
}
.rp-page-content em {
  font-style: italic;
}

/* Code inline */
.rp-page-content code {
  background: var(--rp-bg-soft);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.92em;
  font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace;
  color: var(--rp-text);
}

/* Bloc de code */
.rp-page-content pre {
  background: var(--rp-bg-soft);
  padding: 20px 24px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid var(--rp-border);
}
.rp-page-content pre code {
  background: none;
  padding: 0;
}

/* HR (séparateur) */
.rp-page-content hr {
  border: none;
  height: 1px;
  background: var(--rp-border);
  margin: 56px auto;
  width: 80px;
}

/* Tableaux */
.rp-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
}
.rp-page-content th,
.rp-page-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rp-border);
}
.rp-page-content th {
  font-weight: 600;
  color: var(--rp-text);
  border-bottom: 2px solid var(--rp-text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Images dans le corps */
.rp-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 24px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .rp-page-hero {
    padding: 56px 0 40px;
  }
  .rp-page-title {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .rp-page-chapo {
    font-size: 17px;
  }
  .rp-page-body {
    padding: 40px 0 64px;
  }
  .rp-page-content {
    font-size: 17px;
    line-height: 1.7;
  }
  .rp-page-content > p:first-of-type {
    font-size: 18px;
  }
  .rp-page-content h2 {
    font-size: 26px;
    margin: 40px 0 12px 0;
  }
  .rp-page-content h3 {
    font-size: 21px;
    margin: 32px 0 12px 0;
  }
  .rp-page-content blockquote {
    font-size: 18px;
    padding-left: 18px;
  }
}
/* ============================================
   RESPONSIVE
   ============================================ */
/* ========================================
   FOOTER ROBOPURE (toutes pages)
   ======================================== */
.rp-footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 64px 0 28px;
  font-family: 'Inter', sans-serif;
}
.rp-footer * { box-sizing: border-box; }

.rp-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.rp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1E293B;
}

.rp-footer-brand .rp-footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1;
}
.rp-footer-brand .rp-footer-logo span {
  color: #60A5FA;
}
.rp-footer-brand p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0 0 22px 0;
  max-width: 340px;
}

.rp-footer-social {
  display: flex;
  gap: 8px;
}
.rp-footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1E293B;
  border-radius: 6px;
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.15s;
}
.rp-footer-social a:hover {
  background: #60A5FA;
  border-color: #60A5FA;
  color: #0F172A;
}

.rp-footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #F8FAFC;
  font-weight: 700;
  margin: 0 0 18px 0;
}

.rp-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rp-footer-menu li {
  margin-bottom: 9px;
  list-style: none;
}
.rp-footer-menu a {
  color: #94A3B8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.rp-footer-menu a:hover {
  color: #F8FAFC;
}

.rp-footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: #64748B;
}
.rp-footer-copy {
  color: #94A3B8;
}
.rp-footer-mini {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.rp-footer-mini a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.15s;
}
.rp-footer-mini a:hover {
  color: #F8FAFC;
}
/* ============================================================================
   HEADER ROBOPURE (toutes pages)
   Style maquette V2
   ============================================================================ */

/* === TOP BAR === */
.rp-topbar {
  background: #FAFAFA;
  border-bottom: 1px solid var(--rp-border);
  font-size: 12px;
  color: var(--rp-muted);
  font-family: 'Inter', sans-serif;
}
.rp-topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rp-topbar-date {
  letter-spacing: 0.3px;
}
.rp-topbar-links {
  display: flex;
  gap: 20px;
}
.rp-topbar-links a {
  color: var(--rp-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.rp-topbar-links a:hover {
  color: var(--rp-text);
}

/* === HEADER PRINCIPAL === */
.rp-site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--rp-border);
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: 'Inter', sans-serif;
}
.rp-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Logo */
.rp-logo-wrap {
  justify-self: start;
}
.rp-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1;
  color: var(--rp-text);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.rp-logo span {
  color: var(--rp-accent);
}
.rp-logo:hover {
  color: var(--rp-accent);
}
.rp-logo:hover span {
  color: var(--rp-accent);
}

/* Navigation */
.rp-main-nav {
  display: flex;
  gap: 2px;
  justify-self: center;
  align-items: center;
}
.rp-main-nav a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  letter-spacing: -0.1px;
  color: var(--rp-text);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.rp-main-nav a:hover {
  color: var(--rp-accent);
}
/* WordPress wraps menu items in <ul><li> via wp_nav_menu */
.rp-site-header .rp-main-nav ul,
.rp-site-header .rp-main-nav ul.menu,
.rp-site-header nav.rp-main-nav > ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 2px !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.rp-site-header .rp-main-nav li,
.rp-site-header .rp-main-nav ul li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
}
.rp-main-nav li {
  list-style: none;
  margin: 0;
}

/* Right side */
.rp-header-right {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}
.rp-header-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rp-muted);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s;
}
.rp-header-icon:hover {
  background: var(--rp-bg-soft);
  color: var(--rp-text);
}

.rp-header-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  background: var(--rp-text);
  color: #FFFFFF !important;
  border-radius: 6px;
  letter-spacing: 0.1px;
  text-decoration: none;
  transition: background 0.15s;
}
.rp-header-cta:hover {
  background: #1E293B;
  color: #FFFFFF !important;
}
/* ============================================================================
   BARRE DE RECHERCHE DÉROULANTE
   ============================================================================ */

/* Bouton loupe */
.rp-search-toggle {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--rp-muted);
  border-radius: 6px;
  transition: all 0.15s;
  font-family: inherit;
  box-shadow: none !important;
}

.rp-search-toggle:hover {
  background: var(--rp-bg-soft) !important;
  color: var(--rp-text);
}

.rp-search-toggle .rp-search-icon-close {
  display: none;
}

.rp-search-toggle.is-active .rp-search-icon-open {
  display: none;
}

.rp-search-toggle.is-active .rp-search-icon-close {
  display: block;
}

.rp-search-toggle.is-active {
  background: var(--rp-bg-soft) !important;
  color: var(--rp-text);
}

/* Barre cachée par défaut */
.rp-search-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--rp-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.rp-search-bar.is-open {
  max-height: 220px;
  padding: 24px 0 28px;
}

.rp-search-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.rp-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--rp-bg-soft);
  border: 1px solid var(--rp-border);
  border-radius: 6px;
  padding: 4px 4px 4px 16px;
}

.rp-search-form:focus-within {
  border-color: var(--rp-accent);
  background: #FFFFFF;
}

.rp-search-form-icon {
  color: var(--rp-muted);
  flex-shrink: 0;
}

.rp-search-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 12px 0 !important;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--rp-text);
  box-shadow: none !important;
}

.rp-search-input::placeholder {
  color: var(--rp-subtle);
}

.rp-search-submit {
  background: var(--rp-text) !important;
  color: #FFFFFF !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none !important;
}

.rp-search-submit:hover {
  background: #1E293B !important;
}

.rp-search-suggestions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.rp-search-suggestions-label {
  font-size: 12px;
  color: var(--rp-subtle);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.rp-search-suggestions a {
  font-size: 13px;
  color: var(--rp-muted);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--rp-border);
  border-radius: 4px;
  transition: all 0.15s;
}

.rp-search-suggestions a:hover {
  color: var(--rp-text);
  border-color: var(--rp-text);
  background: #FFFFFF;
}

@media (max-width: 640px) {
  .rp-search-bar.is-open {
    max-height: 260px;
    padding: 16px 0 20px;
  }

  .rp-search-form {
    gap: 8px;
  }

  .rp-search-input {
    font-size: 14px;
  }

  .rp-search-submit {
    padding: 9px 14px !important;
    font-size: 12px;
  }

  .rp-search-suggestions {
    margin-top: 10px;
    gap: 8px;
  }

  .rp-search-suggestions-label {
    width: 100%;
    font-size: 11px;
  }
}
/* === Responsive header === */
@media (max-width: 900px) {
  .rp-header-inner {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
  .rp-main-nav {
    display: none;
  }
  .rp-topbar-date {
    font-size: 11px;
  }
  .rp-topbar-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .rp-header-inner {
    padding: 16px 20px;
  }
  .rp-logo {
    font-size: 24px;
  }
  .rp-header-cta {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 1000px) {
  .rp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .rp-footer-grid {
    grid-template-columns: 1fr;
  }
  .rp-footer-bottom {
    justify-content: flex-start;
  }
}
@media (max-width: 1000px) {
  .rp-home .rp-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rp-home .rp-hero-text h1 {
    font-size: 32px;
  }
  .rp-home .rp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rp-home .rp-split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rp-home .rp-big-feature h2 {
    font-size: 26px;
  }
  .rp-home .rp-guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rp-home .rp-rank-table td {
    padding: 14px 6px;
  }
.rp-home .rp-rank-price,
.rp-home .rp-rank-cta {
  display: none;
}

.rp-home .rp-newsletter-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}
}

@media (max-width: 640px) {
  .rp-home .rp-reviews-grid {
    grid-template-columns: 1fr;
  }
  .rp-home .rp-guides-grid {
    grid-template-columns: 1fr;
  }.rp-home .rp-score-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rp-home .rp-score-left h2 {
    font-size: 28px;
  }
  .rp-home .rp-criteria {
    grid-template-columns: 1fr;
  }
  .rp-home .rp-rank-thumb {
    display: none;
  }
  .rp-home .rp-rank-pos {
    width: 40px;
    font-size: 22px;
   }
}
 /* FIX FINAL — Bouton loupe header RoboPure */
.rp-header-right .rp-search-toggle {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #0F172A !important;
  opacity: 1 !important;
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

.rp-header-right .rp-search-toggle svg {
  display: block !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

.rp-header-right .rp-search-toggle:hover {
  background: #F8FAFC !important;
  color: #0F172A !important;
}

.rp-header-right .rp-search-toggle .rp-search-icon-close {
  display: none !important;
}

.rp-header-right .rp-search-toggle.is-active .rp-search-icon-open {
  display: none !important;
}

.rp-header-right .rp-search-toggle.is-active .rp-search-icon-close {
  display: block !important;
}

.rp-header-right .rp-search-toggle.is-active {
  background: #F8FAFC !important;
  color: #0F172A !important;
}
/* FIX — Brevo compatible + style RoboPure */
.rp-home .rp-brevo-clean,
.rp-home .rp-brevo-clean * {
  box-sizing: border-box;
}

.rp-home .rp-brevo-clean #sib-container,
.rp-home .rp-brevo-clean .sib-form-container {
  background: transparent !important;
  border: none !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.rp-home .rp-brevo-clean .sib-form-block,
.rp-home .rp-brevo-clean .sib-input {
  padding: 0 !important;
  margin: 0 !important;
}

.rp-home .rp-newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.rp-home .rp-newsletter-input-wrap {
  flex: 1;
  min-width: 260px;
}

.rp-home .rp-newsletter-button-wrap {
  flex: 0 0 auto;
}

.rp-home .rp-newsletter-input {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1px solid var(--rp-border-strong) !important;
  border-radius: 3px !important;
  font-size: 15px !important;
  font-family: 'Inter', sans-serif !important;
  outline: none !important;
  color: var(--rp-text) !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
  height: auto !important;
}

.rp-home .rp-newsletter-input:focus {
  border-color: var(--rp-text) !important;
}

.rp-home .rp-newsletter-submit {
  padding: 14px 22px !important;
  background: var(--rp-text) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 3px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1.2 !important;
  height: auto !important;
  box-shadow: none !important;
}

.rp-home .rp-newsletter-submit:hover {
  background: #1E293B !important;
}

.rp-home .rp-newsletter-submit svg {
  display: none !important;
}

.rp-home .rp-newsletter-tiny {
  width: 100%;
  font-size: 12px;
  color: var(--rp-subtle);
  line-height: 1.45;
  margin-top: 2px;
}

.rp-home .rp-newsletter-field-error {
  width: 100%;
  display: block;
  font-size: 12px !important;
  color: #991B1B !important;
  background: transparent !important;
  border: none !important;
  padding: 4px 0 0 0 !important;
  margin: 0 !important;
  font-family: 'Inter', sans-serif !important;
}

.rp-home .rp-newsletter-message {
  display: none;
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.rp-home .rp-newsletter-success {
  color: #14532D;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.rp-home .rp-newsletter-error {
  color: #7F1D1D;
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.rp-home .input--hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .rp-home .rp-newsletter-form {
    flex-direction: column;
  }

  .rp-home .rp-newsletter-input-wrap,
  .rp-home .rp-newsletter-button-wrap,
  .rp-home .rp-newsletter-input,
  .rp-home .rp-newsletter-submit {
    width: 100% !important;
  }
}/* Message confirmation newsletter local */
.rp-home .rp-newsletter-local-success {
  width: 100%;
  font-size: 13px;
  line-height: 1.45;
  color: #14532D;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 12px;
}


/* ==========================================================
   PATCH FINAL PROPRE — Grille + bandeaux sans overflow
   À garder en bas du fichier. Remplace tous les anciens FIX guides/marques.
   ========================================================== */

/* Sécurité : empêche une micro-scroll horizontale sans modifier la mise en page */
html,
body {
  overflow-x: hidden;
}

/* Grille unique : header, recherche, homepage, footer */
.rp-topbar-inner,
.rp-header-inner,
.rp-search-inner,
.rp-footer-inner,
.rp-home .rp-container {
  max-width: 1240px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

/* Header : structure stable, sans déplacement forcé */
.rp-header-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 20px !important;
}
.rp-logo-wrap { justify-self: start !important; }
.rp-main-nav { justify-self: center !important; }
.rp-header-right { justify-self: end !important; }

/* Les sections full-bleed ne doivent jamais agrandir la page */
.rp-home .rp-guides,
.rp-home .rp-brands {
  position: relative !important;
  left: auto !important;
  width: auto !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #F8FAFC !important;
  border: none !important;
  box-shadow: 0 0 0 100vmax #F8FAFC !important;
  clip-path: inset(0 -100vmax) !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

/* Espacements bandeaux */
.rp-home .rp-guides {
  padding: 64px 0 !important;
  margin-top: 32px !important;
}
.rp-home .rp-brands {
  padding: 48px 0 !important;
}

/* Une seule ligne fine en haut/bas des bandeaux, sans double bordure */
.rp-home .rp-guides::before,
.rp-home .rp-guides::after,
.rp-home .rp-brands::before,
.rp-home .rp-brands::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  height: 1px !important;
  background: #E2E8F0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
.rp-home .rp-guides::before,
.rp-home .rp-brands::before { top: 0 !important; }
.rp-home .rp-guides::after,
.rp-home .rp-brands::after { bottom: 0 !important; }

/* On retire les bordures des sections voisines qui créaient les doubles traits */
.rp-home .rp-score-section {
  border-top: none !important;
}
.rp-home .rp-newsletter {
  border-top: none !important;
}

/* Conteneurs internes : aucun décalage, aucune bordure parasite */
.rp-home .rp-guides > .rp-container,
.rp-home .rp-brands > .rp-container {
  max-width: 1240px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Grilles internes : restent dans le container, sans marge latérale parasite */
.rp-home .rp-guides-grid,
.rp-home .rp-reviews-grid,
.rp-home .rp-score-grid,
.rp-home .rp-newsletter-grid,
.rp-home .rp-brands-list,
.rp-home .rp-rank-table,
.rp-home .rp-split-grid,
.rp-home .rp-hero-grid {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Guides : style maquette, sans toucher à la largeur globale */
.rp-home .rp-guides-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 28px !important;
}
.rp-home .rp-guide-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 4px !important;
  padding: 28px 28px 24px !important;
  min-height: 240px !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: inherit !important;
}
.rp-home .rp-guide-card:hover {
  border-color: #0F172A !important;
  transform: translateY(-2px) !important;
}

/* Marques : on garde le style existant, juste aucune bordure interne */
.rp-home .rp-brands-list,
.rp-home .rp-brands .rp-container {
  border: none !important;
  box-shadow: none !important;
}

@media (max-width: 1000px) {
  .rp-home .rp-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .rp-topbar-inner,
  .rp-header-inner,
  .rp-search-inner,
  .rp-footer-inner,
  .rp-home .rp-container,
  .rp-home .rp-guides > .rp-container,
  .rp-home .rp-brands > .rp-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .rp-home .rp-guides-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ==========================================================
   FIX — Marques sur une seule ligne desktop
   ========================================================== */

.rp-home .rp-brands-list {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: start !important;
  width: 100% !important;
}

.rp-home .rp-brand {
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center !important;
  align-items: center !important;
}

/* Tablette */
@media (max-width: 1000px) {
  .rp-home .rp-brands-list {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    row-gap: 24px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .rp-home .rp-brands-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 22px !important;
  }
}
/* ============================================================================
   TEMPLATE ARTICLE ROBO PURE
   ============================================================================ */

.rp-article {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--rp-text);
  background: #FFFFFF;
}

.rp-article-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.rp-article-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--rp-border);
}

.rp-article-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--rp-accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.rp-article-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.8px;
  font-weight: 500;
  max-width: 920px;
  margin: 0 0 22px;
  color: var(--rp-text);
}

.rp-article-chapo {
  font-size: 21px;
  line-height: 1.5;
  color: var(--rp-muted);
  max-width: 780px;
  margin: 0 0 24px;
}

.rp-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rp-subtle);
  font-size: 13px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.rp-article-meta strong {
  color: var(--rp-text);
  font-weight: 500;
}

.rp-article-featured {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--rp-bg-soft);
  border: 1px solid var(--rp-border);
}

.rp-article-featured img {
  width: 100%;
  height: auto;
  display: block;
}

.rp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 72px;
  padding-top: 56px;
  padding-bottom: 96px;
  align-items: start;
}

.rp-article-content {
  font-size: 18px;
  line-height: 1.75;
  color: #334155;
}

.rp-article-content p {
  margin: 0 0 24px;
}

.rp-article-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.8px;
  font-weight: 500;
  color: var(--rp-text);
  margin: 56px 0 16px;
}

.rp-article-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--rp-text);
  margin: 40px 0 14px;
}

.rp-article-content ul,
.rp-article-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.rp-article-content li {
  margin-bottom: 10px;
}

.rp-article-content a {
  color: var(--rp-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rp-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.rp-affiliate-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--rp-muted);
  background: var(--rp-bg-soft);
  border: 1px solid var(--rp-border);
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 32px;
}

.rp-affiliate-note strong {
  color: var(--rp-text);
}

.rp-review-box {
  border: 1px solid var(--rp-border);
  background: #FFFFFF;
  border-radius: 4px;
  padding: 28px;
  margin: 0 0 40px;
}

.rp-review-box-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.rp-review-box-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--rp-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.rp-review-box h2 {
  margin: 0;
  font-size: 30px;
}

.rp-review-score {
  min-width: 110px;
  text-align: center;
}

.rp-review-score strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  line-height: 1;
  color: var(--rp-text);
}

.rp-review-score span {
  color: var(--rp-subtle);
  font-size: 15px;
}

.rp-review-verdict {
  font-size: 17px;
  line-height: 1.6;
  color: var(--rp-muted);
  margin-bottom: 20px;
}

.rp-review-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-top: 1px solid var(--rp-border);
  padding-top: 18px;
}

.rp-review-facts span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--rp-subtle);
  font-weight: 700;
  margin-bottom: 4px;
}

.rp-review-facts strong {
  font-size: 16px;
  color: var(--rp-text);
}

.rp-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--rp-border);
  padding-top: 22px;
}

.rp-pros-cons h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 10px;
  font-weight: 700;
}

.rp-pros-cons p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 8px;
}

.rp-article-sidebar {
  position: sticky;
  top: 110px;
}

.rp-sidebar-card {
  border: 1px solid var(--rp-border);
  border-radius: 4px;
  padding: 22px;
  margin-bottom: 18px;
  background: #FFFFFF;
}

.rp-sidebar-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 500;
}

.rp-sidebar-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--rp-muted);
  margin: 0 0 12px;
}

.rp-sidebar-card a {
  font-size: 14px;
  color: var(--rp-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1000px) {
  .rp-article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rp-article-sidebar {
    position: static;
  }

  .rp-article-title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .rp-article-container {
    padding: 0 20px;
  }

  .rp-article-hero {
    padding: 48px 0 36px;
  }

  .rp-article-title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .rp-article-chapo {
    font-size: 17px;
  }

  .rp-article-content {
    font-size: 17px;
  }

  .rp-review-box-head,
  .rp-pros-cons,
  .rp-review-facts {
    grid-template-columns: 1fr;
    display: grid;
  }
}
/* ============================================================================
   FIX ARTICLE — Image principale moins massive
   ============================================================================ */

.rp-article-featured {
  max-width: 960px !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 540px !important;
  margin-top: 32px !important;
  margin-left: 0 !important;
  margin-right: auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 4px !important;
  overflow: hidden !important;
}

.rp-article-featured img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* A001 - boutons CTA cohérents RoboPure */
body.single-post.postid-275 .rp-button,
body.single-post.postid-275 .rp-cta,
body.single-post.postid-275 a.rp-button,
body.single-post.postid-275 table a {
  background: #071126 !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 10px 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block !important;
}

body.single-post.postid-275 .rp-button:hover,
body.single-post.postid-275 .rp-cta:hover,
body.single-post.postid-275 table a:hover {
  background: #1237ff !important;
  color: #ffffff !important;
}
/* A001 - espace image hero article */
body.single-post.postid-275 .rp-figure {
  margin-bottom: 42px !important;
}

body.single-post.postid-275 .rp-figure img {
  max-height: 520px !important;
  object-fit: cover !important;
}
/* =========================================================
   Archives / catégories RoboPure
   ========================================================= */

.rp-archive-main {
  background: #fff;
  padding: 72px 20px 96px;
}

.rp-archive-container {
  max-width: 1040px;
  margin: 0 auto;
}

.rp-archive-header {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid #dbe3ef;
}

.rp-archive-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563ff;
}

.rp-archive-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  color: #070d1f;
}

.rp-archive-description {
  max-width: 680px;
  margin-top: 18px;
  color: #536887;
  font-size: 17px;
  line-height: 1.65;
}

.rp-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.rp-archive-card {
  border: 1px solid #dbe3ef;
  background: #fff;
}

.rp-archive-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.rp-archive-card-image {
  aspect-ratio: 16 / 10;
  background: #f3f6fa;
  overflow: hidden;
}

.rp-archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-archive-card-content {
  padding: 24px 26px 28px;
}

.rp-archive-card-meta {
  margin: 0 0 12px;
  font-size: 12px;
  color: #7d8faa;
}

.rp-archive-card-title {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
  color: #071126;
}

.rp-archive-card-excerpt {
  margin: 0 0 18px;
  color: #536887;
  font-size: 15px;
  line-height: 1.6;
}

.rp-archive-card-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563ff;
}

.rp-archive-pagination {
  margin-top: 48px;
}

.rp-archive-empty {
  padding: 48px;
  border: 1px solid #dbe3ef;
  background: #f7f9fc;
}

@media (max-width: 767px) {
  .rp-archive-main {
    padding: 48px 18px 72px;
  }

  .rp-archive-grid {
    grid-template-columns: 1fr;
  }

  .rp-archive-card-title {
    font-size: 24px;
  }
}
/* =========================================================
   ROBO PURE — SINGLE ARTICLES
   Articles comparatifs/guides pleine largeur
   ========================================================= */

.rp-single {
  background: #fff;
}

.rp-article-container {
  width: min(100%, 980px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.rp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px) 300px;
  gap: 48px;
  align-items: start;
}

.rp-article-layout-full {
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
}

.rp-single--full .rp-article-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.rp-single--full .rp-article-content > .rp-article {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.rp-single--full .rp-affiliate-note,
.rp-single--full .rp-review-box,
.rp-single--full .rp-article-sidebar {
  display: none !important;
}

.rp-single--with-sidebar .rp-article-content {
  min-width: 0;
}

.rp-article-sidebar {
  position: sticky;
  top: 96px;
}

@media (max-width: 980px) {
  .rp-article-layout {
    display: block;
  }

  .rp-article-sidebar {
    display: none;
  }

  .rp-article-container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* Harmonisation boutons CTA articles RoboPure */
.rp-article .rp-cta{
  background:#0f172a!important;
  color:#fff!important;
  border-radius:6px!important;
  padding:10px 16px!important;
  box-shadow:none!important;
  font-size:14px!important;
  font-weight:800!important;
}

.rp-article .rp-cta:hover{
  background:#1e293b!important;
  text-decoration:none!important;
}