/* ============================================================
   Gayar Theme — main.css
   Brasserie Gayar · Bras Panon · La Réunion
   ============================================================ */

/*
  Google Fonts chargées en async non-bloquant via gayar_google_fonts_async() (functions.php).
  NE PAS ajouter de @import ici — cela recréerait un chargement bloquant.
*/

/*
  NOTE TYPOGRAPHIES :
  - Facto          → substitué par 'Barlow' (proportions proches, multi-graisses)
  - Norteam 02     → substitué par 'Barlow Condensed' Bold/ExtraBold
  Si vous disposez des fichiers .woff2 de Facto et Norteam 02, déposez-les dans
  /gayar-theme/assets/fonts/ et décommentez le bloc @font-face ci-dessous.
*/

/*
@font-face {
  font-family: 'Facto';
  src: url('../fonts/Facto-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Facto';
  src: url('../fonts/Facto-SemiBold.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Facto';
  src: url('../fonts/Facto-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'Norteam02';
  src: url('../fonts/Norteam02-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
*/

/* ── VARIABLES — CHARTE GAYAR OFFICIELLE ── */
:root {
  /* Couleurs officielles (source : DocumentUtilisation_Logotype-Gayar_30062022.pdf) */
  --kaki:        #38401F;   /* Kaki  — C70 M51 J91 N59 / R56 G64 B31  */
  --kaki-dark:   #252c14;   /* Kaki foncé (variante sombre nav/hero)   */
  --kaki-light:  #566030;   /* Kaki clair (survols, icônes)            */
  --gold:        #E5AA30;   /* Moutarde — C11 M36 J88 N0 / R229 G170 B48 */
  --gold-light:  #f0c158;   /* Moutarde claire (hover)                 */
  --beige:       #EEE5D7;   /* Beige — C8 M10 J17 N0 / R238 G229 B215 */
  --beige-dark:  #dfd4c2;   /* Beige foncé (séparateurs, fonds)        */
  --white:       #ffffff;
  --black:       #1a1a10;
  --gray:        #5a5a50;
  --gray-light:  #8a8a7a;

  /* Typographies officielles (avec substituts Google Fonts) */
  --font-body:    'Barlow', 'Helvetica Neue', Arial, sans-serif;          /* Facto */
  --font-accent:  'Barlow Condensed', 'Arial Narrow', sans-serif;         /* Norteam 02 */
  --font-heading: 'Barlow', 'Helvetica Neue', Arial, sans-serif;          /* Facto Bold */

  /* Aliases de compatibilité (conservés pour ne pas casser les anciens usages) */
  --amber:        var(--gold);
  --amber-light:  var(--gold-light);
  --cream:        var(--beige);
  --cream-dark:   var(--beige-dark);

  --radius:     4px;
  --transition: 0.3s ease;

  /* Hauteur de la nav fixe (une seule ligne ~80px + marge de sécurité) */
  --nav-h: 96px;
}

/* ── SKIP TO CONTENT (accessibilité + SEO) ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--kaki-dark);
  padding: 12px 28px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 10000;
  transition: top .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.skip-to-content:focus { top: 0; outline: none; }

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-weight: 400; color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { color: var(--gray); line-height: 1.8; }
ul { list-style: none; }
strong { font-weight: 700; color: var(--kaki); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label,
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title   { color: var(--kaki); margin-bottom: 16px; font-weight: 700; }
.section-sub     { font-size: 1rem; font-weight: 400; color: var(--gray); max-width: 560px; margin-bottom: 56px; line-height: 1.7; }
.section-header  { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn-primary:hover {
  background: var(--amber-light); border-color: var(--amber-light);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,112,42,.35);
}
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--kaki-dark); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--kaki-dark); border-color: var(--kaki-dark); }
.btn-outline-dark:hover { background: var(--kaki-dark); color: var(--white); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background .4s, box-shadow .4s;
}
.nav.scrolled { background: rgba(37,44,20,.97); box-shadow: 0 2px 20px rgba(0,0,0,.35); }

/* Nav solide sur toutes les pages sans hero (tout sauf la page d'accueil) */
body:not(.home) .nav { background: rgba(37,44,20,.97); box-shadow: 0 2px 20px rgba(0,0,0,.35); }
.nav-inner {
  display: flex; align-items: center;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
  gap: 16px;
}
/* Logo — colonne gauche, ne réduit jamais */
.nav-logo { display: flex; align-items: center; line-height: 1; flex-shrink: 0; }
.nav-logo img { height: 72px; width: auto; display: block; max-width: none; }
.nav-logo-text { font-family: var(--font-accent); font-size: 1.6rem; color: var(--white); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nav-logo-text span { color: var(--gold); }
/* Liens — colonne centrale, s'étend pour remplir l'espace */
.nav .nav-links { display: flex; flex-wrap: nowrap; gap: 0; flex: 1; justify-content: space-evenly; min-width: 0; margin: 0; align-items: center; }
.nav .nav-links li { list-style: none; white-space: nowrap; }
.nav .nav-links a {
  font-family: var(--font-accent);
  color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 12px 16px;
  display: block; position: relative;
  transition: color .25s ease;
}
.nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav .nav-links a:hover { color: #fff; }
.nav .nav-links a:hover::after,
.nav .nav-links a.is-active::after { transform: scaleX(1); }
.nav .nav-links a.is-active { color: var(--gold-light); }
/* CTA — colonne droite, ne réduit jamais */
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-btn-shop { padding: 10px 20px; font-size: .72rem; font-family: var(--font-accent); letter-spacing: .1em; white-space: nowrap; }
.nav-btn-tireuse { margin-left: 4px; }
.nav-cart {
  color: var(--white); font-size: .82rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px; transition: color var(--transition);
}
.nav-cart:hover { color: var(--gold-light); }
.nav-cart svg { width: 18px; height: 18px; }
.nav-cart-count {
  background: var(--amber); color: var(--white);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: .65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.nav-cart-count[data-count="0"] { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile — animation opacity/transform (pas de display:none → pas de FOUC) */
.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(30,33,26,.98); padding: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav-links a { display: block; padding: 14px 0; color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color var(--transition); }
.mobile-nav-links a:hover { color: var(--amber-light); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.mobile-menu-ctas .btn { display: block; text-align: center; }
.mobile-menu-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-phone { color: var(--amber); font-size: .9rem; font-weight: 700; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--kaki-dark) 0%, #3a4030 40%, #2a2e22 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,112,42,.15) 0%, transparent 70%);
}
.hero-bg-text {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-heading);
  font-size: clamp(6rem,15vw,14rem); font-weight: 900;
  color: rgba(255,255,255,.03); letter-spacing: -.05em;
  white-space: nowrap; pointer-events: none; user-select: none;
}
.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,170,48,.15); border: 1px solid rgba(229,170,48,.35);
  color: var(--gold-light); padding: 6px 16px; border-radius: 100px;
  font-family: var(--font-accent);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title { color: var(--white); margin-bottom: 20px; font-weight: 700; }
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,.65); margin-bottom: 40px; max-width: 440px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: nowrap !important; }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value { font-family: var(--font-heading); font-size: 2rem; color: var(--white); font-weight: bold; }
.hero-stat-value span { color: var(--amber); }
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-bottle-glow { position: absolute; inset: -20%; background: radial-gradient(circle, rgba(200,112,42,.2) 0%, transparent 70%); border-radius: 50%; }
.hero-bottle-img { position: relative; z-index: 1; width: 100%; max-width: 380px; border-radius: 16px; object-fit: cover; }
.hero-visual-placeholder {
  width: 320px; height: 420px;
  background: linear-gradient(180deg, rgba(200,112,42,.15) 0%, rgba(200,112,42,.05) 100%);
  border: 1px solid rgba(200,112,42,.2); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  position: relative; overflow: hidden;
}
.hero-visual-placeholder::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%; background: linear-gradient(0deg, rgba(200,112,42,.1) 0%, transparent 100%);
}
.bottle-icon { font-size: 5rem; opacity: .7; }
.hero-visual-label { font-family: var(--font-heading); font-size: 1rem; color: rgba(255,255,255,.4); text-align: center; padding: 0 24px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--kaki);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-family: var(--font-accent); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.trust-item svg { color: var(--gold); width: 18px; height: 18px; }
.trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,.15); }

/* ── GAMME ── */
.gamme { background: var(--white); }
.beers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.beer-card { background: var(--white); border-radius: 12px; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.beer-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,.12); }
.beer-card-visual { height: 240px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.beer-card-visual img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.beer-ipa     .beer-card-visual { background: linear-gradient(135deg, #c8702a, #8b3a1a); }
.beer-blonde  .beer-card-visual { background: linear-gradient(135deg, #e8c840, #c89820); }
.beer-blanche .beer-card-visual { background: linear-gradient(135deg, #dde8f0, #b0c8d8); }
.beer-ambree  .beer-card-visual { background: linear-gradient(135deg, #b85820, #7a3010); }
.beer-card-body { padding: 24px; }
.beer-type   { font-family: var(--font-accent); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.beer-name   { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--kaki); margin-bottom: 8px; }
.beer-desc   { font-size: .88rem; font-weight: 400; color: var(--gray); margin-bottom: 16px; line-height: 1.65; }
.beer-footer { display: flex; align-items: center; justify-content: space-between; }
.beer-price  { font-family: var(--font-heading); font-size: 1.2rem; font-weight: bold; color: var(--kaki-dark); }
.beer-add {
  background: var(--amber); color: var(--white); border: none;
  width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.beer-add:hover { background: var(--amber-light); transform: scale(1.1); }
.beers-cta { text-align: center; margin-top: 48px; }

/* WooCommerce — prix */
.beer-price .woocommerce-Price-amount { font-family: var(--font-heading); font-size: 1.2rem; font-weight: bold; color: var(--kaki-dark); }
.beer-price ins { text-decoration: none; }
.beer-price del { font-size: .9rem; color: var(--gray); margin-right: 6px; }

/* ── STORY ── */
.story { background: var(--kaki); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
/* Textes story sur fond kaki */
.story .section-label { color: var(--gold); }
.story .section-title { color: var(--white); }
.story-content > p { color: rgba(255,255,255,.78); }
.story-img-main {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--kaki-light) 0%, var(--kaki-dark) 100%);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-main::before { content: '🌺'; position: absolute; font-size: 8rem; opacity: .08; top: 10%; right: 10%; }
.story-img-main-label { font-family: var(--font-heading); font-size: 1rem; color: rgba(255,255,255,.35); text-align: center; padding: 24px; letter-spacing: .06em; text-transform: uppercase; }
/* Placeholder réduit quand aucune image n'est définie */
.story-img-main:not(:has(img)) { aspect-ratio: 3/2; background: linear-gradient(135deg, rgba(56,64,31,.5) 0%, rgba(37,44,20,.5) 100%); border: 2px dashed rgba(255,255,255,.15); }
.story-visual { position: relative; }
.story-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--amber); color: var(--white);
  padding: 20px 24px; border-radius: 12px; text-align: center;
  box-shadow: 0 8px 24px rgba(200,112,42,.4);
}
.story-badge-float .num { font-family: var(--font-heading); font-size: 2rem; font-weight: bold; display: block; }
.story-badge-float .lbl { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.story-highlight { background: rgba(255,255,255,.07); padding: 20px; border-radius: 10px; border-left: 3px solid var(--gold); }
.story-highlight h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--gold-light); margin-bottom: 4px; }
.story-highlight p  { font-size: .82rem; margin: 0; color: rgba(255,255,255,.65); }

/* ── PRO REVENDEUR ── */
.pro-revendeur { background: var(--kaki-dark); padding: 96px 0; }
.pro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pro-content .section-label { color: var(--gold); }
.pro-content .section-title { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 20px; }
.pro-content p { color: rgba(255,255,255,.75); margin-bottom: 28px; font-size: 1.05rem; line-height: 1.7; }
.pro-avantages { list-style: none; padding: 0; margin: 0 0 36px 0; display: flex; flex-direction: column; gap: 12px; }
.pro-avantages li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 500; }
.pro-avantages li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); stroke-width: 2.5; }
.pro-visual { display: flex; align-items: center; justify-content: center; }
.pro-visual-inner {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(229,170,48,.35);
  border-radius: 20px; padding: 48px 40px; text-align: center;
  width: 100%; max-width: 380px;
  box-shadow: 0 0 60px rgba(229,170,48,.08);
}
.pro-icon { font-size: 3.5rem; margin-bottom: 16px; }
.pro-tagline { font-family: var(--font-accent); font-size: 1rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 36px; }
.pro-stat-row { display: flex; gap: 24px; justify-content: center; }
.pro-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pro-stat-val { font-family: var(--font-accent); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.pro-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

/* Beer card — bouton description sans panier */
.beer-details-btn { font-size: .78rem !important; padding: 8px 16px !important; }

/* ── INGREDIENTS ── */
.ingredients { background: var(--kaki-dark); }
.ingredients .section-title { color: var(--white); }
.ingredients .section-sub   { color: rgba(255,255,255,.6); }
.ingredients .section-label { color: var(--amber-light); }
.ingr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ingr-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 36px 28px; text-align: center; transition: var(--transition);
}
.ingr-card:hover { background: rgba(255,255,255,.08); border-color: rgba(200,112,42,.4); transform: translateY(-4px); }
.ingr-icon { font-size: 2.4rem; margin-bottom: 16px; }
.ingr-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ingr-desc { font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.5); margin: 0; line-height: 1.6; }

/* ── TIREUSE ── */
.tireuse { background: var(--beige); }
.tireuse-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tireuse-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 40px; }
.tireuse-features li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--gray); }
.tireuse-features li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--kaki-dark); color: var(--white);
  border-radius: 50%; font-size: .65rem; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}
.tireuse-visual {
  background: linear-gradient(135deg, var(--kaki) 0%, var(--kaki-dark) 100%);
  border-radius: 16px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.tireuse-visual img { width: 100%; height: 100%; object-fit: cover; }
.tireuse-visual::before { content: '🍺'; font-size: 10rem; opacity: .08; position: absolute; bottom: -20px; right: -20px; }
.tireuse-visual-label { font-family: var(--font-heading); font-size: 1.5rem; color: rgba(255,255,255,.4); text-align: center; padding: 24px; }
.tireuse-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.tireuse-card { background: var(--white); border-radius: 10px; padding: 20px; border: 1px solid rgba(0,0,0,.06); }
.tireuse-card h4 { font-family: var(--font-heading); font-size: .95rem; color: var(--kaki-dark); margin-bottom: 4px; }
.tireuse-card p  { font-size: .8rem; margin: 0; }

/* ── AVIS ── */
.avis { background: var(--beige); }
.avis-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.avis-score { display: flex; align-items: center; gap: 20px; }
.avis-score-num { font-family: var(--font-heading); font-size: 4rem; color: var(--kaki-dark); line-height: 1; }
.avis-stars  { color: #f5a623; font-size: 1.4rem; letter-spacing: 2px; }
.avis-count  { font-size: .85rem; color: var(--gray); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: var(--cream); border-radius: 12px; padding: 28px; }
.review-top  { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--kaki); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: bold; flex-shrink: 0;
}
.review-name  { font-weight: 700; font-size: .9rem; color: var(--kaki-dark); }
.review-date  { font-size: .78rem; color: var(--gray); }
.review-stars { color: #f5a623; font-size: .9rem; margin-bottom: 12px; }
.review-text  { font-size: .88rem; color: var(--gray); line-height: 1.7; margin: 0; }
.avis-cta     { text-align: center; margin-top: 40px; }

/* ── WHERE ── */
.where { background: var(--kaki); padding: 80px 0; }
.where-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.where-text .section-title { color: var(--white); }
.where-text .section-label { color: var(--amber-light); }
.where-text p { color: rgba(255,255,255,.6); max-width: 480px; margin-bottom: 32px; }
.where-channels { display: flex; gap: 16px; flex-wrap: wrap; }
.where-channel {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); padding: 12px 20px; border-radius: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  display: flex; align-items: center; gap: 8px;
}
.where-map {
  flex-shrink: 0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; width: 380px; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.5); font-style: normal; text-align: center; padding: 24px;
}
.where-map svg { width: 40px; height: 40px; }
.where-map span { font-size: .85rem; }

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(145deg, #1b2209 0%, #252c14 55%, #38401F 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,170,48,.09) 0%, transparent 68%);
  top: -180px; right: -80px;
  pointer-events: none;
}
.newsletter-inner {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}
.nl-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(229,170,48,.12);
  border: 1px solid rgba(229,170,48,.28);
  margin-bottom: 20px;
  color: #E5AA30;
}
.newsletter h2  { color: #fff; margin-bottom: 10px; }
.newsletter > .container > .newsletter-inner > p { color: rgba(255,255,255,.68); margin-bottom: 32px; line-height: 1.7; }

/* Bouton d'ouverture */
.nl-open-btn {
  display: inline-flex;
  align-items: center; gap: 10px;
  background: transparent;
  border: 2px solid #E5AA30;
  color: #E5AA30;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: .88rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.nl-open-btn:hover {
  background: #E5AA30; color: #252c14;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(229,170,48,.28);
}
.nl-open-btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s; }
.nl-open-btn:hover svg { transform: translateX(4px); }

/* Carte formulaire */
.nl-form-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: left;
}
.nl-form-label {
  display: block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #E5AA30;
  margin-bottom: 12px;
}

/* Formulaire natif */
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input[type="email"] {
  flex: 1; padding: 14px 18px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff; font-size: .95rem;
  outline: none; transition: border-color .2s, background .2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.38); }
.newsletter-form input[type="email"]:focus {
  border-color: #E5AA30;
  background: rgba(255,255,255,.11);
}
.newsletter-form button[type="submit"] {
  background: #E5AA30; color: #252c14; border: none;
  padding: 14px 24px; border-radius: 10px;
  font-size: .82rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.newsletter-form button[type="submit"]:hover {
  background: #d09928;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(229,170,48,.38);
}

/* Plugins tiers (MC4WP, CF7, Brevo/SIB…) */
.nl-form-card .mc4wp-form,
.nl-form-card .wpcf7-form,
.nl-form-card .sib_signup_form { width: 100% !important; }

/* Conteneur Brevo — empilement vertical */
.nl-form-card .sib_signup_box_inside_1 {
  display: flex !important; flex-direction: column !important;
  gap: 0 !important;
}

/* Labels (P) — Brevo utilise des <p> comme labels */
.nl-form-card p,
.nl-form-card .sib_signup_box_inside_1 > p {
  color: rgba(255,255,255,.8) !important;
  font-size: .8rem !important; font-weight: 600 !important;
  letter-spacing: .04em !important;
  margin: 12px 0 5px !important;
  float: none !important;
}
/* Texte confidentialité (plus discret) */
.nl-form-card .sib_signup_box_inside_1 > p:not([class]) {
  font-size: .72rem !important;
  color: rgba(255,255,255,.42) !important;
  font-weight: 400 !important; line-height: 1.5 !important;
  margin-top: 10px !important;
}

/* Tous les champs texte / email — override inline styles Brevo */
.nl-form-card input[type="text"],
.nl-form-card input[type="email"] {
  width: 100% !important; box-sizing: border-box !important;
  padding: 13px 16px !important; border-radius: 10px !important;
  border: 1.5px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.07) !important;
  color: #fff !important; font-size: .95rem !important;
  outline: none !important;
  transition: border-color .2s, background .2s !important;
  float: none !important; display: block !important;
  margin: 0 !important;
}
.nl-form-card input[type="text"]:focus,
.nl-form-card input[type="email"]:focus {
  border-color: #E5AA30 !important;
  background: rgba(255,255,255,.12) !important;
}
.nl-form-card input[type="text"]::placeholder,
.nl-form-card input[type="email"]::placeholder { color: rgba(255,255,255,.35) !important; }

/* Bouton submit — tous plugins */
.nl-form-card input[type="submit"],
.nl-form-card button[type="submit"],
.nl-form-card .wpcf7-submit,
.nl-form-card .sib-default-btn {
  width: 100% !important; background: #E5AA30 !important; color: #252c14 !important;
  border: none !important; padding: 15px 20px !important; border-radius: 10px !important;
  font-weight: 800 !important; font-size: .85rem !important;
  letter-spacing: .07em !important; text-transform: uppercase !important;
  cursor: pointer !important; margin-top: 14px !important;
  transition: background .2s !important; float: none !important; display: block !important;
}
.nl-form-card input[type="submit"]:hover,
.nl-form-card button[type="submit"]:hover,
.nl-form-card .sib-default-btn:hover { background: #d09928 !important; }

/* Messages de confirmation / erreur */
.nl-form-card .wpcf7-response-output,
.nl-form-card .sib_msg_disp {
  font-size: .82rem !important; color: rgba(255,255,255,.75) !important;
  text-align: center !important; margin: 8px 0 0 !important;
}

/* Masquer loader Brevo (spinner) quand inactif */
.nl-form-card .sib_loader { display: none !important; }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,.5); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
/* Logo footer — image prioritaire */
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { height: 64px; width: auto; }
.footer-logo-text { font-family: var(--font-accent); font-size: 1.8rem; font-weight: 800; color: var(--white); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 16px; }
.footer-logo-text span { color: var(--gold); }
.footer-col h4 { font-family: var(--font-accent); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: var(--white); margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .85rem; font-weight: 700; transition: var(--transition);
}
.footer-social:hover { border-color: var(--amber); color: var(--amber); }
/* (footer-col h4 défini dans bloc footer ci-dessus) */
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--amber-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; margin-bottom: 10px; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--amber); }
.footer-contact-item a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--amber-light); }
/* ── FEDER ── */
.footer-feder {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-feder-text {
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  max-width: 540px;
  line-height: 1.5;
  margin: 0;
}
.footer-feder-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.footer-feder-logos img {
  height: 52px;
  width: auto;
  opacity: .75;
  filter: grayscale(20%);
  transition: opacity var(--transition);
}
.footer-feder-logos img:hover { opacity: 1; }

/* ── BARRE ALCOOL ── */
.alcohol-warning-bar {
  background: var(--kaki-dark);
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  text-align: center;
  padding: 10px 24px;
  letter-spacing: .02em;
}
.alcohol-warning-bar span { display: inline-block; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; margin-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom-left { font-size: .8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; margin-bottom: 56px; }
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--cream-dark); transition: var(--transition); }
.blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); transform: translateY(-4px); }
.blog-card-img { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-date { font-size: .75rem; color: var(--amber); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.blog-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--kaki-dark); margin-bottom: 12px; }
.blog-title a { color: inherit; transition: color var(--transition); }
.blog-title a:hover { color: var(--amber); }
.blog-excerpt { font-size: .88rem; color: var(--gray); line-height: 1.7; }
.post-content { font-size: 1rem; line-height: 1.8; color: var(--black); }
.post-content h2, .post-content h3 { margin: 32px 0 16px; color: var(--kaki-dark); }
.post-content p  { margin-bottom: 16px; }
.post-content img { border-radius: 8px; margin: 24px auto; }
.post-content a  { color: var(--amber); text-decoration: underline; }
/* Pages génériques sans hero — décalage nav */
.main-content.generic-page { padding-top: var(--nav-h); }

.page-content { font-size: 1rem; line-height: 1.8; }
.page-content h2, .page-content h3 { margin: 32px 0 16px; color: var(--kaki-dark); }
.page-content p  { margin-bottom: 16px; }
.page-content a  { color: var(--amber); }

/* Pagination — .nav-links retiré pour éviter le conflit avec la nav principale */
.wp-pagenavi, .posts-navigation .nav-links, .post-navigation .nav-links { margin: 48px 0; text-align: center; }

/* ── WOOCOMMERCE OVERRIDES ── */
.woo-page { background: #f7f3ee; }
.woo-page .woocommerce { margin-top: 0; }

/* Grille produits */
.woo-page ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; }
/* Suppression du clearfix WooCommerce qui génère un grid item fantôme en première case */
.woo-page ul.products::before,
.woo-page ul.products::after { display: none; }
.woo-page ul.products li.product { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid rgba(56,64,31,.1); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.woo-page ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(56,64,31,.14); }

/* Lien produit (conteneur de l'image) */
.woo-page ul.products li.product a.woocommerce-LoopProduct-link { display: flex; flex-direction: column; flex: 1; }

/* Image — fond beige, bouteille entière visible (pas de rognage) */
.woo-page ul.products li.product a.woocommerce-LoopProduct-link > img,
.woo-page ul.products li.product a img { width: 100%; height: 280px; object-fit: contain; background: var(--beige); padding: 20px 24px; display: block; }

/* Nom, prix, bouton */
.woo-page ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--kaki-dark); padding: 14px 16px 4px; }
.woo-page ul.products li.product .price { padding: 2px 16px 10px; color: var(--amber); font-weight: 700; font-size: 1rem; }
.woo-page ul.products li.product .button { margin: auto 16px 16px; background: var(--kaki-dark); color: var(--white); border-radius: var(--radius); padding: 10px 20px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); display: block; text-align: center; }
.woo-page ul.products li.product .button:hover { background: var(--kaki); }

/* En-tête boutique & fil d'Ariane */
.woo-page .woocommerce-products-header__title { font-family: var(--font-heading); color: var(--kaki-dark); margin-bottom: 32px; }
.woo-page .woocommerce-breadcrumb { font-size: .82rem; color: var(--gray); margin-bottom: 24px; }
.woo-page .woocommerce-breadcrumb a { color: var(--amber); }

/* ── FICHE PRODUIT ── */

/* Layout 2 colonnes : galerie | infos */
.woo-page div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 56px;
  align-items: start;
}
.woo-page div.product .woocommerce-product-gallery { grid-column: 1; grid-row: 1 / 3; }
.woo-page div.product .summary                     { grid-column: 2; grid-row: 1; }
.woo-page div.product .woocommerce-tabs            { grid-column: 1 / -1; grid-row: 3; margin-top: 48px; }
.woo-page div.product .up-sells                    { grid-column: 1 / -1; }

/* Galerie — fond beige, image contenue, hauteur maîtrisée */
/* position:relative !important top:0 pour neutraliser le décalage WooCommerce */
.woo-page div.product .woocommerce-product-gallery {
  background: var(--beige);
  border-radius: 20px;
  padding: 32px;
  position: relative !important;
  top: 0 !important;
}
.woo-page div.product .woocommerce-product-gallery img {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.woo-page div.product .woocommerce-product-gallery__trigger { display: none; }

/* Résumé produit */
.woo-page div.product .product_title {
  font-family: var(--font-heading);
  color: var(--kaki-dark);
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 8px;
}
.woo-page div.product .woocommerce-product-rating { margin-bottom: 16px; }
.woo-page div.product .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
  display: block;
}
.woo-page div.product .woocommerce-Price-amount { font-size: inherit; }

/* Prix unitaire (sous-titre discret) */
.woo-page div.product .woocommerce-product-details__short-description {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

/* Quantité + bouton */
.woo-page div.product form.cart { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
.woo-page div.product .quantity input {
  width: 72px;
  height: 52px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kaki-dark);
  background: var(--white);
}
.woo-page div.product .single_add_to_cart_button {
  flex: 1;
  background: var(--kaki-dark) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 16px 28px !important;
  font-family: var(--font-accent) !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  text-align: center !important;
}
.woo-page div.product .single_add_to_cart_button:hover { background: var(--kaki) !important; }

/* ── WISHLIST YITH ── */
.woo-page .yith-wcwl-add-to-wishlist {
  margin: 0 0 16px !important;
  padding: 0 !important;
}
.woo-page .yith-wcwl-add-button a,
.woo-page .yith-wcwl-add-button .add_to_wishlist {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: var(--gray) !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  font-family: var(--font-accent) !important;
  letter-spacing: .05em !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: color .2s !important;
}
.woo-page .yith-wcwl-add-button a:hover,
.woo-page .yith-wcwl-add-button .add_to_wishlist:hover { color: var(--kaki-dark) !important; }
/* Icône SVG du plugin — couleur amber */
.woo-page .yith-wcwl-add-button .yith-wcwl-icon-svg { color: var(--amber); width: 16px; height: 16px; }
/* État "ajouté" */
.woo-page .yith-wcwl-wishlistexistsbrowse a,
.woo-page .yith-wcwl-wishlistaddedbrowse a { color: var(--kaki-dark) !important; }
.woo-page .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon-svg,
.woo-page .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon-svg { fill: var(--amber); stroke: var(--amber); }

/* Méta (SKU, catégories) */
.woo-page div.product .product_meta { font-size: .82rem; color: var(--gray); margin-top: 4px; }
.woo-page div.product .product_meta span { display: block; margin-bottom: 4px; }
.woo-page div.product .product_meta a { color: var(--amber); }

/* ── ONGLETS (description / avis / autres produits) ── */
.woo-page .woocommerce-tabs { border-top: 2px solid var(--cream-dark); }
.woo-page .woocommerce-tabs ul.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: none;
  gap: 0;
}
.woo-page .woocommerce-tabs ul.tabs li { margin: 0; padding: 0; }
.woo-page .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 16px 28px;
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.woo-page .woocommerce-tabs ul.tabs li.active a,
.woo-page .woocommerce-tabs ul.tabs li a:hover {
  color: var(--kaki-dark);
  border-bottom-color: var(--amber);
}

/* Panneau Description — style éditorial premium */
.woo-page .woocommerce-tabs .panel {
  padding: 40px 0 32px;
  color: var(--dark);
  line-height: 1.8;
}
.woo-page .woocommerce-tabs .panel h2 { display: none; }

/* Encart description : fond beige, typo soignée */
.woo-page #tab-description {
  background: var(--beige);
  border-radius: 16px;
  padding: 40px 48px;
  margin-top: 8px;
  max-width: 800px;
}

/* Premier <p> = label de style (ex: "Style : Weissbier") */
.woo-page #tab-description > p:first-of-type {
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* Paragraphes courants */
.woo-page #tab-description p {
  font-size: .97rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 14px;
}
.woo-page #tab-description b,
.woo-page #tab-description strong { color: var(--kaki-dark); font-weight: 700; }
.woo-page #tab-description i,
.woo-page #tab-description em { color: var(--gray); }

/* Liste de dégustation (<ul>) */
.woo-page #tab-description ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woo-page #tab-description ul li {
  padding: 12px 16px;
  background: rgba(255,255,255,.7);
  border-radius: 8px;
  border-left: 3px solid var(--amber);
  font-size: .95rem;
  line-height: 1.7;
}
.woo-page #tab-description ul li p { margin-bottom: 0; }

/* Citation du brasseur (<blockquote>) */
.woo-page #tab-description blockquote {
  margin: 28px 0 16px;
  padding: 36px 56px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(56,64,31,.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  text-align: center;
}
/* Guillemet ouvrant — haut gauche */
.woo-page #tab-description blockquote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  font-style: normal;
}
/* Guillemet fermant — bas droite */
.woo-page #tab-description blockquote::after {
  content: '\201D';
  position: absolute;
  bottom: 0px;
  right: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  font-style: normal;
}
.woo-page #tab-description blockquote p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--kaki-dark);
}
/* "Le mot du brasseur :" en légende amber */
.woo-page #tab-description blockquote b,
.woo-page #tab-description blockquote strong {
  display: block;
  font-family: var(--font-accent);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}

/* ── PRODUITS SUGGÉRÉS — 4 colonnes ── */
.woo-page .up-sells > h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--kaki-dark);
  margin-bottom: 24px;
  padding-top: 8px;
}
.woo-page .up-sells ul.products,
.woo-page .upsells ul.products {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

/* ── ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto; /* libère la couche GPU après animation */
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .story-inner { grid-template-columns: 1fr; }
  .story-visual { display: none; }
  .pro-inner { grid-template-columns: 1fr; }
  .pro-visual { display: none; }
  .tireuse-inner { grid-template-columns: 1fr; }
  .tireuse-visual { display: none; }
  .ingr-grid { grid-template-columns: repeat(2, 1fr); }
  .nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .where-inner { flex-direction: column; }
  .where-map { width: 100%; }
  .avis-header-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .woo-page ul.products { grid-template-columns: repeat(2, 1fr); }

  /* ── NAV MOBILE : logo + panier + hamburger uniquement ── */
  .nav-inner { padding: 10px 16px; }
  .nav-cta { gap: 12px; margin-left: auto; } /* repousse le CTA à droite quand nav-links est masqué */

  /* Masquer les boutons CTA — ils sont dans le menu hamburger */
  .nav-btn-tireuse,
  .nav-cta .btn-primary { display: none; }

  /* Logo légèrement réduit */
  .nav-logo img { height: 44px; }
}

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .beers-grid { grid-template-columns: 1fr 1fr; }
  .story-highlights { grid-template-columns: 1fr; }
  .ingr-grid { grid-template-columns: 1fr; }
  .tireuse-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .trust-items { gap: 24px; }
  .trust-sep { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .woo-page ul.products { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   COMPOSANTS REFONTE — pages internes, tireuse, histoire, contact, 404
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── BEIGE COMME 3ÈME COULEUR PRIMAIRE ── */
/* Le beige #EEE5D7 est désormais utilisé comme couleur d'accent structurante */
.beige-accent      { color: var(--beige); }
.bg-beige          { background: var(--beige); }
.bg-beige-dark     { background: var(--beige-dark); }
.border-beige      { border-color: var(--beige); }
.btn-beige         { background: var(--beige); color: var(--kaki-dark); border-color: var(--beige); }
.btn-beige:hover   { background: var(--beige-dark); border-color: var(--beige-dark); transform: translateY(-2px); }

/* Badge beige (rôle secondaire / neutre) */
.badge-beige {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--beige); color: var(--kaki-dark);
  padding: 5px 14px; border-radius: 100px;
  font-family: var(--font-accent); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}

/* ── PAGE HERO (pages internes — plus court que homepage) ── */
.page-hero {
  min-height: 480px;
  background: linear-gradient(135deg, var(--kaki-dark) 0%, #3a4030 60%, #2a2e22 100%);
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(229,170,48,.12) 0%, transparent 65%);
}
.page-hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 60px 24px 72px;
}
.page-hero-label { color: var(--beige); opacity: .7; }
.page-hero h1    { color: var(--white); margin-bottom: 16px; }
.page-hero-sub   { font-size: 1.1rem; color: rgba(255,255,255,.6); max-width: 560px; line-height: 1.75; margin-bottom: 32px; }
.page-hero-bg-word {
  position: absolute; right: -20px; bottom: -20px;
  font-family: var(--font-heading); font-size: clamp(5rem,12vw,10rem); font-weight: 900;
  color: rgba(255,255,255,.04); letter-spacing: -.05em;
  white-space: nowrap; pointer-events: none; user-select: none; line-height: 1;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }
.breadcrumb-current { color: var(--gold-light); }

/* ── STEPS (comment ça marche) ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 40px; left: calc(16.6% + 24px); right: calc(16.6% + 24px);
  height: 2px; background: linear-gradient(90deg, var(--beige-dark), var(--beige-dark));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--kaki-dark); border: 3px solid var(--beige-dark);
  color: var(--gold); font-family: var(--font-accent); font-size: 1.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; transition: var(--transition);
}
.step-card:hover .step-num { background: var(--gold); color: var(--white); border-color: var(--gold); }
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--kaki-dark); margin-bottom: 8px; }
.step-desc  { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── FORMULES (tireuse) ── */
.formules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.formule-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 2px solid var(--beige-dark); transition: var(--transition);
  display: flex; flex-direction: column;
}
.formule-card:hover { border-color: var(--gold); box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.formule-card.featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(229,170,48,.2); }
.formule-header {
  background: var(--kaki-dark); padding: 32px 32px 24px; text-align: center;
}
.formule-card.featured .formule-header { background: var(--gold); }
.formule-icon  { font-size: 2.4rem; margin-bottom: 12px; }
.formule-name  { font-family: var(--font-accent); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.formule-card.featured .formule-name { color: var(--kaki-dark); }
.formule-desc  { font-size: .85rem; color: rgba(255,255,255,.65); }
.formule-card.featured .formule-desc { color: rgba(37,44,20,.65); }
.formule-body  { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.formule-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.formule-feature { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--gray); }
.formule-feature::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--beige); color: var(--kaki-dark); font-size: .6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.formule-card.featured .formule-feature::before { background: var(--gold); color: var(--white); }
.formule-cta { display: block; text-align: center; }

/* ── DEVIS FORM ── */
.devis-form-section { background: var(--beige); padding: 80px 0; }
.devis-form-section .section-title { color: var(--kaki-dark); }
.devis-form-section .section-label { color: var(--kaki-light); }
.devis-form {
  background: var(--white); border-radius: 16px; padding: 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08); max-width: 760px; margin: 0 auto;
}
.form-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group  { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label  { font-family: var(--font-accent); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--kaki); }
.form-label span { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px; border: 2px solid var(--beige-dark); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--black);
  background: var(--white); outline: none; transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(229,170,48,.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select   { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2338401F' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit   { margin-top: 28px; text-align: center; }
.form-success  { text-align: center; padding: 32px; background: rgba(56,64,31,.06); border-radius: 12px; border: 2px solid var(--kaki-light); }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--kaki-dark); margin-bottom: 8px; }
.form-success p  { font-size: .9rem; margin: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--beige-dark); }
.faq-item { border-bottom: 1px solid var(--beige-dark); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--kaki-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--kaki-light); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--beige); color: var(--kaki-dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 20px; font-size: .92rem; color: var(--gray); line-height: 1.8; margin: 0; }

/* ── TIMELINE (histoire) ── */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--gold) 0%, var(--beige-dark) 100%); }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -40px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year { font-family: var(--font-accent); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.timeline-title { font-size: 1.15rem; font-weight: 700; color: var(--kaki-dark); margin-bottom: 8px; }
.timeline-text  { font-size: .9rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ── VALEURS (histoire) ── */
.valeurs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.valeur-card {
  background: var(--white); border-radius: 12px; padding: 32px 24px; text-align: center;
  border: 2px solid var(--beige-dark); transition: var(--transition);
}
.valeur-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.valeur-icon  { font-size: 2.2rem; margin-bottom: 16px; }
.valeur-title { font-size: 1rem; font-weight: 700; color: var(--kaki-dark); margin-bottom: 8px; }
.valeur-desc  { font-size: .82rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--kaki-dark); padding: 80px 0; }
.cta-banner-inner { text-align: center; }
.cta-banner h2    { color: var(--white); margin-bottom: 16px; }
.cta-banner p     { color: rgba(255,255,255,.6); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-btns  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── RÉASSURANCE STRIP ── */
.reassurance-strip { background: var(--beige); border-top: 1px solid var(--beige-dark); border-bottom: 1px solid var(--beige-dark); padding: 28px 0; }
.reassurance-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.reassurance-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-accent); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--kaki); }
.reassurance-item svg { color: var(--gold); width: 18px; height: 18px; }
.reassurance-sep { width: 1px; height: 24px; background: var(--beige-dark); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info-card { background: var(--kaki-dark); border-radius: 16px; padding: 40px; position: sticky; top: 100px; }
.contact-info-title { font-family: var(--font-accent); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item .label { font-family: var(--font-accent); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.contact-info-item .value { font-size: .9rem; color: rgba(255,255,255,.8); }
.contact-info-item a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--gold); }
.contact-social-row { display: flex; gap: 10px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }

/* ── 404 PAGE ── */
.error-404 { min-height: 100vh; background: var(--kaki-dark); display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; }
.error-404-inner { max-width: 560px; }
.error-404-num { font-family: var(--font-accent); font-size: clamp(6rem,20vw,12rem); font-weight: 900; color: rgba(229,170,48,.15); line-height: 1; letter-spacing: -.05em; margin-bottom: 0; }
.error-404-icon { font-size: 4rem; margin: -20px 0 24px; }
.error-404 h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.4rem); margin-bottom: 16px; }
.error-404 p  { color: rgba(255,255,255,.55); margin-bottom: 40px; }
.error-404-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE NOUVEAUX COMPOSANTS ── */
@media (max-width: 900px) {
  .steps-grid      { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .formules-grid   { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .valeurs-grid    { grid-template-columns: 1fr 1fr; }
  .devis-form      { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .form-grid     { grid-template-columns: 1fr; }
  .valeurs-grid  { grid-template-columns: 1fr; }
  .page-hero     { min-height: 380px; }
  .reassurance-items { gap: 20px; }
  .reassurance-sep   { display: none; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* ── ACCESSIBILITÉ ── */
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.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; }

/* ── WHATSAPP FLOTTANT ── */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 9990;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  border-radius: 100px; padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none; font-family: var(--font-accent);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  color: var(--white);
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-label { display: inline; }
/* Pulse au chargement */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float { animation: waPulse 2.4s ease-out 2s 3; }
@media (max-width: 600px) {
  .whatsapp-float { bottom: 80px; right: 16px; padding: 13px; border-radius: 50%; }
  .whatsapp-label { display: none; }
}

/* ── STICKY CTA MOBILE — PAGE TIREUSE ── */
.sticky-tireuse-cta {
  display: none; /* affiché uniquement via JS sur page tireuse mobile */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9980;
  background: var(--kaki-dark); border-top: 2px solid var(--gold);
  padding: 12px 16px;
  align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-tireuse-cta p {
  font-size: .78rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.3;
}
.sticky-tireuse-cta strong { color: var(--gold); }
.sticky-tireuse-cta a { flex-shrink: 0; padding: 11px 20px; font-size: .78rem; }
@media (max-width: 900px) {
  .sticky-tireuse-cta.visible { display: flex; }
  /* Pousser le contenu au-dessus du CTA sticky */
  body.has-sticky-cta { padding-bottom: 72px; }
}

/* ── COOKIE CONSENT RGPD ── */
.cookie-consent {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  z-index: 9998; max-width: 960px; margin: 0 auto;
  background: var(--black); color: rgba(255,255,255,.85);
  border: 1px solid rgba(229,170,48,.3);
  border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,.5);
  padding: 20px 24px;
  animation: cookieSlideUp .35s ease;
}
.cookie-consent[hidden] { display: none; }
@keyframes cookieSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-consent-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-consent-text  { flex: 1; min-width: 200px; }
.cookie-consent-title { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cookie-consent-desc  { font-size: .8rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.6; }
.cookie-consent-link  { color: var(--gold); text-decoration: underline; }
.cookie-consent-link:hover { color: var(--gold-light); }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 20px; border-radius: var(--radius); font-family: var(--font-accent); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; }
.cookie-btn-accept  { background: var(--gold); color: var(--kaki-dark); border-color: var(--gold); }
.cookie-btn-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.2); }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.8); }
@media (max-width: 600px) {
  .cookie-consent { bottom: 0; left: 0; right: 0; border-radius: 12px 12px 0 0; }
  .cookie-consent-inner { flex-direction: column; }
  .cookie-consent-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── PRÉFÉRENCE MOUVEMENT RÉDUIT ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PAGE HISTOIRE — Un gayar listoir (template page-histoire.php)
   ══════════════════════════════════════════════════════════════════════════════ */

.hist-hero { position:relative; background:var(--kaki-dark); padding:80px 0 64px; overflow:hidden; }
.hist-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.15; }
.hist-hero-inner { position:relative; text-align:center; }
.hist-hero-title { font-family:var(--font-accent); font-size:clamp(40px,8vw,72px); font-weight:800; color:var(--gold); line-height:1; text-transform:uppercase; margin-bottom:10px; }
.hist-hero-sub { font-family:var(--font-accent); font-size:clamp(18px,3vw,26px); font-weight:700; color:rgba(255,255,255,.55); letter-spacing:.06em; margin-bottom:24px; }
.hist-hero-intro { font-size:1rem; color:rgba(255,255,255,.72); max-width:540px; margin:0 auto; line-height:1.75; }

.hist-timeline { background:var(--beige); padding:44px 0; }
.hist-timeline-steps { display:flex; list-style:none; padding:0; margin:0; }
.hist-timeline-step { flex:1; text-align:center; position:relative; padding:0 8px; }
.hist-timeline-step::after { content:''; position:absolute; top:16px; left:50%; width:100%; height:2px; background:rgba(56,64,31,.2); }
.hist-timeline-step:last-child::after { display:none; }
.hist-timeline-dot { width:34px; height:34px; border-radius:50%; background:var(--kaki); border:3px solid var(--gold); margin:0 auto 10px; display:flex; align-items:center; justify-content:center; position:relative; z-index:1; font-size:13px; color:var(--gold); font-weight:700; }
.hist-timeline-year { display:block; font-family:var(--font-accent); font-size:20px; font-weight:800; color:var(--kaki); line-height:1.1; }
.hist-timeline-label { display:block; font-size:12px; color:#666; margin-top:3px; line-height:1.3; }

.hist-story { padding:80px 0; }
.hist-story--alt { background:var(--beige); }

/* Grille 2 colonnes photo / texte */
.hist-story-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.hist-story-inner--reverse .hist-story-visual { order:2; }
.hist-story-inner--reverse .hist-story-text   { order:1; }

/* Image story */
.hist-story-img { width:100%; border-radius:12px; aspect-ratio:4/3; object-fit:cover; display:block; }
.hist-img-placeholder { width:100%; aspect-ratio:4/3; background:var(--beige); border:2px dashed #c9b89a; border-radius:12px; }

/* Texte story */
.hist-year-chip { display:inline-block; background:var(--gold); color:var(--kaki-dark); font-family:var(--font-accent); font-size:13px; font-weight:800; padding:3px 12px; border-radius:2px; margin-bottom:12px; }
.hist-story-title { font-family:var(--font-accent); font-size:clamp(24px,3vw,34px); font-weight:800; color:var(--kaki); line-height:1.1; margin:6px 0 20px; }
.hist-story-text p { font-size:.96rem; line-height:1.8; color:#444; margin-bottom:12px; }

/* Galerie */
.hist-gallery { background:var(--kaki-dark); padding:72px 0; }
.hist-gallery-header { text-align:center; margin-bottom:40px; }
.hist-gallery-title { font-family:var(--font-accent); font-size:clamp(26px,4vw,40px); font-weight:800; color:var(--white); line-height:1.1; margin:6px 0 12px; }
.hist-gallery-sub { font-size:.92rem; color:rgba(255,255,255,.6); max-width:480px; margin:0 auto; line-height:1.7; }
.hist-gallery-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.hist-gallery-item { margin:0; }
.hist-gallery-img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:8px; display:block; }

/* Responsive */
@media (max-width:900px) {
  .hist-story-inner { grid-template-columns:1fr; gap:36px; }
  .hist-story-inner--reverse .hist-story-visual { order:1; }
  .hist-story-inner--reverse .hist-story-text   { order:2; }
  .hist-gallery-grid-3 { grid-template-columns:1fr 1fr; gap:10px; }
}

.hist-why { padding:72px 0; text-align:center; }
.hist-why-quote { font-family:var(--font-accent); font-size:clamp(28px,5vw,48px); font-weight:800; color:var(--kaki); line-height:1.1; max-width:620px; margin:8px auto 20px; }
.hist-why-quote em { color:var(--gold); font-style:normal; }
.hist-why-body { font-size:.96rem; color:#555; max-width:500px; margin:0 auto; line-height:1.8; }

.hist-values { background:var(--kaki-dark); padding:64px 0; }
.hist-values-header { text-align:center; margin-bottom:36px; }
.hist-values-title { font-family:var(--font-accent); font-size:clamp(26px,4vw,38px); font-weight:800; color:var(--white); margin:6px 0 0; }
.hist-values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.hist-value-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:10px; padding:24px 20px; }
.hist-value-icon { font-size:26px; margin-bottom:12px; }
.hist-value-title { font-family:var(--font-accent); font-size:17px; font-weight:800; color:var(--gold); margin-bottom:8px; }
.hist-value-text { font-size:.88rem; color:rgba(255,255,255,.62); line-height:1.7; }

/* ── Styles Gutenberg — zone contenu page Histoire ───────────────────────────── */
.hist-content-zone{padding:0;}
.hist-content-zone>.wp-block-group{margin:0;}

/* Conteneur centré pour les colonnes story */
.hist-content-zone .wp-block-columns{
  max-width:1200px;margin-left:auto;margin-right:auto;
  padding-left:24px;padding-right:24px;box-sizing:border-box;
  gap:56px;align-items:center;
}

/* Conteneur centré pour les éléments internes de la galerie */
.hist-content-zone .hist-gallery>.wp-block-group,
.hist-content-zone .hist-gallery>.wp-block-gallery{
  max-width:1200px;margin-left:auto;margin-right:auto;
  padding-left:24px;padding-right:24px;box-sizing:border-box;
}

/* Cacher les images non encore définies (src vide) */
.hist-content-zone figure:has(img[src=""]){display:none;}
.hist-content-zone .wp-block-gallery:not(:has(img[src!=""])){display:none;}

.hist-content-zone .wp-block-image.hist-story-img--single img{border-radius:10px;aspect-ratio:1;object-fit:cover;width:100%;display:block;}
.hist-content-zone .wp-block-gallery.hist-img-grid2x2{display:grid!important;grid-template-columns:1fr 1fr;gap:10px;}
.hist-content-zone .wp-block-gallery.hist-img-grid2x2 figure{margin:0;}
.hist-content-zone .wp-block-gallery.hist-img-grid2x2 img{border-radius:8px;aspect-ratio:1;object-fit:cover;width:100%;height:100%;display:block;}
.hist-content-zone .wp-block-gallery.hist-gallery-grid{display:grid!important;grid-template-columns:repeat(3,1fr);gap:10px;}
.hist-content-zone .wp-block-gallery.hist-gallery-grid figure{margin:0;}
.hist-content-zone .wp-block-gallery.hist-gallery-grid img{border-radius:6px;aspect-ratio:1;object-fit:cover;width:100%;height:100%;display:block;}
.hist-content-zone h2{font-family:var(--font-accent);font-size:clamp(24px,3vw,34px);font-weight:800;color:var(--kaki);line-height:1.1;margin:6px 0 20px;}
.hist-content-zone p{font-size:.96rem;line-height:1.8;color:#444;margin-bottom:12px;}
.hist-content-zone .hist-story{padding:72px 0;}
.hist-content-zone .hist-story--alt{background:var(--beige);padding:72px 0;}
.hist-content-zone .hist-gallery{background:var(--kaki-dark);padding:64px 0;}
.hist-content-zone .hist-gallery-header{text-align:center;margin-bottom:32px;}
.hist-content-zone .hist-gallery-title{font-family:var(--font-accent);font-size:clamp(26px,4vw,40px);font-weight:800;color:var(--white);line-height:1.1;margin:6px 0 12px;}
.hist-content-zone .hist-gallery-sub{font-size:.92rem;color:rgba(255,255,255,.6);max-width:480px;margin:0 auto;line-height:1.7;}
@media(max-width:768px){
  .hist-content-zone .wp-block-columns{flex-direction:column;gap:32px;}
  .hist-content-zone .wp-block-gallery.hist-gallery-grid{grid-template-columns:repeat(2,1fr);}
}

.hist-cta { background:var(--beige); padding:60px 0; }
.hist-cta-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:28px; }
.hist-cta-title { font-family:var(--font-accent); font-size:clamp(24px,4vw,36px); font-weight:800; color:var(--kaki); margin:6px 0 0; }
.hist-cta-btns { display:flex; gap:14px; flex-wrap:wrap; }
.btn-outline-beige { display:inline-block; border:2px solid var(--kaki); color:var(--kaki); font-family:var(--font-accent); font-size:.85rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; padding:12px 26px; border-radius:var(--radius); text-decoration:none; transition:background var(--transition),color var(--transition); }
.btn-outline-beige:hover { background:var(--kaki); color:var(--white); }

@media (max-width:768px) {
  .hist-story-grid,
  .hist-story-grid--reverse { grid-template-columns:1fr; }
  .hist-story-grid--reverse .hist-story-text { order:1; }
  .hist-story-grid--reverse .hist-story-img  { order:2; }
  .hist-gallery-grid  { grid-template-columns:repeat(2,1fr); }
  .hist-values-grid   { grid-template-columns:1fr; }
  .hist-timeline-steps { flex-direction:column; gap:20px; }
  .hist-timeline-step::after { display:none; }
  .hist-cta-inner { flex-direction:column; text-align:center; }
}

/* ── PERFORMANCE — content-visibility (rendu différé des sections hors écran) ──
   Permet au navigateur de sauter le layout/paint des sections non visibles.
   contain-intrinsic-size évite le saut de scroll (valeur approximative de la hauteur).
   À NE PAS appliquer au hero (section LCP visible au chargement). */

.section-ingredients,
.section-reviews,
.section-newsletter,
.hist-gallery,
.hist-why,
.hist-values,
.hist-cta {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* ════════════════════════════════════════════════════════════════════════════
   BAR — Homepage teaser + Page bar
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Homepage bar teaser ──────────────────────────────────────────────────── */
.bar-teaser {
  position: relative;
  background: var(--kaki-dark);
  overflow: hidden;
}
.bar-teaser-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
}
.bar-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22,28,16,.94) 50%, rgba(22,28,16,.70) 100%);
}
.bar-teaser-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  padding: 96px 0;
}
.bar-teaser-title {
  font-family: Barlow, "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(26px, 3.2vw, 41.6px) !important;
  font-weight: 700 !important;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 10px 0 20px;
}
.bar-teaser-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
/* ── Carte horaires (colonne droite) ─────────────────────────────────────── */
.bar-teaser-aside { display: flex; align-items: stretch; }
.bar-teaser-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: 36px 30px;
  width: 100%;
  backdrop-filter: blur(8px);
}
.bar-card-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.bar-card-label {
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.bar-card-hours { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.bar-card-hours span {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bar-card-hours span:last-child { border-bottom: none; }
.bar-card-address {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  line-height: 1.5;
}

/* ── Page bar — Hero ──────────────────────────────────────────────────────── */
.bar-hero {
  position: relative;
  background: var(--kaki-dark);
  padding: 80px 0 72px;
  overflow: hidden;
}
.bar-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.bar-hero-inner { position: relative; }
.bar-hero-title {
  font-family: var(--font-accent);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 16px 0 10px;
}
.bar-hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bar-hero-intro {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Page bar — Infos (horaires / adresse / contact) ─────────────────────── */
.bar-infos { padding: 72px 0; background: var(--white); }
.bar-infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bar-info-card {
  background: var(--beige);
  border-radius: 14px;
  padding: 36px 28px;
}
.bar-info-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.bar-info-title {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--kaki);
  margin: 0 0 16px;
}
.bar-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bar-hours-list li { font-size: .9rem; color: #444; line-height: 1.5; }
.bar-info-note { font-size: .8rem; color: #888; margin: 0; }
.bar-info-addr { font-size: .95rem; color: #444; line-height: 1.6; }

/* ── Page bar — Galerie ambiance ─────────────────────────────────────────── */
.bar-gallery { background: var(--kaki-dark); padding: 72px 0; }
.bar-gallery-header { text-align: center; margin-bottom: 40px; }
.bar-gallery-title {
  font-family: var(--font-accent);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin: 6px 0 12px;
}
.bar-gallery-sub { font-size: .92rem; color: rgba(255,255,255,.6); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.bar-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bar-gallery-item { margin: 0; }
.bar-gallery-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; display: block; }
.bar-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: 8px;
}

/* ── Page bar — Événements ───────────────────────────────────────────────── */
.bar-events { background: var(--white); padding: 80px 0; }
.bar-events-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.bar-events-title {
  font-family: var(--font-accent);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--kaki);
  margin: 8px 0 20px;
}
.bar-events-text p { font-size: .96rem; line-height: 1.8; color: #444; margin-bottom: 16px; }
.bar-events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bar-events-list li { font-size: .95rem; color: #333; display: flex; align-items: baseline; gap: 10px; }
.bar-events-star { color: var(--gold); font-size: .75rem; flex-shrink: 0; }
.bar-events-card {
  background: var(--kaki-dark);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}
.bar-events-card-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.bar-events-card-label {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.bar-events-card-addr { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 8px; }
.bar-events-card-phone a { font-size: .9rem; color: var(--gold); text-decoration: none; }
.bar-events-card-phone a:hover { text-decoration: underline; }

/* ── Responsive bar ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bar-teaser-grid { grid-template-columns: 1fr; gap: 40px; padding: 72px 0; }
  .bar-teaser-aside { max-width: 400px; }
  .bar-infos-grid { grid-template-columns: 1fr; gap: 16px; }
  .bar-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bar-events-inner { grid-template-columns: 1fr; gap: 36px; }
  .bar-events-card { display: none; }
}
@media (max-width: 600px) {
  .bar-teaser-grid { padding: 56px 0; }
  .bar-gallery-grid { grid-template-columns: 1fr; }
  .bar-hero { padding: 60px 0 52px; }
}

/* ── Performance: content-visibility for bar sections ───────────────────── */
.bar-teaser, .bar-infos, .bar-gallery, .bar-events {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* ── PERFORMANCE — Prévenir le CLS sur les images ────────────────────────────
   height: auto garantit que les attributs width/height HTML servent d'aspect-ratio
   hint sans étirer les images (sauf logo nav géré par .nav-logo img). */

img { height: auto; }
