/* ============================================================
   savon-de-marseille.fr — style.css
   Palette : Ocre #C8A96E | Beige #F5F0E8 | Olive #6B7B3A
             Brun #3D2B1F | Blanc cassé #FDFAF5
   ============================================================ */

/* --- Reset minimal ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  background-color: #F5F0E8;
  color: #3D2B1F;
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #6B7B3A; text-decoration: none; transition: color .2s; }
a:hover { color: #C8A96E; }
ul { list-style: none; }

/* --- Variables CSS ---------------------------------------- */
:root {
  --ocre:       #C8A96E;
  --ocre-dark:  #b0924f;
  --beige:      #F5F0E8;
  --olive:      #6B7B3A;
  --brun:       #3D2B1F;
  --blanc:      #FDFAF5;
  --shadow:     0 2px 12px rgba(61,43,31,.10);
  --shadow-hover: 0 6px 24px rgba(61,43,31,.18);
  --radius:     6px;
  --max-width:  1200px;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Lato', 'Open Sans', sans-serif;
  --transition: .25s ease;
}

/* --- Typographie ------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  color: var(--brun);
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .6rem; }
p  { margin-bottom: 1rem; }
strong { font-weight: 700; }

/* --- Layout helpers --------------------------------------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 4rem 0; }
.section--alt { background: var(--blanc); }
.text-center { text-align: center; }
.flex       { display: flex; }
.grid       { display: grid; }

/* --- Bouton CTA ------------------------------------------ */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  background: var(--ocre);
  color: var(--brun);
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 4px;
  border: 2px solid var(--ocre);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  font-size: .95rem;
  letter-spacing: .03em;
}
.btn:hover {
  background: var(--ocre-dark);
  border-color: var(--ocre-dark);
  color: var(--blanc);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--ocre);
  border-color: var(--ocre);
}
.btn--outline:hover {
  background: var(--ocre);
  color: var(--brun);
}
.btn--olive {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--blanc);
}
.btn--olive:hover {
  background: #55622e;
  border-color: #55622e;
  color: var(--blanc);
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  background: var(--blanc);
  border-bottom: 2px solid var(--ocre);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(61,43,31,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo img, .nav-logo svg { height: 48px; width: auto; }
.nav-logo-text {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--brun);
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: .7rem; color: var(--olive); font-family: var(--font-body); letter-spacing: .08em; text-transform: uppercase; font-weight: 400; }

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--brun);
  letter-spacing: .02em;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--olive);
  border-bottom-color: var(--ocre);
}
.nav-menu .btn { border-bottom: none; padding: .5rem 1.2rem; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brun);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Breadcrumb */
.breadcrumb {
  background: var(--beige);
  border-bottom: 1px solid rgba(200,169,110,.3);
  font-size: .82rem;
  padding: .5rem 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  list-style: none;
}
.breadcrumb li { display: flex; align-items: center; gap: .3rem; color: #8a7060; }
.breadcrumb li + li::before { content: '›'; color: var(--ocre); }
.breadcrumb a { color: var(--olive); }
.breadcrumb li:last-child { color: var(--brun); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brun);
  color: rgba(253,250,245,.8);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand .footer-logo-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--ocre);
  margin-bottom: .5rem;
}
.footer-brand p { font-size: .88rem; color: rgba(253,250,245,.65); }
.footer-nav h4 { color: var(--ocre); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { color: rgba(253,250,245,.75); font-size: .9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--ocre); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(200,169,110,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(253,250,245,.5);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-tagline { font-style: italic; color: rgba(200,169,110,.7); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(rgba(61,43,31,0.6), rgba(61,43,31,0.55)), url('/img/hero-homepage.jpg');
  background-size: cover;
  background-position: center;
  color: var(--blanc);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A96E' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.hero h1 { color: var(--blanc); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.25rem; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(253,250,245,.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,169,110,.2);
  border: 1px solid rgba(200,169,110,.4);
  color: var(--ocre);
  padding: .3rem .9rem;
  border-radius: 20px;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CARDS (articles & fabricants)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--blanc);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(61,43,31,.08);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200,184,148,.25);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(61,43,31,.16);
  transform: translateY(-5px);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 100%);
}
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e8dcc8 0%, #c8b894 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.card-category { font-size: .72rem; font-weight: 700; color: var(--olive); letter-spacing: .08em; text-transform: uppercase; background: rgba(107,130,70,.1); border-radius: 20px; padding: .2rem .7rem; width: fit-content; }
.card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.card h3 a { color: var(--brun); }
.card h3 a:hover { color: var(--olive); }
.card-excerpt { font-size: .9rem; color: #6b5a4e; line-height: 1.65; flex: 1; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-meta { font-size: .78rem; color: #9a8070; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.card-meta-dot { color: var(--ocre); }

/* Fabricant card specifics */
.card-fabricant .card-city {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--olive);
  margin-bottom: .5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge--olive  { background: rgba(107,123,58,.12);  color: var(--olive); border: 1px solid rgba(107,123,58,.3); }
.badge--ocre   { background: rgba(200,169,110,.15); color: #8a6830;      border: 1px solid rgba(200,169,110,.4); }
.badge--brun   { background: rgba(61,43,31,.08);    color: var(--brun);  border: 1px solid rgba(61,43,31,.2); }

/* ============================================================
   SECTION VRAI vs FAUX
   ============================================================ */
.vrai-faux {
  background: var(--brun);
  color: var(--blanc);
  padding: 4rem 0;
}
.vrai-faux h2 { color: var(--ocre); }
.vrai-faux p { color: rgba(253,250,245,.85); }
.stat-highlight {
  display: inline-block;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--ocre);
  font-weight: 700;
  line-height: 1;
}
.stat-block { text-align: center; }
.stat-block p { font-size: .85rem; color: rgba(253,250,245,.65); margin-top: .3rem; }
.stats-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* ============================================================
   ARTICLE
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.article-header { margin-bottom: 2rem; }
.article-header h1 { margin-bottom: .75rem; }
.article-meta { display: flex; gap: 1.5rem; font-size: .85rem; color: #8a7060; flex-wrap: wrap; align-items: center; margin-bottom: 1.5rem; }
.article-meta svg { width: 16px; height: 16px; }
.article-body h2 { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(200,169,110,.2); }
.article-body h3 { margin-top: 1.75rem; color: var(--olive); }
.article-body blockquote {
  border-left: 4px solid var(--ocre);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(200,169,110,.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #5a4030;
}
.article-toc {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(200,169,110,.25);
}
.article-toc h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--olive); margin-bottom: .75rem; }
.article-toc ol { list-style: none; counter-reset: toc; }
.article-toc li { counter-increment: toc; display: flex; gap: .5rem; margin-bottom: .4rem; font-size: .88rem; }
.article-toc li::before { content: counter(toc) "."; color: var(--ocre); font-weight: 700; min-width: 1.2rem; }
.article-toc a { color: var(--brun); }
.article-toc a:hover { color: var(--olive); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.sidebar-widget h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--olive);
  border-bottom: 1px solid rgba(200,169,110,.2);
  padding-bottom: .6rem;
  margin-bottom: 1rem;
}
.sidebar-list li { padding: .5rem 0; border-bottom: 1px solid rgba(200,169,110,.1); font-size: .88rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--brun); }
.sidebar-list a:hover { color: var(--olive); }

/* ============================================================
   FABRICANT PAGE
   ============================================================ */
.fabricant-hero {
  background: var(--blanc);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(200,169,110,.2);
  color: var(--blanc);
}
.fabricant-hero h1,
.fabricant-hero .fabricant-meta,
.fabricant-hero .fabricant-meta a { color: var(--blanc); }
.fabricant-header { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.fabricant-info { flex: 1; min-width: 280px; }
.fabricant-info h1 { margin-bottom: .5rem; }
.fabricant-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; font-size: .88rem; color: #6b5a4e; }
.fabricant-meta span { display: flex; align-items: center; gap: .35rem; }
.fabricant-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.map-container {
  flex: 0 0 340px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d4c8b8;
}
#leaflet-map { width: 100%; height: 100%; }
.fabricant-cta {
  background: var(--beige);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.fabricant-cta p { font-size: .85rem; color: #8a7060; margin-bottom: 1rem; }

/* ============================================================
   COMPARATIF
   ============================================================ */
.comparatif-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background: var(--blanc);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: flex-end;
}
.filter-group { display: flex; flex-direction: column; gap: .3rem; }
.filter-group label { font-size: .78rem; font-weight: 700; color: var(--olive); text-transform: uppercase; letter-spacing: .06em; }
.filter-group select {
  padding: .5rem .9rem;
  border: 1px solid rgba(200,169,110,.4);
  border-radius: 4px;
  background: var(--blanc);
  color: var(--brun);
  font-family: var(--font-body);
  font-size: .9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7B3A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.2rem;
  min-width: 140px;
}
.table-wrap { overflow-x: auto; }
.comparatif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparatif-table th {
  background: var(--brun);
  color: var(--ocre);
  padding: 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.comparatif-table th:hover { background: #4d3828; }
.comparatif-table th .sort-icon { margin-left: .3rem; opacity: .5; }
.comparatif-table td { padding: .9rem 1rem; border-bottom: 1px solid rgba(200,169,110,.12); vertical-align: middle; }
.comparatif-table tr:last-child td { border-bottom: none; }
.comparatif-table tr:nth-child(even) td { background: rgba(245,240,232,.5); }
.comparatif-table tr:hover td { background: rgba(200,169,110,.08); }
.comparatif-table .btn { padding: .4rem .9rem; font-size: .8rem; }
.cert-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.cert-dot--yes { background: var(--olive); }
.cert-dot--no  { background: #d0c0b0; }

/* ============================================================
   PAGE USAGES & GUIDE
   ============================================================ */
.usages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.usage-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.usage-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.usage-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.usage-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.usage-card p { font-size: .85rem; color: #6b5a4e; margin: 0; }

.guide-toc {
  background: var(--blanc);
  border-left: 4px solid var(--ocre);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.guide-toc h3 { color: var(--olive); margin-bottom: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.guide-toc ol { padding-left: 1.2rem; }
.guide-toc li { margin-bottom: .4rem; font-size: .9rem; }
.guide-toc a { color: var(--brun); }
.guide-toc a:hover { color: var(--olive); }

/* ============================================================
   ARTICLE LIST & FABRICANT LIST
   ============================================================ */
.page-header {
  background: var(--blanc);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.page-header h1 { margin-bottom: .5rem; }
.page-header p { color: #6b5a4e; font-size: 1.05rem; max-width: 640px; }

.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid rgba(200,169,110,.3);
  color: var(--brun);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--ocre); border-color: var(--ocre); color: var(--brun); }
.pagination .current { background: var(--brun); border-color: var(--brun); color: var(--blanc); }

/* ============================================================
   LEAFLET MAP override
   ============================================================ */
.leaflet-container { font-family: var(--font-body); }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-page {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.divider { border: none; border-top: 1px solid rgba(200,169,110,.25); margin: 2rem 0; }

/* ============================================================
   COMPAT — Aliases classes CodeAgent
   ============================================================ */

/* Nav compat */
.site-header      { background: var(--blanc); border-bottom: 2px solid var(--ocre); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(61,43,31,.08); }
.header-inner     { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.site-logo        { display: flex; align-items: center; gap: .5rem; font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--brun); text-decoration: none; line-height: 1.2; }
.site-logo span   { display: block; font-size: .68rem; color: var(--olive); font-family: var(--font-body); text-transform: uppercase; letter-spacing: .08em; font-weight: 400; }
.site-nav         { display: flex; gap: 2rem; align-items: center; }
.site-nav a       { font-size: .92rem; font-weight: 600; color: var(--brun); border-bottom: 2px solid transparent; padding: .25rem 0; transition: border-color var(--transition), color var(--transition); }
.site-nav a:hover,
.site-nav a.active { color: var(--olive); border-bottom-color: var(--ocre); }
.nav-toggle       { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .4rem; }
.nav-toggle span  { display: block; width: 26px; height: 2px; background: var(--brun); border-radius: 2px; }
.nav-cta          { background: var(--ocre); color: var(--brun) !important; padding: .45rem 1.1rem; border-radius: 4px; font-weight: 700; border-bottom: none !important; }
.nav-cta:hover    { background: var(--ocre-dark); color: var(--blanc) !important; }

/* Hero compat */
.hero-btns        { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-lead        { font-size: clamp(1rem, 2.5vw, 1.15rem); color: rgba(253,250,245,.85); margin-bottom: 2rem; line-height: 1.6; }
.btn-primary      { display: inline-block; padding: .75rem 1.75rem; background: var(--ocre); color: var(--brun); font-weight: 700; border-radius: 4px; border: 2px solid var(--ocre); transition: background var(--transition); }
.btn-primary:hover{ background: var(--ocre-dark); border-color: var(--ocre-dark); color: var(--blanc); }
.btn-outline      { display: inline-block; padding: .75rem 1.75rem; background: transparent; color: var(--blanc); font-weight: 700; border-radius: 4px; border: 2px solid rgba(253,250,245,.6); transition: border-color var(--transition), background var(--transition); }
.btn-outline:hover{ border-color: var(--blanc); background: rgba(253,250,245,.1); }

/* Section compat */
.section-header   { text-align: center; margin-bottom: 2.5rem; }
.section-title    { font-family: var(--font-title); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--brun); margin-bottom: .5rem; }
.section-subtitle { color: #6b5a4e; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.bg-beige         { background: var(--beige); }

/* Cards articles compat */
.articles-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .4s ease; }
.article-card     { background: var(--blanc); border-radius: 14px; box-shadow: 0 2px 12px rgba(61,43,31,.08); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; display: flex; flex-direction: column; border: 1px solid rgba(200,184,148,.2); }
.article-card:hover { box-shadow: 0 8px 32px rgba(61,43,31,.16); transform: translateY(-5px); }
.article-card:hover img { transform: scale(1.04); }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.article-tag      { display: inline-block; padding: .15rem .6rem; border-radius: 20px; background: rgba(107,123,58,.1); color: var(--olive); font-size: .72rem; font-weight: 700; letter-spacing: .04em; margin-bottom: .4rem; }
.article-chapeau  { font-size: 1.05rem; color: #6b5a4e; font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; border-left: 3px solid var(--ocre); padding-left: 1rem; }
.article-hero     { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }

/* Cards fabricants compat */
.fabricants-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.fabricant-card   { background: var(--blanc); border-radius: 14px; box-shadow: 0 2px 12px rgba(61,43,31,.08); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; border: 1px solid rgba(200,184,148,.2); padding: 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.fabricant-card:hover { box-shadow: 0 8px 32px rgba(61,43,31,.16); transform: translateY(-5px); }
.fabricant-card h3 { font-size: 1.1rem; color: var(--brun); margin: 0; }
.fabricant-card .ville { font-size: .82rem; color: var(--olive); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.fabricant-card .annee { font-size: .8rem; color: #9a8070; }
.fabricant-card p { font-size: .88rem; color: #6b5a4e; line-height: 1.6; flex: 1; margin: 0; }
.fabricant-card .badge { font-size: .72rem; background: rgba(107,130,70,.12); color: var(--olive); border-radius: 20px; padding: .2rem .7rem; width: fit-content; font-weight: 600; }
.fabricant-card .btn { margin-top: .5rem; width: fit-content; align-self: center; font-size: .85rem; }
.ville            { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--olive); margin-bottom: .5rem; }

/* Footer compat */
.footer-grid      { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-col       { }
.footer-col h4    { color: var(--ocre); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer-col ul    { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a     { color: rgba(253,250,245,.75); font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--ocre); }
.logo-footer      { font-family: var(--font-title); font-size: 1.2rem; color: var(--ocre); display: block; margin-bottom: .5rem; }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(253,250,245,.6); font-size: .82rem; }
.footer-legal-links a:hover { color: var(--ocre); }

/* FAQ compat */
.faq              { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(200,169,110,.2); border-radius: var(--radius); overflow: hidden; background: var(--blanc); }
.faq-item         { border-bottom: 1px solid rgba(200,169,110,.12); }
.faq-item:last-child { border-bottom: none; }
.faq-question     { padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 700; color: var(--brun); display: flex; justify-content: space-between; align-items: center; font-size: .95rem; }
.faq-question:hover { background: rgba(200,169,110,.05); color: var(--olive); }
.faq-answer       { padding: 0 1.25rem 1.1rem; font-size: .92rem; color: #6b5a4e; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--olive); }

/* ── Boutons variantes CodeAgent ─────────────────────────── */
.btn-primary  { background: var(--ocre); color: var(--brun); border: 2px solid var(--ocre); border-radius: 4px; padding: .75rem 1.75rem; font-weight: 700; font-family: var(--font-body); display: inline-block; transition: background var(--transition); }
.btn-primary:hover { background: var(--ocre-dark); border-color: var(--ocre-dark); color: var(--blanc); }
.btn-secondary { background: transparent; color: rgba(253,250,245,.9); border: 2px solid rgba(253,250,245,.5); border-radius: 4px; padding: .75rem 1.75rem; font-weight: 700; font-family: var(--font-body); display: inline-block; transition: border-color var(--transition), background var(--transition); }
.btn-secondary:hover { border-color: var(--blanc); background: rgba(253,250,245,.1); color: var(--blanc); }
.btn-buy      { background: var(--olive); color: var(--blanc); border: 2px solid var(--olive); border-radius: 4px; padding: .6rem 1.25rem; font-weight: 700; font-family: var(--font-body); font-size: .88rem; display: inline-block; transition: background var(--transition); }
.btn-buy:hover { background: #55622e; border-color: #55622e; color: var(--blanc); }

/* Boutons cards centrés */
.card .btn,
.card-fabricant .btn,
.card a.btn {
  display: block;
  width: fit-content;
  margin: auto auto 0;
}

/* Colonne Acheter masquée temporairement (affiliation en cours) */
.col-acheter { display: none; }
