/* ═══════════════════════════════════════════════════════════
   PANEER DE FRANCE — Plateforme Pro B2B
   Charte partagée (reprise de la landing live)
═══════════════════════════════════════════════════════════ */
:root {
  --saffron:    #D34211;
  --saffron-lt: #F6D87D;
  --cream:      #F9F2E3;
  --cream-dark: #EEE3C8;
  --forest:     #0C4336;
  --forest-lt:  #1a6b53;
  --charcoal:   #141008;
  --gold:       #C89620;
  --gold-lt:    #F6D87D;
  --warm-white: #FEFCF7;
  --muted:      #80726A;
  --border:     rgba(200,150,32,0.22);
  --green-eco:  #2E7D52;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 36px rgba(0,0,0,0.13);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.18);

  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 5%; }
.serif { font-family: 'Playfair Display', serif; }

/* ═══════════════ NAV ═══════════════ */
nav.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(249,242,227,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
nav.topnav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-logo { display: flex; align-items: center; height: 56px; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; filter: drop-shadow(0 2px 6px rgba(12,67,54,0.18)); }
.nav-center { display: flex; gap: 1.8rem; }
.nav-center a { font-size: 0.83rem; font-weight: 500; color: var(--muted); text-decoration: none; letter-spacing: 0.03em; transition: color .2s; }
.nav-center a:hover, .nav-center a.active { color: var(--saffron); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-link-light { font-size: 0.82rem; font-weight: 600; color: var(--forest); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.nav-link-light:hover { color: var(--saffron); }
.nav-cta {
  background: var(--saffron); color: #fff; padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all .2s; white-space: nowrap; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--forest); transform: translateY(-1px); }
.cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); cursor: pointer; text-decoration: none; color: var(--forest); }
.cart-btn:hover { background: var(--cream-dark); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--saffron); color: #fff; font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.cart-count:empty, .cart-count[data-n="0"] { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.mobile-drawer { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 190; background: var(--cream); border-bottom: 2px solid var(--border); padding: 18px 5%; flex-direction: column; gap: 12px; }
.mobile-drawer.open { display: flex; }
.mobile-drawer a { font-size: 1rem; font-weight: 500; color: var(--charcoal); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-drawer .m-cta { background: var(--saffron); color: #fff; text-align: center; padding: 12px; border-radius: var(--radius-sm); font-weight: 700; border: none; }

/* ═══════════════ BUTTONS ═══════════════ */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--saffron); color: #fff; padding: 13px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all .25s; border: 2px solid transparent; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,66,17,0.35); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--forest); padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all .25s; border: 2px solid var(--border); cursor: pointer; font-family: inherit; }
.btn-ghost:hover { background: var(--cream); border-color: var(--gold); }
.btn-forest { background: var(--forest); color:#fff; }
.btn-forest:hover { background: var(--forest-lt); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 0.8rem; }
.btn-mini { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; font-weight: 600; padding: 5px 10px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: #fff; color: var(--forest); cursor: pointer; font-family: inherit; text-decoration: none; }
.btn-mini:hover { background: var(--cream); }
.btn-mini.go { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.btn-mini.go:hover { background: var(--forest); border-color: var(--forest); }
.btn-mini.danger { color: #b3271a; }

/* ═══════════════ HERO ═══════════════ */
.hero { min-height: 90svh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--charcoal); padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/paneer-grille.webp'); background-size: cover; background-position: center 40%; opacity: 0.42; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,67,54,0.9) 0%, rgba(20,16,8,0.55) 50%, rgba(211,66,17,0.15) 100%); }
.hero-content { position: relative; z-index: 2; padding: 40px 8% 50px; max-width: clamp(680px, 60vw, 980px); width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(200,150,32,0.18); border: 1px solid rgba(200,150,32,0.45); color: var(--gold-lt); padding: 5px 13px; border-radius: 30px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.3rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 900; line-height: 1.07; color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { color: var(--gold-lt); font-style: italic; }
.hero-sub { font-size: clamp(0.95rem, 1.5vw, 1.08rem); color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 1.8rem; font-weight: 300; max-width: 580px; }
.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-ctas .btn-ghost { color:#fff; border-color: rgba(255,255,255,0.32); }
.hero-ctas .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color:#fff; }

/* ═══════════════ TRUST BANDEAU (témoignages haut de home) ═══════════════ */
.trust-band { background: var(--cream); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-band-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.trust-band-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.trust-logos { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; justify-content: center; }
.trust-logo-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.trust-logo-item img { height: 46px; width: auto; opacity: 0.92; }
.trust-logo-item .badge-conf { font-size: 0.62rem; color: var(--forest); font-weight: 600; background: rgba(46,125,82,0.1); padding: 2px 8px; border-radius: 20px; }
.trust-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--forest); }

/* ═══════════════ SECTIONS GÉNÉRIQUES ═══════════════ */
section.block { padding: 70px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.6rem; }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron); display: block; margin-bottom: 0.6rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 700; line-height: 1.18; }
.section-header h2 em { color: var(--saffron); font-style: italic; }
.section-header p { color: var(--muted); margin-top: 0.8rem; font-size: 0.98rem; }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--charcoal); color:#fff; }
.bg-dark .section-header h2 { color:#fff; }
.bg-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ═══════════════ PROMESSES (3 piliers) ═══════════════ */
.promesses { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.promesse { background:#fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s; }
.promesse:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promesse .ic { width: 56px; height: 56px; border-radius: 16px; background: rgba(211,66,17,0.1); color: var(--saffron); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.promesse .ic svg { width: 28px; height: 28px; }
.promesse h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 0.5rem; }
.promesse p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ═══════════════ TÉMOIGNAGES CARTES ═══════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.6rem; max-width: 980px; margin: 0 auto; }
.trust-card { background:#fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.trust-head { position: relative; height: 180px; }
.trust-head img.trust-photo { width:100%; height:100%; object-fit: cover; }
.trust-head img.trust-logo { position: absolute; bottom: -22px; left: 24px; height: 60px; width: 60px; border-radius: 12px; background:#fff; padding: 7px; box-shadow: var(--shadow-sm); object-fit: contain; }
.trust-body { padding: 32px 24px 24px; }
.trust-body blockquote { font-size: 0.96rem; line-height: 1.7; color: var(--charcoal); font-style: italic; margin-bottom: 1rem; }
.trust-cite { display: flex; flex-direction: column; }
.trust-name { font-weight: 700; color: var(--forest); }
.trust-loc { font-size: 0.8rem; color: var(--muted); }

/* ═══════════════ CATALOGUE ═══════════════ */
.cat-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
.cat-filters { background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); padding: 20px; position: sticky; top: 90px; }
.cat-filters h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .8rem; }
.cat-filters label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; padding: 5px 0; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.4rem; }
.product-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img { height: 170px; background: var(--cream-dark); position: relative; }
.product-img img { width:100%; height:100%; object-fit: cover; }
.product-tag { position:absolute; top:10px; left:10px; background: var(--forest); color:#fff; font-size:0.66rem; font-weight:700; padding:4px 9px; border-radius:20px; letter-spacing:.04em; }
.product-tag.new { background: var(--saffron); }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-family:'Playfair Display',serif; font-size: 1.12rem; margin-bottom: 3px; }
.product-fmt { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.product-price { margin-top: auto; }
.price-val { font-family:'Playfair Display',serif; font-size: 1.5rem; font-weight: 700; color: var(--forest); }
.price-unit { font-size: 0.78rem; color: var(--muted); }
.price-locked { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); border:1px dashed var(--gold); color: var(--gold); font-size: 0.78rem; font-weight: 600; padding: 7px 11px; border-radius: var(--radius-sm); }
.price-locked svg { width: 14px; height: 14px; }
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.qty-stepper { display: flex; align-items: center; border:1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-stepper button { width: 32px; height: 36px; background: var(--cream); border: none; cursor: pointer; font-size: 1.1rem; color: var(--forest); }
.qty-stepper input { width: 42px; height: 36px; text-align: center; border: none; font-size: 0.9rem; font-family: inherit; }

/* ═══════════════ CARDS / PANELS ═══════════════ */
.panel { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.panel-pad-sm { padding: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }

/* ═══════════════ FORMS ═══════════════ */
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 12px 14px; border:1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.92rem; background:#fff; transition: border-color .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--saffron); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.help { font-size: 0.78rem; color: var(--muted); margin-top: 5px; }
.input-icon { position: relative; }
.input-icon input { padding-right: 110px; }
.input-icon .verify-btn { position: absolute; right: 6px; top: 6px; bottom: 6px; }

/* ═══════════════ AUTH ═══════════════ */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.google-btn { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding: 12px; border:1.5px solid var(--border); border-radius: var(--radius-sm); background:#fff; font-family:inherit; font-size: 0.92rem; font-weight: 600; cursor:pointer; transition: background .2s; }
.google-btn:hover { background: var(--cream); }
.google-btn svg { width: 20px; height: 20px; }
.divider { display:flex; align-items:center; gap:12px; margin: 1.4rem 0; color: var(--muted); font-size: 0.8rem; }
.divider::before, .divider::after { content:''; flex:1; height:1px; background: var(--border); }
.siret-result { background: rgba(46,125,82,0.07); border:1px solid rgba(46,125,82,0.3); border-radius: var(--radius-md); padding: 16px; margin-top: 10px; }
.siret-result .row { display:flex; justify-content:space-between; gap:10px; font-size:0.86rem; padding: 4px 0; border-bottom: 1px dashed rgba(46,125,82,0.2); }
.siret-result .row:last-child { border:none; }
.siret-result .k { color: var(--muted); }
.siret-result .v { font-weight: 600; text-align: right; }
.badge-ok { display:inline-flex; align-items:center; gap:6px; color: var(--green-eco); font-weight:700; font-size: 0.85rem; }

/* ═══════════════ STEPPER (tunnel) ═══════════════ */
.steps { display:flex; align-items:center; justify-content:center; gap: 0; margin: 0 auto 2.4rem; max-width: 640px; }
.step { display:flex; align-items:center; flex:1; }
.step .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; font-weight: 700; font-size: 0.85rem; color: var(--muted); flex-shrink: 0; }
.step .lbl { font-size: 0.78rem; margin-left: 8px; color: var(--muted); white-space: nowrap; }
.step .bar { flex:1; height:2px; background: var(--border); margin: 0 10px; }
.step.done .dot, .step.active .dot { background: var(--saffron); border-color: var(--saffron); color:#fff; }
.step.done .lbl, .step.active .lbl { color: var(--charcoal); font-weight: 600; }

/* ═══════════════ TABLES ═══════════════ */
table.data { width:100%; border-collapse: collapse; font-size: 0.88rem; }
table.data th { text-align:left; padding: 11px 12px; background: var(--cream); color: var(--forest); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: .05em; }
table.data td { padding: 11px 12px; border-bottom: 1px solid var(--border); }
table.data tr:hover td { background: rgba(249,242,227,0.5); }
.chip { display:inline-flex; align-items:center; gap:5px; font-size:0.74rem; font-weight:600; padding:3px 9px; border-radius:20px; }
.chip.green { background: rgba(46,125,82,0.12); color: var(--green-eco); }
.chip.gold { background: rgba(200,150,32,0.14); color: var(--gold); }
.chip.grey { background: #eee; color: var(--muted); }

/* ═══════════════ DASHBOARD ═══════════════ */
.dash-layout { display:grid; grid-template-columns: 230px 1fr; gap: 0; min-height: calc(100vh - 72px); }
.dash-side { background: var(--forest); color:#fff; padding: 28px 0; position: sticky; top: 72px; height: calc(100vh - 72px); }
.dash-side .biz { padding: 0 22px 20px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 14px; }
.dash-side .biz .nm { font-weight: 700; font-size: 0.96rem; }
.dash-side .biz .sub { font-size: 0.74rem; color: rgba(255,255,255,0.55); margin-top: 3px; }
.dash-nav a { display:flex; align-items:center; gap: 11px; padding: 12px 22px; color: rgba(255,255,255,0.78); text-decoration:none; font-size: 0.88rem; font-weight:500; border-left: 3px solid transparent; }
.dash-nav a svg { width:18px; height:18px; }
.dash-nav a:hover { background: rgba(255,255,255,0.06); color:#fff; }
.dash-nav a.active { background: rgba(255,255,255,0.1); color:#fff; border-left-color: var(--saffron); }
.dash-main { padding: 30px 36px; background: var(--warm-white); }
.dash-h1 { font-family:'Playfair Display',serif; font-size: 1.8rem; margin-bottom: 4px; }
.dash-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.8rem; }
.kpi { background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); }
.kpi .lbl { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing:.05em; }
.kpi .val { font-family:'Playfair Display',serif; font-size: 2rem; font-weight: 700; color: var(--forest); line-height: 1.1; margin-top: 6px; }
.kpi .delta { font-size: 0.78rem; font-weight:600; margin-top: 4px; }
.kpi .delta.up { color: var(--green-eco); }

/* ═══════════════ ÉCOLOGIE FUN ═══════════════ */
.eco-band { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-lt) 100%); color:#fff; border-radius: var(--radius-lg); padding: 30px; position: relative; overflow: hidden; }
.eco-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.eco-card { background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16); border-radius: var(--radius-md); padding: 22px; text-align:center; }
.eco-emoji { font-size: 2.4rem; line-height:1; }
.eco-val { font-family:'Playfair Display',serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-lt); margin: 8px 0 2px; }
.eco-lbl { font-size: 0.84rem; color: rgba(255,255,255,0.8); }

/* ═══════════════ MAP (points de vente) ═══════════════ */
.map-layout { display:grid; grid-template-columns: 360px 1fr; gap: 0; height: calc(100vh - 72px); }
.map-list { overflow-y: auto; border-right: 1px solid var(--border); }
.map-list .pv { padding: 18px 22px; border-bottom: 1px solid var(--border); cursor: pointer; }
.map-list .pv:hover, .map-list .pv.active { background: var(--cream); }
.map-list .pv .nm { font-weight: 700; color: var(--forest); }
.map-list .pv .ad { font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.map-list .pv .ty { display:inline-block; font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:20px; margin-top:7px; }
#leaflet-map { height: 100%; width: 100%; }

/* ═══════════════ CART / RECAP ═══════════════ */
.cart-row { display:grid; grid-template-columns: 70px 1fr auto auto; gap: 14px; align-items:center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-row img { width:70px; height:70px; object-fit:cover; border-radius: var(--radius-sm); }
.cart-thumb-fallback { width:70px; height:70px; border-radius: var(--radius-sm); background: var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:1.6rem; }
.summary-line { display:flex; justify-content:space-between; padding: 7px 0; font-size: 0.92rem; }
.summary-line.total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 14px; font-size: 1.15rem; font-weight: 700; color: var(--forest); }
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; display:flex; gap:10px; align-items:flex-start; }
.alert svg { width:18px; height:18px; flex-shrink:0; margin-top:1px; }
.alert.info { background: rgba(200,150,32,0.1); color: var(--gold); border:1px solid rgba(200,150,32,0.3); }
.alert.ok { background: rgba(46,125,82,0.1); color: var(--green-eco); border:1px solid rgba(46,125,82,0.3); }

/* ═══════════════ FOOTER ═══════════════ */
footer.pdf-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 50px 0 26px; margin-top: 60px; }
footer.pdf-footer .ft-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
footer.pdf-footer img.ft-logo { height: 64px; margin-bottom: 14px; }
footer.pdf-footer p { font-size: 0.86rem; line-height: 1.6; }
footer.pdf-footer h4 { color:#fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing:.08em; margin-bottom: 12px; }
footer.pdf-footer ul { list-style: none; }
footer.pdf-footer li { margin-bottom: 8px; }
footer.pdf-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; }
footer.pdf-footer a:hover { color: var(--gold-lt); }
footer.pdf-footer .ft-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 20px; display:flex; justify-content:space-between; flex-wrap:wrap; gap: 10px; font-size: 0.8rem; }

/* ═══════════════ SÉLECTEUR DE LANGUE ═══════════════ */
.lang-switcher { display:flex; gap:3px; }
.lang-btn { background:none; border:1.5px solid transparent; padding:3px 7px; border-radius:6px; cursor:pointer; font-size:0.72rem; font-weight:600; color:var(--muted); font-family:inherit; transition:all .2s; }
.lang-btn.active { border-color:var(--saffron); color:var(--saffron); background:rgba(211,66,17,0.07); }

/* ═══════════════ CERTIF HVE ═══════════════ */
.hve-chip { display:inline-flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-sm); padding:7px 12px; }
.hve-chip img { width:38px; height:38px; object-fit:contain; }
.hve-chip .txt { font-size:0.72rem; line-height:1.25; }
.hve-chip .txt b { color:var(--green-eco); display:block; }
.hve-badge-sm { width:30px; height:30px; border-radius:50%; background:#fff; padding:3px; object-fit:contain; vertical-align:middle; }

/* ═══════════════ BLOCS FICHE PRODUIT ═══════════════ */
.rfa-box { border:1.5px solid var(--gold); border-radius:var(--radius-md); overflow:hidden; margin-top:18px; }
.rfa-head { background:var(--cream); padding:14px 18px; display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; }
.rfa-head h3 { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--forest); }
.rfa-head .tag { background:var(--forest); color:#fff; font-size:0.66rem; font-weight:700; letter-spacing:.06em; padding:5px 11px; border-radius:20px; }
.rfa-body { padding:16px 18px; display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:center; }
.rfa-steps { display:flex; flex-direction:column; gap:10px; }
.rfa-step { display:flex; gap:10px; font-size:0.86rem; line-height:1.4; }
.rfa-step .n { flex-shrink:0; width:22px; height:22px; border-radius:50%; background:var(--saffron); color:#fff; font-size:0.75rem; font-weight:700; display:flex; align-items:center; justify-content:center; }
.rfa-tab { width:100%; border-collapse:collapse; font-size:0.82rem; }
.rfa-tab th { background:var(--forest); color:#fff; text-align:left; padding:8px 10px; font-size:0.7rem; }
.rfa-tab td { padding:8px 10px; border-bottom:1px solid var(--border); }
.rfa-tab tr.hot td { background:var(--saffron); color:#fff; font-weight:700; }
.rfa-note { font-size:0.76rem; color:var(--muted); padding:0 18px 14px; }
@media(max-width:720px){ .rfa-body { grid-template-columns:1fr; } }

.super { background:linear-gradient(135deg,#D98B63 0%,#C56B3E 100%); color:#fff; border-radius:var(--radius-md); padding:26px; margin-top:22px; display:grid; grid-template-columns:1fr 1.2fr; gap:1.4rem; align-items:center; }
.super .eyebrow { color:var(--gold-lt); }
.super h3 { font-family:'Playfair Display',serif; font-size:1.5rem; line-height:1.15; margin:6px 0 8px; }
.super h3 .accent { color:var(--gold-lt); font-style:italic; }
.super p { font-size:0.9rem; color:rgba(255,255,255,.92); line-height:1.55; }
.super-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.super-stat { background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.22); border-radius:var(--radius-sm); padding:12px; text-align:center; }
.super-stat .val { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700; }
.super-stat .lab { font-size:0.64rem; letter-spacing:.04em; text-transform:uppercase; color:rgba(255,255,255,.8); margin-top:3px; }
@media(max-width:720px){ .super { grid-template-columns:1fr; } }

.promesses-q { margin-top:22px; }
.promesses-q h3 { font-family:'Playfair Display',serif; font-size:1.3rem; margin-bottom:12px; }
.promesses-q .pq-list { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.pq-item { display:flex; gap:9px; font-size:0.88rem; line-height:1.45; background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-sm); padding:11px 13px; }
.pq-item svg { width:17px; height:17px; color:var(--green-eco); flex-shrink:0; margin-top:2px; }
@media(max-width:720px){ .promesses-q .pq-list { grid-template-columns:1fr; } }

/* ═══════════════ FLOAT WhatsApp ═══════════════ */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md); z-index: 150; }
.wa-float svg { width: 30px; height: 30px; }

/* ═══════════════ HINT BANNER (prototype) ═══════════════ */
.proto-hint { background: var(--gold); color: var(--charcoal); text-align:center; font-size: 0.78rem; font-weight: 600; padding: 6px 12px; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .promesses, .grid-3, .grid-4, .trust-grid { grid-template-columns: 1fr; }
  .grid-2, .fg-row { grid-template-columns: 1fr; }
  .cat-layout { grid-template-columns: 1fr; }
  .cat-filters { position: static; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-side { position: static; height: auto; display: flex; overflow-x: auto; padding: 10px 0; }
  .dash-side .biz { display: none; }
  .dash-nav { display:flex; }
  .dash-nav a { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .dash-nav a.active { border-left:none; border-bottom-color: var(--saffron); }
  .dash-main { padding: 22px 18px; }
  .map-layout { grid-template-columns: 1fr; height: auto; }
  .map-list { max-height: 320px; }
  #leaflet-map { height: 60vh; }
  .eco-grid { grid-template-columns: 1fr; }
  footer.pdf-footer .ft-top { grid-template-columns: 1fr 1fr; }
  .cart-row { grid-template-columns: 56px 1fr; grid-auto-rows: auto; }
}
@media (max-width: 560px) {
  .steps .lbl { display: none; }
  footer.pdf-footer .ft-top { grid-template-columns: 1fr; }
}

/* ═══════════════ FOOTER RICHE PARTAGÉ (repris de la landing) ═══════════════ */
footer.site-footer { background: var(--charcoal); padding: 55px 8% 28px; color: rgba(255,255,255,0.55); margin-top: 60px; }
.site-footer .footer-top { display: grid; grid-template-columns: auto 1.4fr 1fr 1fr; align-items: start; gap: 2.5rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-footer .footer-logo-col { display: flex; align-items: flex-start; }
.site-footer .footer-logo { display: block; width: 110px; height: auto; }
.site-footer .footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 260px; }
.site-footer .footer-col h4 { color: #fff; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.9rem; letter-spacing: 0.04em; }
.site-footer .footer-col ul { list-style: none; }
.site-footer .footer-col li { margin-bottom: 0.45rem; }
.site-footer .footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color .2s; }
.site-footer .footer-col a:hover { color: var(--gold-lt); }
.site-footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.77rem; flex-wrap: wrap; gap: 10px; }
.site-footer .footer-legal { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; font-size: 0.77rem; }
.site-footer .footer-legal a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.site-footer .footer-legal a:hover { color: var(--gold-lt); text-decoration: underline; }
.site-footer .footer-legal .sep { color: rgba(255,255,255,0.25); }
.site-footer .certifs { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.site-footer .certif { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 5px; padding: 5px 10px; font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.5); }
@media (max-width: 900px) {
  .site-footer .footer-top { grid-template-columns: auto 1fr 1fr; gap: 1.5rem; }
  .site-footer .footer-logo-col { grid-column: 1; grid-row: 1 / 3; }
  .site-footer .footer-brand { grid-column: 2 / 4; }
}
@media (max-width: 600px) {
  footer.site-footer { padding: 40px 4% 24px; }
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .site-footer .footer-logo-col, .site-footer .footer-brand { grid-column: auto; grid-row: auto; }
  .site-footer .footer-logo { width: 96px; }
  .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}
