/*!
 * La Verte Feuille — theme.css v3.0
 * CSS consolidé : variables, reset, layout, WooCommerce, composants, templates
 */
/* ════ BASE : Variables CSS + Reset + Helpers ════════════════════════════ */
/* ─── Design Tokens ────────────────────────────────────────────────────── */
:root {
  color-scheme: light only;
  --green:        #2D5A27;
  --green-hover:  #24481f;
  --green-light:  #4A8A3F;
  --green-pale:   #EFF6EE;
  --green-mid:    #7DBF6E;
  --cream:        #F8F5EF;
  --dark:         #1A1A16;
  --dark-soft:    #2C2C24;
  --text-muted:   #6B7162;
  --text-light:   #9BA090;
  --gold:         #C9A84C;
  --gold-hover:   #b3933a;
  --border:       #E2DDD4;
  --border-focus: #7DBF6E;
  --white:        #FFFFFF;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --transition:   .18s ease;
}
/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--dark);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
/* ─── Layout Helpers ───────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 60px 0;
}
.section--sm {
  padding: 40px 0;
}
/* ─── Screen reader ────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* ─── Skip link (accessibilité clavier) ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: -120%;
  left: 12px;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
}
/* ─── Focus-visible global ─────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}
/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--secondary:hover {
  background: var(--green-pale);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn--full { width: 100%; }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
/*!
 * La Verte Feuille — theme.css
 * Fichier CSS consolidé — généré automatiquement
 * Remplace : main.css, woocommerce.css, additions.css, pages.css, improvements.css
 * + tous les styles inline des templates
 */
/* ═══════════════════════════════════════════════════════════════════════
   La Verte Feuille — main.css
   Global layout, header, footer, components, utilities
   ═══════════════════════════════════════════════════════════════════════ */
/* ─── Topbar ────────────────────────────────────────────────────────────── */
.topbar strong { font-weight: 500; }
.topbar a { color: rgba(255,255,255,.85); text-decoration: underline; }
/* ─── Header ────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  overflow: visible;
}
/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.site-logo__main {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--green);
  letter-spacing: .02em;
}
.site-logo__sub {
  font-size: .625rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-logo img,
.site-logo .custom-logo-link,
.site-logo .custom-logo {
  display: block;
}
.site-logo .custom-logo-link {
  line-height: 0;
}
.site-logo img,
.site-logo .custom-logo {
  max-height: 54px;
  width: auto !important;
  height: auto !important;
}
.footer-logo img,
.footer-logo .custom-logo-link,
.footer-logo .custom-logo {
  display: block;
}
.footer-logo .custom-logo-link {
  line-height: 0;
}
.footer-logo img,
.footer-logo .custom-logo {
  max-height: 48px;
  width: auto !important;
  height: auto !important;
}
/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav__list {
  display: flex;
  gap: 4px;
}
.main-nav__list > li > a {
  display: block;
  padding: 8px 12px;
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 400;
  border-radius: var(--radius-sm);
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition);
}
.main-nav__list > li > a:hover,
.main-nav__list > li.current-menu-item > a {
  background: var(--green-pale);
  color: var(--green);
}
/* Dropdown */
.main-nav__list li {
  position: relative;
}
.main-nav__list li ul {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 180px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 300;
}
.main-nav__list li:hover > ul,
.main-nav__list li:focus-within > ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.main-nav__list li ul a {
  display: block;
  padding: 8px 12px;
  font-size: .8125rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
}
.main-nav__list li ul a:hover {
  background: var(--green-pale);
  color: var(--green);
}
/* Header tools */
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
/* Search */
.header-search__input::placeholder { color: var(--text-muted); }
.header-search__btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
/* Cart icon */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: .8125rem;
  font-weight: 500;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.header-cart:hover {
  background: var(--green-hover);
  color: var(--white);
}
.header-cart__count {
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
/* Account icon */
.header-account {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.header-account:hover {
  border-color: var(--green);
  color: var(--green);
}
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--dark);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}
/* ─── Age Gate ──────────────────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(26,26,22,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}
.age-gate__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 400px;
  text-align: center;
}
.age-gate__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 20px;
}
.age-gate__title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.age-gate__text {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.age-gate__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
/* ─── Topbar promo bar ─────────────────────────────────────────────────── */
.promo-bar {
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.promo-bar__item {
  padding: 12px 8px;
  border-right: 1px solid var(--border);
  font-size: .75rem;
}
.promo-bar__item:last-child { border-right: none; }
.promo-bar__label {
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .6875rem;
  display: block;
}
.promo-bar__value {
  font-weight: 500;
  color: var(--green);
  font-size: .8125rem;
}
/* ─── Breadcrumbs ───────────────────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: .8125rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb__sep { margin: 0 6px; }
.breadcrumb__current { color: var(--dark); }
/* ─── Notices ───────────────────────────────────────────────────────────── */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  margin-bottom: 16px;
  border-left: 3px solid;
}
.notice--info { background: #E8F4FD; border-color: #2196F3; color: #0d47a1; }
.notice--success { background: var(--green-pale); border-color: var(--green); color: var(--green); }
.notice--warning { background: #FFF8E1; border-color: var(--gold); color: #5D4037; }
.notice--error { background: #FFEBEE; border-color: #f44336; color: #b71c1c; }
/* ─── Badges & Tags ─────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge--green { background: var(--green); color: var(--white); }
.badge--gold { background: var(--gold); color: var(--white); }
.badge--pale { background: var(--green-pale); color: var(--green); }
.badge--sale { background: #E53935; color: var(--white); }
.badge--new { background: var(--dark); color: var(--white); }
.badge--quiz-expert { background: #FFF8E1; color: #C9A84C; border: 1px solid #C9A84C66; font-weight: 700; letter-spacing: .02em; }
/* ─── Rating Stars ──────────────────────────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
  font-size: .875rem;
}
.stars--sm { font-size: .75rem; }
/* ─── Section headings ──────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-size: 1.75rem;
  color: var(--dark);
}
.section-link {
  font-size: .8125rem;
  color: var(--green);
  letter-spacing: .04em;
}
/* ─── Product Cards ─────────────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card__image {
  position: relative;
  overflow: hidden;
  background: var(--green-pale);
  aspect-ratio: 1;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card__quick-view {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: bottom var(--transition);
}
.product-card:hover .product-card__quick-view { bottom: 10px; }
.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .875rem;
  transition: border-color var(--transition), background var(--transition);
}
.product-card__wishlist:hover { border-color: var(--green); background: var(--green-pale); }
.product-card__body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__meta {
  font-size: .6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.product-card__name {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  margin-top: auto;
}
/* Degressif pricing */
.degressive-table {
  width: 100%;
  font-size: .75rem;
  border-collapse: collapse;
  margin-bottom: 12px;
}
.degressive-table th,
.degressive-table td {
  padding: 4px 6px;
  border: 1px solid var(--border);
  text-align: center;
}
.degressive-table th {
  background: var(--green-pale);
  color: var(--green);
  font-weight: 500;
}
/* ─── Products Grid ─────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* ─── Footer ────────────────────────────────────────────────────────────── */
/* ─── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); margin-top: 80px; }
.footer-top { padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
/* Logo / marque */
.footer-logo { display: inline-block; margin-bottom: 6px; }
.footer-google-rating { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 8px 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; text-decoration: none; transition: background var(--transition); }
.footer-google-rating:hover { background: rgba(255,255,255,.12); }
.footer-google-rating__stars { color: #FBBC05; font-size: .9rem; letter-spacing: 1px; }
.footer-google-rating__score { color: #fff; font-weight: 700; font-size: .9rem; }
.footer-google-rating__label { color: rgba(255,255,255,.6); font-size: .8rem; }
.footer-logo__text { font-family: var(--font-serif); font-size: 1.125rem; color: #fff; }
.footer-tagline { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.footer-desc { font-size: .8125rem; line-height: 1.65; margin-bottom: 16px; color: rgba(255,255,255,.55); }
/* Titres colonnes */
.footer-col__title {
  font-family: var(--font-sans);
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
  font-weight: 500;
}
/* Liens */
.footer-col a { display: block; font-size: .8125rem; color: rgba(255,255,255,.6); margin-bottom: 8px; transition: color var(--transition); text-decoration: none; }
.footer-col a:hover { color: #fff; }
/* Badges */
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.footer-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 5px 10px; font-size: .6875rem; color: rgba(255,255,255,.5); letter-spacing: .04em; }
/* Newsletter footer */
.footer-newsletter { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md); padding: 18px; margin-top: 20px; }
.footer-newsletter__title { font-family: var(--font-serif); font-size: .9375rem; color: #fff; margin-bottom: 4px; }
.footer-newsletter__sub { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.footer-newsletter__row { display: flex; gap: 8px; }
.footer-newsletter__input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); padding: 9px 12px; color: #fff; font-size: .8125rem; font-family: inherit; outline: none; }
.footer-newsletter__input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter__input:focus { border-color: var(--green-mid); }
.footer-newsletter__btn { background: var(--green-light); color: #fff; border: none; border-radius: var(--radius-sm); padding: 9px 16px; font-size: .8125rem; cursor: pointer; font-family: inherit; font-weight: 500; white-space: nowrap; transition: background var(--transition); }
.footer-newsletter__btn:hover { background: var(--green); }
/* Contact */
.footer-contact-block { margin-bottom: 18px; }
.footer-phone { font-size: 1rem; font-weight: 500; color: #fff !important; display: block; margin-bottom: 4px; }
.footer-hours { font-size: .8125rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-express-block { background: rgba(255,255,255,.04); border-radius: var(--radius-sm); padding: 12px; margin-bottom: 16px; }
.footer-express-block__title { font-weight: 500; color: var(--gold); font-size: .875rem; margin-bottom: 4px; }
.footer-express-block p { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.footer-express-block__note { font-style: italic; }
.footer-payment-block__title { font-size: .75rem; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
/* Villes */
.footer-cities { display: flex; flex-direction: column; }
.footer-cities a { font-size: .75rem !important; color: rgba(255,255,255,.45) !important; margin-bottom: 5px !important; }
.footer-cities a:hover { color: rgba(255,255,255,.8) !important; }
/* Réseaux sociaux */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social__link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: rgba(255,255,255,.06); border-radius: 50%; color: rgba(255,255,255,.5); transition: background var(--transition), color var(--transition); }
.footer-social__link:hover { background: var(--green); color: #fff; }
/* Barre légale basse */
.footer-bottom-bar { background: rgba(0,0,0,.2); }
.footer-bottom { padding: 14px 0; display: flex; align-items: center; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.footer-bottom__legal { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-bottom__legal a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .75rem; }
.footer-bottom__legal a:hover { color: rgba(255,255,255,.65); }
.footer-bottom__compliance { font-size: .6875rem; color: rgba(255,255,255,.2); }
/* ─── WooCommerce Pagination ────────────────────────────────────────────── */
.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 40px 0 0;
  flex-wrap: wrap;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.woocommerce-pagination ul li a:hover { border-color: var(--green); color: var(--green); }
.woocommerce-pagination ul li span.current {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 60px 24px 24px;
    z-index: 400;
    overflow-y: auto;
  }
  .main-nav.is-open .main-nav__list {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav.is-open .main-nav__list > li > a { font-size: 1rem; padding: 12px; }
  .main-nav.is-open .main-nav__list li ul {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
  .header-search__input { width: 140px; }
  .header-search__input:focus { width: 180px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 1.375rem; }
  .promo-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; gap: 10px; }
  .header-search { display: none; }
}
/* ═══════════════════════════════════════════════════════════════════════
   La Verte Feuille — woocommerce.css
   Styles WooCommerce: shop, single product, cart, checkout
   ═══════════════════════════════════════════════════════════════════════ */
/* ─── Remove WC defaults ────────────────────────────────────────────────── */
.woocommerce-page .woocommerce-breadcrumb { display: none; }
.woocommerce form .form-row label { font-size: .875rem; color: var(--dark); margin-bottom: 5px; display: block; }
/* ─── Shop / Archive Page ───────────────────────────────────────────────── */
.archive-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 0;
}
.archive-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.archive-header__title {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.archive-header__desc {
  font-size: .875rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}
.archive-header__count {
  font-size: .8125rem;
  color: var(--text-muted);
  padding-bottom: 16px;
}
/* Filters bar */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.shop-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .8125rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--dark);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.shop-sort select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: .8125rem;
  color: var(--dark);
  cursor: pointer;
  font-family: inherit;
  outline: none;
}
/* Sidebar + main layout */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
}
/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}
.sidebar-widget__title {
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
/* Facet filters */
.facet-list { display: flex; flex-direction: column; gap: 8px; }
.facet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  cursor: pointer;
}
.facet-item input[type="checkbox"] {
  accent-color: var(--green);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.facet-item__count {
  margin-left: auto;
  font-size: .75rem;
  color: var(--text-muted);
}
/* Price range */
.price-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-range input[type="range"] {
  accent-color: var(--green);
  width: 100%;
}
.price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: .8125rem;
  color: var(--text-muted);
}
/* Load more */
.load-more-wrap {
  text-align: center;
  padding: 32px 0 0;
}
/* ─── Single Product Page ───────────────────────────────────────────────── */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 0 60px;
  align-items: start;
}
/* Gallery */
.product-gallery {
  position: sticky;
  top: 80px;
}
.product-gallery__main {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-pale);
  aspect-ratio: 1;
  margin-bottom: 10px;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.product-gallery__thumb {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color var(--transition);
  background: var(--green-pale);
}
.product-gallery__thumb.is-active { border-color: var(--green); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Product info */
.product-info__badges {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.product-info__title {
  font-size: 2rem;
  margin-bottom: 6px;
  line-height: 1.15;
}
.product-info__subtitle {
  font-size: .9375rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .875rem;
}
.product-info__review-count { color: var(--text-muted); }
.product-info__price-block {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}
.product-info__price {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--green);
  font-family: var(--font-sans);
}
.product-info__price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}
.product-info__price-unit {
  font-size: .875rem;
  color: var(--text-muted);
}
/* Degressive */
.degressive-block {
  margin-bottom: 20px;
}
.degressive-block__title {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}
.degressive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 6px;
}
.degressive-tier {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.degressive-tier:hover { border-color: var(--green); }
.degressive-tier.is-active {
  border-color: var(--green);
  background: var(--green-pale);
}
.degressive-tier__qty {
  font-size: .6875rem;
  color: var(--text-muted);
  display: block;
}
.degressive-tier__price {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--green);
  display: block;
}
/* Qty + Add to cart */
.add-to-cart-form {
  margin-bottom: 20px;
}
.qty-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-control button {
  width: 40px;
  height: 48px;
  background: var(--green-pale);
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  color: var(--green);
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--green); color: var(--white); }
.qty-control input {
  width: 56px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  outline: none;
}
.btn--add-cart {
  flex: 1;
  height: 48px;
  font-size: .9375rem;
}
/* Sticky add-to-cart bar (mobile) */
.sticky-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 300;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-atc__name {
  flex: 1;
  font-size: .875rem;
  font-weight: 500;
}
.sticky-atc__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
}
/* Product meta */
.product-meta-list {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}
.product-meta-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.product-meta-list li:last-child { border-bottom: none; }
.product-meta-list li span:first-child { color: var(--text-muted); }
.product-meta-list li span:last-child { font-weight: 500; }
/* Assurances */
.product-assurances {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.assurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.assurance-item__icon { font-size: .875rem; flex-shrink: 0; }
/* Tabs */
.product-tabs {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
}
.tabs__btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 20px;
  font-size: .875rem;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  margin-bottom: -1px;
}
.tabs__btn.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
  font-weight: 500;
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }
/* Product description */
.product-description { font-size: .9375rem; line-height: 1.7; }
.product-description h2, .product-description h3 { font-size: 1.125rem; margin: 1.5rem 0 .75rem; }
/* ── Avis de l'équipe ───────────────────────────────────────────────────── */
.sp-section--review { padding-top: 32px; }
.tr-card {
  border: 1px solid #bfdfb5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(45,90,39,.07);
}
.tr-card__main {
  display: grid;
  grid-template-columns: 148px 1px 1fr;
  align-items: stretch;
  background: var(--green-pale);
}
@media (max-width: 640px) {
  .tr-card__main { grid-template-columns: 1fr; }
}
.tr-card__sep { width: 1px; background: #bfdfb5; margin: 20px 0; }
@media (max-width: 640px) {
  .tr-card__sep { width: auto; height: 1px; margin: 0 20px; }
}
.tr-global {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
}
@media (max-width: 640px) {
  .tr-global { flex-direction: row; padding: 20px 20px 16px; gap: 16px; justify-content: flex-start; }
}
.tr-global__medal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
  box-shadow: 0 2px 8px rgba(45,90,39,.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tr-global__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.tr-global__denom { font-size: .625rem; color: var(--text-muted); margin-top: 1px; }
.tr-global__stars { display: flex; gap: 3px; }
.tr-global__lbl {
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 640px) { .tr-global__lbl { display: none; } }
.tr-s { font-size: 1rem; line-height: 1; }
.tr-s--full  { color: #F9A825; }
.tr-s--half  { color: #F9A825; opacity: .5; }
.tr-s--empty { color: #c5d9c0; }
.tr-criteria {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 20px 24px;
}
@media (max-width: 640px) { .tr-criteria { padding: 16px 20px 20px; gap: 4px; } }
.tr-crit {
  display: grid;
  grid-template-columns: 22px 88px 1fr 38px;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(45,90,39,.08);
}
.tr-crit:last-child { border-bottom: none; }
@media (max-width: 400px) {
  .tr-crit { grid-template-columns: 20px 72px 1fr 32px; gap: 7px; }
}
.tr-crit__icon  { font-size: .9375rem; text-align: center; line-height: 1; }
.tr-crit__label { font-size: .8125rem; font-weight: 600; color: var(--dark); white-space: nowrap; }
.tr-crit__track { height: 6px; background: rgba(45,90,39,.12); border-radius: 3px; overflow: hidden; }
@keyframes trBarIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.tr-crit__fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 60%, var(--green-mid) 100%);
  border-radius: 3px;
  transform-origin: left center;
  animation: trBarIn .7s cubic-bezier(.4,0,.2,1) var(--tr-delay,0ms) backwards;
}
.tr-crit__num { font-size: .8125rem; font-weight: 700; color: var(--green); text-align: right; white-space: nowrap; }
.tr-crit__num small { font-size: .625rem; font-weight: 400; color: var(--text-muted); }
.tr-card__footer { background: #fff; padding: 20px 24px 22px; border-top: 1px solid #bfdfb5; }
.tr-quote { position: relative; margin: 0 0 14px; padding: 4px 0 4px 36px; }
.tr-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -8px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--green-mid);
  pointer-events: none;
}
.tr-quote p {
  font-family: var(--font-serif);
  font-size: .9375rem;
  font-style: italic;
  color: var(--dark-soft);
  line-height: 1.75;
  margin: 0;
}
.tr-sig { display: flex; align-items: center; gap: 5px; font-size: .8125rem; color: var(--text-muted); margin: 0; }
.tr-sig__leaf { font-size: .875rem; line-height: 1; }
.tr-sig strong { color: var(--dark); font-weight: 600; }
.tr-sig__sep  { color: var(--border); }
.tr-sig time  { color: var(--text-muted); }
/* Product FAQ */
.product-faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 14px 16px;
  text-align: left;
  font-size: .9375rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--green-pale); }
.faq-question__icon { font-size: 1.125rem; color: var(--green); transition: transform var(--transition); }
.faq-item.is-open .faq-question__icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 0 solid var(--border);
  background: var(--white);
}
.faq-item.is-open .faq-answer {
  padding: 14px 16px;
  max-height: 400px;
  border-top-width: 1px;
}
/* Related products */
.related-products { padding: 48px 0; border-top: 1px solid var(--border); }
/* ─── Cart Page ─────────────────────────────────────────────────────────── */
.cart-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cart-table table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table thead th {
  background: var(--green-pale);
  padding: 12px 16px;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  text-align: left;
}
.cart-table tbody td {
  padding: 16px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--green-pale);
  flex-shrink: 0;
}
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { display: flex; align-items: center; gap: 12px; }
.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: #E53935; }
.cart-item__price { font-weight: 500; color: var(--green); }
.cart-coupon {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  background: var(--white);
}
.cart-coupon input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: .875rem;
  font-family: inherit;
  outline: none;
}
.cart-coupon input:focus { border-color: var(--border-focus); }
/* Cart totals */
.cart-totals {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.cart-totals__header {
  background: var(--green-pale);
  padding: 14px 16px;
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}
.cart-totals__body { padding: 16px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.cart-total-row:last-of-type { border-bottom: none; }
.cart-total-row--grand {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--green);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 2px solid var(--border);
}
.cart-totals__shipping-info {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: .8125rem;
  color: var(--green);
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* ─── Checkout ──────────────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 32px 0 60px;
  align-items: start;
}
.checkout-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.checkout-section__header {
  padding: 14px 20px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section__num {
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 500;
  flex-shrink: 0;
}
.checkout-section__title {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  color: var(--green);
}
.checkout-section__body { padding: 20px; }
/* Form fields */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field:last-child { margin-bottom: 0; }
.form-field label { font-size: .8125rem; font-weight: 500; color: var(--dark); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: .875rem;
  color: var(--dark);
  outline: none;
  font-family: inherit;
  background: var(--white);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--border-focus); }
.form-field .required { color: #E53935; }
/* Payment methods */
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}
.payment-method.is-selected { border-color: var(--green); }
.payment-method__label {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 500;
}
.payment-method__icon { font-size: 1.25rem; }
.payment-method__description {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  font-size: .8125rem;
  color: var(--text-muted);
  background: var(--green-pale);
}
.payment-method.is-selected .payment-method__description {
  padding: 12px 16px;
  max-height: 200px;
}
/* Order summary in checkout */
.checkout-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.checkout-summary__header {
  padding: 14px 16px;
  background: var(--green);
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-summary__items { padding: 0 16px; }
.checkout-summary__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.checkout-summary__item:last-of-type { border-bottom: none; }
.checkout-summary__item-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  overflow: hidden;
  flex-shrink: 0;
}
.checkout-summary__item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-summary__item-name { flex: 1; font-weight: 500; }
.checkout-summary__item-qty { font-size: .75rem; color: var(--text-muted); }
.checkout-summary__item-price { font-weight: 500; color: var(--green); }
.checkout-totals { padding: 16px; border-top: 1px solid var(--border); }
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  padding: 6px 0;
  color: var(--text-muted);
}
.checkout-total-row--grand {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--green);
  padding-top: 10px;
  margin-top: 6px;
  border-top: 2px solid var(--border);
}
.checkout-place-order {
  padding: 16px;
  border-top: 1px solid var(--border);
}
.checkout-ssl {
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
/* ─── Responsive Shop/Product ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .single-product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media (max-width: 768px) {
  .sticky-atc { display: block; }
  body.single-product { padding-bottom: 80px; }
  .product-assurances { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table tbody td { display: block; padding: 8px 16px; }
  .cart-table tbody tr { border-top: 1px solid var(--border); padding: 8px 0; display: block; }
}
/* ═══════════════════════════════════════════════════════════════════════
   La Verte Feuille — additions.css
   Styles : cart drawer, product card v2, header v2, shop sidebar
   ═══════════════════════════════════════════════════════════════════════ */
/* ─── Topbar ─────────────────────────────────────────────────────────── */
.topbar { background: var(--green); color: rgba(255,255,255,.9); font-size: .75rem; padding: 8px 0; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar__text { flex: 1; text-align: center; }
.topbar__links { display: flex; gap: 12px; flex-shrink: 0; }
.topbar__links a { color: rgba(255,255,255,.8); text-decoration: none; white-space: nowrap; }
.topbar__links a:hover { color: #fff; }
.topbar__sep { opacity: .4; }
.topbar__close { background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 1.125rem; line-height: 1; padding: 2px 6px; flex-shrink: 0; }
.topbar__close:hover { color: #fff; }
/* ─── Trust bar ──────────────────────────────────────────────────────── */
.trust-bar { background: var(--cream); border-top: 1px solid var(--border); font-size: .75rem; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 7px 0; flex-wrap: wrap; }
.trust-bar__item { color: var(--text-muted); }
.trust-bar__sep { color: var(--border); }
/* ─── Header search panel ────────────────────────────────────────────── */
.header-search { position: relative; }
.header-search__toggle { background: var(--green-pale); border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--green); transition: background .15s; }
.header-search__toggle:hover { background: var(--green); color: #fff; }
/* Panel : caché par défaut via display:none, jamais via l'attribut hidden seul
   car display:flex écraserait [hidden]{display:none} */
.header-search__panel {
  display: none;            /* CACHÉ par défaut */
  position: absolute;
  top: calc(100% + 10px);
  right: -120px;
  width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px;
  z-index: 500;
  flex-direction: column;
  gap: 8px;
}
/* Ouvert via classe JS .is-open */
.header-search__panel.is-open {
  display: flex;            /* VISIBLE quand la classe est ajoutée */
}
/* Champ + bouton clear dans un wrapper relatif */
.header-search__input-wrap {
  position: relative;
  width: 100%;
}
.header-search__input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 36px 10px 12px;
  font-size: .875rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}
.header-search__input:focus { border-color: var(--border-focus); }
.header-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1;
  padding: 0;
}
.header-search__clear:hover { color: var(--dark); }
.search-dropdown { max-height: 280px; overflow-y: auto; }
.search-dropdown__item { display: flex; align-items: center; gap: 10px; padding: 9px; border-radius: var(--radius-sm); text-decoration: none; color: var(--dark); transition: background .13s; }
.search-dropdown__item:hover { background: var(--green-pale); }
.search-dropdown__img { width: 44px; height: 44px; border-radius: var(--radius-sm); object-fit: cover; background: var(--green-pale); flex-shrink: 0; }
.search-dropdown__no-img { width: 44px; height: 44px; background: var(--green-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem; }
.search-dropdown__name { font-size: .875rem; font-weight: 500; }
.search-dropdown__meta { font-size: .75rem; color: var(--green); }
.search-dropdown__price { font-size: .8125rem; font-weight: 500; color: var(--green); margin-left: auto; }
.search-dropdown__empty { padding: 16px; text-align: center; font-size: .875rem; color: var(--text-muted); }
/* ─── Wishlist header ────────────────────────────────────────────────── */
.header-wishlist { position: relative; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-muted); text-decoration: none; transition: border-color .15s, color .15s; }
.header-wishlist:hover { border-color: var(--green); color: var(--green); }
.header-wishlist__count { position: absolute; top: -4px; right: -4px; background: var(--gold); color: #fff; width: 16px; height: 16px; border-radius: 50%; font-size: .625rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
/* ─── Cart Drawer ────────────────────────────────────────────────────── */
.cart-drawer { position:fixed;inset:0;z-index:1000;pointer-events:none; }
.cart-drawer:not([hidden]) { pointer-events:all; }
.cart-drawer__overlay { position:absolute;inset:0;background:rgba(0,0,0,.5);opacity:0;transition:opacity .3s ease;backdrop-filter:blur(2px); }
.cart-drawer:not([hidden]) .cart-drawer__overlay { opacity:1; }
.cart-drawer__panel {
  position:absolute;top:0;right:0;bottom:0;
  width:420px;max-width:95vw;
  background:#fff;
  display:flex;flex-direction:column;
  transform:translateX(100%);
  transition:transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow:-8px 0 48px rgba(0,0,0,.14);
}
.cart-drawer:not([hidden]) .cart-drawer__panel { transform:translateX(0); }

/* Header */
.cdr-header__left { display:flex;align-items:center;gap:10px; }
.cdr-header__title { font-size:1rem;font-weight:700;color:#fff;letter-spacing:-.01em; }
.cdr-header__count { background:rgba(255,255,255,.25);color:#fff;border-radius:20px;padding:2px 9px;font-size:.75rem;font-weight:700;min-width:24px;text-align:center; }
.cdr-header__close { background:rgba(255,255,255,.15);border:none;color:#fff;width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s;flex-shrink:0; }
.cdr-header__close:hover { background:rgba(255,255,255,.3); }
.cart-drawer__header { display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background:linear-gradient(135deg,var(--green),var(--green-light));color:#fff;flex-shrink:0; }

/* Barre livraison */
.cdr-ship { padding:12px 20px;background:var(--cream);border-bottom:1px solid var(--border);flex-shrink:0; }
.cdr-ship__bar { height:6px;background:var(--border);border-radius:3px;overflow:hidden;margin-bottom:7px; }
.cdr-ship__fill { height:100%;background:linear-gradient(90deg,var(--green),var(--green-light));border-radius:3px;transition:width .5s cubic-bezier(.4,0,.2,1); }
.cdr-ship__label { font-size:.8125rem;color:var(--text-muted);margin:0;line-height:1.4; }
.cdr-ship__label strong { color:var(--dark);font-weight:700; }
.cdr-ship__ok { display:flex;align-items:center;gap:7px;font-size:.875rem;font-weight:600;color:var(--green);margin:0; }
.cdr-ship__ok svg { flex-shrink:0;background:var(--green);color:#fff;border-radius:50%;padding:2px; }

/* Corps */
.cdr-body { flex:1;overflow-y:auto;overscroll-behavior:contain; }
.cdr-body::-webkit-scrollbar { width:4px; }
.cdr-body::-webkit-scrollbar-thumb { background:var(--border);border-radius:2px; }

/* Item */
.cdr-item { display:grid;grid-template-columns:80px 1fr auto;gap:14px;padding:16px 20px;border-bottom:1px solid var(--border);transition:background .13s;align-items:start; }
.cdr-item:hover { background:#fafaf8; }
.cdr-item__img-wrap { position:relative;width:80px;height:80px;border-radius:var(--radius-md);overflow:hidden;background:var(--green-pale);flex-shrink:0;display:block; }
.cdr-item__img { width:100%;height:100%;object-fit:cover;transition:transform .35s; }
.cdr-item:hover .cdr-item__img { transform:scale(1.05); }
.cdr-item__sale { position:absolute;bottom:5px;left:5px;background:#E53935;color:#fff;font-size:.625rem;font-weight:700;padding:2px 6px;border-radius:3px;line-height:1.3; }
.cdr-item__body { display:flex;flex-direction:column;gap:6px;min-width:0; }
.cdr-item__name { font-size:.9rem;font-weight:600;color:var(--dark);text-decoration:none;line-height:1.3;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.cdr-item__name:hover { color:var(--green); }
.cdr-item__badges { display:flex;gap:4px;flex-wrap:wrap; }
.cdr-item__row { display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:2px; }
.cdr-item__qty { display:flex;align-items:center;gap:0;background:var(--cream);border:1px solid var(--border);border-radius:20px;overflow:hidden; }
.cdr-item__qty-btn { background:none;border:none;cursor:pointer;color:var(--green);width:30px;height:28px;display:flex;align-items:center;justify-content:center;transition:background .13s;flex-shrink:0; }
.cdr-item__qty-btn:hover { background:var(--green-pale); }
.cdr-item__qty-val { font-size:.875rem;font-weight:600;color:var(--dark);min-width:28px;text-align:center;line-height:28px; }
.cdr-item__prices { display:flex;flex-direction:column;align-items:flex-end;gap:1px; }
.cdr-item__price { font-size:.9375rem;font-weight:700;color:var(--green);white-space:nowrap; }
.cdr-item__price--old { font-size:.75rem;color:var(--text-muted);text-decoration:line-through;white-space:nowrap; }
.cdr-item__remove { background:none;border:none;cursor:pointer;color:var(--text-light);width:28px;height:28px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background .13s,color .13s;flex-shrink:0;align-self:start;margin-top:2px; }
.cdr-item__remove:hover { background:#FEE;color:#E53935; }

/* Panier vide */
.cdr-empty { display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:60px 24px;text-align:center;flex:1; }
.cdr-empty__icon { width:80px;height:80px;background:var(--green-pale);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:4px; }
.cdr-empty__title { font-family:var(--font-serif);font-size:1.25rem;color:var(--dark);font-weight:600;margin:0; }
.cdr-empty__sub { font-size:.875rem;color:var(--text-muted);margin:0; }

/* Pied */
.cdr-footer { border-top:1px solid var(--border);background:#fff;flex-shrink:0;display:flex;flex-direction:column;gap:0; }

/* Code promo */
.cdr-coupon { border-bottom:1px solid var(--border); }
.cdr-coupon__toggle { width:100%;display:flex;align-items:center;gap:8px;padding:12px 20px;background:none;border:none;cursor:pointer;font-size:.8125rem;color:var(--text-muted);transition:color .13s;font-family:inherit; }
.cdr-coupon__toggle:hover { color:var(--green); }
.cdr-coupon__arrow { margin-left:auto;transition:transform .2s; }
.cdr-coupon__toggle[aria-expanded="true"] .cdr-coupon__arrow { transform:rotate(180deg); }
.cdr-coupon__body { padding:0 20px 14px; }
.cdr-coupon__row { display:flex;gap:8px; }
.cdr-coupon__input { flex:1;border:1.5px solid var(--border);border-radius:var(--radius-sm);padding:9px 12px;font-size:.875rem;font-family:inherit;outline:none;transition:border-color .13s; }
.cdr-coupon__input:focus { border-color:var(--green); }
.cdr-coupon__feedback { margin-top:8px;padding:8px 12px;border-radius:var(--radius-sm);font-size:.8125rem; }
.cdr-coupon__feedback--ok { background:#EFF6EE;color:var(--green); }
.cdr-coupon__feedback--err { background:#FEE;color:#E53935; }

/* Résumé */
.cdr-summary { padding:14px 20px;border-bottom:1px solid var(--border); }
.cdr-summary__row { display:flex;justify-content:space-between;align-items:center; }
.cdr-summary__row--total { font-size:1.0625rem;font-weight:700;color:var(--dark); }
.cdr-summary__total { color:var(--green);font-size:1.25rem; }
.cdr-summary__hint { font-size:.75rem;color:var(--text-muted);margin:5px 0 0; }

/* Actions */
.cdr-actions { padding:16px 20px;display:flex;flex-direction:column;gap:10px; }
.cdr-checkout-btn { gap:8px;padding:14px;font-size:.9375rem;font-weight:700;border-radius:var(--radius-md);box-shadow:0 4px 14px rgba(45,90,39,.3); }
.cdr-checkout-btn:hover { box-shadow:0 6px 20px rgba(45,90,39,.4);transform:translateY(-1px); }
.cdr-cart-link { text-align:center;font-size:.8125rem;color:var(--text-muted);text-decoration:none;padding:4px;transition:color .13s; }
.cdr-cart-link:hover { color:var(--green); }

/* Trust */
.cdr-trust { display:flex;justify-content:center;gap:16px;padding:10px 20px 14px;border-top:1px solid var(--border);font-size:.6875rem;color:var(--text-muted); }
/* ─── Product Card v2 ────────────────────────────────────────────────── */
.product-card__no-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--green-pale); }
.product-card__meta-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.product-card__cbd { font-size: .75rem; font-weight: 500; color: var(--green); background: var(--green-pale); border-radius: 4px; padding: 1px 6px; }
.product-card__origin { font-size: .6875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.product-card__name a { color: var(--dark); text-decoration: none; font-size: .9375rem; font-weight: 500; line-height: 1.3; }
.product-card__name a:hover { color: var(--green); }
.product-card__rating { display: flex; align-items: center; gap: 4px; margin: 4px 0 8px; font-size: .75rem; }
.product-card__rev-count { color: var(--text-muted); }
/* Tarif dégressif sur la card */
.product-card__pricing-block { margin-top: auto; }
.product-card__price-old { font-size: .8125rem; color: var(--text-light); text-decoration: line-through; }
.product-card__unit { font-size: .75rem; color: var(--text-muted); }
.product-card__degressive { background: var(--green-pale); border-radius: var(--radius-sm); padding: 8px; }
.dg-label { font-size: .6875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.dg-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.dg-tier { text-align: center; background: #fff; border-radius: 4px; padding: 4px 2px; border: 1px solid var(--border); }
.dg-qty { display: block; font-size: .625rem; color: var(--text-muted); }
.dg-price { display: block; font-size: .75rem; font-weight: 600; color: var(--green); }
/* Badge dark */
.badge--dark { background: var(--dark); color: #fff; }
/* Footer card */
.product-card__footer { padding: 0 14px 14px; }
.product-card__add:hover { background: var(--green); color: #fff; }
.product-card__add.is-loading { opacity: .6; cursor: wait; }
.product-card__add.is-added { background: var(--green); color: #fff; }
.product-card__add--out { opacity: .65; cursor: default; }
.product-card__add--out:hover { background: var(--green-pale); color: var(--green); }
/* Wishlist active */
.product-card__wishlist.is-active { background: var(--green); color: #fff; border-color: var(--green); }
/* Out of stock card */
.product-card--out-of-stock .product-card__image { opacity: .7; }
/* ─── Shop Sidebar ───────────────────────────────────────────────────── */
.sidebar-cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-list__item { }
.sidebar-cat-list__item > a { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: var(--radius-sm); font-size: .875rem; color: var(--dark); transition: background .13s, color .13s; }
.sidebar-cat-list__item > a:hover, .sidebar-cat-list__item > a.is-active { background: var(--green-pale); color: var(--green); font-weight: 500; }
.sidebar-cat-list__count { background: var(--green-pale); color: var(--green); border-radius: 10px; padding: 1px 7px; font-size: .6875rem; }
.sidebar-cat-list--sub { padding-left: 12px; }
.sidebar-cat-list--sub a { font-size: .8125rem; }
/* Shop filter toggle (mobile) */
.shop-filter-toggle { display: none; margin-bottom: 16px; }
.shop-filter-toggle__count { background: var(--green); color: #fff; border-radius: 10px; padding: 1px 6px; font-size: .6875rem; margin-left: 4px; }
.shop-sidebar__close { display: none; }
/* ─── Archive / no results ───────────────────────────────────────────── */
.no-products-found h2 { font-size: 1.375rem; margin-bottom: 8px; }
.no-products-found p { color: var(--text-muted); margin-bottom: 20px; }
.no-filter-results { text-align: center; padding: 32px; background: var(--cream); border-radius: var(--radius-md); }
.archive-seo-text { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); font-size: .9375rem; color: var(--text-muted); line-height: 1.75; max-width: 720px; }
.shop-pagination { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 32px 0; }
/* ─── Mobile ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-filter-toggle { display: flex; }
  .shop-sidebar { position: fixed; top: 0; left: -300px; width: 280px; bottom: 0; z-index: 600; background: #fff; padding: 20px; overflow-y: auto; box-shadow: 4px 0 16px rgba(0,0,0,.1); transition: left .28s ease; }
  .shop-sidebar.is-open { left: 0; }
  .shop-sidebar__close { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; background: none; border: 1px solid var(--border); padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer; font-family: inherit; font-size: .875rem; }
  .cart-drawer__panel { width: 100%; max-width: 100vw; }
}
@media (max-width: 768px) {
  .trust-bar { display: none; }
  .topbar__links { display: none; }
  .header-search__panel { right: -80px; width: 280px; }
  .dg-tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .header-wishlist { display: none; }
  .header-search__panel { left: 0; right: 0; width: auto; }
}
/* ═══════════════════════════════════════════════════════════════════════
   La Verte Feuille — pages.css
   Styles : panier, checkout, page générique, confirmation, compte
   ═══════════════════════════════════════════════════════════════════════ */
/* ─── Étapes commande (cart-steps) ──────────────────────────────────── */
.cart-step--active .cart-step__num { background: var(--green); color: #fff; }
.cart-step__label { font-size: .8125rem; color: var(--text-muted); white-space: nowrap; }
.cart-step--active .cart-step__label { color: var(--green); font-weight: 500; }
.cart-step--active .cart-step__label a { color: var(--text-muted); }
.cart-step__line--done { background: var(--green); }
/* ─── Cart Page Header ───────────────────────────────────────────────── */
.cart-page-header { background: #fff; border-bottom: 1px solid var(--border); padding: 24px 0 0; margin-bottom: 32px; }
.cart-page-header__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.cart-page-header__title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--dark); display: flex; align-items: baseline; gap: 10px; }
.cart-page-header__count { font-size: 1rem; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; }
/* Barre livraison gratuite */
.cart-freeship-bar { padding-bottom: 20px; }
.cart-freeship-bar__text { font-size: .875rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-freeship-bar__text--won { color: var(--green); font-weight: 500; }
.cart-freeship-bar__track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.cart-freeship-bar__fill { height: 100%; background: linear-gradient(90deg, var(--green-light), var(--green)); border-radius: 3px; transition: width .5s ease; }
/* ─── Cart page layout ───────────────────────────────────────────────── */
.cart-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; padding-bottom: 60px; }
/* ─── Cart Item Card ─────────────────────────────────────────────────── */
.cart-item-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; margin-bottom: 12px; transition: border-color .15s; }
.cart-item-card:hover { border-color: var(--green-mid); }
.cart-item-card__img { width: 88px; height: 88px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--green-pale); }
.cart-item-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-card__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cart-item-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.cart-item-card__name { font-weight: 500; font-size: .9375rem; line-height: 1.35; }
.cart-item-card__name a { color: var(--dark); text-decoration: none; }
.cart-item-card__name a:hover { color: var(--green); }
.cart-item-card__meta { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.cart-item-card__cbd { background: var(--green-pale); color: var(--green); font-size: .6875rem; font-weight: 500; border-radius: 4px; padding: 2px 6px; }
.cart-item-card__culture { background: var(--dark); color: #fff; font-size: .6875rem; font-weight: 500; border-radius: 4px; padding: 2px 6px; text-transform: uppercase; letter-spacing: .05em; }
.cart-item-card__remove { background: none; border: none; cursor: pointer; color: var(--text-light); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .13s, color .13s; }
.cart-item-card__remove:hover { background: #FFEBEE; color: #E53935; }
.cart-item-card__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
/* Qty control dans le panier */
.cart-item-card__qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.cart-item-card__qty-btn { background: none; border: none; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; font-weight: 500; color: var(--green); transition: background .13s; }
.cart-item-card__qty-btn:hover { background: var(--green-pale); }
.cart-item-card__qty-input { width: 44px; height: 32px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: .875rem; font-weight: 500; outline: none; }
.cart-item-card__qty-fixed { font-size: .875rem; font-weight: 500; padding: 0 12px; }
.cart-item-card__prices { text-align: right; }
.cart-item-card__unit-price { display: block; font-size: .75rem; color: var(--text-muted); }
.cart-item-card__subtotal { display: block; font-size: 1rem; font-weight: 600; color: var(--green); }
/* ─── Actions bas du panier ──────────────────────────────────────────── */
.cart-page-actions { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 20px 0; flex-wrap: wrap; }
.cart-coupon-form__inner { display: flex; gap: 8px; }
.cart-coupon-active__remove { color: var(--text-muted); text-decoration: none; font-size: 1.125rem; line-height: 1; margin-left: 8px; }
.cart-coupon-active__remove:hover { color: #E53935; }
.cart-page-actions__right { display: flex; align-items: center; gap: 12px; }
.cart-continue { font-size: .8125rem; color: var(--text-muted); text-decoration: none; white-space: nowrap; }
.cart-continue:hover { color: var(--green); }
.btn--sm { padding: 8px 14px; font-size: .8125rem; }
/* ─── Livraison express — bannière client ─────────────────────────────── */
.lvf-express-banner,
.cart-express-notice { background: #E8F5E9; border: 1.5px solid #4CAF50; border-radius: var(--radius-md); padding: 12px 16px; font-size: .9rem; color: #1B5E20; line-height: 1.5; }
.lvf-express-banner strong { font-weight: 700; }
.lvf-express-banner a { color: inherit; }
/* État fermé (hors horaires) */
.lvf-express-banner--closed { background: #FFF8E1; border-color: #FFD54F; color: #6B4C00; }
/* Icône animée (pulse) */
.lvf-express-banner::before { content: ''; display: inline-block; width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; margin-right: 6px; vertical-align: middle; animation: lvf-pulse 1.5s ease-in-out infinite; }
@keyframes lvf-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
/* ─── Cart Summary Box ───────────────────────────────────────────────── */
.cart-page-summary { position: sticky; top: 80px; }
.cart-summary-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.cart-summary-box__title { font-size: .9375rem; font-weight: 600; padding: 14px 18px; background: var(--green-pale); color: var(--green); border-bottom: 1px solid var(--border); }
.cart-summary-rows { padding: 12px 18px; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.cart-summary-row:last-child { border-bottom: none; }
.cart-summary-row--discount { color: var(--green); }
.cart-summary-row--shipping { color: var(--green); }
.cart-summary-row--total { font-size: 1.0625rem; font-weight: 700; color: var(--green); padding-top: 12px; margin-top: 4px; border-top: 2px solid var(--border); border-bottom: none; }
.cart-summary-freeship { padding: 10px 18px; background: var(--cream); font-size: .8125rem; color: var(--text-muted); }
.cart-summary-freeship p { margin: 6px 0 0; }
.cart-payment-icons { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-top: 1px solid var(--border); }
.cart-payment-icons__label { font-size: .75rem; color: var(--text-muted); }
.cart-payment-icons__list { display: flex; gap: 6px; }
.payment-icon { font-size: 1.125rem; }
.cart-assurances { list-style: none; padding: 12px 18px 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; }
.cart-assurances li { font-size: .8125rem; color: var(--text-muted); }
/* ─── Panier vide ────────────────────────────────────────────────────── */
.cart-empty__icon { font-size: 4rem; margin-bottom: 16px; }
.cart-empty__title { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 10px; }
.cart-empty__sub { color: var(--text-muted); font-size: .9375rem; margin-bottom: 24px; max-width: 380px; margin-left: auto; margin-right: auto; }
/* ═══════════════════════════════════════════════════════════════════════
   CHECKOUT — Layout, sections, champs, récapitulatif
   ═══════════════════════════════════════════════════════════════════════ */
/* ── Header checkout ─────────────────────────────────────────────────── */
.checkout-page-header { background:#fff; border-bottom:1px solid var(--border); padding:16px 0; margin-bottom:0; }
.checkout-page-header__inner { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.checkout-logo { display:flex; align-items:center; text-decoration:none; }
.checkout-logo img { max-height:36px; width:auto; }
.checkout-secure-badge { font-size:.8125rem; color:var(--text-muted); }
/* ── Layout 2 colonnes ───────────────────────────────────────────────── */
.lvf-checkout-wrap { padding:32px 0 60px; }
.lvf-checkout-grid { display:flex; gap:28px; align-items:flex-start; }
.lvf-checkout-main { flex:1; min-width:0; }
.lvf-checkout-side { width:360px; flex-shrink:0; position:sticky; top:80px; }
/* ── Connecté / Invité ───────────────────────────────────────────────── */
.checkout-logged-in { display:flex; align-items:center; gap:12px; background:var(--green-pale); border:1px solid var(--border); border-radius:var(--radius-md); padding:12px 16px; margin-bottom:16px; font-size:.875rem; }
.checkout-logged-in__name { font-weight:600; }
.checkout-logged-in__link { color:var(--green); font-size:.8125rem; }
.checkout-guest-notice { margin-bottom:16px; font-size:.875rem; }
/* ── Sections formulaire ─────────────────────────────────────────────── */
.lvf-co-section { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; margin-bottom:12px; }
.lvf-co-section__head { display:flex; align-items:center; gap:12px; padding:14px 18px; background:var(--green-pale); border-bottom:1px solid var(--border); }
.lvf-co-section__num { width:26px; height:26px; background:var(--green); color:#fff; border-radius:50%; font-size:.75rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.lvf-co-section__title { font-size:.9375rem; font-weight:600; color:var(--green); }
.lvf-co-section__badge { font-size:.75rem; background:var(--green); color:#fff; padding:2px 8px; border-radius:10px; margin-left:auto; }
.lvf-co-section__body { padding:18px; }
/* ── Champs de formulaire ────────────────────────────────────────────── */
.lvf-co-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.lvf-co-field { margin-bottom:12px; }
.lvf-co-field:last-child { margin-bottom:0; }
.lvf-co-field label { display:block; font-size:.8125rem; font-weight:500; color:var(--dark); margin-bottom:5px; }
.lvf-co-required { color:#E53935; }
.lvf-co-input { width:100%; border:1px solid var(--border); border-radius:var(--radius-sm); padding:10px 13px; font-size:.9375rem; font-family:inherit; color:var(--dark); background:#fff; outline:none; box-sizing:border-box; transition:border-color .15s, box-shadow .15s; }
.lvf-co-input:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(45,90,39,.1); }
.lvf-co-input--error { border-color:#E53935 !important; background:#fff5f5; }
.lvf-co-input--ok { border-color:#4CAF50 !important; background:#f9fdf9; }
.lvf-co-textarea { resize:vertical; min-height:70px; }
.lvf-co-hint { display:block; font-size:.75rem; color:var(--text-muted); margin-top:3px; }
.lvf-co-error { display:none; font-size:.75rem; color:#E53935; margin-top:3px; }
.lvf-co-error.is-visible { display:block; }
/* ── Badge express sous CP ───────────────────────────────────────────── */
#expressZoneBadge { margin-top:6px; font-size:.8125rem; padding:8px 12px; border-radius:6px; }
/* ── Modes de paiement ───────────────────────────────────────────────── */
.lvf-co-payment-list { display:flex; flex-direction:column; gap:8px; }
.lvf-co-payment-method { border:1.5px solid var(--border); border-radius:var(--radius-md); overflow:hidden; cursor:pointer; transition:border-color .15s; }
.lvf-co-payment-method.is-selected { border-color:var(--green); }
.lvf-co-payment-method__head { display:flex; align-items:center; gap:10px; padding:13px 16px; }
.lvf-co-payment-method__radio { accent-color:var(--green); }
.lvf-co-payment-method__icon img { max-height:20px; vertical-align:middle; }
.lvf-co-payment-method__name { font-size:.9375rem; font-weight:500; }
.lvf-co-payment-method__body { max-height:0; overflow:hidden; transition:max-height .25s ease, padding .25s; background:var(--green-pale); font-size:.875rem; color:var(--text-muted); padding:0 16px; }
.lvf-co-payment-method__body.is-open { max-height:300px; padding:14px 16px; }
.lvf-co-payment-method__body p { margin:0; }
/* ── Confirmation âge ────────────────────────────────────────────────── */
.lvf-co-age { background:#FFF8E1; border:1px solid #FFD54F; border-radius:var(--radius-sm); padding:13px 16px; margin-top:14px; }
.lvf-co-age label { display:flex; align-items:flex-start; gap:10px; cursor:pointer; font-size:.9rem; color:#5D4037; line-height:1.5; font-weight:400; margin:0; }
.lvf-co-age input[type=checkbox] { width:18px; height:18px; flex-shrink:0; margin-top:2px; accent-color:var(--green); cursor:pointer; }
/* ── Bouton commander mobile ─────────────────────────────────────────── */
.lvf-co-place-mobile { display:none; padding-top:12px; }
/* ── Récapitulatif (colonne droite) ──────────────────────────────────── */
.lvf-co-summary { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; }
.lvf-co-summary__head { display:flex; align-items:center; justify-content:space-between; padding:14px 18px; background:var(--green); color:#fff; }
.lvf-co-summary__head h2 { font-size:.9375rem; font-weight:600; color:#fff; margin:0; }
.lvf-co-summary__edit { font-size:.8125rem; color:rgba(255,255,255,.8); text-decoration:none; }
.lvf-co-summary__edit:hover { color:#fff; }
.lvf-co-summary__items { border-bottom:1px solid var(--border); max-height:260px; overflow-y:auto; }
.lvf-co-summary__item { display:flex; align-items:center; gap:12px; padding:10px 16px; border-bottom:1px solid var(--border); }
.lvf-co-summary__item:last-child { border-bottom:none; }
.lvf-co-summary__item-img { position:relative; width:52px; height:52px; flex-shrink:0; border-radius:var(--radius-sm); overflow:hidden; background:var(--green-pale); }
.lvf-co-summary__item-img img { width:100%; height:100%; object-fit:cover; }
.lvf-co-summary__item-qty { position:absolute; top:-6px; right:-6px; background:var(--green); color:#fff; width:18px; height:18px; border-radius:50%; font-size:.625rem; font-weight:700; display:flex; align-items:center; justify-content:center; }
.lvf-co-summary__item-info { flex:1; min-width:0; }
.lvf-co-summary__item-name { font-size:.875rem; font-weight:500; display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.lvf-co-summary__item-meta { font-size:.75rem; color:var(--green); display:block; }
.lvf-co-summary__item-price { font-size:.875rem; font-weight:600; color:var(--green); flex-shrink:0; }
.lvf-co-summary__totals { padding:8px 16px; border-bottom:1px solid var(--border); }
.lvf-co-summary__row { display:flex; justify-content:space-between; padding:7px 0; font-size:.875rem; color:var(--text-muted); border-bottom:1px solid var(--border); }
.lvf-co-summary__row:last-child { border-bottom:none; }
.lvf-co-summary__row--green { color:var(--green); }
.lvf-co-summary__row--total { font-size:1rem; font-weight:700; color:var(--green); border-top:2px solid var(--border); border-bottom:none; padding-top:10px; }
.lvf-co-summary__loyalty { padding:8px 16px; font-size:.8125rem; color:var(--green); background:var(--green-pale); border-bottom:1px solid var(--border); }
.lvf-co-summary__express { padding:0 16px 10px; }
.lvf-co-summary__cta { padding:12px 16px; }
.lvf-co-summary__cta .btn { width:100%; }
.lvf-co-trust { display:flex; gap:6px; flex-wrap:wrap; padding:10px 16px 14px; }
.lvf-co-trust span { font-size:.75rem; color:var(--text-muted); background:var(--cream); padding:3px 9px; border-radius:20px; }
/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lvf-checkout-grid { flex-direction:column; }
  .lvf-checkout-side { width:100%; position:static; order:-1; }
  .lvf-checkout-main { width:100%; }
}
@media (max-width: 600px) {
  .lvf-co-grid2 { grid-template-columns:1fr; }
  .lvf-co-place-mobile { display:block; }
}
/* ═══ Login / Inscription — Auth v3 (layout split) ══════════════════════ */
.lvf-auth { display:flex; min-height:100vh; }

/* Panneau gauche — marque */
.lvf-auth__brand {
  flex:0 0 42%; background:var(--green); color:#fff;
  display:flex; align-items:center; justify-content:center;
  padding:48px 40px; position:sticky; top:0; height:100vh; overflow:hidden;
}
.lvf-auth__brand-inner { max-width:340px; width:100%; }
.lvf-auth__brand-logo { display:inline-block; margin-bottom:28px; text-decoration:none; }
.lvf-auth__brand-name { font-family:var(--font-serif); font-size:1.75rem; color:#fff; font-weight:700; }
.lvf-auth__brand-tagline { font-family:var(--font-serif); font-size:1.5rem; color:rgba(255,255,255,.9); line-height:1.4; margin-bottom:28px; }
.lvf-auth__brand-tagline em { font-style:italic; color:#fff; }
.lvf-auth__trust { list-style:none; padding:0; margin:0 0 28px; display:flex; flex-direction:column; gap:10px; font-size:.9375rem; color:rgba(255,255,255,.85); }
.lvf-auth__trust-dot { margin-right:4px; }
.lvf-auth__brand-promo { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); border-radius:var(--radius-md); padding:14px 18px; margin-bottom:24px; text-align:center; }
.lvf-auth__brand-promo-label { display:block; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.7); margin-bottom:4px; }
.lvf-auth__brand-promo-code { display:block; font-size:1.5rem; font-weight:700; letter-spacing:.1em; color:#fff; margin-bottom:4px; }
.lvf-auth__brand-promo-desc { display:block; font-size:.8125rem; color:rgba(255,255,255,.8); }
.lvf-auth__brand-quote { margin:0; border-left:3px solid rgba(255,255,255,.35); padding-left:14px; }
.lvf-auth__brand-quote blockquote { font-size:.9375rem; font-style:italic; color:rgba(255,255,255,.85); margin:0 0 6px; line-height:1.5; }
.lvf-auth__brand-quote figcaption { font-size:.8125rem; color:rgba(255,255,255,.6); }

/* Panneau droit — formulaires */
.lvf-auth__main { flex:1; min-width:0; display:flex; flex-direction:column; padding:40px 52px 60px; overflow-y:auto; background:#fff; }
.lvf-auth__back { display:inline-flex; align-items:center; gap:5px; font-size:.875rem; color:var(--text-muted); text-decoration:none; margin-bottom:32px; transition:color .15s; }
.lvf-auth__back:hover { color:var(--green); }

/* Onglets */
.lvf-auth__tabs { display:flex; position:relative; border-bottom:2px solid var(--border); margin-bottom:28px; }
.lvf-auth__tab { background:none; border:none; padding:10px 20px; font-size:1rem; font-family:inherit; cursor:pointer; color:var(--text-muted); font-weight:400; transition:color .15s; position:relative; z-index:1; }
.lvf-auth__tab.is-active { color:var(--green); font-weight:600; }
.lvf-auth__tab-indicator { position:absolute; bottom:-2px; height:2px; background:var(--green); border-radius:2px; transition:left .2s ease, width .2s ease; }

/* Panels */
.lvf-auth__panel { display:none; }
.lvf-auth__panel.is-active { display:block; }
.lvf-auth__panel-head { margin-bottom:22px; }
.lvf-auth__panel-title { font-family:var(--font-serif); font-size:1.625rem; margin:0 0 4px; color:var(--text); }
.lvf-auth__panel-sub { font-size:.9375rem; color:var(--text-muted); margin:0; }

/* Avantages */
.lvf-auth__perks { list-style:none; padding:12px 16px; margin:0 0 20px; display:flex; flex-direction:column; gap:7px; background:var(--green-pale); border-radius:var(--radius-md); font-size:.875rem; color:var(--green); }

/* Champs */
.lvf-auth__form { width:100%; }
.lvf-auth__field { margin-bottom:16px; }
.lvf-auth__label { display:block; font-size:.875rem; font-weight:500; color:var(--text); margin-bottom:6px; }
.lvf-auth__req { color:var(--green); }
.lvf-auth__input-wrap { position:relative; display:flex; align-items:center; }
.lvf-auth__ico { position:absolute; left:13px; width:16px; height:16px; color:var(--text-muted); flex-shrink:0; pointer-events:none; }
.lvf-auth__input { width:100%; border:1.5px solid var(--border); border-radius:var(--radius-sm); padding:10px 14px; font-size:.9375rem; font-family:inherit; background:#fff; color:var(--text); transition:border-color .15s, box-shadow .15s; outline:none; }
.lvf-auth__input-wrap .lvf-auth__input { padding-left:40px; }
.lvf-auth__input:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(45,90,39,.1); }
.lvf-auth__input::placeholder { color:var(--text-muted); }
.lvf-auth__eye { position:absolute; right:0; top:0; bottom:0; display:flex; align-items:center; padding:0 12px; background:none; border:none; cursor:pointer; color:var(--text-muted); transition:color .15s; }
.lvf-auth__eye:hover { color:var(--green); }
.lvf-auth__eye svg { width:18px; height:18px; }

/* Rangée prénom/nom */
.lvf-auth__row-names { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* Rangée mémoriser / mot de passe oublié */
.lvf-auth__row-apart { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; font-size:.875rem; }
.lvf-auth__remember { display:flex; align-items:center; gap:7px; cursor:pointer; color:var(--text-muted); }
.lvf-auth__link { color:var(--green); font-size:.875rem; text-decoration:none; }
.lvf-auth__link:hover { text-decoration:underline; }

/* Jauge de force */
.lvf-auth__strength { margin-top:7px; }
.lvf-auth__strength-bar { height:4px; background:var(--border); border-radius:2px; overflow:hidden; margin-bottom:4px; }
.lvf-auth__strength-fill { height:100%; width:0; border-radius:2px; transition:width .25s ease, background .25s ease; }
.lvf-auth__strength-label { font-size:.75rem; font-weight:500; }

/* Confidentialité */
.lvf-auth__privacy { font-size:.8125rem; color:var(--text-muted); margin-bottom:16px; line-height:1.5; }
.lvf-auth__privacy a { color:var(--green); }

/* Bouton submit */
.lvf-auth__submit { position:relative; }
.lvf-auth__submit-busy { display:none; align-items:center; justify-content:center; gap:8px; }
.lvf-auth__submit:disabled .lvf-auth__submit-idle { display:none; }
.lvf-auth__submit:disabled .lvf-auth__submit-busy { display:flex; }
.lvf-auth__spinner { width:16px; height:16px; border:2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%; animation:lvf-spin .7s linear infinite; }
@keyframes lvf-spin { to { transform:rotate(360deg); } }

/* Lien switch */
.lvf-auth__switch { margin-top:20px; font-size:.875rem; color:var(--text-muted); text-align:center; }
.lvf-auth__switch-btn { background:none; border:none; color:var(--green); font-size:inherit; font-family:inherit; cursor:pointer; font-weight:500; padding:0; text-decoration:underline; text-underline-offset:2px; }
.lvf-auth__switch-btn:hover { opacity:.8; }

/* ── Responsive auth ────────────────────────────────────────────────────── */
@media (max-width:900px) {
  .lvf-auth { flex-direction:column; min-height:auto; }
  .lvf-auth__brand { flex:none; height:auto; position:static; padding:32px 24px; }
  .lvf-auth__brand-quote { display:none; }
  .lvf-auth__main { padding:28px 24px 48px; }
}
@media (max-width:600px) {
  .lvf-auth__brand { display:none; }
  .lvf-auth__main { padding:20px 16px 40px; }
  .lvf-auth__row-names { grid-template-columns:1fr; }
}
/* ═══ Woocommerce-wrap container ══════════════════════════════════════════ */
.woocommerce-wrap { padding: 32px 0 80px; }
/* ═══ COA badges sur fiches produit ══════════════════════════════════════ */
.product-coa-block { margin: 16px 0; }
.product-coa-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); border: 1px solid var(--green);
  color: var(--green); border-radius: var(--radius-sm);
  padding: 8px 14px; font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: background .13s;
}
.product-coa-link:hover { background: var(--green); color: #fff; }
.product-coa-link svg { flex-shrink: 0; }
/* ═══ Nouveaux templates WC ══════════════════════════════════════════════ */
/* no-products-found */
.no-products-found { text-align: center; padding: 60px 20px; }
.no-products-found__icon { font-size: 3rem; margin-bottom: 16px; }
.no-products-found__title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; }
.no-products-found__text { color: var(--text-muted); margin-bottom: 24px; }
/* result-count */
.shop-result-count { font-size: .875rem; color: var(--text-muted); margin: 0; }
/* sale-flash / onsale badge */
span.onsale { position: absolute; top: 10px; left: 10px; z-index: 2; }
/* upsells */
.upsell-products { margin-top: 48px; }
/* order-details table */
.woocommerce-table--order-details { margin-bottom: 24px; }
/* address grid */
.account-address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .account-address-grid { grid-template-columns: 1fr; } }
/* lost-password */
.woocommerce-ResetPassword .co-field { margin-bottom: 14px; }
/* downloads table */
.woocommerce-table--downloads { width: 100%; }
/* ═══ Page Qui sommes-nous ═══════════════════════════════════════════════ */
.about-hero { background: linear-gradient(135deg, var(--dark) 0%, #2D5A27 100%); color: #fff; padding: 80px 0; text-align: center; margin-bottom: 60px; }
.about-hero__badge { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 5px 16px; font-size: .8125rem; letter-spacing: .05em; margin-bottom: 16px; }
.about-hero__title { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 12px; font-weight: 400; }
.about-hero__sub { font-size: 1.125rem; opacity: .8; max-width: 480px; margin: 0 auto; }
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-section__text h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 16px; }
.about-section__text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: var(--green-pale); border-radius: var(--radius-md); padding: 24px; text-align: center; }
.about-stat__num { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--green); font-weight: 600; }
.about-stat__label { display: block; font-size: .8125rem; color: var(--text-muted); margin-top: 4px; }
.about-engagements { margin-bottom: 80px; }
.about-engagements__title { font-family: var(--font-serif); font-size: 2rem; text-align: center; margin-bottom: 40px; }
.about-engagements__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-engagement-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.about-engagement-card__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.about-engagement-card h3 { font-family: var(--font-serif); font-size: 1.0625rem; margin-bottom: 10px; }
.about-engagement-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.about-cta { background: var(--green-pale); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin-bottom: 80px; }
.about-cta h2 { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 14px; }
.about-cta p { color: var(--text-muted); line-height: 1.7; max-width: 560px; margin: 0 auto 24px; }
.about-phone { color: var(--green); font-weight: 500; }
.about-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.about-reviews { margin-bottom: 80px; }
.about-reviews__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.about-reviews__header h2 { font-family: var(--font-serif); font-size: 1.75rem; margin: 0; }
.about-reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 1024px) {
  .about-section { grid-template-columns: 1fr; gap: 32px; }
  .about-engagements__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-hero__title { font-size: 2rem; }
  .about-engagements__grid { grid-template-columns: 1fr; }
  .about-reviews__grid { grid-template-columns: 1fr; }
  .about-reviews__header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
/* ═══ SEO YMYL — Sections front-page guide 2026 ═════════════════════════ */
/* ── Catalogue silos (section 3 guide) ── */
.home-silos { background: var(--cream); }
.home-silos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.home-silo-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-decoration: none;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.home-silo-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--dark);
}
.home-silo-card__icon { font-size: 2rem; margin-bottom: 12px; }
.home-silo-card__body { flex: 1; }
.home-silo-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.home-silo-card__body p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.home-silo-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
}
.home-silo-card__tags span {
  font-size: .6875rem;
  background: var(--green-pale);
  color: var(--green);
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500;
}
.home-silo-card__cta {
  font-size: .8125rem;
  color: var(--green);
  font-weight: 500;
  margin-top: auto;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: .9375rem;
  margin-top: 6px;
  max-width: 560px;
}
/* ── E-E-A-T section ── */
.eeat-section { background: var(--dark); color: var(--white); padding: 70px 0; }
.eeat-header { text-align: center; margin-bottom: 48px; }
.eeat-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.eeat-lead {
  color: rgba(255,255,255,.7);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: .9375rem;
}
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.eeat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.eeat-card__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.eeat-card h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 10px;
}
.eeat-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 14px;
}
.eeat-card__link {
  font-size: .8125rem;
  color: var(--green-mid);
  font-weight: 500;
  text-decoration: none;
}
.eeat-card__link:hover { color: var(--white); }
/* ── FAQ SEO (rich snippets) ── */
.seo-faq { background: var(--cream); padding: 60px 0; }
.seo-faq__list { max-width: 760px; margin: 32px auto 0; }
.seo-faq__item { border-bottom: 1px solid var(--border); }
.seo-faq__item:last-child { border-bottom: none; }
/* ── Hero trust signals (section hors-hero, contexte clair — non utilisé dans le hero actuel) ── */
/* ── Responsive ── */
@media (max-width: 1024px) {
  .home-silos__grid { grid-template-columns: repeat(2, 1fr); }
  .eeat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .home-silos__grid { grid-template-columns: 1fr; }
  .eeat-header h2 { font-size: 1.5rem; }
}
/* ═══ Maillage interne Blog → Produits (guide section 5) ════════════════ */
.single-article__related-products {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
  border: 1px solid rgba(45,90,39,.15);
}
.single-article__related-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.single-article__products-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.article-product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-decoration: none;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.article-product-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  color: var(--dark);
}
.article-product-card__img { width: 48px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.article-product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.article-product-card__info { flex: 1; }
.article-product-card__name { font-size: .875rem; font-weight: 500; line-height: 1.3; }
.article-product-card__meta { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.article-product-card__price { font-size: .8125rem; color: var(--green); font-weight: 500; margin-top: 2px; }
.article-product-card__cta { font-size: .75rem; color: var(--green); white-space: nowrap; }
.single-article__shop-link { text-align: center; }
/* ═══ Quiz CBD ═══════════════════════════════════════════════════════════ */
.quiz-page { padding: 40px 0 80px; }
/* Hero quiz */
.quiz-hero { text-align: center; margin-bottom: 40px; }
.quiz-hero__badge { display: inline-block; background: var(--gold); color: #fff; border-radius: 20px; padding: 4px 16px; font-size: .8125rem; font-weight: 600; margin-bottom: 14px; }
.quiz-hero__title { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 14px; color: var(--dark); }
.quiz-hero__sub { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 16px; line-height: 1.7; }
.quiz-hero__prize { display: inline-block; background: var(--green-pale); border: 2px solid var(--green); border-radius: var(--radius-md); padding: 10px 24px; font-size: 1rem; color: var(--green); margin-bottom: 16px; }
.quiz-hero__rules { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: .8125rem; color: var(--text-muted); }
/* Bannière accueil */
.quiz-banner { background: linear-gradient(135deg, var(--dark) 0%, #2D5A27 100%); padding: 48px 0; }
.quiz-banner__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.quiz-banner__visual { font-size: 4rem; line-height: 1; }
.quiz-banner__badge { display: inline-block; background: var(--gold); color: #fff; border-radius: 12px; padding: 2px 12px; font-size: .75rem; font-weight: 600; margin-bottom: 8px; }
.quiz-banner__title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--white); margin-bottom: 8px; }
.quiz-banner__sub { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: 10px; line-height: 1.6; }
.quiz-banner__prize { font-size: .9375rem; color: var(--gold); margin-bottom: 10px; }
.quiz-banner__perks { display: flex; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.6); }
.quiz-banner__cta { text-align: center; flex-shrink: 0; }
.quiz-banner__count { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 8px; }
/* Conteneur quiz */
.quiz-container { max-width: 680px; margin: 0 auto; }
.quiz-progress { margin-bottom: 28px; }
.quiz-progress__bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.quiz-progress__fill { height: 100%; background: var(--green); border-radius: 4px; transition: width .4s ease; }
.quiz-progress__label { display: flex; justify-content: space-between; font-size: .8125rem; color: var(--text-muted); }
/* Questions */
.quiz-question { display: none; }
.quiz-question.is-active { display: block; animation: fadeInUp .3s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.quiz-question__num { font-size: .8125rem; color: var(--text-muted); font-weight: 500; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.quiz-question__text { font-family: var(--font-serif); font-size: 1.375rem; margin-bottom: 24px; color: var(--dark); line-height: 1.4; }
/* Choix */
.quiz-choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.quiz-choice { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-md); cursor: pointer; text-align: left; font-family: inherit; font-size: .9375rem; color: var(--dark); transition: border-color .15s, background .15s; }
.quiz-choice:hover:not(:disabled) { border-color: var(--green); background: var(--green-pale); }
.quiz-choice__letter { width: 32px; height: 32px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 600; flex-shrink: 0; }
.quiz-choice__text { flex: 1; }
.quiz-choice__icon { font-size: 1.125rem; width: 24px; text-align: center; flex-shrink: 0; }
.quiz-choice.is-correct { border-color: #2D5A27; background: #E8F5E9; }
.quiz-choice.is-correct .quiz-choice__letter { background: #2D5A27; color: #fff; border-color: #2D5A27; }
.quiz-choice.is-wrong { border-color: #E53935; background: #FFEBEE; }
.quiz-choice.is-wrong .quiz-choice__letter { background: #E53935; color: #fff; border-color: #E53935; }
.quiz-choice:disabled { cursor: default; }
/* Explication */
.quiz-explanation { background: var(--green-pale); border-left: 4px solid var(--green); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; margin-bottom: 16px; }
.quiz-explanation p { margin: 0 0 14px; font-size: .9375rem; line-height: 1.65; }
.quiz-explanation p:last-of-type { margin-bottom: 0; }
/* Résultat */
.quiz-result { text-align: center; padding: 40px 0; }
.quiz-result__score-circle { width: 110px; height: 110px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 700; color: #fff; margin: 0 auto 20px; }
.quiz-result__title { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 10px; }
.quiz-result__sub { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 28px; line-height: 1.65; }
.quiz-result__form { background: var(--green-pale); border: 2px solid var(--green); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; text-align: left; }
.quiz-result__form h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 8px; color: var(--green); }
.quiz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.quiz-consent { display: flex; align-items: flex-start; gap: 8px; font-size: .8125rem; color: var(--text-muted); margin-bottom: 14px; cursor: pointer; }
.quiz-consent input { flex-shrink: 0; margin-top: 2px; }
.quiz-result__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.quiz-closed { text-align: center; padding: 60px 20px; }
.quiz-closed__icon { font-size: 3rem; margin-bottom: 16px; }
/* Règlement */
.quiz-rules-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
.quiz-rules-section h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; }
.quiz-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quiz-rules-grid div { background: var(--cream); border-radius: var(--radius-md); padding: 18px; }
.quiz-rules-grid h3 { font-size: .9375rem; font-weight: 600; margin-bottom: 8px; }
.quiz-rules-grid p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
/* ═══ Volume selector interactif — toutes les pages produits ═══════════ */
/* Ligne prix /g live */
.product-card__price-row { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.product-card__price { font-size: 1.125rem; font-weight: 700; color: var(--dark); line-height: 1; }
.dg-live-amount { font-size: inherit; font-weight: inherit; color: inherit; transition: color .15s; }
.dg-live-currency { font-size: .875rem; font-weight: 600; color: inherit; }
/* Ligne total */
.product-card__total-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 4px 8px;
  background: var(--green-pale);
  border-radius: 4px;
  border: 1px solid rgba(45,90,39,.18);
  font-size: .8125rem;
}
.dg-total-label { color: var(--text-muted); }
.dg-total-amount { font-weight: 700; color: var(--green); font-size: .9375rem; }
/* Paliers volume */
.dg-tiers--interactive { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-top: 4px; }
.dg-tier--btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
  font-family: inherit;
  transition: border-color .13s, background .13s, transform .1s;
  line-height: 1.25;
  position: relative;
}
.dg-tier--btn:hover { border-color: var(--green); background: var(--green-pale); transform: translateY(-1px); }
.dg-tier--btn.is-active {
  border-color: var(--green);
  background: var(--green-pale);
  box-shadow: 0 0 0 1px var(--green);
}
.dg-tier--btn.is-active .dg-qty { color: var(--green); font-weight: 600; }
.dg-tier--btn .dg-qty { font-size: .6875rem; color: var(--text-muted); }
.dg-tier--btn .dg-price { font-size: .8125rem; font-weight: 700; color: var(--green); }
.dg-tier--btn .dg-unit { font-size: .6rem; font-weight: 400; color: var(--text-muted); margin-left: 1px; }
/* Badge économie sur les paliers (optionnel) */
.dg-tier--btn .dg-save {
  position: absolute;
  top: -6px;
  right: -4px;
  font-size: .6rem;
  background: var(--gold);
  color: #fff;
  border-radius: 3px;
  padding: 1px 4px;
  font-weight: 600;
  white-space: nowrap;
}
/* ═══ Vidéo block ════════════════════════════════════════════════════════ */
.lvf-video-block { margin: 32px 0; }
.lvf-video-block__title { font-family: var(--font-serif); font-size: 1.125rem; margin-bottom: 14px; color: var(--dark); }
.lvf-video-block__wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--dark); }
.lvf-video-block__wrapper iframe,
.lvf-video-block__wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: var(--radius-lg); }
/* Responsive quiz */
@media (max-width: 768px) {
  .quiz-banner__inner { grid-template-columns: 1fr; text-align: center; }
  .quiz-banner__visual { display: none; }
  .quiz-banner__perks { justify-content: center; }
  .quiz-form-row { grid-template-columns: 1fr; }
  .quiz-rules-grid { grid-template-columns: 1fr; }
  .quiz-hero__title { font-size: 1.75rem; }
}
/* Flash de confirmation lors du changement de palier */
.dg-price-flash { animation: dgFlash .32s ease; }
@keyframes dgFlash {
  0%   { opacity:1; }
  30%  { opacity:.4; transform:scale(.96); }
  100% { opacity:1; transform:scale(1); }
}
/* ════ PANIER v2 ══════════════════════════════════════════════════════════ */
/* Bannière livraison gratuite */
.cart-freeship-banner { background: var(--green); color: #fff; padding: 10px 0; font-size: .875rem; }
.cart-freeship-banner__inner { display: flex; align-items: center; gap: 12px; }
.cart-freeship-banner__inner--won { color: #fff; font-weight: 600; }
.cart-freeship-banner__bar { flex: 1; max-width: 200px; }
.cart-freeship-banner__track { height: 6px; background: rgba(255,255,255,.3); border-radius: 3px; overflow: hidden; }
.cart-freeship-banner__fill { height: 100%; background: #fff; border-radius: 3px; transition: width .4s ease; }
.cart-freeship-banner__msg { flex: 1; }
/* En-tête */
.cart-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 28px 0 20px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.cart-header__title { font-family: var(--font-serif); font-size: 1.875rem; display: flex; align-items: baseline; gap: 10px; }
.cart-header__count { font-size: 1rem; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; }
/* Étapes */
.cart-steps { display: flex; align-items: center; gap: 0; }
.cart-step { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 70px; }
.cart-step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 600; }
.cart-step span { font-size: .75rem; color: var(--text-muted); }
.cart-step.is-active .cart-step__num { background: var(--green); color: #fff; }
.cart-step.is-active span { color: var(--green); font-weight: 500; }
.cart-step__line { flex: 1; height: 2px; background: var(--border); min-width: 40px; margin-bottom: 16px; }
/* Layout */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; padding-bottom: 60px; }
.cart-summary-col { position: sticky; top: 20px; }
/* Articles */
.cart-items-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; transition: border-color .15s, box-shadow .15s; }
.cart-item:hover { border-color: var(--green-mid); box-shadow: var(--shadow-sm); }
.cart-item__img { width: 90px; height: 90px; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; background: var(--green-pale); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.cart-item__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.cart-item__name { font-weight: 500; font-size: .9375rem; color: var(--dark); }
.cart-item__name a { color: inherit; text-decoration: none; }
.cart-item__name a:hover { color: var(--green); }
.cart-item__meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.cbadge { font-size: .6875rem; font-weight: 500; padding: 2px 7px; border-radius: 3px; }
.cbadge--green { background: var(--green-pale); color: var(--green); }
.cbadge--gray { background: var(--cream); color: var(--text-muted); }
.cbadge--coa { background: #E8F5E9; color: #2D5A27; text-decoration: none; }
.cart-item__del { background: none; border: none; color: var(--text-light); cursor: pointer; padding: 4px; border-radius: 4px; flex-shrink: 0; transition: color .13s, background .13s; }
.cart-item__del:hover { color: #E53935; background: #FFEBEE; }
.cart-item__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; background: var(--cream); border-radius: 20px; padding: 4px 12px; }
.cart-item__qty-btn { background: none; border: none; color: var(--green); font-size: 1.125rem; font-weight: 700; cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .13s; }
.cart-item__qty-btn:hover { background: var(--green); color: #fff; }
.cart-item__qty-btn:disabled { opacity: .4; cursor: not-allowed; }
.cart-item__qty-num { font-weight: 600; font-size: 1rem; min-width: 20px; text-align: center; }
.cart-item__qty-unit { font-size: .75rem; color: var(--text-muted); }
.cart-item__qty-fixed { font-size: .875rem; color: var(--text-muted); }
.cart-item__prices { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.cart-item__unit { font-size: .8125rem; color: var(--text-muted); }
.cart-item__sub { font-size: 1.0625rem; font-weight: 700; color: var(--green); }
/* Actions bar */
.cart-actions-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.cart-back-link { font-size: .875rem; color: var(--text-muted); text-decoration: none; transition: color .13s; }
.cart-back-link:hover { color: var(--green); }
/* Bloc coupon */
.cart-coupon-block { background: var(--cream); border-radius: var(--radius-lg); padding: 18px; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.cart-coupon-block__icon { font-size: 1.5rem; }
.cart-coupon-block__title { font-weight: 600; font-size: .875rem; margin-bottom: 8px; }
.cart-coupon-form { display: flex; gap: 8px; }
.cart-coupon-form__input { flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; font-family: inherit; font-size: .875rem; transition: border-color .13s; }
.cart-coupon-form__input:focus { border-color: var(--green); outline: none; }
.cart-coupon-form__btn { white-space: nowrap; }
.cart-coupon-form__msg { margin-top: 8px; font-size: .8125rem; padding: 6px 10px; border-radius: 4px; }
.cart-coupon-form__msg--ok { background: #E8F5E9; color: #2D5A27; }
.cart-coupon-form__msg--err { background: #FFEBEE; color: #B71C1C; }
.cart-coupon-active { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; background: #E8F5E9; border-radius: 4px; padding: 6px 10px; font-size: .8125rem; }
.cart-coupon-active__rm { color: var(--text-muted); text-decoration: none; font-size: .75rem; white-space: nowrap; }
.cart-coupon-active__rm:hover { color: #E53935; }
/* Estimation livraison */
.cart-delivery-box { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 18px; margin-bottom: 14px; }
.cart-delivery-box__icon { font-size: 1.75rem; }
.cart-delivery-box__label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.cart-delivery-box__date { font-size: 1rem; font-weight: 600; color: var(--dark); }
.cart-delivery-box__tip { font-size: .75rem; color: var(--text-muted); }
.cart-delivery-box__express { margin-left: auto; background: var(--gold); color: #fff; font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 12px; }
/* Récapitulatif */
.cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.cart-summary__title { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cart-summary__rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 18px; }
.cart-summary__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9375rem; }
.cart-summary__row:last-child { border-bottom: none; }
.cart-summary__row--discount span:last-child { color: var(--green); font-weight: 600; }
.cart-summary__row--total { font-weight: 700; font-size: 1.125rem; color: var(--dark); padding-top: 14px; }
.cart-summary__row--total span:last-child { color: var(--green); font-size: 1.25rem; }
/* Fidélité */
.cart-loyalty-line { background: #FFF8E1; border: 1px solid #FFD54F; border-radius: var(--radius-sm); padding: 8px 12px; font-size: .8125rem; color: #795548; display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
/* Bouton commander */
.cart-checkout-btn { width: 100%; text-align: center; margin-bottom: 16px; font-size: 1.0625rem; }
/* Icônes paiement */
.cart-pay-icons { text-align: center; margin-bottom: 16px; }
.cart-pay-icons__label { font-size: .75rem; color: var(--text-muted); display: block; margin-bottom: 8px; }
.cart-pay-icons__row { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.picon { font-size: .6875rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; letter-spacing: .05em; }
.picon--visa { background: #1A1F71; color: #fff; }
.picon--mc { background: #EB001B; color: #fff; }
.picon--cb { background: #002060; color: #fff; }
.picon--ssl { background: var(--green-pale); color: var(--green); }
/* Garanties */
.cart-gua { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.cart-gua li { font-size: .8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
/* Panier vide */
.cart-empty { text-align: center; padding: 60px 20px 40px; }
.cart-empty__visual { font-size: 4rem; margin-bottom: 20px; }
.cart-empty h2 { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 12px; }
.cart-empty p { color: var(--text-muted); max-width: 460px; margin: 0 auto 28px; line-height: 1.65; }
.cart-empty__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.cart-empty__products h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 20px; }
/* Cross-sells */
.cart-cross-sells { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
/* Responsive */
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-col { position: static; }
  .cart-summary { margin-top: 0; }
}
@media (max-width: 600px) {
  .cart-header { flex-direction: column; gap: 12px; }
  .cart-steps { display: none; }
  .cart-item { flex-direction: column; }
  .cart-item__img { width: 100%; height: 160px; }
  .cart-checkout-btn { position: sticky; bottom: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
  .cart-freeship-banner__bar { display: none; }
}
/* ════ MON COMPTE — Fidélité & Abonnements ════════════════════════════════ */
.account-header__pts { color: var(--gold); font-weight: 600; }
.account-header__sub { color: var(--green); font-weight: 600; }
/* Carte fidélité */


/* ── Skip to content (accessibilité) ───────────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 99999;
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 6px 6px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.account-loyalty-level { display: flex; align-items: center; gap: 8px; }

.account-loyalty-redeem { margin: 0; }
/* Carte abonnements */

.account-subs-list { display: flex; flex-direction: column; gap: 10px; }
.account-sub-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--cream);
  border-radius: var(--radius-sm); gap: 12px;
}
.account-sub-row__info { display: flex; flex-direction: column; gap: 2px; }
.account-sub-row__name { font-weight: 500; font-size: .9375rem; }
.account-sub-row__meta { font-size: .8125rem; color: var(--text-muted); }
.account-sub-row__next { text-align: right; flex-shrink: 0; }
.account-sub-row__label { font-size: .75rem; color: var(--text-muted); display: block; }
.account-sub-row__date { font-size: .875rem; font-weight: 600; color: var(--green); }
/* ════ FICHE PRODUIT — Onglet Vidéo ══════════════════════════════════════ */
.product-video-wrap { aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; background: #000; }
.product-video-wrap iframe,
.product-video-wrap video { width: 100%; height: 100%; border: none; display: block; }
.product-video-title { font-size: .9375rem; font-weight: 500; margin-bottom: 12px; color: var(--dark); }
/* ── Sélecteur quantité libre — card produit ─────────────────────────── */
.product-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.product-card__qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.pc-qty-btn {
  background: none;
  border: none;
  width: 34px;
  height: 38px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  transition: background .13s;
  line-height: 1;
}
.pc-qty-btn:hover { background: var(--green-pale); }
.pc-qty-btn:active { background: var(--green); color: #fff; }
.pc-qty-input {
  width: 38px;
  height: 38px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: #fff;
  text-align: center;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  font-family: inherit;
  padding: 0;
  -moz-appearance: textfield;
}
.pc-qty-input::-webkit-inner-spin-button,
.pc-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.pc-qty-unit {
  font-size: .6875rem;
  color: var(--text-muted);
  padding: 0 6px 0 2px;
  font-weight: 500;
}
.product-card__add {
  flex: 1;
}
/* ════ FICHE PRODUIT v2 — Sections ═══════════════════════════════════════ */
/* Layout hero */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 32px 0 48px;
}
@media (max-width: 900px) {
  .sp-layout { grid-template-columns: 1fr; gap: 24px; }
}
/* Galerie */
.sp-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-pale);
  aspect-ratio: 1;
}
.sp-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .18s; }
.sp-gallery__placeholder { display: flex; align-items: center; justify-content: center; height: 400px; font-size: 5rem; }
.sp-gallery__thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.sp-gallery__thumb {
  width: 72px; height: 72px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  padding: 0; background: none;
  transition: border-color .13s;
}
.sp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-gallery__thumb.is-active { border-color: var(--green); }
.sp-gallery__thumb:hover { border-color: var(--green-mid); }
/* Infos */
.sp-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.sp-title { font-family: var(--font-serif); font-size: 2rem; line-height: 1.2; margin-bottom: 6px; }
.sp-subtitle { color: var(--text-muted); font-size: .9375rem; margin-bottom: 10px; }
.sp-rating { display: flex; align-items: center; gap: 8px; font-size: .875rem; margin-bottom: 16px; }
.sp-rating__count { color: var(--text-muted); font-size: .8125rem; }
/* Prix */
.sp-price-block { margin-bottom: 16px; }
.sp-price-row { display: flex; align-items: baseline; gap: 8px; }
.sp-price-old { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.sp-price-current { font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; }
.sp-price-unit { font-size: .875rem; color: var(--text-muted); }
.sp-price-total { margin-top: 6px; font-size: .9375rem; color: var(--dark); font-weight: 500;
  background: var(--green-pale); padding: 6px 12px; border-radius: var(--radius-sm); display: inline-flex; gap: 6px; }
/* Description courte */
.sp-short-desc { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
/* Dégressif */
.sp-degressive { margin-bottom: 16px; }
.sp-degressive__label { font-size: .8125rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
/* Formulaire ATC */
.sp-atc-row { display: flex; gap: 10px; align-items: center; margin-bottom: 16px; }
.sp-atc-btn { flex: 1; height: 48px; font-size: 1rem; }
/* Assurances */
.sp-assurances {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 16px;
}
.sp-assurance {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: var(--text-muted);
  background: var(--cream); padding: 8px 10px; border-radius: var(--radius-sm);
}
.sp-assurance span { font-size: 1rem; }
/* COA */
.sp-coa-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; color: var(--green); font-weight: 500;
  border: 1px solid var(--green); border-radius: var(--radius-sm);
  padding: 5px 12px; margin-bottom: 16px;
  transition: background .13s;
}
.sp-coa-link:hover { background: var(--green-pale); }
/* Meta list */
.sp-meta-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border);
  font-size: .875rem;
}
.sp-meta-list li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.sp-meta-list li span:last-child { font-weight: 500; color: var(--dark); }
/* ── Sections ──────────────────────────────────────────────────────── */
.sp-sections { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.sp-section {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.sp-section:first-child { border-top: none; }
.sp-section__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.sp-section__icon { font-size: 1.25rem; }
.sp-section__body { line-height: 1.7; color: var(--text-muted); font-size: .9375rem; }
.sp-section__body h2, .sp-section__body h3 { font-family: var(--font-serif); color: var(--dark); margin: 1.2em 0 .5em; }
.sp-section__body p { margin-bottom: .875rem; }
.sp-section__body p:last-child { margin-bottom: 0; }
/* Grille livraison */
.sp-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .sp-delivery-grid { grid-template-columns: 1fr; } }
.sp-delivery-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px;
}
.sp-delivery-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.sp-delivery-item strong { display: block; font-size: .9375rem; color: var(--dark); margin-bottom: 4px; font-weight: 600; }
.sp-delivery-item p { margin: 0; font-size: .875rem; color: var(--text-muted); }
/* ── Produits récemment consultés ─────────────────────────────────────── */
.recently-viewed { margin: 40px 0; padding: 24px 0; border-top: 1px solid var(--border); }
.recently-viewed__title { font-family: var(--font-serif); font-size: 1.125rem; margin-bottom: 16px; color: var(--dark); }
.recently-viewed__grid { display: flex; gap: 12px; flex-wrap: wrap; }
.rv-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); text-decoration: none; transition: border-color .15s, box-shadow .15s; max-width: 220px; }
.rv-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.rv-item__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rv-item__name { font-size: .8125rem; font-weight: 500; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-item__price { font-size: .75rem; color: var(--green); font-weight: 600; }
/* ── Exit-intent overlay ─────────────────────────────────────────────── */
#exitIntentOverlay { animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* ── Upsell checkout ──────────────────────────────────────────────────── */
.checkout-upsell {
  margin: 20px 0;
  padding: 16px;
  background: var(--green-pale);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
}
.checkout-upsell__title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 12px;
}
.checkout-upsell__grid { display: flex; flex-direction: column; gap: 10px; }
.checkout-upsell__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border: 1px solid var(--border);
}
.checkout-upsell__item img {
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.checkout-upsell__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.checkout-upsell__name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-upsell__price { font-size: .8125rem; color: var(--green); font-weight: 600; }
/* ── Badge custom produit ─────────────────────────────────────────────── */
.badge--custom {
  font-size: .6875rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: .01em;
}
/* ── Skeleton loader ─────────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -468px 0; }
  100% { background-position: 468px 0; }
}
.skeleton-img, .skeleton-line {
  background: linear-gradient(90deg, var(--border) 25%, var(--cream) 50%, var(--border) 75%);
  background-size: 936px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius-sm);
}
.product-card--skeleton { pointer-events: none; }
.product-card--skeleton .skeleton-img { height: 200px; border-radius: var(--radius-md); margin-bottom: 12px; }
.product-card--skeleton .skeleton-line { height: 14px; margin-bottom: 8px; }
.product-card--skeleton .skeleton-line--title { width: 80%; }
.product-card--skeleton .skeleton-line--price { width: 45%; }
.product-card--skeleton .skeleton-line--btn { width: 100%; height: 40px; margin-top: 12px; }
/* ── Panier v3 — Barre upsell fidélité ────────────────────────────────── */
.cart-upsell-bar { display:flex;align-items:flex-start;gap:12px;background:linear-gradient(135deg,#FFF8E1,#FFF3CD);border:1px solid #FFD54F;border-radius:var(--radius-md);padding:12px 16px;margin-bottom:16px; }
.cart-upsell-bar__icon { font-size:1.5rem;flex-shrink:0;margin-top:2px; }
.cart-upsell-bar__body { flex:1;min-width:0; }
.cart-upsell-bar__text { font-size:.875rem;color:#5D4037;line-height:1.5; }
.cart-upsell-bar__earn { font-size:.8125rem;color:#8D6E63; }
.cart-upsell-bar__bar { height:5px;background:#e8dba8;border-radius:3px;overflow:hidden;margin-top:8px; }
.cart-upsell-bar__fill { height:100%;border-radius:3px;transition:width .5s ease; }
/* Ligne réduction fidélité dans le résumé panier */
.cart-loyalty-discount-row span:first-child { font-size:.875rem; }
.cart-loyalty-line--teaser { color:var(--green); }
/* Checkout v3 — section badge */
/* Confirmation âge CBD */
/* co-age-check défini plus bas */
/* Badge coupon actif dans checkout */
.co-section .cart-coupon-active { background:var(--green-pale);border:1px solid var(--green);border-radius:6px;padding:8px 12px;font-size:.875rem; }
/* Trust badges checkout améliorés */
/* ── Validation formulaire checkout ─────────────────────────────────── */
.co-input--error { border-color:#E53935 !important;background:#fff5f5; }
.co-input--ok { border-color:#4CAF50 !important;background:#f9fdf9; }
.co-field__error { display:block;font-size:.75rem;color:#E53935;margin-top:3px; }
/* ── Confirmation âge ───────────────────────────────────────────────── */
.co-age-check { background:#FFF8E1;border:1px solid #FFD54F;border-radius:8px;padding:14px 16px;margin-top:16px; }
.co-age-check__label { display:flex;align-items:flex-start;gap:10px;cursor:pointer;font-size:.9rem;color:#5D4037;line-height:1.5; }
.co-age-check__label input[type=checkbox] { width:18px;height:18px;flex-shrink:0;margin-top:2px;accent-color:var(--green);cursor:pointer; }
/* ── Thank you : items plus grands ──────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════════
   ORDER RECEIVED — Page de confirmation de commande
   ═══════════════════════════════════════════════════════════════════════ */
/* ── Wrapper ─────────────────────────────────────────────────────────── */
.lvf-ty-wrap { padding: 32px 0 64px; }
/* ── Header confirmation ─────────────────────────────────────────────── */
.lvf-ty-header { text-align: center; padding: 40px 20px 32px; }
.lvf-ty-check { width: 72px; height: 72px; background: var(--green); color: #fff; border-radius: 50%; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; animation: ty-pop .5s cubic-bezier(.34,1.56,.64,1) both; }
.lvf-ty-check--pending { background: #C9A84C; }
@keyframes ty-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lvf-ty-title { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); margin: 0 0 8px; }
.lvf-ty-sub { font-size: .9375rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
/* ── Barre de progression livraison ──────────────────────────────────── */
.lvf-ty-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin: 28px 0; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); }
.lvf-ty-step { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 16px; }
.lvf-ty-step__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; transition: all .3s; }
.lvf-ty-step__label { font-size: .75rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.lvf-ty-step--done .lvf-ty-step__icon { background: var(--green); border-color: var(--green); color: #fff; }
.lvf-ty-step--done .lvf-ty-step__label { color: var(--green); font-weight: 600; }
.lvf-ty-step__line { flex: 1; height: 2px; background: var(--border); min-width: 24px; max-width: 60px; }
.lvf-ty-step__line--done { background: var(--green); }
/* ── Grid 2 colonnes ─────────────────────────────────────────────────── */
.lvf-ty-grid { display: flex; gap: 24px; align-items: flex-start; }
.lvf-ty-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.lvf-ty-aside { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; }
/* ── Cartes ──────────────────────────────────────────────────────────── */
.lvf-ty-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.lvf-ty-card__head { padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--cream); }
.lvf-ty-card__title { font-size: .9375rem; font-weight: 600; color: var(--dark); margin: 0; }
.lvf-ty-card__body { padding: 16px 18px; }
.lvf-ty-card--dark { background: #1A2E1A; border-color: #1A2E1A; }
.lvf-ty-card--dark .lvf-ty-card__head { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.lvf-ty-card--dark .lvf-ty-card__title { color: rgba(255,255,255,.9); }
/* ── Bannières express / fidélité ────────────────────────────────────── */
.lvf-ty-banner { border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 16px; }
.lvf-ty-banner--express { background: #E8F5E9; border: 1.5px solid #4CAF50; color: #1B5E20; }
.lvf-ty-banner--express-closed { background: #FFF8E1; border: 1.5px solid #FFD54F; color: #6B4C00; }
.lvf-ty-banner--loyalty { background: linear-gradient(135deg, #EFF6EE, #E8F5E9); border: 1.5px solid #4CAF50; display: flex; align-items: center; gap: 14px; }
.lvf-ty-banner__icon { font-size: 2.5rem; flex-shrink: 0; }
.lvf-ty-banner__title { font-size: 1rem; font-weight: 700; color: #2D5A27; margin-bottom: 3px; }
.lvf-ty-banner__sub { font-size: .875rem; color: #4A8A3F; }
/* ── Articles commandés ──────────────────────────────────────────────── */
.lvf-ty-items { display: flex; flex-direction: column; }
.lvf-ty-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.lvf-ty-item:last-child { border-bottom: none; }
.lvf-ty-item__img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--green-pale); }
.lvf-ty-item__img img { width: 100%; height: 100%; object-fit: cover; }
.lvf-ty-item__info { flex: 1; min-width: 0; }
.lvf-ty-item__name { font-size: .9375rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.lvf-ty-item__name a { color: inherit; text-decoration: none; }
.lvf-ty-item__name a:hover { color: var(--green); }
.lvf-ty-item__meta { font-size: .8125rem; color: var(--green); margin-bottom: 3px; }
.lvf-ty-item__qty { font-size: .8125rem; color: var(--text-muted); }
.lvf-ty-item__price { font-size: 1rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
/* ── Totaux ──────────────────────────────────────────────────────────── */
.lvf-ty-totals { padding: 0 18px 4px; }
.lvf-ty-total-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text-muted); }
.lvf-ty-total-row:last-child { border-bottom: none; }
.lvf-ty-total-row--green { color: var(--green); }
.lvf-ty-total-row--grand { font-size: 1.0625rem; font-weight: 700; color: var(--green); border-top: 2px solid var(--border); padding-top: 12px; margin-top: 4px; border-bottom: none; }
/* ── Adresse ─────────────────────────────────────────────────────────── */
.lvf-ty-address { font-style: normal; font-size: .9rem; line-height: 1.8; color: var(--dark); }
/* ── Partage ─────────────────────────────────────────────────────────── */
.lvf-ty-share { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .lvf-ty-grid { flex-direction: column; }
  .lvf-ty-aside { width: 100%; }
  .lvf-ty-steps { gap: 0; padding: 14px; overflow-x: auto; }
  .lvf-ty-step { padding: 0 10px; }
  .lvf-ty-step__label { display: none; }
}
@media (max-width: 480px) {
  .lvf-ty-title { font-size: 1.5rem; }
  .lvf-ty-check { width: 60px; height: 60px; font-size: 1.5rem; }
}
.thankyou-item__img { width:72px;height:72px;border-radius:8px;overflow:hidden;flex-shrink:0;background:var(--green-pale); }
.thankyou-item__img img { width:100%;height:100%;object-fit:cover; }
/* ── Barre progression commande ─────────────────────────────────────── */
.thankyou-step--current .thankyou-step__icon { color:var(--green);animation:pulse 1.5s ease infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
/* ── Trust badges ───────────────────────────────────────────────────── */
.co-trust-badges { display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-top:12px; }
.co-trust-badges span { font-size:.75rem;color:var(--text-muted);background:var(--cream);padding:4px 10px;border-radius:20px; }
/* ── Section badge count ────────────────────────────────────────────── */
.co-section__badge { font-size:.75rem;background:var(--green);color:#fff;padding:2px 8px;border-radius:10px;margin-left:auto; }
/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE — Hero · Sections · Blog · Reviews · Newsletter · Quiz Banner
   ═══════════════════════════════════════════════════════════════════════ */
/* ── Hero ────────────────────────────────────────────────────────────── */
.hero-section { background: linear-gradient(135deg, #0D1F0D 0%, #1A3A1A 60%, #2D5A27 100%); padding: 80px 0 60px; overflow: hidden; position: relative; }
.hero-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; z-index: 0; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; z-index: 1; }
.hero-content { flex: 1; min-width: 0; max-width: 600px; }
/* prefers-reduced-motion : rendre tous les éléments visibles si animations désactivées */
@media (prefers-reduced-motion: reduce) {
  .hero-animate { opacity: 1; animation: none; }
  .hero-orb, .hero-visual__img, .hero-cdc-label__dot, .hero-urgency__dot { animation: none; }
}
.hero-tag { display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); border-radius: 20px; padding: 5px 16px; font-size: .8125rem; letter-spacing: .04em; margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: 3rem; color: #fff; line-height: 1.15; margin: 0 0 20px; font-weight: 400; }
.hero-title em { background: linear-gradient(90deg, #a8d5a2 0%, #C9A84C 50%, #a8d5a2 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-style: italic; animation: hero-shimmer 5s linear infinite; }
@keyframes hero-shimmer { to { background-position: 200% center; } }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.75; margin: 0 0 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-visual { flex-shrink: 0; width: 380px; min-width: 0; position: relative; }
.hero-visual__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg,12px); display: block; box-shadow: 0 20px 60px rgba(0,0,0,.4); animation: hero-float 6s ease-in-out infinite; }
@keyframes hero-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-visual__placeholder { width: 100%; aspect-ratio: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg,12px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.hero-visual__emoji { font-size: 5rem; }
.hero-visual__label { font-size: .875rem; color: rgba(255,255,255,.6); text-align: center; padding: 0 20px; }
/* ── Hero : Notre coup de cœur — carte produit complète ──────────────── */
.hero-visual--cdc { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; width: 340px; min-width: 0; }
/* Label flottant au-dessus de la carte */
.hero-cdc-label { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); color: #fff !important; font-size: .8125rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; letter-spacing: .02em; align-self: flex-start; }
.hero-cdc-label, .hero-cdc-label * { color: #fff !important; }
.hero-cdc-label__dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; flex-shrink: 0; animation: hero-pulse 2s ease infinite; }
@keyframes hero-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(76,175,80,.4)} 50%{box-shadow:0 0 0 6px rgba(76,175,80,0)} }
/* Wrapper de la carte */
.hero-cdc-card-wrap { width: 100%; filter: drop-shadow(0 20px 48px rgba(0,0,0,.45)); }
.hero-cdc-card-wrap .product-card { border-radius: 16px; border: none; box-shadow: none; animation: none; }

/* ── Hero : orbes de fond ────────────────────────────────────────────── */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb--1 { width: 420px; height: 420px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(45,90,39,.45) 0%, transparent 70%); animation: orb-drift 12s ease-in-out infinite; }
.hero-orb--2 { width: 280px; height: 280px; bottom: -60px; left: 30%; background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%); animation: orb-drift 16s ease-in-out infinite reverse; }
.hero-orb--3 { width: 180px; height: 180px; top: 20%; left: -40px; background: radial-gradient(circle, rgba(168,213,162,.12) 0%, transparent 70%); animation: orb-drift 9s ease-in-out infinite 3s; }
@keyframes orb-drift { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(20px,-15px) scale(1.04)} 66%{transform:translate(-10px,20px) scale(.97)} }

/* ── Hero : animations d'entrée ─────────────────────────────────────── */
@keyframes hero-fade-up { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes hero-fade-in-right { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }
.hero-animate { opacity: 0; animation-fill-mode: forwards; animation-duration: .65s; animation-timing-function: cubic-bezier(.22,.68,0,1.2); }
.hero-animate--1 { animation-name: hero-fade-up; animation-delay: .05s; }
.hero-animate--2 { animation-name: hero-fade-up; animation-delay: .15s; }
.hero-animate--3 { animation-name: hero-fade-up; animation-delay: .25s; }
.hero-animate--4 { animation-name: hero-fade-up; animation-delay: .35s; }
.hero-animate--5 { animation-name: hero-fade-up; animation-delay: .42s; }
.hero-animate--6 { animation-name: hero-fade-up; animation-delay: .50s; }
.hero-animate--7 { animation-name: hero-fade-up; animation-delay: .58s; }
.hero-animate--vis { animation-name: hero-fade-in-right; animation-delay: .2s; animation-duration: .75s; }

/* ── Hero : preuve sociale ───────────────────────────────────────────── */
.hero-social-proof { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; text-decoration: none; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 32px; padding: 8px 14px 8px 10px; transition: background .2s; }
.hero-social-proof:hover { background: rgba(255,255,255,.12); }
/* Étoiles via CSS ::before pour contourner le rendu emoji qui ignore color */
.hero-social-proof__stars { width: 80px; height: 16px; position: relative; }
.hero-social-proof__stars::before { content: '★★★★★'; position: absolute; inset: 0; color: transparent; background: linear-gradient(90deg, #FFD700 0%, #FFD700 96%, transparent 100%); -webkit-background-clip: text; background-clip: text; font-size: 1rem; letter-spacing: 1px; line-height: 16px; white-space: nowrap; }
.hero-social-proof__body { display: flex; flex-direction: column; gap: 1px; }
.hero-social-proof__score { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-social-proof__score span { font-size: .75rem; color: rgba(255,255,255,.55); font-family: var(--font-sans, sans-serif); font-weight: 400; }
.hero-social-proof__sub { font-size: .6875rem; color: rgba(255,255,255,.55); line-height: 1; white-space: nowrap; }

/* ── Hero : bouton CTA principal ─────────────────────────────────────── */
.hero-btn-main { display: inline-flex; align-items: center; gap: 8px; }
.hero-btn-main__arrow { display: inline-block; transition: transform .2s ease; }
.hero-btn-main:hover .hero-btn-main__arrow { transform: translateX(4px); }

/* ── Hero : trust signals ────────────────────────────────────────────── */
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 4px; }
.hero-trust__item { font-size: .8125rem; color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 4px 12px; white-space: nowrap; line-height: 1.4; }

/* ── Hero : bande de stats ───────────────────────────────────────────── */
.hero-stats { display: flex; align-items: center; margin-top: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 20px; }
.hero-section .hero-custom-text { margin-top: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 20px; color: #fff !important; font-size: .9rem; text-align: center; }
.hero-section .hero-custom-text,
.hero-section .hero-custom-text p,
.hero-section .hero-custom-text span,
.hero-section .hero-custom-text a,
.hero-section .hero-custom-text strong,
.hero-section .hero-custom-text em { color: #fff !important; }
.hero-stats__item { flex: 1; text-align: center; }
.hero-stats__value { font-family: var(--font-serif); font-size: 1.625rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-stats__plus { font-size: 1rem; font-weight: 700; color: #a8d5a2; vertical-align: super; margin-left: 1px; }
.hero-stats__label { display: block; font-size: .6875rem; color: rgba(255,255,255,.55); margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }
.hero-stats__divider { width: 1px; height: 32px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ── Hero : placeholder visuel amélioré ──────────────────────────────── */
.hero-visual__placeholder-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 32px 24px; }
.hero-visual__sublabel { font-size: .8125rem; color: rgba(255,255,255,.45); }
.hero-visual__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.hero-visual__tags span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.65); border-radius: 20px; padding: 3px 10px; font-size: .6875rem; }

/* ── Hero : produit vedette dynamique ────────────────────────────────── */
.hero-featured-card { display: block; text-decoration: none; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg,12px); overflow: hidden; position: relative; transition: transform .3s ease, box-shadow .3s ease; }
.hero-featured-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.hero-featured-card__ribbon { position: absolute; top: 12px; left: 12px; background: var(--gold,#C9A84C); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; z-index: 2; }
.hero-featured-card__img-wrap { aspect-ratio: 1; overflow: hidden; }
.hero-featured-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.hero-featured-card:hover .hero-featured-card__img { transform: scale(1.05); }
.hero-featured-card__img-placeholder { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: rgba(255,255,255,.04); }
.hero-featured-card__body { padding: 16px 18px 18px; }
.hero-featured-card__name { font-family: var(--font-serif); font-size: 1.125rem; color: #fff; font-weight: 500; margin-bottom: 8px; line-height: 1.3; }
.hero-featured-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.hero-featured-card__cbd { background: rgba(168,213,162,.15); border: 1px solid rgba(168,213,162,.3); color: #a8d5a2; border-radius: 20px; padding: 2px 10px; font-size: .75rem; font-weight: 600; }
.hero-featured-card__sales { font-size: .75rem; color: rgba(255,255,255,.45); }
.hero-featured-card__price { font-size: 1.0625rem; font-weight: 700; color: var(--gold,#C9A84C); margin-bottom: 14px; }
.hero-featured-card__cta { display: block; text-align: center; width: 100%; }

/* ── Hero : indicateur de livraison urgency ──────────────────────────── */
.hero-urgency { display: inline-flex; align-items: center; gap: 7px; background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.3); border-radius: 20px; padding: 5px 14px; font-size: .8125rem; color: rgba(255,255,255,.85); margin-top: 14px; }
.hero-urgency--neutral { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.3); }
.hero-urgency__dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF50; animation: hero-pulse 2s ease infinite; flex-shrink: 0; }
.hero-urgency__dot--gold { background: var(--gold,#C9A84C); }
.hero-animate--8 { animation-name: hero-fade-up; animation-delay: .65s; }

/* ── Hero : indicateur de scroll ─────────────────────────────────────── */
.hero-scroll-indicator { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; animation: hero-fade-up .6s .9s both; }
.hero-scroll-indicator__mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.3); border-radius: 11px; position: relative; }
.hero-scroll-indicator__wheel { width: 4px; height: 6px; background: rgba(255,255,255,.5); border-radius: 2px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); animation: scroll-wheel 1.8s ease infinite; }
@keyframes scroll-wheel { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 80%{opacity:0;transform:translateX(-50%) translateY(12px)} 100%{opacity:0} }
.hero-scroll-indicator__label { font-size: .6875rem; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; }

/* ── Bannière dégressif ──────────────────────────────────────────────── */
.home-dg-banner { background: var(--green); padding: 14px 0; }
.home-dg-banner__inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.home-dg-banner__icon { font-size: 1.25rem; }
.home-dg-banner__text { font-size: .9375rem; color: #fff; font-weight: 500; }
.home-dg-banner__cta { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: 6px; padding: 6px 16px; font-size: .875rem; font-weight: 600; text-decoration: none; transition: background .15s; }
.home-dg-banner__cta:hover { background: rgba(255,255,255,.35); color: #fff; }
/* ── Promo cards ─────────────────────────────────────────────────────── */
.home-promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.home-promo { background: var(--green-pale); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s, box-shadow .2s; }
.home-promo:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.home-promo--dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.home-promo--gold { background: linear-gradient(135deg, #C9A84C, #E8C96A); color: #fff; border-color: #C9A84C; }
.home-promo--green { background: linear-gradient(135deg, var(--green), var(--green-light)); color: #fff; border-color: var(--green); }
.home-promo__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: inherit; }
.home-promo--dark .home-promo__title,
.home-promo--gold .home-promo__title,
.home-promo--green .home-promo__title { color: #fff; }
.home-promo__sub { font-size: .875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.home-promo--dark .home-promo__sub,
.home-promo--gold .home-promo__sub,
.home-promo--green .home-promo__sub { color: rgba(255,255,255,.8); }
.home-promo__btn { align-self: flex-start; }
/* ── Avis clients ────────────────────────────────────────────────────── */
.home-reviews { margin-bottom: 48px; }
.reviews-grid--home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.review-card--home { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.review-card__text { font-size: .9375rem; color: var(--dark); line-height: 1.65; margin-bottom: 12px; font-style: italic; }
.review-card__author { font-weight: 600; font-size: .875rem; color: var(--dark); }
.review-card__product { font-size: .8125rem; color: var(--green); }
.reviews-global { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding: 16px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); width: fit-content; }
.reviews-global__score { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--green); }
.reviews-global__stars { color: #F9A825; font-size: 1.125rem; letter-spacing: 2px; }
.reviews-global__source { font-size: .8125rem; color: var(--text-muted); }
.reviews-global__link { font-size: .8125rem; color: var(--green); font-weight: 600; }
/* ── Newsletter ──────────────────────────────────────────────────────── */
.home-newsletter { background: linear-gradient(135deg, var(--dark), #2D5A27); border-radius: var(--radius-md); padding: 48px 40px; margin-bottom: 48px; overflow: hidden; }
.home-newsletter__inner { display: flex; align-items: center; gap: 40px; }
.home-newsletter__text { flex: 1; }
.home-newsletter__text h2 { font-family: var(--font-serif); font-size: 1.75rem; color: #fff; margin: 0 0 8px; font-weight: 400; }
.home-newsletter__text p { color: rgba(255,255,255,.7); margin: 0; font-size: .9375rem; }
.home-newsletter__form { display: flex; gap: 10px; flex: 1; max-width: 420px; }
.home-newsletter__input { flex: 1; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-sm); padding: 12px 16px; color: #fff; font-size: .9375rem; outline: none; transition: border-color .15s; }
.home-newsletter__input::placeholder { color: rgba(255,255,255,.45); }
.home-newsletter__input:focus { border-color: rgba(255,255,255,.6); }
/* ═══════════════════════════════════════════════════════════════════════════
   BLOG ACCUEIL — Tous layouts
   ═══════════════════════════════════════════════════════════════════════════ */
.home-blog { margin-bottom: 56px; }
.home-blog .section-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.home-blog__title-link { color: inherit; text-decoration: none; }
.home-blog__title-link:hover { color: var(--green); }
.home-blog__see-all { font-size: .875rem; font-weight: 600; color: var(--green); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.home-blog__see-all:hover { text-decoration: underline; }

/* ── Badge "Nouveau" (commun) ─────────────────────────────────────────── */
.home-blog-badge { position: absolute; top: 10px; left: 10px; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; z-index: 2; backdrop-filter: blur(6px); pointer-events: none; }
.home-blog-badge--new { background: rgba(201,168,76,.92); color: #fff; letter-spacing: .03em; }

/* ── Carte secondaire (commune aux 3 layouts) ─────────────────────────── */
.home-blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.home-blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.home-blog-card__image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--green-pale); display: block; flex-shrink: 0; }
.home-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.home-blog-card:hover .home-blog-card__image img { transform: scale(1.04); }
.home-blog-card__no-thumb { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 2.5rem; background: var(--green-pale); color: var(--green); min-height: 120px; }
.home-blog-card__cat-pill { position: absolute; bottom: 8px; left: 10px; background: rgba(45,90,39,.88); color: #fff; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 2px 8px; border-radius: 20px; backdrop-filter: blur(4px); }
.home-blog-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.home-blog-card__title { font-family: var(--font-serif); font-size: 1rem; color: var(--dark); line-height: 1.35; margin: 0; }
.home-blog-card__title a { color: inherit; text-decoration: none; }
.home-blog-card__title a:hover { color: var(--green); }
.home-blog-card__excerpt { font-size: .8125rem; color: var(--text-muted); line-height: 1.6; margin: 0; flex: 1; }
.home-blog-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }
.home-blog-card__meta { display: flex; align-items: center; gap: 5px; font-size: .75rem; color: var(--text-muted); flex-wrap: wrap; }
.home-blog-card__views { color: var(--text-muted); }
.home-blog-card__link { font-size: .8125rem; color: var(--green); font-weight: 600; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.home-blog-card__link:hover { text-decoration: underline; }

/* ── Layout éditorial (featured) ─────────────────────────────────────── */
.home-blog-editorial { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }

/* Article featured */
.home-blog-featured { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s; }
.home-blog-featured:hover { box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.home-blog-featured__image { position: relative; aspect-ratio: 16/9; overflow: hidden; display: block; background: var(--green-pale); }
.home-blog-featured__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.home-blog-featured:hover .home-blog-featured__image img { transform: scale(1.03); }
.home-blog-featured__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 55%); pointer-events: none; }
.home-blog-featured__cat-badge { position: absolute; bottom: 14px; left: 14px; background: rgba(45,90,39,.92); color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 12px; border-radius: 20px; backdrop-filter: blur(4px); z-index: 2; }
.home-blog-featured__cat-badge a { color: inherit; text-decoration: none; }
.home-blog-featured__body { padding: 22px 24px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.home-blog-featured__badges { display: flex; gap: 6px; flex-wrap: wrap; min-height: 20px; }
.home-blog-featured__title { font-family: var(--font-serif); font-size: 1.375rem; color: var(--dark); line-height: 1.3; margin: 0; }
.home-blog-featured__title a { color: inherit; text-decoration: none; }
.home-blog-featured__title a:hover { color: var(--green); }
.home-blog-featured__excerpt { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.home-blog-featured__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.home-blog-featured__meta { display: flex; align-items: center; gap: 6px; font-size: .8125rem; color: var(--text-muted); flex-wrap: wrap; }
.home-blog-featured__meta-sep { opacity: .4; }
.home-blog-featured__views { font-size: .8125rem; color: var(--text-muted); }
.home-blog-featured__cta { font-size: .875rem; font-weight: 700; color: var(--green); text-decoration: none; padding: 7px 16px; border: 2px solid var(--green); border-radius: 20px; transition: background .18s, color .18s; white-space: nowrap; }
.home-blog-featured__cta:hover { background: var(--green); color: #fff; }

/* Colonne secondaire */
.home-blog-secondary { display: flex; flex-direction: column; gap: 16px; }
.home-blog-secondary .home-blog-card { flex-direction: row; }
.home-blog-secondary .home-blog-card__image { width: 110px; min-width: 110px; aspect-ratio: 1/1; border-radius: 0; }
.home-blog-secondary .home-blog-card__body { padding: 12px 14px; }
.home-blog-secondary .home-blog-card__title { font-size: .9375rem; }
.home-blog-secondary .home-blog-card__excerpt { display: none; }

/* ── Layout grille uniforme ───────────────────────────────────────────── */
.home-blog-grid--uniform { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── Layout liste ─────────────────────────────────────────────────────── */
.home-blog-list { display: flex; flex-direction: column; gap: 20px; }
.home-blog-list-item { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .2s; }
.home-blog-list-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.home-blog-list-item__image { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--green-pale); flex-shrink: 0; }
.home-blog-list-item__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.home-blog-list-item:hover .home-blog-list-item__image img { transform: scale(1.04); }
.home-blog-list-item__body { padding: 18px 20px 18px 0; display: flex; flex-direction: column; gap: 6px; }
.home-blog-list-item__top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.home-blog-list-item__cat { font-size: .75rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .05em; }
.home-blog-list-item__title { font-family: var(--font-serif); font-size: 1.125rem; color: var(--dark); line-height: 1.35; margin: 0; }
.home-blog-list-item__title a { color: inherit; text-decoration: none; }
.home-blog-list-item__title a:hover { color: var(--green); }
.home-blog-list-item__excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.home-blog-list-item__meta { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--text-muted); margin-top: 4px; }
/* ── Responsive Homepage ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-title { font-size: 2.25rem; }
  .hero-visual { width: 100%; max-width: 400px; }
  .hero-visual--cdc { width: 100%; max-width: 380px; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-social-proof { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-stats { max-width: 380px; margin-left: auto; margin-right: auto; }
  .hero-scroll-indicator { display: none; }
  .home-promo-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid--home { grid-template-columns: 1fr; }
  /* Blog — responsive tablet */
  .home-blog-editorial { grid-template-columns: 1fr; }
  .home-blog-secondary { flex-direction: row; flex-wrap: wrap; }
  .home-blog-secondary .home-blog-card { flex: 1 1 calc(50% - 8px); flex-direction: column; }
  .home-blog-secondary .home-blog-card__image { width: 100%; aspect-ratio: 16/9; }
  .home-blog-secondary .home-blog-card__excerpt { display: block; }
  .home-blog-grid--uniform { grid-template-columns: repeat(2, 1fr); }
  .home-blog-list-item { grid-template-columns: 160px 1fr; }
  .home-blog .section-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .home-newsletter__inner { flex-direction: column; gap: 24px; }
  .home-newsletter__form { max-width: 100%; width: 100%; }
}
@media (max-width: 600px) {
  .hero-section { padding: 48px 0 40px; }
  .hero-title { font-size: 1.75rem; }
  .hero-desc { font-size: .9375rem; }
  .home-promo-grid { grid-template-columns: 1fr; }
  .home-newsletter { padding: 32px 20px; }
  /* Blog — mobile */
  .home-blog-secondary { flex-direction: column; }
  .home-blog-secondary .home-blog-card { flex: 1 1 100%; }
  .home-blog-grid--uniform { grid-template-columns: 1fr; }
  .home-blog-list-item { grid-template-columns: 1fr; }
  .home-blog-list-item__image { aspect-ratio: 16/9; }
  .home-blog-list-item__body { padding: 14px 16px; }
  .home-blog-featured__title { font-size: 1.175rem; }
  .home-blog-featured__body { padding: 16px; }
}
/* ═══════════════════════════════════════════════════════════════════════
   FOOTER — Colonnes, newsletter, paiement
   ═══════════════════════════════════════════════════════════════════════ */
.footer-col { }
.footer-col--brand { max-width: 260px; }
.footer-newsletter__form { display: flex; gap: 8px; margin-top: 10px; }
.footer-col--contact { }
.footer-payment-block { margin-top: 16px; }
.footer-bottom__copy { font-size: .8125rem; color: rgba(255,255,255,.4); }
/* ═══════════════════════════════════════════════════════════════════════
   HEADER — Wishlist, cart wrapper
   ═══════════════════════════════════════════════════════════════════════ */
.header-wishlist__icon { font-size: 1.125rem; cursor: pointer; }
.header-cart-wrapper { position: relative; }
.header-cart__label { font-size: .75rem; color: var(--text-muted); display: block; }
.header-cart__total { font-size: .875rem; font-weight: 600; color: var(--dark); }
/* ═══════════════════════════════════════════════════════════════════════
   CART PAGE — Éléments manquants
   ═══════════════════════════════════════════════════════════════════════ */
.cart-items-col { flex: 1; min-width: 0; }
.cart-empty__products { margin-top: 32px; }
.cart-item__actions { display: flex; align-items: center; gap: 8px; }
.cart-item__wish { background: none; border: none; cursor: pointer; font-size: 1.125rem; color: var(--text-muted); padding: 4px; transition: color .15s; }
.cart-item__wish:hover { color: #E53935; }
.cart-summary__row--discount { color: var(--green); }
.cbadge--pale { background: var(--cream); color: var(--dark); border-color: var(--border); }
/* ═══════════════════════════════════════════════════════════════════════
   BLOG — Archive + Single
   ═══════════════════════════════════════════════════════════════════════ */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 32px 0; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: .8125rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta__sep { color: var(--border); }
.blog-tag { display: inline-block; background: var(--green-pale); color: var(--green); border: 1px solid var(--green); border-radius: 4px; padding: 2px 8px; font-size: .75rem; font-weight: 600; margin-bottom: 8px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.blog-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.blog-widget__title { font-family: var(--font-serif); font-size: 1rem; margin: 0 0 14px; color: var(--dark); }
.sidebar-product { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-product:last-child { border-bottom: none; }
.sidebar-product__img { width: 48px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.sidebar-product__img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-product__name { font-size: .875rem; font-weight: 500; color: var(--dark); }
.sidebar-product__price { font-size: .8125rem; color: var(--green); }
.popular-post { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.popular-post:last-child { border-bottom: none; }
.popular-post__num { font-size: 1.25rem; font-weight: 700; color: var(--green-pale); min-width: 28px; }
.popular-post__title { font-size: .875rem; font-weight: 500; color: var(--dark); line-height: 1.4; }
.popular-post__date { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
/* Single article */
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 32px 0 64px; align-items: start; }
.single-article__header { margin-bottom: 24px; }
.single-article__cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.single-article__title { font-family: var(--font-serif); font-size: 2.25rem; line-height: 1.2; color: var(--dark); margin: 0 0 16px; }
.single-article__meta { display: flex; gap: 16px; font-size: .8125rem; color: var(--text-muted); flex-wrap: wrap; }
.single-article__share { display: flex; gap: 8px; margin-top: 16px; }
.single-article__cover { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 28px; aspect-ratio: 16/7; }
.single-article__cover img { width: 100%; height: 100%; object-fit: cover; }
.single-article__content { font-size: 1.0625rem; line-height: 1.8; color: var(--dark); }
.single-article__content h2 { font-family: var(--font-serif); font-size: 1.625rem; color: var(--dark); margin: 36px 0 14px; }
.single-article__content h3 { font-size: 1.25rem; color: var(--dark); margin: 28px 0 10px; }
.single-article__content p { margin-bottom: 18px; }
.single-article__content ul, .single-article__content ol { padding-left: 24px; margin-bottom: 18px; }
.single-article__content li { margin-bottom: 8px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 6px; font-size: .8125rem; font-weight: 600; text-decoration: none; transition: opacity .15s; }
.share-btn:hover { opacity: .85; }
.share-btn--fb { background: #1877F2; color: #fff; }
.share-btn--tw { background: #1DA1F2; color: #fff; }
.share-btn--copy { background: var(--cream); color: var(--dark); border: 1px solid var(--border); }
.toc-block { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 28px; }
.toc-block__header { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.toc-block__title { font-size: .9375rem; font-weight: 600; color: var(--dark); margin: 0; }
.toc-block__toggle { font-size: .875rem; color: var(--green); }
.toc-block__list { list-style: none; padding: 0; margin: 12px 0 0; }
.toc-block__list li { padding: 4px 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.toc-block__list li:last-child { border-bottom: none; }
.toc-block__list a { color: var(--green); text-decoration: none; }
.author-box { display: flex; gap: 16px; padding: 20px; background: var(--cream); border-radius: var(--radius-md); margin-top: 32px; }
.author-box img { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; }
.author-box__name { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.author-box__bio { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }
/* ═══════════════════════════════════════════════════════════════════════
   SHOP — Classes manquantes
   ═══════════════════════════════════════════════════════════════════════ */
.shop-sort { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.shop-main { flex: 1; min-width: 0; }
/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Blog / Single
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .single-layout { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .single-article__title { font-size: 1.625rem; }
}
/* ═══════════════════════════════════════════════════════════════════════
   BLOG — Archive cards, sidebar, newsletter
   ═══════════════════════════════════════════════════════════════════════ */
.blog-cat-nav { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.blog-cat-list { list-style:none; padding:0; margin:0; }
.blog-cat-list__count { font-size:.75rem; color:var(--text-muted); margin-left:4px; }
.blog-card__image { aspect-ratio:16/9; overflow:hidden; background:var(--green-pale); border-radius:var(--radius-md) var(--radius-md) 0 0; }
.blog-card__image img { width:100%; height:100%; object-fit:cover; transition:transform .35s; }
.blog-card:hover .blog-card__image img { transform:scale(1.04); }
.blog-card__body { padding:18px; }
.blog-card__cat { font-size:.75rem; color:var(--green); font-weight:600; text-transform:uppercase; letter-spacing:.04em; margin-bottom:6px; display:block; }
.blog-card__title { font-family:var(--font-serif); font-size:1.0625rem; color:var(--dark); margin-bottom:8px; line-height:1.35; }
.blog-card__title a { color:inherit; text-decoration:none; }
.blog-card__title a:hover { color:var(--green); }
.blog-card__excerpt { font-size:.875rem; color:var(--text-muted); line-height:1.6; margin-bottom:12px; }
.blog-card__tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:10px; }
.blog-card__footer { display:flex; align-items:center; justify-content:space-between; }
.blog-card__read-more { font-size:.875rem; color:var(--green); font-weight:600; text-decoration:none; }
.blog-featured__body { padding:24px; }
.blog-nl-form { display:flex; gap:8px; margin-top:10px; }
.blog-nl-form__input { flex:1; }
.blog-sidebar--sticky { position:sticky; top:90px; }
.blog-widget--newsletter .blog-widget__nl-icon { font-size:1.5rem; margin-bottom:8px; }
.blog-widget--products .sidebar-product,
.blog-widget--sources a { font-size:.875rem; color:var(--green); }
.single-article__tags { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:20px; padding-top:16px; border-top:1px solid var(--border); }
.single-article__tags-label { font-size:.8125rem; color:var(--text-muted); }
.single-article__comments { margin-top:40px; padding-top:32px; border-top:1px solid var(--border); }
.review-card__stars { color:#F9A825; font-size:.875rem; margin-bottom:4px; }
.review-card__date { font-size:.75rem; color:var(--text-muted); }
.review-card__header { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
/* ═══════════════════════════════════════════════════════════════════════
   QUIZ PAGE — UI complète
   ═══════════════════════════════════════════════════════════════════════ */
.quiz-auto-bar { background:var(--green-pale); border-radius:6px; overflow:hidden; height:6px; margin-bottom:4px; }
.quiz-auto-toggle { font-size:.8125rem; color:var(--text-muted); cursor:pointer; }
.quiz-bonus-banner { background:linear-gradient(135deg,#FFF8E1,#FFF3CD); border:1.5px solid #FFD54F; border-radius:10px; padding:16px 20px; margin-bottom:20px; }
.quiz-cat-badge { display:inline-block; background:var(--green-pale); color:var(--green); border:1px solid var(--green); border-radius:20px; padding:3px 12px; font-size:.75rem; font-weight:600; margin-bottom:12px; }
.quiz-choice--bonus { border-color:#C9A84C !important; background:#FFF8E1 !important; }
.quiz-choice__key { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; background:var(--green); color:#fff; border-radius:4px; font-size:.75rem; font-weight:700; flex-shrink:0; }
.quiz-confirm-box { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; text-align:center; }
.quiz-confirm-box__icon { font-size:2.5rem; margin-bottom:12px; }
.quiz-confirm-box__label { font-size:1rem; font-weight:600; color:var(--dark); margin-bottom:16px; }
.quiz-confirm-box__account { background:var(--green-pale); border:1px solid var(--border); border-radius:8px; padding:12px 16px; margin-top:12px; display:flex; align-items:center; gap:10px; }
.quiz-confirm-box__account-info { font-size:.875rem; color:var(--dark); }
/* ═══════════════════════════════════════════════════════════════════════
   MON COMPTE — Dashboard, navigation, commandes
   ═══════════════════════════════════════════════════════════════════════ */

.account-nav li a { display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:var(--radius-sm); font-size:.9rem; color:var(--dark); text-decoration:none; transition:background .15s; }
.account-nav li.is-active a, .account-nav li a:hover { background:var(--green-pale); color:var(--green); }

.account-order-card { border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; margin-bottom:12px; }
.account-order-card__header { display:flex; align-items:center; justify-content:space-between; padding:12px 16px; background:var(--cream); border-bottom:1px solid var(--border); flex-wrap:wrap; gap:8px; }
.account-order-card__num { font-weight:600; font-size:.9rem; }
.account-order-card__date { font-size:.8125rem; color:var(--text-muted); }
.account-order-card__items { padding:8px 0; }
.account-order-card__item { display:flex; align-items:center; gap:12px; padding:8px 16px; border-bottom:1px solid var(--border); }
.account-order-card__item:last-child { border-bottom:none; }
.account-order-card__item-img { width:48px; height:48px; border-radius:6px; overflow:hidden; flex-shrink:0; background:var(--green-pale); }
.account-order-card__item-img img { width:100%; height:100%; object-fit:cover; }
.account-order-card__item-info { flex:1; min-width:0; }
.account-order-card__item-qty { font-size:.75rem; color:var(--text-muted); }
.account-order-card__item-price { font-size:.875rem; font-weight:600; color:var(--green); flex-shrink:0; }
.account-order-card__actions { display:flex; gap:8px; padding:10px 16px; border-top:1px solid var(--border); background:var(--cream); flex-wrap:wrap; }
.checkout-login-form { max-width:480px; margin:0 auto; }
.edit-account { max-width:580px; }
/* ═══════════════════════════════════════════════════════════════════════
   QUICK VIEW — Modal produit
   ═══════════════════════════════════════════════════════════════════════ */
.qv-layout { display:flex; gap:28px; }
.qv-gallery { flex-shrink:0; width:260px; }
.qv-gallery__main { width:100%; aspect-ratio:1; border-radius:var(--radius-md); overflow:hidden; background:var(--green-pale); margin-bottom:8px; }
.qv-gallery__main img { width:100%; height:100%; object-fit:cover; }
.qv-gallery__placeholder { display:flex; align-items:center; justify-content:center; font-size:4rem; }
.qv-gallery__thumbs { display:flex; gap:6px; flex-wrap:wrap; }
.qv-gallery__thumb { width:48px; height:48px; border-radius:6px; overflow:hidden; border:2px solid transparent; cursor:pointer; }
.qv-gallery__thumb.is-active, .qv-gallery__thumb:hover { border-color:var(--green); }
.qv-gallery__thumb img { width:100%; height:100%; object-fit:cover; }
.qv-badges { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:10px; }
.qv-badge { padding:3px 10px; border-radius:20px; font-size:.75rem; font-weight:600; }
.qv-badge--sale { background:#E53935; color:#fff; }
.qv-degressive { margin-bottom:14px; }
.qv-degressive__label { font-size:.8125rem; color:var(--text-muted); margin-bottom:6px; }
.qv-degressive__grid { display:flex; gap:6px; flex-wrap:wrap; }
.qv-degressive__price { display:flex; flex-direction:column; align-items:center; padding:6px 10px; border:1px solid var(--border); border-radius:6px; cursor:pointer; transition:border-color .15s; }
.qv-degressive__price.is-active, .qv-degressive__price:hover { border-color:var(--green); background:var(--green-pale); }
.qv-atc { display:flex; gap:10px; align-items:center; margin-top:14px; }
.qv-atc__btn { flex:1; }
.btn-icon { display:inline-flex; align-items:center; gap:6px; }
.btn-text { }
/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT CARD — Qty buttons
   ═══════════════════════════════════════════════════════════════════════ */
.pc-qty-minus, .pc-qty-plus { width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center; background:var(--cream); border:1px solid var(--border); border-radius:4px; cursor:pointer; font-size:1rem; transition:background .15s; }
.pc-qty-minus:hover, .pc-qty-plus:hover { background:var(--green-pale); border-color:var(--green); }
/* ═══════════════════════════════════════════════════════════════════════
   SINGLE PRODUCT — Gallery, sp-info
   ═══════════════════════════════════════════════════════════════════════ */
.sp-gallery { }
.sp-info { }
/* ═══════════════════════════════════════════════════════════════════════
   PAGES SPÉCIALES — Comparateur, Nouveautés, Promotions, À propos
   ═══════════════════════════════════════════════════════════════════════ */
/* Comparateur */
.comparator-header { text-align:center; margin-bottom:32px; }
.comparator-header__title { font-family:var(--font-serif); font-size:2.25rem; margin-bottom:8px; }
.comparator-header__sub { color:var(--text-muted); font-size:1rem; }
.comparator-row { display:flex; border-bottom:1px solid var(--border); }
.comparator-row:last-child { border-bottom:none; }
.comparator-row--highlight { background:var(--green-pale); }
.comparator-row--atc { border-top:2px solid var(--border); background:var(--cream); }
.comparator-row__label { padding:14px 16px; font-size:.875rem; font-weight:500; color:var(--text-muted); width:180px; flex-shrink:0; }
.comparator-guide { margin-top:32px; }
.comparator-guide__steps { display:flex; gap:24px; justify-content:center; flex-wrap:wrap; }
.comparator-guide__step { text-align:center; max-width:200px; }
.comparator-guide__num { width:36px; height:36px; background:var(--green); color:#fff; border-radius:50%; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 10px; }
.comparator-guide__icon { font-size:2rem; margin-bottom:8px; }
/* Nouveautés */
.hero-stat { text-align:center; }
.hero-stat__value { font-family:var(--font-serif); font-size:2.5rem; color:var(--green); font-weight:700; }
.hero-stat__label { font-size:.875rem; color:var(--text-muted); }
.new-badge { display:inline-block; background:#E53935; color:#fff; border-radius:20px; padding:3px 12px; font-size:.75rem; font-weight:700; }
.new-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.new-timeline { border-left:3px solid var(--green); padding-left:20px; }
.new-newsletter-block { background:var(--green); border-radius:var(--radius-md); padding:28px 24px; color:#fff; margin-top:32px; }
.new-newsletter-block__inner { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.new-newsletter-block__icon { font-size:2rem; }
.new-newsletter-form { display:flex; gap:8px; flex:1; }
.new-newsletter-form__input { flex:1; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3); border-radius:var(--radius-sm); padding:10px 14px; color:#fff; }
.new-newsletter-form__input::placeholder { color:rgba(255,255,255,.5); }
/* Promotions */
.coupon-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:16px; }
.coupon-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; display:flex; }
.coupon-card__left { background:var(--green); color:#fff; padding:20px 16px; display:flex; flex-direction:column; align-items:center; justify-content:center; min-width:90px; }
.coupon-card__discount { font-family:var(--font-serif); font-size:1.75rem; font-weight:700; }
.coupon-card__type { font-size:.75rem; opacity:.8; margin-top:4px; }
.coupon-card__middle { flex:1; padding:16px; }
.coupon-card__code { font-size:1.0625rem; font-weight:700; letter-spacing:.05em; color:var(--dark); background:var(--cream); padding:6px 12px; border-radius:6px; display:inline-block; margin-bottom:8px; cursor:pointer; }
.coupon-card__conditions { font-size:.8125rem; color:var(--text-muted); }
.coupon-card__right { padding:12px; display:flex; align-items:center; }
.countdown-badge { display:inline-flex; align-items:center; gap:8px; background:#E53935; color:#fff; border-radius:6px; padding:6px 14px; font-weight:600; font-size:.875rem; }
.countdown-label { font-size:.75rem; opacity:.85; }
/* À propos */
.about-hero__inner { display:flex; align-items:center; gap:40px; flex-wrap:wrap; justify-content:center; }
.about-section--story { }
.about-section__text { flex:1; }
.about-section__visual { flex-shrink:0; width:340px; }
/* ═══════════════════════════════════════════════════════════════════════
   WC NOTICES — Styled
   ═══════════════════════════════════════════════════════════════════════ */
.lvf-notice { display:flex; align-items:flex-start; gap:12px; padding:14px 18px; border-radius:var(--radius-sm); margin-bottom:16px; }
.lvf-notice--success { background:#E8F5E9; border:1px solid #4CAF50; color:#1B5E20; }
.lvf-notice--error { background:#FFEBEE; border:1px solid #E53935; color:#B71C1C; }
.lvf-notice--info { background:#E3F2FD; border:1px solid #2196F3; color:#0D47A1; }
.lvf-notice__icon { font-size:1.125rem; flex-shrink:0; margin-top:1px; }
.lvf-notice__text { font-size:.9375rem; line-height:1.5; }
/* ═══════════════════════════════════════════════════════════════════════
   WC TABLES — Order details
   ═══════════════════════════════════════════════════════════════════════ */
.lvf-table, .shop_table, .order_details { width:100%; border-collapse:collapse; }
.lvf-table th, .shop_table th { text-align:left; padding:10px 14px; font-size:.8125rem; color:var(--text-muted); border-bottom:2px solid var(--border); }
.lvf-table td, .shop_table td { padding:12px 14px; border-bottom:1px solid var(--border); font-size:.9rem; }
.lvf-table tr:last-child td, .shop_table tr:last-child td { border-bottom:none; }
/* ═══════════════════════════════════════════════════════════════════════
   WC FORMS — co-input / co-required compatibilité anciens templates
   ═══════════════════════════════════════════════════════════════════════ */
.co-input { width:100%; border:1px solid var(--border); border-radius:var(--radius-sm); padding:10px 13px; font-size:.9375rem; font-family:inherit; color:var(--dark); background:#fff; outline:none; box-sizing:border-box; transition:border-color .15s, box-shadow .15s; }
.co-input:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(45,90,39,.1); }
.co-required { color:#E53935; }
.co-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.co-field__hint { font-size:.75rem; color:var(--text-muted); display:block; margin-top:3px; }
.lvf-checkout-login-notice { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-sm); padding:10px 14px; font-size:.875rem; margin-bottom:16px; }
/* ═══════════════════════════════════════════════════════════════════════
   WC QUANTITY — Inputs +/-
   ═══════════════════════════════════════════════════════════════════════ */
.quantity { display:inline-flex; align-items:center; gap:0; }
.qty { width:56px; text-align:center; border:1px solid var(--border); padding:8px 4px; font-size:.9375rem; -moz-appearance:textfield; }
.qty::-webkit-outer-spin-button, .qty::-webkit-inner-spin-button { -webkit-appearance:none; }
.qty-minus, .qty-plus { width:34px; height:38px; background:var(--cream); border:1px solid var(--border); cursor:pointer; font-size:1.25rem; display:inline-flex; align-items:center; justify-content:center; transition:background .15s; }
.qty-minus { border-radius:var(--radius-sm) 0 0 var(--radius-sm); border-right:none; }
.qty-plus { border-radius:0 var(--radius-sm) var(--radius-sm) 0; border-left:none; }
.qty-minus:hover, .qty-plus:hover { background:var(--green-pale); }
.hidden { display:none !important; }
.input-text, .text { }
/* ═══════════════════════════════════════════════════════════════════════
   THANK YOU — Compat view-order.php
   ═══════════════════════════════════════════════════════════════════════ */
.thankyou-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; margin-bottom:12px; }
.thankyou-card__title { font-size:.9375rem; font-weight:600; padding:14px 18px; border-bottom:1px solid var(--border); background:var(--cream); margin:0; }
.thankyou-card--dark { background:#1A2E1A; }
.thankyou-card--dark .thankyou-card__title { color:rgba(255,255,255,.9); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.1); }
.thankyou-items { display:flex; flex-direction:column; }
.thankyou-item { display:flex; align-items:flex-start; gap:14px; padding:12px 18px; border-bottom:1px solid var(--border); }
.thankyou-item:last-child { border-bottom:none; }
.thankyou-item__info { flex:1; }
.thankyou-item__name { font-size:.9375rem; font-weight:600; margin-bottom:3px; }
.thankyou-item__meta { font-size:.8125rem; color:var(--green); }
.thankyou-item__qty { font-size:.8125rem; color:var(--text-muted); }
.thankyou-item__total { font-size:.9375rem; font-weight:700; color:var(--green); flex-shrink:0; }
.thankyou-step { display:flex; flex-direction:column; align-items:center; gap:4px; }
.thankyou-step__icon { width:40px; height:40px; border-radius:50%; background:var(--cream); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:1rem; }
.thankyou-step__label { font-size:.75rem; color:var(--text-muted); }
.thankyou-step--done .thankyou-step__icon { background:var(--green); border-color:var(--green); color:#fff; }
.thankyou-step--done .thankyou-step__label { color:var(--green); font-weight:600; }
.thankyou-step__arrow { color:var(--border); font-size:1.25rem; padding:0 8px; align-self:center; }
/* ═══════════════════════════════════════════════════════════════════════
   ADMIN / FUNCTIONS — countdown, loyalty admin classes
   ═══════════════════════════════════════════════════════════════════════ */
.lvf-cd-coupon { display:inline-flex; align-items:center; gap:4px; }
.lvf-cd-num { font-size:1.5rem; font-weight:700; color:var(--dark); min-width:36px; text-align:center; }
.lvf-cd-unit { font-size:.625rem; color:var(--text-muted); }
.lvf-cd-units { display:flex; gap:8px; }
.lvf-cd-sep { color:var(--text-muted); font-size:1.25rem; }
.lvf-cd-lbl { font-size:.75rem; color:var(--text-muted); text-align:center; display:block; }
.lvf-import-tab { cursor:pointer; }
/* ═══════════════════════════════════════════════════════════════════════
   MISC / HEADER
   ═══════════════════════════════════════════════════════════════════════ */
.age-gate__legal { font-size:.75rem; color:var(--text-muted); margin-top:10px; }
.main-nav__close { cursor:pointer; background:none; border:none; font-size:1.5rem; padding:4px; }
.main-nav__overlay { position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:99; display:none; }
.main-nav__overlay.is-open { display:block; }
.checkout-upsell__add { font-size:.875rem; color:var(--green); cursor:pointer; font-weight:600; }
/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Divers
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width:900px) {
  .about-section__visual { width:100%; }
  .comparator-guide__steps { flex-direction:column; align-items:center; }
}
@media (max-width:600px) {
  .comparator-row__label { width:100px; font-size:.8125rem; }
  .account-nav li a { padding:8px 10px; }
  .coupon-card { flex-direction:column; }
  .coupon-card__left { flex-direction:row; gap:12px; padding:12px 16px; }
}
/* ═══ MISSING BATCH 2 ═══════════════════════════════════════════════════ */
/* Account */

.account-status-badge { font-size:.75rem; padding:2px 8px; border-radius:10px; }
.account-orders-full { grid-column:1/-1; }
.account-order-card__total { font-weight:700; color:var(--green); font-size:.9375rem; }
/* Blog masthead */
.blog-masthead { background:linear-gradient(135deg,var(--dark),#2D5A27); padding:48px 0; color:#fff; margin-bottom:32px; }
.blog-masthead__inner { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.blog-masthead__brand { display:flex; align-items:center; gap:12px; text-decoration:none; }
.blog-masthead__title { font-family:var(--font-serif); font-size:2rem; color:#fff; margin:0 0 8px; font-weight:400; }
.blog-masthead__sub { color:rgba(255,255,255,.7); font-size:.9375rem; margin:0; }
/* Comparateur */
.comparator-selectors { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:32px; }
.comparator-slot { background:#fff; border:1.5px dashed var(--border); border-radius:var(--radius-md); padding:20px; text-align:center; position:relative; }
.comparator-slot.has-product { border-style:solid; border-color:var(--green); }
.comparator-slot__empty { color:var(--text-muted); font-size:.9rem; }
.comparator-slot__icon { font-size:2rem; margin-bottom:8px; }
.comparator-slot__search-wrap { position:relative; }
.comparator-slot__search { width:100%; border:1px solid var(--border); border-radius:var(--radius-sm); padding:8px 12px; font-size:.875rem; box-sizing:border-box; }
.comparator-slot__results { position:absolute; top:100%; left:0; right:0; background:#fff; border:1px solid var(--border); border-radius:var(--radius-sm); z-index:10; max-height:200px; overflow-y:auto; }
.comparator-slot__product { padding:10px 14px; cursor:pointer; font-size:.875rem; border-bottom:1px solid var(--border); }
.comparator-slot__product:hover { background:var(--green-pale); }
@media(max-width:700px) { .comparator-selectors{grid-template-columns:1fr;} }
/* Dégressif explainer */
.dg-explainer { background:var(--green-pale); border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; margin-top:24px; }
.dg-explainer__title { font-size:1.0625rem; font-weight:600; color:var(--dark); margin-bottom:16px; }
.dg-explainer__grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:12px; }
.dg-explainer__tier { background:#fff; border:1px solid var(--border); border-radius:8px; padding:14px; text-align:center; }
.dg-explainer__icon { font-size:1.5rem; margin-bottom:6px; }
.dg-explainer__qty { font-weight:700; color:var(--green); font-size:1.125rem; }
.dg-explainer__lbl { font-size:.75rem; color:var(--text-muted); }
.dg-explainer__desc { font-size:.8125rem; color:var(--green); font-weight:600; }
.dg-explainer__note { font-size:.75rem; color:var(--text-muted); margin-top:12px; }
/* Promotions page */
.promo-hero { background:linear-gradient(135deg,var(--dark),#2D5A27); color:#fff; padding:60px 0 48px; margin-bottom:40px; }
.promo-hero__content { max-width:600px; }
.promo-hero__tag { display:inline-block; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); border-radius:20px; padding:4px 14px; font-size:.8125rem; margin-bottom:16px; }
.promo-hero__title { font-family:var(--font-serif); font-size:2.5rem; color:#fff; margin:0 0 12px; font-weight:400; }
.promo-hero__desc { color:rgba(255,255,255,.8); font-size:1rem; line-height:1.7; margin:0 0 24px; }
.promo-hero__countdown { margin-top:20px; }
.promo-coupons { margin-bottom:40px; }
.promo-section { margin-bottom:40px; }
/* Quiz */
.quiz-start-screen { text-align:center; padding:40px 20px; }
.quiz-start__icon { font-size:4rem; margin-bottom:16px; }
.quiz-start__title { font-family:var(--font-serif); font-size:2rem; margin-bottom:12px; }
.quiz-start__rules { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:20px; }
.quiz-start__rule { display:flex; align-items:center; gap:6px; font-size:.875rem; color:var(--text-muted); }
.quiz-progress-wrap { margin-bottom:20px; }
.quiz-progress-bar-row { display:flex; gap:4px; margin-top:8px; }
.quiz-last-winner { background:var(--green-pale); border:1px solid var(--border); border-radius:var(--radius-sm); padding:10px 14px; font-size:.875rem; color:var(--green); margin-bottom:16px; }
/* Quick view info */
.qv-info { flex:1; min-width:0; }
.qv-title { font-family:var(--font-serif); font-size:1.375rem; color:var(--dark); margin:0 0 6px; }
.qv-subtitle { font-size:.875rem; color:var(--text-muted); margin:0 0 10px; }
.qv-rating { display:flex; align-items:center; gap:6px; margin-bottom:10px; }
.qv-rating__count { font-size:.8125rem; color:var(--text-muted); }
.qv-price { display:flex; align-items:baseline; gap:8px; margin-bottom:14px; }
.qv-price__old { text-decoration:line-through; color:var(--text-muted); font-size:.9375rem; }
.qv-price__current { font-family:var(--font-serif); font-size:1.75rem; font-weight:700; color:var(--green); }
/* Thankyou compat */
.thankyou-express { background:#FFF8E1; border:1.5px solid #FFD54F; border-radius:8px; padding:14px 18px; margin-bottom:20px; font-size:.9375rem; color:#6B4C00; }
.thankyou-steps { display:flex; align-items:center; justify-content:center; gap:0; margin:24px 0; padding:18px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); flex-wrap:wrap; }
.thankyou-totals { padding:0 18px 8px; }
.thankyou-total-row { display:flex; justify-content:space-between; padding:8px 0; font-size:.9rem; color:var(--text-muted); border-bottom:1px solid var(--border); }
.thankyou-total-row:last-child { border-bottom:none; }
.thankyou-total-row--green { color:var(--green); }
.thankyou-total-row--grand { font-size:1.0625rem; font-weight:700; color:var(--green); border-top:2px solid var(--border); border-bottom:none; padding-top:12px; }
/* Misc */
.lvf-tab-pane { display:none; }
.lvf-tab-pane.is-active { display:block; }
.lvf-meta { font-size:.8125rem; color:var(--text-muted); }
.lvf-resend-btn { background:none; border:none; color:var(--green); font-size:.875rem; cursor:pointer; text-decoration:underline; }
.lvf-co-payment-method__icon { display:inline-flex; }
/* ═══════════════════════════════════════════════════════════════════════
   MON COMPTE — Layout complet
   ═══════════════════════════════════════════════════════════════════════ */

/* Header compte */

/* Navigation */

.account-nav__item a { display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:var(--radius-sm); color:var(--dark); text-decoration:none; font-size:.9rem; transition:background .15s; }
.account-nav__item a:hover,
.account-nav__item.is-active a { background:var(--green-pale); color:var(--green); font-weight:500; }

/* Notifications */

/* Loyalty */

/* Commandes */

/* Quiz */

/* Divers */

/* Responsive */
@media (max-width:768px) {
    .account-nav { width:100%; display:flex; flex-wrap:wrap; gap:4px; }
  .account-nav__item { flex:1; min-width:80px; }
  }

/* ═══════════════════════════════════════════════════════════════════════
   MON COMPTE — Layout, navigation, dashboard, fidélité, commandes
   ═══════════════════════════════════════════════════════════════════════ */

/* Wrapper global */
.account-wrap { padding:32px 0 64px; }

/* Header profil (bandeau pleine largeur) */
.account-header { display:flex; align-items:center; gap:16px; padding:20px 24px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); margin-bottom:24px; }
.account-header__avatar img { width:60px; height:60px; border-radius:50%; object-fit:cover; }
.account-header__info { flex:1; }
.account-header__name { font-family:var(--font-serif); font-size:1.25rem; font-weight:600; color:var(--dark); margin:0 0 4px; }
.account-header__email { font-size:.875rem; color:var(--text-muted); margin-bottom:6px; }
.account-header__since { font-size:.8125rem; color:var(--text-muted); }
.account-header__stats { display:flex; gap:12px; flex-wrap:wrap; font-size:.875rem; color:var(--text-muted); }

/* Layout sidebar + contenu */
.account-layout { display:flex; gap:28px; align-items:flex-start; }

/* Sidebar navigation */
.account-nav { width:210px; flex-shrink:0; background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; }
.account-nav__item { display:flex; align-items:center; gap:10px; padding:11px 16px; color:var(--dark); text-decoration:none; font-size:.9rem; border-bottom:1px solid var(--border); transition:background .15s; }
.account-nav__item:last-child { border-bottom:none; }
.account-nav__item:hover,
.account-nav__item.is-active { background:var(--green-pale); color:var(--green); font-weight:500; }
.account-nav__icon { flex-shrink:0; font-size:1rem; width:20px; text-align:center; }
.account-nav__badge { display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; border-radius:9px; background:var(--text-muted); color:#fff; font-size:.625rem; font-weight:700; padding:0 4px; margin-left:auto; }
.account-nav__badge--green { background:var(--green); }

/* Contenu principal */
.account-content { flex:1; min-width:0; }

/* Barre de stats */
.account-stats-bar { display:flex; gap:12px; margin-bottom:20px; flex-wrap:wrap; }
.account-stat { flex:1; min-width:100px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); padding:16px; text-align:center; }
.account-stat__val { display:block; font-family:var(--font-serif); font-size:1.75rem; font-weight:700; color:var(--green); line-height:1; margin-bottom:6px; }
.account-stat__lbl { display:block; font-size:.75rem; color:var(--text-muted); }

/* Grille dashboard */
.account-dashboard-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* Cartes */
.account-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; }
.account-card--full { grid-column:1 / -1; }
.account-card--loyalty { border-top:3px solid var(--green); }
.account-card--quiz { border-top:3px solid var(--gold); }
.account-card--referral { border-top:3px solid #9C27B0; }
.account-card--subs { border-top:3px solid #2196F3; }
.account-card--actions { }
.account-card__header { display:flex; align-items:center; justify-content:space-between; gap:8px; padding:12px 16px; border-bottom:1px solid var(--border); background:var(--cream); overflow:hidden; }
.account-card__title { font-size:.9375rem; font-weight:600; color:var(--dark); margin:0; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.account-card__desc { font-size:.8125rem; color:var(--text-muted); }
.account-card__link { font-size:.8125rem; color:var(--green); font-weight:600; text-decoration:none; }
.account-card__link--cta { background:var(--green); color:#fff; padding:4px 10px; border-radius:6px; font-size:.8125rem; }
.account-actions { display:flex; gap:8px; flex-wrap:wrap; padding:14px 16px; }

/* Notifications */
.account-notifs { display:flex; flex-direction:column; gap:10px; padding:12px 16px; }
.account-notif { display:flex; align-items:flex-start; gap:12px; padding:12px; background:var(--cream); border-radius:var(--radius-sm); border:1px solid var(--border); }
.account-notif--quiz { border-color:var(--gold); background:#FFF8E1; }
.account-notif--winner { border-color:var(--green); background:var(--green-pale); }
.account-notif__icon { font-size:1.125rem; flex-shrink:0; }

/* Fidélité */
.account-loyalty-block { padding:16px; }
.account-loyalty-pts { display:flex; align-items:baseline; gap:6px; margin-bottom:12px; }
.account-loyalty-pts__num { font-family:var(--font-serif); font-size:2.25rem; font-weight:700; color:var(--green); }
.account-loyalty-pts__label { font-size:.875rem; color:var(--text-muted); }
.account-loyalty-progress { margin:12px 0; }
.account-loyalty-progress__bar { height:10px; background:var(--cream); border-radius:5px; overflow:hidden; border:1px solid var(--border); }
.account-loyalty-progress__fill { height:100%; border-radius:5px; background:var(--green); transition:width .5s ease; }
.account-loyalty-progress__labels { display:flex; justify-content:space-between; font-size:.75rem; color:var(--text-muted); margin-top:4px; }
.account-loyalty-level-row { display:flex; align-items:center; gap:10px; padding:8px 0; border-bottom:1px solid var(--border); font-size:.875rem; }
.account-loyalty-level-row:last-child { border-bottom:none; }
.account-loyalty-level__badge { font-size:1.125rem; }
.account-loyalty-level__total { font-size:.8125rem; color:var(--text-muted); margin-left:auto; }
.account-loyalty-hint { font-size:.8125rem; color:var(--text-muted); padding:0 16px 12px; }

/* Commandes */
.account-orders-list { display:flex; flex-direction:column; }
.account-order-row { display:flex; align-items:center; gap:10px; padding:10px 16px; border-bottom:1px solid var(--border); flex-wrap:wrap; font-size:.875rem; }
.account-order-row:last-child { border-bottom:none; }
.account-order-row__num { font-weight:600; color:var(--dark); }
.account-order-row__date { color:var(--text-muted); font-size:.8125rem; }
.account-order-row__total { font-weight:600; color:var(--green); }
.account-order-row__right { margin-left:auto; display:flex; align-items:center; gap:8px; }

/* Quiz */
.account-quiz-history { display:flex; flex-direction:column; }
.account-quiz-row { display:flex; align-items:center; gap:10px; padding:8px 16px; border-bottom:1px solid var(--border); font-size:.875rem; }
.account-quiz-row:last-child { border-bottom:none; }
.account-quiz-next { padding:16px; font-size:.875rem; color:var(--text-muted); text-align:center; }
.account-quiz-empty { padding:24px; font-size:.9rem; color:var(--text-muted); text-align:center; }

/* Adresses et divers */
.account-address { padding:16px; font-size:.9rem; line-height:1.8; }
.account-express-badge { margin:0 16px 12px; }
.account-empty { text-align:center; padding:36px; color:var(--text-muted); }
.account-empty__link { color:var(--green); font-weight:600; }

/* Responsive */
@media (max-width:900px) {
  .account-layout { flex-direction:column; }
  .account-nav { width:100%; display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); border-radius:var(--radius-md); }
  .account-nav__item { border-bottom:none; border-right:1px solid var(--border); justify-content:center; text-align:center; flex-direction:column; gap:4px; padding:10px 8px; font-size:.8125rem; }
  .account-nav__item:last-child { border-right:none; }
  .account-nav__badge { margin:0 auto; }
}
@media (max-width:600px) {
  .account-stats-bar { gap:8px; }
  .account-stat { min-width:80px; padding:12px 8px; }
  .account-stat__val { font-size:1.375rem; }
  .account-dashboard-grid { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   QUICK VIEW — Modal overlay + contenu produit
   ═══════════════════════════════════════════════════════════════════════ */

/* Overlay */
.qv-overlay { position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:9999; display:flex; align-items:center; justify-content:center; padding:16px; opacity:0; pointer-events:none; transition:opacity .25s ease; }
.qv-overlay.is-open { opacity:1; pointer-events:all; }

/* Modal */
.qv-modal { background:#fff; border-radius:var(--radius-lg,14px); width:100%; max-width:860px; max-height:90vh; overflow-y:auto; position:relative; box-shadow:0 24px 64px rgba(0,0,0,.25); transform:translateY(20px) scale(.97); transition:transform .25s ease; }
.qv-overlay.is-open .qv-modal { transform:translateY(0) scale(1); }

/* Bouton fermer */
.qv-close { position:absolute; top:12px; right:14px; width:36px; height:36px; background:var(--cream); border:1px solid var(--border); border-radius:50%; font-size:1.25rem; cursor:pointer; display:flex; align-items:center; justify-content:center; line-height:1; z-index:10; transition:background .15s; }
.qv-close:hover { background:var(--border); }

/* Loader */
.qv-loader { padding:60px 40px; text-align:center; color:var(--text-muted); }
.qv-loader::after { content:''; display:block; width:32px; height:32px; border:3px solid var(--border); border-top-color:var(--green); border-radius:50%; animation:qv-spin .7s linear infinite; margin:16px auto 0; }
@keyframes qv-spin { to { transform:rotate(360deg); } }

/* Layout */
.qv-layout { display:flex; gap:28px; padding:28px; }

/* Galerie */
.qv-gallery { flex-shrink:0; width:280px; }
.qv-gallery__main { width:100%; aspect-ratio:1; border-radius:var(--radius-md); overflow:hidden; background:var(--green-pale); margin-bottom:10px; position:relative; }
.qv-gallery__main img, .qv-gallery__img { width:100%; height:100%; object-fit:cover; transition:opacity .2s; }
.qv-gallery__placeholder { display:flex; align-items:center; justify-content:center; font-size:4rem; height:100%; }
.qv-gallery__thumbs { display:flex; gap:6px; flex-wrap:wrap; }
.qv-gallery__thumb { width:52px; height:52px; border-radius:8px; overflow:hidden; border:2px solid transparent; cursor:pointer; background:var(--green-pale); transition:border-color .15s; }
.qv-gallery__thumb.is-active, .qv-gallery__thumb:hover { border-color:var(--green); }
.qv-gallery__thumb img { width:100%; height:100%; object-fit:cover; }

/* Badges */
.qv-badges { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.qv-badge { display:inline-block; padding:3px 10px; border-radius:20px; font-size:.75rem; font-weight:700; }
.qv-badge--sale { background:#E53935; color:#fff; position:absolute; top:10px; left:10px; z-index:1; }

/* Infos */
.qv-info { flex:1; min-width:0; }
.qv-title { font-family:var(--font-serif); font-size:1.5rem; color:var(--dark); margin:0 0 6px; padding-right:32px; line-height:1.2; }
.qv-subtitle { font-size:.9rem; color:var(--text-muted); margin:0 0 12px; }
.qv-rating { display:flex; align-items:center; gap:6px; margin-bottom:12px; }
.qv-rating__count { font-size:.8125rem; color:var(--text-muted); }

/* Prix */
.qv-price { display:flex; align-items:baseline; gap:8px; margin-bottom:16px; }
.qv-price__old { text-decoration:line-through; color:var(--text-muted); font-size:.9375rem; }
.qv-price__current { font-family:var(--font-serif); font-size:1.875rem; font-weight:700; color:var(--green); }
.qv-price__unit { font-size:.875rem; color:var(--text-muted); }

/* Dégressif */
.qv-degressive { margin-bottom:16px; }
.qv-degressive__label { font-size:.8125rem; color:var(--text-muted); margin-bottom:8px; font-weight:500; }
.qv-degressive__grid { display:flex; gap:6px; flex-wrap:wrap; }
.qv-degressive__tier { display:flex; flex-direction:column; align-items:center; padding:8px 12px; border:1px solid var(--border); border-radius:8px; cursor:pointer; transition:border-color .15s, background .15s; min-width:60px; }
.qv-degressive__tier.is-active, .qv-degressive__tier:hover { border-color:var(--green); background:var(--green-pale); }
.qv-degressive__qty { font-size:.8125rem; font-weight:700; color:var(--dark); }
.qv-degressive__price { font-size:.8125rem; color:var(--green); font-weight:600; }

/* Description courte */
.qv-desc { font-size:.9rem; color:var(--text-muted); line-height:1.65; margin-bottom:14px; }
.qv-desc p { margin:0 0 8px; }
.qv-desc p:last-child { margin:0; }

/* Meta rapide */
.qv-meta { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.qv-meta span { font-size:.8125rem; color:var(--text-muted); background:var(--cream); padding:4px 10px; border-radius:20px; }

/* Quantité */
.qv-qty { display:inline-flex; align-items:center; border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; }
.qv-qty__btn { width:36px; height:40px; background:var(--cream); border:none; cursor:pointer; font-size:1.125rem; transition:background .15s; display:flex; align-items:center; justify-content:center; }
.qv-qty__btn:hover { background:var(--green-pale); }
.qv-qty__input { width:48px; height:40px; border:none; border-left:1px solid var(--border); border-right:1px solid var(--border); text-align:center; font-size:.9375rem; -moz-appearance:textfield; }
.qv-qty__input::-webkit-outer-spin-button, .qv-qty__input::-webkit-inner-spin-button { -webkit-appearance:none; }

/* ATC */
.qv-atc { display:flex; gap:10px; align-items:stretch; margin-bottom:14px; }
.qv-atc__btn { flex:1; }

/* Lien fiche complète */
.qv-full-link { display:inline-flex; align-items:center; gap:6px; font-size:.875rem; color:var(--green); font-weight:500; text-decoration:none; }
.qv-full-link:hover { text-decoration:underline; }

/* Responsive */
@media (max-width:640px) {
  .qv-layout { flex-direction:column; padding:20px; gap:20px; }
  .qv-gallery { width:100%; max-width:320px; margin:0 auto; }
  .qv-title { font-size:1.25rem; padding-right:0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT CARD — Stock faible + Meilleur prix/g
   ═══════════════════════════════════════════════════════════════════════ */
.badge--stock-low { background:#FFF3E0;color:#E65100;border:1px solid #FFCC80;font-weight:700;animation:pulse-stock 2s ease infinite; }
@keyframes pulse-stock { 0%,100%{opacity:1} 50%{opacity:.75} }
.product-card__best-price { font-size:.75rem;color:var(--green);margin-top:4px; }
.product-card__best-price strong { font-weight:700; }

/* ═══════════════════════════════════════════════════════════════════════
   UPSELL POST-ACHAT — Page confirmation
   ═══════════════════════════════════════════════════════════════════════ */
.lvf-ty-upsell { margin:40px 0 0;padding-top:32px;border-top:2px solid var(--border); }
.lvf-ty-upsell__head { text-align:center;margin-bottom:24px; }
.lvf-ty-upsell__title { font-family:var(--font-serif);font-size:1.75rem;margin:0 0 8px;color:var(--dark); }
.lvf-ty-upsell__sub { color:var(--text-muted);font-size:.9375rem;margin:0; }
.lvf-ty-upsell__grid { display:grid;grid-template-columns:repeat(4,1fr);gap:16px; }
.lvf-ty-upsell__card { background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;text-decoration:none;transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column; }
.lvf-ty-upsell__card:hover { transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.1); }
.lvf-ty-upsell__img { aspect-ratio:1;overflow:hidden;background:var(--green-pale); }
.lvf-ty-upsell__img img { width:100%;height:100%;object-fit:cover;transition:transform .35s; }
.lvf-ty-upsell__card:hover .lvf-ty-upsell__img img { transform:scale(1.05); }
.lvf-ty-upsell__info { padding:12px;flex:1;display:flex;flex-direction:column;gap:4px; }
.lvf-ty-upsell__name { font-size:.875rem;font-weight:600;color:var(--dark);line-height:1.3;margin:4px 0; }
.lvf-ty-upsell__stars { color:#F9A825;font-size:.8125rem; }
.lvf-ty-upsell__stars span { color:var(--text-muted);font-size:.75rem; }
.lvf-ty-upsell__price { font-size:1rem;font-weight:700;color:var(--green); }
@media(max-width:768px) { .lvf-ty-upsell__grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px) { .lvf-ty-upsell__grid { grid-template-columns:1fr 1fr; } }

/* ── WhatsApp share button ──────────────────────────────────────────────── */
.share-btn--wa { background:#25D366;color:#fff; }
.share-btn--wa:hover { opacity:.88;color:#fff; }



/* ═══════════════════════════════════════════════════════════════════════
   TOC — Table des matières (amélioration)
   ═══════════════════════════════════════════════════════════════════════ */
.toc-block { background:var(--cream);border:1px solid var(--border);border-radius:var(--radius-md);padding:16px 20px;margin-bottom:28px; }
.toc-block__header { display:flex;align-items:center;justify-content:space-between;cursor:pointer; }
.toc-block__title { font-size:.9375rem;font-weight:700;color:var(--dark);margin:0; }
.toc-block__toggle { font-size:.875rem;color:var(--green);cursor:pointer;background:none;border:none;padding:0; }
.toc-block__list { list-style:none;padding:0;margin:12px 0 0; }
.toc-block__list li { padding:5px 0;border-bottom:1px solid var(--border);font-size:.875rem; }
.toc-block__list li:last-child { border-bottom:none; }
.toc-block__list a { color:var(--green);text-decoration:none;transition:color .15s; }
.toc-block__list a:hover { color:var(--dark); }

/* ═══════════════════════════════════════════════════════════════════════
   CORRECTIONS CSS — Classes manquantes détectées à l'audit
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Mon Compte — Wishlist grid ────────────────────────────────────────── */
.account-wishlist-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:16px; }
.account-wishlist-item { display:flex;flex-direction:column;background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;transition:box-shadow .2s; }
.account-wishlist-item:hover { box-shadow:0 4px 16px rgba(0,0,0,.08); }
.account-wishlist-item__img-wrap { position:relative;aspect-ratio:1;overflow:hidden;background:var(--green-pale); }
.account-wishlist-item__img-wrap img { width:100%;height:100%;object-fit:cover;transition:transform .3s; }
.account-wishlist-item:hover .account-wishlist-item__img-wrap img { transform:scale(1.05); }
.account-wishlist-item__badge { position:absolute;top:8px;left:8px;background:#E53935;color:#fff;font-size:.6875rem;font-weight:700;padding:2px 6px;border-radius:4px;z-index:1; }
.account-wishlist-item__body { padding:12px;display:flex;flex-direction:column;gap:5px;flex:1; }
.account-wishlist-item__name { font-size:.875rem;font-weight:600;color:var(--dark);text-decoration:none;line-height:1.3;display:block; }
.account-wishlist-item__name:hover { color:var(--green); }
.account-wishlist-item__meta { display:flex;gap:4px;flex-wrap:wrap; }
.account-wishlist-item__price-row { display:flex;align-items:baseline;gap:6px;margin-top:auto;padding-top:4px; }
.account-wishlist-item__price { font-size:.9375rem;font-weight:700;color:var(--green); }
.account-wishlist-item__price--old { font-size:.8125rem;color:var(--text-muted);text-decoration:line-through; }
.account-wishlist-item__atc { margin-top:8px;font-size:.8125rem;padding:7px 12px;text-align:center;display:block;text-decoration:none; }

/* ── Mon Compte — Actions rapides ──────────────────────────────────────── */
.account-quick-actions { display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border); }
.account-quick-action { display:flex;flex-direction:column;align-items:center;gap:6px;padding:18px 12px;background:#fff;text-decoration:none;transition:background .15s; }
.account-quick-action:hover { background:var(--green-pale); }
.account-quick-action__icon { font-size:1.5rem;line-height:1; }
.account-quick-action__label { font-size:.8125rem;font-weight:500;color:var(--dark); }
.account-quick-action:hover .account-quick-action__label { color:var(--green); }

/* ── Mon Compte — Quiz stats ───────────────────────────────────────────── */
.account-quiz-stats { display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:14px; }
.account-quiz-stat { text-align:center;background:var(--cream);border-radius:6px;padding:10px 8px; }
.account-quiz-stat__val { display:block;font-size:1.25rem;font-weight:700;color:var(--dark); }
.account-quiz-stat__val.is-perfect { color:var(--green); }
.account-quiz-stat__lbl { display:block;font-size:.6875rem;color:var(--text-muted);margin-top:2px; }
.account-quiz-row__score { font-size:.875rem;font-weight:700;color:var(--text-muted); }
.account-quiz-row__score.is-perfect { color:var(--green); }
.account-quiz-row__score.is-good { color:#4A8A3F; }
.account-quiz-row__bar { height:6px;background:var(--border);border-radius:3px;overflow:hidden; }
.account-quiz-row__fill { height:100%;border-radius:3px; }
.account-quiz-row__date { font-size:.75rem;color:var(--text-muted);text-align:right; }

/* ── Mon Compte — Parrainage ───────────────────────────────────────────── */
.account-ref-stats { display:flex;gap:16px;font-size:.875rem;margin-bottom:10px;padding:10px 14px;background:var(--green-pale);border-radius:6px; }
.account-ref-link { display:flex;gap:8px;align-items:center; }

/* ── Mon Compte — Avatar ───────────────────────────────────────────────── */
.account-header__avatar { flex-shrink:0; }
.account-header__avatar img { width:56px;height:56px;border-radius:50%;object-fit:cover; }

/* ── Panier — Coupon block body ────────────────────────────────────────── */
.cart-coupon-block__body { padding:14px; }

/* ── Confirmation — Step done ──────────────────────────────────────────── */
.lvf-ty-step--done .lvf-ty-step__icon { background:var(--green);border-color:var(--green);color:#fff; }
.lvf-ty-step--done .lvf-ty-step__label { color:var(--green);font-weight:600; }

/* ── Accueil — Quiz banner content ────────────────────────────────────── */
.quiz-banner__content { flex:1;min-width:0; }

/* ── Responsive Mon Compte wishlist ────────────────────────────────────── */
@media(max-width:700px) { .account-wishlist-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:400px) { .account-quick-actions { grid-template-columns:repeat(2,1fr); } }

.account-card__link, .account-card__link--cta { flex-shrink:0; white-space:nowrap; }

/* ── Cart Drawer — extras ───────────────────────────────────────────────── */
.cdr-spinner { width:32px;height:32px;border:3px solid var(--border);border-top-color:var(--green);border-radius:50%;animation:spin .7s linear infinite;margin:0 auto; }
@keyframes spin { to { transform:rotate(360deg); } }
.cdr-item__qty-val { transition:transform .18s cubic-bezier(.4,0,.2,1); }
.cdr-summary__total { transition:transform .2s; }
.cdr-summary__row--discount { font-size:.875rem;color:var(--green);padding:4px 0; }
.cdr-summary__discount { font-weight:600;color:var(--green); }
.cdr-item { transition:opacity .2s, transform .2s; }

/* ── Empêcher les SVG de capturer les clics dans le drawer ────────────── */
.cdr-item__qty-btn svg,
.cdr-item__remove svg,
.cdr-header__close svg { pointer-events: none; }

/* ── Cart Drawer — prix unitaire + nudge ───────────────────────────────── */
.cdr-item__unit-price { display:flex;align-items:center;gap:6px;margin:3px 0 5px; }
.cdr-item__unit-cur   { font-size:.8125rem;font-weight:600;color:var(--green); }
.cdr-item__unit-old   { font-size:.75rem;color:var(--text-muted);text-decoration:line-through; }
.cdr-item__qty-unit   { font-size:.8125rem;color:var(--text-muted);font-weight:500; }
.cdr-item__nudge {
  display:block;width:100%;margin-top:6px;padding:5px 8px;
  background:var(--green-pale);border:1px dashed var(--green);border-radius:6px;
  font-size:.75rem;color:var(--green);font-weight:500;cursor:pointer;
  text-align:left;font-family:inherit;transition:background .15s;
}
.cdr-item__nudge:hover { background:#dff0db; }
.cbadge--outline { background:transparent;border:1px solid var(--border);color:var(--text-muted); }

/* ── Page panier — prix /g + nudge ─────────────────────────────────────── */
.cart-item__unit-block { display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-bottom:3px; }
.cart-item__unit-old { font-size:.8125rem;color:var(--text-muted);text-decoration:line-through; }
.cart-item__unit { font-size:.9375rem;font-weight:600;color:var(--green); }
.cbadge--sale { background:#FFF3E0;color:#E65100;border:1px solid #FFCC80;font-size:.6875rem;font-weight:700; }
.cart-item__nudge { margin-top:8px;padding:8px 12px;background:var(--green-pale);border:1px dashed var(--green);border-radius:6px;font-size:.8125rem;color:var(--dark);display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap; }
.cart-item__nudge-btn { background:var(--green);color:#fff;border:none;border-radius:4px;padding:4px 12px;font-size:.8125rem;cursor:pointer;font-family:inherit;font-weight:600;white-space:nowrap; }
.cart-item__nudge-btn:hover { background:var(--green-hover); }

/* ══════════════════════════════════════════════════════════════════════════
   BLOG 2026 — Nouvelles fonctionnalités
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Barre de progression de lecture ──────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--green);
  z-index: 9999;
  transition: width .08s linear;
  transform-origin: left;
}

/* ── Unité de vente — suffixe après le prix partout sur le site ──────── */
.lvf-price-unit { font-size: .72em; font-weight: 400; color: var(--text-muted); letter-spacing: 0; margin-left: 2px; white-space: nowrap; }
/* Dans les cartes produit loop : légèrement plus petit */
.product-card .lvf-price-unit,
.home-blog-card .lvf-price-unit { font-size: .68em; }
/* Dans le hero et le quick-view : aligner avec le prix */
.hero-featured-card__price .lvf-price-unit,
.quick-view__price .lvf-price-unit { font-size: .75em; opacity: .8; }

/* ── Badge Type d'article ─────────────────────────────────────────────── */
.article-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.article-type-badge--guide     { background: #e8f5e9; color: #2e7d32; }
.article-type-badge--actualite { background: #e3f2fd; color: #1565c0; }
.article-type-badge--science   { background: #f3e5f5; color: #6a1b9a; }
.article-type-badge--legalite  { background: #fff8e1; color: #bf360c; }
.article-type-badge--bien-etre { background: #fce4ec; color: #880e4f; }
.article-type-badge--tutoriel  { background: #e0f2f1; color: #00695c; }

/* ── Meta header article ──────────────────────────────────────────────── */
.single-article__top-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.single-article__cats { display: flex; flex-wrap: wrap; gap: 6px; }
.blog-meta__updated { font-size: .8125rem; color: var(--text-muted); }

/* ── Ancres sur les titres ────────────────────────────────────────────── */
.single-article__content h2,
.single-article__content h3 { position: relative; }
.heading-anchor {
  position: absolute;
  left: -1.5em;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: var(--green);
  font-size: .875rem;
  text-decoration: none;
  padding: 0 4px;
  transition: opacity .2s;
  cursor: pointer;
}
.single-article__content h2:hover .heading-anchor,
.single-article__content h3:hover .heading-anchor { opacity: 1; }

/* ── Articles liés ────────────────────────────────────────────────────── */
.related-articles { margin: 40px 0; padding: 32px 0; border-top: 1px solid var(--border); }
.related-articles__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.related-articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow var(--transition), transform var(--transition);
}
.related-article-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.related-article-card__img { aspect-ratio: 16/9; overflow: hidden; }
.related-article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-article-card:hover .related-article-card__img img { transform: scale(1.04); }
.related-article-card__body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.related-article-card__cat { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--green); }
.related-article-card__title { font-size: .9375rem; font-weight: 600; line-height: 1.4; flex: 1; color: var(--text); }
.related-article-card__meta { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

/* ── CTA "Cet article vous a été utile ?" ──────────────────────────────── */
.article-helpful { margin: 32px 0; padding: 24px; background: var(--green-pale); border-radius: var(--radius-lg); text-align: center; }
.article-helpful__q { font-weight: 700; margin-bottom: 14px; color: var(--text); }
.article-helpful__btns { display: flex; gap: 12px; justify-content: center; }
.article-helpful__btn {
  padding: 8px 22px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  font-size: .9375rem;
  font-family: inherit;
  transition: all var(--transition);
}
.article-helpful__btn:hover { border-color: var(--green); }
.article-helpful__btn.is-selected { border-color: var(--green); background: var(--green); color: #fff; }

/* ── Bouton retour en haut ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background var(--transition);
  z-index: 998;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--green-hover); }

/* ── Filtre types — page catégorie ───────────────────────────────────── */
.cat-type-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--white);
  transition: all var(--transition);
}
.cat-type-filter:hover,
.cat-type-filter.is-active { border-color: var(--green); color: var(--green); background: var(--green-pale); }

/* ── Hero page catégorie ──────────────────────────────────────────────── */
.cat-hero {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.cat-hero__inner { display: flex; align-items: flex-start; gap: 28px; }
.cat-hero__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cat-hero__badge {
  display: inline-block;
  padding: 2px 12px;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.cat-hero__title { font-size: 2rem; font-weight: 800; color: var(--text); margin: 0 0 8px; line-height: 1.2; }
.cat-hero__desc { color: var(--text-muted); font-size: 1.0625rem; max-width: 580px; margin: 0 0 10px; }
.cat-hero__meta { font-size: .875rem; color: var(--text-muted); display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }

/* Grille catégorie (full-width, sans sidebar) */
.cat-page-main { max-width: 100%; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .related-articles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .related-articles__grid { grid-template-columns: 1fr; }
  .cat-hero__inner { flex-direction: column; gap: 16px; }
  .cat-hero__title { font-size: 1.5rem; }
  .heading-anchor { display: none; }
  .back-to-top { bottom: 16px; right: 16px; }
}

/* ── Navigation article (précédent / suivant) ─────────────────────────── */
.post-nav {
  display: flex;
  gap: 16px;
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.post-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow var(--transition), transform var(--transition);
}
.post-nav__item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.post-nav__item--next { text-align: right; }
.post-nav__dir { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); }
.post-nav__title { font-size: .9375rem; font-weight: 600; line-height: 1.4; }

/* ── Typographie contenu article ──────────────────────────────────────── */
.single-article__content blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--green);
  background: var(--green-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  position: relative;
}
.single-article__content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 3rem;
  color: var(--green);
  font-style: normal;
  line-height: 1;
  opacity: .4;
}
.single-article__content blockquote p { margin: 0; }
.single-article__content blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: .8125rem;
  font-style: normal;
  color: var(--text-muted);
}

.single-article__content pre,
.single-article__content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: .875em;
}
.single-article__content pre {
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 24px 0;
  line-height: 1.6;
}
.single-article__content :not(pre) > code {
  background: var(--green-pale);
  color: var(--green);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .875em;
}

.single-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .9375rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.single-article__content table th {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  text-align: left;
  font-size: .875rem;
  letter-spacing: .03em;
}
.single-article__content table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.single-article__content table tr:last-child td { border-bottom: none; }
.single-article__content table tr:nth-child(even) td { background: var(--cream); }

.single-article__content figure { margin: 28px 0; }
.single-article__content figure img { width: 100%; height: auto; border-radius: var(--radius-md); display: block; }
.single-article__content figcaption {
  margin-top: 8px;
  font-size: .8125rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.single-article__content hr {
  border: none;
  border-top: 2px solid var(--border);
  margin: 36px auto;
  width: 60%;
}

.single-article__content img { max-width: 100%; height: auto; border-radius: var(--radius-md); }

/* ── TOC widget sidebar ───────────────────────────────────────────────── */
.toc-widget { position: relative; overflow: hidden; }
.toc-widget__progress-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.toc-widget__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--green);
  border-radius: 2px;
  transition: width .1s linear;
}
.toc-widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-widget__list li a {
  display: block;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: .8125rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color var(--transition), background var(--transition);
  border-left: 2px solid transparent;
}
.toc-widget__list li a:hover { color: var(--green); background: var(--green-pale); }
.toc-widget__list li a.is-active { color: var(--green); font-weight: 600; border-left-color: var(--green); background: var(--green-pale); }
.toc-widget__list li[data-level="3"] a { padding-left: 18px; font-size: .75rem; }

/* ── Author box — lien ────────────────────────────────────────────────── */
.author-box__name a { color: var(--text); text-decoration: none; }
.author-box__name a:hover { color: var(--green); }
.author-box__link {
  display: inline-block;
  margin-top: 8px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}
.author-box__link:hover { text-decoration: underline; }

/* ── Hero Tag ─────────────────────────────────────────────────────────── */
.tag-hero {
  padding: 40px 0 28px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 100%);
  border-bottom: 1px solid var(--border);
}
.tag-hero__inner { display: flex; align-items: flex-start; gap: 20px; }
.tag-hero__symbol {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.tag-hero__label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 4px; }
.tag-hero__title { font-size: 1.875rem; font-weight: 800; color: var(--text); margin: 0 0 6px; }
.tag-hero__desc { color: var(--text-muted); font-size: 1rem; margin: 0 0 8px; max-width: 540px; }
.tag-hero__meta { font-size: .875rem; color: var(--text-muted); }

/* ── Hero Auteur ──────────────────────────────────────────────────────── */
.author-hero {
  padding: 40px 0 28px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}
.author-hero__inner { display: flex; align-items: flex-start; gap: 24px; }
.author-hero__avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  flex-shrink: 0;
}
.author-hero__badge {
  display: inline-block;
  padding: 2px 12px;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.author-hero__name { font-size: 2rem; font-weight: 800; color: var(--text); margin: 0 0 8px; }
.author-hero__bio { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 0 10px; }
.author-hero__meta { font-size: .875rem; color: var(--text-muted); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.author-hero__meta a { color: var(--green); }

/* ── Bouton impression ────────────────────────────────────────────────── */
.share-btn--print { background: #f5f5f5; color: #555; border: 1px solid var(--border); }
.share-btn--print:hover { background: var(--border); }

/* ── Responsive post-nav / tag hero / author hero ─────────────────────── */
@media (max-width: 700px) {
  .post-nav { flex-direction: column; }
  .tag-hero__inner,
  .author-hero__inner { flex-direction: column; gap: 16px; }
  .author-hero__name,
  .tag-hero__title { font-size: 1.5rem; }
  .author-hero__avatar-img { width: 80px; height: 80px; }
  .tag-hero__symbol { width: 56px; height: 56px; font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   IMPRESSION (@media print)
   ══════════════════════════════════════════════════════════════════════ */
@media print {
  .site-header, .site-footer, .blog-sidebar,
  .reading-progress, .back-to-top, .toc-block,
  .single-article__share, .article-helpful,
  .single-article__related-products, .related-articles,
  .post-nav, .blog-widget, .breadcrumb,
  .single-article__comments { display: none !important; }

  body { font-size: 11pt; color: #000; background: #fff; }
  .single-layout { display: block !important; }
  .single-article { max-width: 100% !important; }
  .single-article__cover img { max-width: 100%; page-break-after: avoid; }
  .single-article__content { font-size: 11pt; line-height: 1.7; }
  .single-article__content a::after { content: ' (' attr(href) ')'; font-size: .75em; color: #555; }
  .single-article__content a[href^="#"]::after { content: ''; }
  h1, h2, h3, h4 { page-break-after: avoid; color: #000; }
  blockquote { border-left: 3px solid #999; background: none; }
  pre { border: 1px solid #ccc; background: #f8f8f8; color: #000; }
  table th { background: #eee !important; color: #000 !important; }
  @page { margin: 2cm; }
}

/* Thème clair uniquement — pas de support dark mode */
/* ══════════════════════════════════════════════════════════════════════
   BLOG STYLE PRESSE — news-* classes
   ══════════════════════════════════════════════════════════════════════ */

/* ── Masthead ─────────────────────────────────────────────────────────── */
.news-masthead {
  background: #0f1f12;
  border-bottom: 3px solid var(--green);
  padding: 0;
}
.news-masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.news-masthead__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.news-masthead__logo--tag .news-masthead__tag-symbol {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  font-weight: 900;
  flex-shrink: 0;
}
.news-masthead__author-avatar {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  border: 2px solid var(--green) !important;
  flex-shrink: 0;
}
.news-masthead__author-badge {
  font-size: .5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 1px;
}
.news-masthead__icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.news-masthead__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.news-masthead__tagline { font-size: .6875rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.news-masthead__cat-desc {
  flex: 1;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.5;
  max-width: 360px;
}
.news-masthead__date { text-align: right; flex-shrink: 0; color: rgba(255,255,255,.6); font-size: .75rem; line-height: 1.5; }
.news-masthead__edition { color: var(--green); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* ── Ticker ───────────────────────────────────────────────────────────── */
.news-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  max-width: 420px;
}
.news-ticker__badge {
  background: var(--green);
  color: #fff;
  font-size: .5625rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-ticker__wrap { flex: 1; min-width: 0; overflow: hidden; }
.news-ticker__track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: lvfTicker 28s linear infinite;
}
.news-ticker__track:hover { animation-play-state: paused; }
.news-ticker__item {
  display: inline-block;
  padding: 0 28px;
  font-size: .8125rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,.12);
}
.news-ticker__item:first-child { border-left: none; }
.news-ticker__item:hover { color: #fff; }
@keyframes lvfTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Category bar sticky ──────────────────────────────────────────────── */
.news-cat-bar {
  background: var(--white);
  border-bottom: 2px solid var(--green);
  position: sticky;
  top: 80px; /* sous le site-header sticky (z-index:200) */
  z-index: 150;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.news-cat-bar__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.news-cat-bar__inner::-webkit-scrollbar { display: none; }
.news-cat-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 11px 15px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
  letter-spacing: .01em;
}
.news-cat-bar__item:hover { color: var(--green); }
.news-cat-bar__item.is-active { color: var(--green); border-bottom-color: var(--cat-accent, var(--green)); }

/* ── Breadcrumb wrapper ───────────────────────────────────────────────── */
.news-breadcrumb-wrap { background: var(--cream); border-bottom: 1px solid var(--border); }
.news-breadcrumb-wrap .breadcrumb { padding: 7px 0; margin: 0; font-size: .75rem; }

/* ── Hero section ─────────────────────────────────────────────────────── */
.news-hero-section {
  background: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.news-hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-sm);
}
/* Main hero (left/large) */
.news-hero__main { position: relative; overflow: hidden; }
.news-hero__main-link { display: block; height: 100%; text-decoration: none; }
.news-hero__main-img {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f12, #2d7a4f);
}
.news-hero__main-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.news-hero__main:hover .news-hero__main-img img { transform: scale(1.04); }
.news-hero__main-img--noimg {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.news-hero__main-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 55%, transparent 100%);
}
.news-hero__main-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  font-weight: 800;
  letter-spacing: -.02em;
}
.news-hero__main-excerpt { font-size: .9375rem; color: rgba(255,255,255,.82); margin: 0; line-height: 1.5; }
/* Secondary stack */
.news-hero__stack { display: flex; flex-direction: column; gap: 3px; background: var(--border); }
.news-hero__secondary { background: var(--white); overflow: hidden; flex: 1; }
.news-hero__secondary-link { display: flex; text-decoration: none; color: inherit; height: 100%; }
.news-hero__secondary-img { width: 140px; flex-shrink: 0; overflow: hidden; }
.news-hero__secondary-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.news-hero__secondary:hover .news-hero__secondary-img img { transform: scale(1.06); }
.news-hero__secondary-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.news-hero__secondary-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.35;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}
.news-hero__secondary:hover .news-hero__secondary-title { color: var(--green); }

/* ── Category pill ────────────────────────────────────────────────────── */
.news-cat-pill {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: .5625rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  align-self: flex-start;
}
.news-cat-pill--sm { font-size: .5rem; padding: 2px 6px; }

/* ── News meta ────────────────────────────────────────────────────────── */
.news-meta { display: flex; align-items: center; gap: 5px; font-size: .75rem; color: var(--text-muted); flex-wrap: wrap; }
.news-meta--light { color: rgba(255,255,255,.72); }
.news-meta--light .article-type-badge { opacity: .9; border: 1px solid rgba(255,255,255,.3); }
.news-meta--sm { font-size: .6875rem; }

/* ── Section header ───────────────────────────────────────────────────── */
.news-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0 14px;
  border-bottom: 2px solid var(--green);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.news-section-header__badge {
  font-size: .625rem;
  font-weight: 900;
  color: #fff;
  background: var(--green);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.news-section-header__line { flex: 1; height: 1px; background: var(--border); min-width: 40px; }
.news-section-header__page { font-size: .75rem; color: var(--text-muted); white-space: nowrap; }

/* ── Type filters ─────────────────────────────────────────────────────── */
.news-type-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.news-type-filter {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .15s;
}
.news-type-filter:hover,
.news-type-filter.is-active { border-color: var(--green); color: var(--green); background: var(--green-pale); }

/* ── News layout ──────────────────────────────────────────────────────── */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  padding: 24px 0 64px;
  align-items: start;
}
.news-main { min-width: 0; }

/* ── News grid ────────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0;
}
.news-card { background: var(--white); display: flex; flex-direction: column; }
.news-card__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-pale);
  position: relative;
}
.news-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.news-card:hover .news-card__img-wrap img { transform: scale(1.05); }
.news-card__cat-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #fff;
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}
.news-card__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; border-top: 2px solid transparent; transition: border-color .15s; }
.news-card:hover .news-card__body { border-top-color: var(--green); }
.news-card__badge { margin-bottom: 0; }
.news-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
  flex: 1;
}
.news-card__title a { color: inherit; text-decoration: none; }
.news-card__title a:hover { color: var(--green); }
.news-card__excerpt { font-size: .8125rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ── Trending posts ───────────────────────────────────────────────────── */
.trending-post {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.trending-post:last-child { border-bottom: none; }
.trending-post__num {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--border);
  min-width: 32px;
  line-height: 1;
  flex-shrink: 0;
  transition: color .15s;
}
.trending-post:hover .trending-post__num { color: var(--green); }
.trending-post__body { flex: 1; min-width: 0; }
.trending-post__cat {
  font-size: .5625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  display: block;
  margin-bottom: 2px;
}
.trending-post__title { font-size: .875rem; font-weight: 600; line-height: 1.4; color: var(--dark); }
.trending-post:hover .trending-post__title { color: var(--green); }
.trending-post__meta { font-size: .6875rem; color: var(--text-muted); margin-top: 3px; }

/* ── News sidebar ─────────────────────────────────────────────────────── */
.news-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 56px; }
.news-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 0;
  padding: 16px;
}
.news-widget__header {
  font-family: var(--font-serif);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.news-widget--newsletter { background: #0f1f12; border-top-color: var(--green); }
.news-widget--newsletter .news-widget__header { color: #fff; border-bottom-color: rgba(255,255,255,.1); }
.news-widget--newsletter p { color: rgba(255,255,255,.65); font-size: .875rem; margin-bottom: 10px; }
.news-widget--newsletter .blog-nl-form__input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.news-widget--newsletter .blog-nl-form__input::placeholder { color: rgba(255,255,255,.4); }
.news-widget--newsletter .blog-nl-form { flex-direction: column; }

/* ── Category list in sidebar ────────────────────────────────────────── */
.news-cat-list { list-style: none; padding: 0; margin: 0; }
.news-cat-list li { border-bottom: 1px solid var(--border); }
.news-cat-list li:last-child { border-bottom: none; }
.news-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .875rem;
  color: var(--dark);
  text-decoration: none;
  transition: color .15s;
}
.news-cat-list li a:hover { color: var(--green); }
.news-cat-list__count { font-size: .6875rem; color: var(--text-muted); background: var(--cream); padding: 1px 6px; border-radius: 10px; flex-shrink: 0; }

/* ── News pagination ─────────────────────────────────────────────────── */
.news-pagination { display: flex; justify-content: center; margin-top: 20px; }
.news-pagination .nav-links { display: flex; gap: 3px; flex-wrap: wrap; justify-content: center; }
.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border);
  text-decoration: none;
  border-radius: 0;
  transition: all .15s;
}
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current { background: var(--green); color: #fff; border-color: var(--green); }
.news-pagination .page-numbers.dots { border: none; color: var(--text-muted); min-width: auto; }

/* ── Single article — touches éditoriales ────────────────────────────── */
.single-article__cover { border-radius: 0 !important; }
.single-article__title { letter-spacing: -.025em; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .news-hero { grid-template-columns: 3fr 2fr; }
  .news-hero__main-title { font-size: 1.5rem; }
  .news-layout { grid-template-columns: 1fr 260px; gap: 24px; }
}
@media (max-width: 900px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-sidebar { position: static; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-hero { grid-template-columns: 1fr; gap: 3px; }
  .news-hero__main-img { min-height: 280px; }
  .news-hero__stack { flex-direction: row; }
  .news-hero__secondary-img { width: 120px; }
  .news-ticker { display: none; }
  .news-masthead__inner { min-height: auto; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-hero__stack { flex-direction: column; }
  .news-hero__secondary-link { flex-direction: row; }
  .news-hero__secondary-img { width: 100px; height: auto; }
  .news-masthead__date { display: none; }
  .news-masthead__cat-desc { display: none; }
  .news-hero__main-title { font-size: 1.25rem; }
  .news-hero__main-img { min-height: 240px; }
}

/* ════════════════════════════════════════════════════════════════════════
   CARTE DE FRANCE INTERACTIVE — france-map.php
   ════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper global ─────────────────────────────────────────────────── */
.lvf-france-map {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lvf-france-map__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.lvf-france-map__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 4px;
}
.lvf-france-map__subtitle {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
}
.lvf-france-map__body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
}

/* ── SVG wrap ────────────────────────────────────────────────────────── */
.lvf-france-map__svg-wrap {
  position: relative;
  padding: 16px;
  background: #f0f4ef;
  border-right: 1px solid var(--border);
}
.lvf-france-map__svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
}

/* ── Régions SVG ─────────────────────────────────────────────────────── */
.fr-region {
  fill: #b8d4b4;
  cursor: pointer;
  transition: fill .18s, filter .18s;
  filter: url(#region-shadow);
}
.fr-region:hover,
.fr-region:focus {
  fill: var(--green-light);
  filter: url(#region-shadow) brightness(1.05);
  outline: none;
}
.fr-region--express {
  fill: var(--green);
}
.fr-region--express:hover,
.fr-region--express:focus {
  fill: var(--green-hover);
}
.fr-region--corse {
  fill: #91bfea;
}
.fr-region--corse:hover,
.fr-region--corse:focus {
  fill: #6aaae0;
}
.fr-region--checked {
  fill: var(--gold) !important;
  animation: map-pulse .5s ease;
}
@keyframes map-pulse {
  0%   { opacity: .6; }
  50%  { opacity: 1; }
  100% { opacity: 1; }
}

/* ── Tooltip ─────────────────────────────────────────────────────────── */
.fr-map-tooltip {
  position: absolute;
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 20;
  max-width: 220px;
  font-size: .8125rem;
  line-height: 1.45;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.fr-map-tooltip__name {
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: 4px;
  color: var(--green-mid);
}
.fr-map-tooltip__delivery {
  font-weight: 600;
  margin-bottom: 4px;
}
.fr-map-tooltip__dept {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}

/* ── Panneau aside (légende + vérificateur) ─────────────────────────── */
.lvf-france-map__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 18px;
  background: var(--white);
  overflow-y: auto;
}

/* ── Légende ─────────────────────────────────────────────────────────── */
.map-legend__title {
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.map-legend__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: var(--cream);
  font-size: .8125rem;
  line-height: 1.45;
  margin-bottom: 8px;
}
.map-legend__item p { margin: 2px 0 0; color: var(--text-muted); font-size: .775rem; }
.map-legend__item--express { background: #e8f4e6; border-left: 3px solid var(--green); }
.map-legend__item--corse   { background: #e8f0fa; border-left: 3px solid #5b9bd5; }
.map-legend__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background: #b8d4b4;
}
.map-legend__item--express .map-legend__dot { background: var(--green); }
.map-legend__item--corse   .map-legend__dot { background: #5b9bd5; }

/* ── Vérificateur code postal ────────────────────────────────────────── */
.postcode-checker {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--green-pale);
}
.postcode-checker__label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}
.postcode-checker__row {
  display: flex;
  gap: 6px;
}
.postcode-checker__input {
  flex: 1;
  min-width: 0;
  font-size: .875rem;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
}
.postcode-checker__input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(125,191,110,.15);
}
.postcode-checker__btn {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: .875rem;
}
.postcode-checker__result {
  margin-top: 10px;
  font-size: .8125rem;
}

/* ── Estimation actuelle ─────────────────────────────────────────────── */
.map-current-estimate {
  font-size: .8125rem;
}
.map-current-estimate__label {
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Liste infos expédition ──────────────────────────────────────────── */
.map-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.map-info-list li { padding: 3px 0; }
.map-info-list strong { color: var(--dark); }

/* ── Responsive carte ────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .lvf-france-map__body { grid-template-columns: 1fr; }
  .lvf-france-map__svg-wrap { border-right: none; border-bottom: 1px solid var(--border); }
  .lvf-france-map__svg { max-height: 360px; }
  .lvf-france-map__aside { flex-direction: row; flex-wrap: wrap; padding: 16px; gap: 12px; }
  .map-legend   { flex: 1 1 240px; }
  .postcode-checker { flex: 1 1 220px; }
  .map-current-estimate,
  .map-info-list { flex: 1 1 200px; }
}
@media (max-width: 560px) {
  .lvf-france-map__aside { flex-direction: column; }
  .lvf-france-map__svg { max-height: 300px; }
}

/* ════════════════════════════════════════════════════════════════════════
   CATÉGORIES PRODUIT — archive-cat-content.php
   ════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper hero ────────────────────────────────────────────────────── */
.cat-hero {
  padding: 24px 0 32px;
}
.cat-hero__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.cat-hero__inner--shop {
  grid-template-columns: 1fr;
  gap: 20px;
}
.cat-hero__compare-title,
.cat-hero__guide-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 16px;
}

/* ── Grille comparaison (3 ou 4 colonnes) ────────────────────────────── */
.cat-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.cat-compare-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ── Carte comparaison ───────────────────────────────────────────────── */
.cat-compare-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px 14px;
  font-size: .8125rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .18s, border-color .18s;
}
.cat-compare-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-mid);
}
.cat-compare-card__icon {
  font-size: 1.5rem;
  line-height: 1;
}
.cat-compare-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}
.cat-compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: .8rem;
  flex: 1;
}
.cat-compare-card ul li { padding: 2px 0; }
.cat-compare-card--indoor  { border-top: 3px solid var(--gold); }
.cat-compare-card--greenhouse { border-top: 3px solid var(--green); }
.cat-compare-card--outdoor { border-top: 3px solid #8bc38a; }

/* Badge sur carte comparaison */
.cat-compare-card__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--dark);
  color: var(--white);
  align-self: flex-start;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.cat-compare-card__badge--green { background: var(--green); }
.cat-compare-card__badge--earth { background: #7a5c3b; }

/* ── Guide étapes ────────────────────────────────────────────────────── */
.cat-guide-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.cat-guide-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: .8375rem;
  line-height: 1.5;
}
.cat-guide-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: .8125rem;
  flex-shrink: 0;
  font-style: normal;
}
.cat-guide-step strong { display: block; color: var(--dark); margin-bottom: 3px; }
.cat-guide-step p { margin: 0; color: var(--text-muted); font-size: .8rem; }

/* ── Badges thématiques ──────────────────────────────────────────────── */
.cat-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid rgba(45,90,39,.15);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 600;
}

/* ── Guide concentration huiles ──────────────────────────────────────── */
.cat-conc-guide {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.cat-conc-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: .8125rem;
  transition: box-shadow .18s;
}
.cat-conc-item:hover { box-shadow: var(--shadow-md); }
.cat-conc-item--popular {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(45,90,39,.12);
}
.cat-conc-item__popular-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: .03em;
}
.cat-conc-item__header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.cat-conc-item__pct {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.cat-conc-item__qty {
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 600;
}
.cat-conc-item__bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}
.cat-conc-item__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid), var(--green));
  border-radius: 3px;
  transition: width .5s ease;
}
.cat-conc-item__desc { line-height: 1.5; }
.cat-conc-item__desc strong { color: var(--dark); display: block; margin-bottom: 3px; }
.cat-conc-item__desc p { margin: 0; color: var(--text-muted); font-size: .8rem; }
.cat-conc-item__badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.cat-conc-item__badge--green { background: var(--green); }

/* ── Vapes — badges 0% THC ───────────────────────────────────────────── */
.cat-vape-highlight {
  margin-bottom: 16px;
}
.cat-vape-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cat-vape-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  flex: 1 1 90px;
  text-align: center;
  gap: 4px;
  min-height: 72px;
}
.cat-vape-badge__icon {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}
.cat-vape-badge__label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  opacity: .9;
}

/* ── Terpènes ────────────────────────────────────────────────────────── */
.cat-terpene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.cat-terpene-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: .8rem;
  line-height: 1.45;
}
.cat-terpene-card__icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cat-terpene-card strong { display: block; color: var(--dark); margin-bottom: 3px; font-size: .8375rem; }
.cat-terpene-card p { margin: 0; color: var(--text-muted); font-size: .775rem; }

/* ── Tableau cannabinoïdes ───────────────────────────────────────────── */
.cat-cannabinoid-table {
  overflow-x: auto;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.cat-cannabinoid-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8375rem;
}
.cat-cannabinoid-table th {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  padding: 10px 12px;
  text-align: left;
  font-size: .8rem;
  white-space: nowrap;
}
.cat-cannabinoid-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  vertical-align: middle;
}
.cat-cannabinoid-table tr:last-child td { border-bottom: none; }
.cat-cannabinoid-table tr:nth-child(even) td { background: var(--cream); }
.cat-cannabinoid-table__highlight td {
  background: var(--green-pale) !important;
  font-weight: 500;
}

/* ── Cards de confiance (boutique principale) ────────────────────────── */
.cat-hero__trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.cat-trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  font-size: .8125rem;
  line-height: 1.5;
  text-align: center;
  transition: box-shadow .18s;
}
.cat-trust-card:hover { box-shadow: var(--shadow-md); }
.cat-trust-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 8px;
  line-height: 1;
}
.cat-trust-card strong { display: block; color: var(--dark); margin-bottom: 4px; font-size: .875rem; }
.cat-trust-card p { margin: 0; color: var(--text-muted); font-size: .775rem; }

/* ── Estimation livraison (boutique) ─────────────────────────────────── */
.cat-shop-delivery {
  max-width: 480px;
}

/* ── Responsive catégories ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cat-hero__inner { grid-template-columns: 1fr; }
  .cat-hero__trust-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .cat-compare-grid { grid-template-columns: 1fr; }
  .cat-compare-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cat-terpene-grid { grid-template-columns: 1fr; }
  .cat-vape-badge-row { gap: 8px; }
  .cat-vape-badge { min-height: 64px; padding: 10px 10px; }
}
@media (max-width: 500px) {
  .cat-hero__trust-row { grid-template-columns: 1fr; }
  .cat-compare-grid--4 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   PAGE LIVRAISON CBD — page-livraison-cbd.php
   ════════════════════════════════════════════════════════════════════════ */

/* ── Archive header livraison ────────────────────────────────────────── */
.archive-header--livraison {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  padding: 32px 0;
}
.archive-header--livraison .archive-header__title { color: var(--white); }
.archive-header--livraison .archive-header__desc  { color: rgba(255,255,255,.85); }

/* ── Tableau des délais ──────────────────────────────────────────────── */
.livraison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.livraison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  background: var(--white);
}
.livraison-table thead th {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  font-size: .8125rem;
  white-space: nowrap;
}
.livraison-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  line-height: 1.5;
  vertical-align: middle;
}
.livraison-table tbody tr:last-child td { border-bottom: none; }
.livraison-table tbody tr:hover td { background: var(--cream); }
.livraison-table__express td {
  background: var(--green-pale);
  font-size: .875rem;
}
.livraison-table__express td:first-child { border-left: 4px solid var(--green); }
.livraison-table__corse td {
  background: #e8f0fa;
}
.livraison-table__corse td:first-child { border-left: 4px solid #5b9bd5; }

/* ── Grille infos livraison (6 cards) ────────────────────────────────── */
.livraison-infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.livraison-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  font-size: .875rem;
  line-height: 1.6;
  transition: box-shadow .18s, border-color .18s;
}
.livraison-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-mid);
}
.livraison-info-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.livraison-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}
.livraison-info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .8375rem;
}
.livraison-info-card a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.livraison-info-card a:hover { text-decoration: underline; }

/* ── Responsive livraison ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .livraison-infos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .livraison-infos-grid { grid-template-columns: 1fr; }
  .livraison-table tbody td,
  .livraison-table thead th { padding: 9px 10px; font-size: .8rem; }
}

