/* ============================================================
   LA BOUCLE — Brasserie Circulaire
   Charte graphique v2 · Fredoka + Nunito + Space Mono
   Palette : vert forêt, vert mousse, crème + gammes insectes
   ============================================================ */

:root {
  /* ── Marque ── */
  --foret:   #1F4D3A;
  --mousse:  #3E7A57;
  --creme:   #F4EBDD;
  --creme-d: #EAD9C4;
  --brun:    #3A2410;

  /* ── Bières ── */
  --blonde:  #E8B923;
  --ambree:  #D9742A;
  --ipa:     #3F8F4E;
  --blanche: #A8D0E6;

  /* ── Limonades ── */
  --limo-r:  #D64550;
  --limo-v:  #58B368;
  --limo-p:  #7D5BA6;

  /* ── Kéfirs ── */
  --kefir-v: #6B4F7A;
  --kefir-j: #E6C65B;

  /* ── UX ── */
  --impact-low:    #58B368;
  --impact-med:    #D9742A;
  --impact-high:   #D64550;

  /* ── Typo ── */
  --ff-titre:  'Fredoka', 'Baloo 2', cursive;
  --ff-corps:  'Nunito', 'Poppins', sans-serif;
  --ff-data:   'Space Mono', monospace;

  /* ── UI ── */
  --radius:   16px;
  --radius-s: 8px;
  --radius-pill: 999px;
  --shadow:   0 4px 24px rgba(31,77,58,0.10);
  --shadow-l: 0 8px 40px rgba(31,77,58,0.18);
  --t: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-corps);
  background: var(--creme);
  color: var(--brun);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPO ── */
h1, h2, h3 { font-family: var(--ff-titre); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p  { color: #5a3e2a; max-width: 58ch; }

.section-label {
  font-family: var(--ff-corps);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mousse);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── BOUTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--foret);
  color: var(--creme);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-corps);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2.5px solid var(--foret);
  cursor: pointer;
  transition: var(--t);
}
.btn-primary:hover { background: var(--mousse); border-color: var(--mousse); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,77,58,0.25); }
.btn-primary.full { width: 100%; justify-content: center; border-radius: var(--radius-s); }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--foret);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-corps);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2.5px solid var(--foret);
  cursor: pointer;
  transition: var(--t);
}
.btn-ghost:hover { background: var(--foret); color: var(--creme); }

.btn-text {
  color: var(--mousse);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: var(--t);
}
.btn-text:hover { color: var(--foret); }

.btn-nav {
  background: var(--blonde) !important;
  color: var(--brun) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: var(--t) !important;
}
.btn-nav:hover { background: var(--ambree) !important; color: white !important; transform: translateY(-2px); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(244,235,221,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(31,77,58,0.10);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-titre); font-size: 1.5rem; font-weight: 700;
  color: var(--foret);
}
.logo-svg { color: var(--foret); animation: spin-slow 12s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--brun); transition: color 0.2s; }
.nav-links a:hover { color: var(--mousse); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { width: 24px; height: 2.5px; background: var(--brun); border-radius: 2px; display: block; transition: var(--t); }

.mobile-menu { display: none; flex-direction: column; padding: 1rem 2rem 1.5rem; background: var(--creme); border-top: 1px solid var(--creme-d); gap: 1rem; }
.mobile-menu a { font-family: var(--ff-titre); font-size: 1.2rem; font-weight: 600; color: var(--brun); }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(150deg, #e8f5e0 0%, var(--creme) 55%, #f0e2cc 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.3; }
.b1 { width: 480px; height: 480px; background: radial-gradient(circle, #3E7A57, transparent); top: -120px; right: -80px; animation: f1 14s ease-in-out infinite; }
.b2 { width: 340px; height: 340px; background: radial-gradient(circle, #E8B923, transparent); bottom: 40px; left: 5%; animation: f2 18s ease-in-out infinite; }
.b3 { width: 260px; height: 260px; background: radial-gradient(circle, #D9742A, transparent); top: 45%; right: 25%; animation: f1 22s ease-in-out infinite reverse; }
@keyframes f1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(25px,-35px)} }
@keyframes f2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-18px,28px)} }

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--foret); color: var(--creme);
  padding: 0.4rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-title { color: var(--brun); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--mousse); font-weight: 700; }
.hero-sub { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 50ch; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-insect {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  animation: float-ins 5s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes float-ins { 0%,100%{transform:translateY(-50%) rotate(-5deg)} 50%{transform:translateY(calc(-50% - 12px)) rotate(5deg)} }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mousse);
  z-index: 1;
}
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--mousse), transparent); animation: sp 2s ease-in-out infinite; }
@keyframes sp { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ══════════════════════════════════════
   PILIERS
══════════════════════════════════════ */
.piliers { background: var(--foret); padding: 2.5rem 2rem; }
.piliers-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.pilier { text-align: center; color: var(--creme); }
.pilier-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.pilier strong { display: block; font-family: var(--ff-titre); font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--creme); }
.pilier p { font-size: 0.82rem; color: rgba(244,235,221,0.7); max-width: none; margin: 0; }

/* ══════════════════════════════════════
   MANIFESTE
══════════════════════════════════════ */
#manifeste { padding: 7rem 2rem; background: var(--creme); }
.manifeste-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.manifeste-text h2 { color: var(--brun); margin-bottom: 1rem; }
.manifeste-lead { font-size: 1.15rem; font-weight: 700; color: var(--mousse); margin-bottom: 1rem; max-width: none; }
.manifeste-text p { margin-bottom: 1rem; }
.manifeste-text .btn-text { margin-top: 0.5rem; display: inline-block; }

.manifeste-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--foret); color: var(--creme);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-l);
}
.stat-card.accent-amber  { background: var(--ambree); }
.stat-card.accent-green  { background: var(--ipa); }
.stat-card.accent-purple { background: var(--kefir-v); }
.stat-n { display: block; font-family: var(--ff-titre); font-size: 2.6rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 0.4rem; }
.stat-l { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 600; }

/* ══════════════════════════════════════
   GAMMES — structure commune
══════════════════════════════════════ */
.gamme-section { padding: 6rem 2rem; }
.gamme-biere    { background: var(--creme); }
.gamme-limonade { background: #f0f7ec; }
.gamme-kefir    { background: #f2ecf8; }

.gamme-header { max-width: 1100px; margin: 0 auto 3rem; }
.gamme-header h2 { color: var(--brun); margin-bottom: 0.5rem; }
.gamme-header p  { margin-bottom: 0; }

.gamme-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-data); font-size: 0.75rem;
  color: var(--mousse); margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.products-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.products-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
.products-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 700px; }

/* ── PRODUCT CARD ── */
.product-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-l); }

.card-visual {
  height: 160px; position: relative;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-shape {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Formes par gamme */
.shape-circle::before {
  content: '';
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.shape-circle-dash::before {
  content: '';
  width: 110px; height: 110px; border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.4);
}
.shape-organic::before {
  content: '';
  width: 110px; height: 100px;
  background: rgba(255,255,255,0.12);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
}

.card-insect {
  position: relative; z-index: 1;
  font-size: 3rem; line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  transition: transform 0.4s;
}
.product-card:hover .card-insect { transform: scale(1.15) rotate(8deg); }

.card-badge {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(4px);
  color: white; padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em;
}

.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-subtitle { font-size: 0.78rem; font-style: italic; color: #8a6a4a; margin-bottom: 0.2rem; }
.card-body h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--brun); }
.card-taste { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mousse); margin-bottom: 0.75rem; }
.card-desc { font-size: 0.85rem; line-height: 1.5; color: #6a4e38; margin-bottom: 1rem; flex: 1; max-width: none; }

/* Impact tableau */
.card-impact {
  background: #f8f4ee; border-radius: var(--radius-s);
  padding: 0.75rem; margin-bottom: 1rem;
}
.impact-label {
  display: block; font-family: var(--ff-data); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--mousse);
  margin-bottom: 0.5rem; font-weight: 700;
}
.impact-row {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.3rem; font-size: 0.78rem;
}
.impact-row span:first-child { font-size: 0.8rem; }
.impact-mono { font-family: var(--ff-data); font-size: 0.72rem; color: var(--brun); flex: 1; }
.impact-bar {
  height: 4px; border-radius: 2px; width: 40px;
  background: var(--creme-d);
  position: relative; overflow: hidden;
}
.impact-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; border-radius: 2px; }
.impact-bar.low::after    { width: 30%; background: var(--impact-low); }
.impact-bar.medium::after { width: 60%; background: var(--impact-med); }
.impact-bar.high::after   { width: 90%; background: var(--impact-high); }

.card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}
.card-vol   { font-size: 0.75rem; color: #8a6a4a; }
.card-price { font-family: var(--ff-titre); font-size: 1.35rem; font-weight: 700; color: var(--foret); }

.btn-add {
  width: 100%; padding: 0.65rem;
  border-radius: var(--radius-s);
  font-family: var(--ff-corps); font-size: 0.88rem; font-weight: 700;
  cursor: pointer; transition: var(--t); border: 2px solid;
}
.btn-add-biere  { background: #fdf6e3; border-color: var(--blonde);  color: var(--brun); }
.btn-add-limo   { background: #f2fcf3; border-color: var(--limo-v);  color: var(--brun); }
.btn-add-kefir  { background: #f5f0fa; border-color: var(--kefir-v); color: var(--brun); }
.btn-add:hover  { background: var(--foret) !important; color: var(--creme) !important; border-color: var(--foret) !important; transform: translateY(-1px); }

/* ══════════════════════════════════════
   LIVRAISON
══════════════════════════════════════ */
#livraison { padding: 7rem 2rem; background: var(--foret); color: var(--creme); }
.livraison-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.livraison-text .section-label { color: var(--blonde); }
.livraison-text h2 { color: var(--creme); margin-bottom: 1.25rem; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.livraison-text > p { color: rgba(244,235,221,0.8); margin-bottom: 2rem; max-width: none; }
.livraison-details { display: flex; flex-direction: column; gap: 1.5rem; }
.li-item { display: flex; gap: 1rem; align-items: flex-start; }
.li-icon-wrap { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.li-item strong { display: block; color: var(--creme); font-weight: 700; margin-bottom: 0.2rem; }
.li-item p { font-size: 0.88rem; color: rgba(244,235,221,0.7); max-width: none; }

.livraison-visual { position: sticky; top: 5rem; }

/* ── Carte Leaflet ── */
#map-livraison {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Filtre sépia léger pour coller à la palette crème */
.map-tiles-sepia {
  filter: sepia(25%) saturate(85%) brightness(0.97);
}

/* Popup Leaflet dans les couleurs de la charte */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(31,77,58,0.18) !important;
  border: 1px solid #e0d0b8 !important;
}
.leaflet-popup-tip { background: white !important; }

/* Contrôles zoom */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
}
.leaflet-control-zoom a {
  background: rgba(244,235,221,0.95) !important;
  color: var(--foret) !important;
  border: none !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.leaflet-control-zoom a:hover {
  background: var(--foret) !important;
  color: var(--creme) !important;
}

/* Attribution */
.leaflet-control-attribution {
  background: rgba(244,235,221,0.85) !important;
  font-size: 0.65rem !important;
  color: #8a6a4a !important;
}
.leaflet-control-attribution a { color: var(--mousse) !important; }

/* ══════════════════════════════════════
   BOUTIQUE / PANIER
══════════════════════════════════════ */
#boutique { padding: 6rem 2rem; background: var(--creme-d); }
.boutique-header { max-width: 1100px; margin: 0 auto 3rem; }
.boutique-header h2 { color: var(--brun); }
.boutique-inner { max-width: 700px; margin: 0 auto; }

.cart-empty {
  text-align: center; padding: 4rem 2rem;
  background: white; border-radius: var(--radius);
  border: 2px dashed var(--creme-d);
}
.cart-empty-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-empty p { color: #8a6a4a; max-width: none; }
.cart-empty a { color: var(--mousse); font-weight: 700; border-bottom: 2px solid currentColor; }

.cart-items { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--creme-d); }
.cart-item:last-child { border-bottom: none; }
.cart-item-name { flex: 1; font-weight: 700; font-size: 0.95rem; }
.cart-item-controls { display: flex; align-items: center; gap: 0.75rem; }
.cart-item-controls button {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--creme-d); background: white;
  cursor: pointer; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); line-height: 1;
}
.cart-item-controls button:hover { background: var(--foret); color: white; border-color: var(--foret); }
.cart-item-qty { font-weight: 700; min-width: 1.5rem; text-align: center; font-family: var(--ff-titre); font-size: 1.1rem; }
.cart-item-price { font-family: var(--ff-titre); font-size: 1.05rem; color: var(--foret); font-weight: 700; min-width: 60px; text-align: right; }

.cart-footer { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); margin-top: 1rem; }
.cart-line { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.95rem; color: #7a5a3a; border-bottom: 1px solid var(--creme-d); }
.cart-line:last-of-type { border-bottom: none; }
.cart-line.total { font-family: var(--ff-titre); font-size: 1.3rem; font-weight: 700; color: var(--brun); padding-top: 1rem; margin-top: 0.5rem; }
.cart-footer .btn-primary { margin-top: 1.25rem; }

/* Slot panel */
.slot-panel { background: white; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); margin-top: 1.5rem; }
.slot-panel h3 { margin-bottom: 1.5rem; color: var(--brun); }
.slots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.slot-btn {
  padding: 0.9rem; border: 2px solid var(--creme-d); border-radius: var(--radius-s);
  background: white; cursor: pointer; font-family: var(--ff-corps);
  font-size: 0.88rem; text-align: left; transition: var(--t);
}
.slot-btn:hover { border-color: var(--mousse); background: #f0f7ec; }
.slot-btn.selected { border-color: var(--foret); background: #e8f5e0; }
.slot-btn strong { display: block; font-size: 0.95rem; color: var(--brun); font-weight: 700; }
.slot-btn span { color: #8a6a4a; font-size: 0.82rem; font-family: var(--ff-data); }

.field-block { margin-bottom: 1.25rem; }
.field-block label { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brun); }
.field-input {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--creme-d); border-radius: var(--radius-s);
  font-family: var(--ff-corps); font-size: 0.95rem; color: var(--brun);
  background: var(--creme); transition: var(--t);
}
.field-input:focus { outline: none; border-color: var(--mousse); }
.consigne-input { width: 80px; }
.consigne-row { display: flex; align-items: center; gap: 1rem; }
.consigne-unit { font-size: 0.88rem; color: #6a4e38; }
.consigne-unit strong { color: var(--mousse); }

/* Confirm */
.confirm-panel { text-align: center; padding: 4rem 2rem; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.confirm-anim {
  width: 64px; height: 64px; background: var(--foret); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.5rem;
  animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes pop-in { from{transform:scale(0)} to{transform:scale(1)} }
.confirm-panel h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--foret); }
.confirm-panel p { color: #6a4e38; max-width: none; }
.confirm-sub { font-size: 0.88rem; margin-top: 0.75rem; margin-bottom: 1.5rem; }

/* ══════════════════════════════════════
   COMPTE
══════════════════════════════════════ */
#compte { padding: 6rem 2rem; background: var(--foret); }
.compte-inner { max-width: 600px; margin: 0 auto; }
.compte-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 3rem; text-align: center;
}
.compte-card .section-label { color: var(--blonde); }
.compte-card h2 { color: var(--creme); margin-bottom: 1rem; }
.compte-card p { color: rgba(244,235,221,0.75); margin: 0 auto 2rem; }
.compte-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.compte-card .btn-primary { background: var(--blonde); border-color: var(--blonde); color: var(--brun); }
.compte-card .btn-primary:hover { background: var(--ambree); border-color: var(--ambree); color: white; }
.compte-card .btn-ghost { border-color: rgba(255,255,255,0.35); color: var(--creme); }
.compte-card .btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: #141f16; color: var(--creme); padding: 4rem 2rem 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--ff-titre); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-logo .logo-svg { animation: none; }
.footer-tagline { font-family: var(--ff-titre); font-size: 1rem; color: var(--blonde); margin-bottom: 0.5rem; max-width: none; }
.footer-adresse { font-size: 0.85rem; color: rgba(244,235,221,0.5); max-width: none; }
.footer-links h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blonde); margin-bottom: 1rem; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: rgba(244,235,221,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--creme); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(244,235,221,0.35); max-width: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
  .manifeste-inner { grid-template-columns: 1fr; gap: 3rem; }
  .livraison-inner { grid-template-columns: 1fr; }
  .livraison-visual { position: static; }
}
@media (max-width: 768px) {
  .piliers-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-insect { display: none; }
  .hero-ctas { flex-direction: column; }
  .products-grid, .products-grid-3, .products-grid-2 { grid-template-columns: 1fr; max-width: 100%; }
  .manifeste-stats { grid-template-columns: 1fr 1fr; }
  .slots-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .piliers-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .piliers-inner { grid-template-columns: 1fr; }
  .manifeste-stats { grid-template-columns: 1fr; }
}
