:root {
  --accent: #c6472d;
  --accent-2: #e48732;
  --yellow: var(--accent-2);
  --orange: var(--accent-2);
  --red: var(--accent);
  --black: #241a15;
  --soft-black: #3a2b23;
  --cream: #f6f1e7;
  --bg: #f5efe6;
  --surface: #fffaf3;
  --surface-2: #eadfd2;
  --surface-3: #ddcdbd;
  --text: #241a15;
  --muted: rgba(36,26,21,.68);
  --muted-light: rgba(36,26,21,.55);
  --line: rgba(36,26,21,.15);
  --header-bg: rgba(25,18,15,.94);

  /* --- Navbar : jetons dédiés, réutilisant la palette existante --- */
  --bm-cream: #f8eedf;
  --bm-dark: #1a110d;
  --bm-orange: #f28a21;
  --bm-red: #ef2b23;
  --nav-height: 74px;        /* etat haut de page */
  --nav-height-scrolled: 60px;
  --nav-max: 1440px;
  --nav-ease: cubic-bezier(.22, 1, .36, 1);
  /* Surface sombre unique : navbar, panneau mobile et footer partagent ce brun. */
  --bm-dark-surface: #19110d;
  --hero-top: rgba(28,18,12,.25);
  --hero-mid: rgba(88,39,20,.48);
  --hero-bottom: rgba(16,11,8,.78);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Navbar fixe : les ancres ne doivent pas passer dessous. */
[id] { scroll-margin-top: calc(var(--nav-height) + 28px); }   /* ~102px desktop */
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  transition: background .25s ease, color .25s ease;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* ============================================================
   NAVBAR — Braise Master
   Grille 1fr / auto / 1fr : la nav centrale reste centrée quelles que
   soient les largeurs du logo et du CTA. Deux thèmes : sombre (hero) et
   clair (pages crème, via .catalog-body plus bas).
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(22, 14, 10, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  will-change: transform;
  transition: height .24s var(--nav-ease), background-color .24s var(--nav-ease),
              border-color .24s var(--nav-ease), box-shadow .24s var(--nav-ease),
              transform .28s var(--nav-ease);
}
/* Masquage a la descente continue (seuil dans js/main.js) : la barre remonte,
   elle ne disparait jamais sur quelques pixels de scroll. */
.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-hidden .nav-inner { transition-duration: 0s; }
/* Au scroll, le fond quitte le bandeau pleine largeur : la navigation devient
   une barre arrondie flottante, centrée et bornée par --nav-max. */
.site-header.is-scrolled {
  height: var(--nav-height-scrolled);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav-inner {
  width: 100%;
  max-width: var(--nav-max);
  margin-inline: auto;
  padding-inline: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  transition: background-color .24s var(--nav-ease), border-color .24s var(--nav-ease),
              border-radius .24s var(--nav-ease), box-shadow .24s var(--nav-ease),
              padding .24s var(--nav-ease), height .24s var(--nav-ease);
}
.site-header.is-scrolled .nav-inner {
  height: 50px;
  width: calc(100% - 40px);
  padding-inline: 22px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bm-dark-surface) 94%, transparent);
  border-color: rgba(232, 92, 22, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
}
.nav-left { justify-self: start; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 14px; }

/* --- Logo --- */
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform .18s ease-out, height .24s var(--nav-ease);
}
.site-header.is-scrolled .brand img { height: 38px; }
.brand:hover img { transform: scale(1.03); }
.brand:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 4px; border-radius: 8px; }

/* --- Navigation centrale --- */
.main-nav {
  position: relative;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 38px;
}
.main-nav a {
  position: relative;
  padding: 6px 2px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .2s ease-out, transform .2s ease-out;
}
.main-nav a:hover { color: #fff; transform: translateY(-1px); }
.main-nav a.is-current { color: #fff; }
.main-nav a:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 4px; border-radius: 6px; }

/* Souligné qui glisse sous le lien actif. */
.nav-underline {
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: var(--bm-orange);
  opacity: 0;
  transition: transform .25s cubic-bezier(.22,1,.36,1),
              width .25s cubic-bezier(.22,1,.36,1),
              opacity .25s ease-out, background-color .24s ease-out;
  pointer-events: none;
}
.nav-underline.is-visible { opacity: 1; }

/* --- Panier --- */
.cart-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease-out, border-color .2s ease-out,
              transform .2s ease-out, width .24s var(--nav-ease), height .24s var(--nav-ease);
}
.site-header.is-scrolled .cart-btn { width: 36px; height: 36px; }
.cart-btn:hover { background: rgba(255,255,255,.13); transform: translateY(-1px); }
.cart-btn:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 3px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bm-orange);
  color: #1a110d;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  transform: scale(.8);
  opacity: 0;
  transition: transform .18s ease-out, opacity .18s ease-out;
}
.cart-badge.is-visible { transform: scale(1); opacity: 1; }

/* --- CTA Commander --- */
.btn-nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--bm-orange);
  color: var(--bm-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .16s ease-out, box-shadow .16s ease-out, filter .16s ease-out,
              height .24s var(--nav-ease), padding .24s var(--nav-ease), font-size .24s var(--nav-ease);
}
/* Lueur de braise, très discrète, sous le bouton. */
.btn-nav-cta::before {
  content: "";
  position: absolute;
  inset: -40% -18%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(242,138,33,.55), transparent 68%);
  opacity: .18;
  pointer-events: none;
}
.site-header.is-scrolled .btn-nav-cta { height: 37px; padding: 0 20px; font-size: 11.5px; }
.btn-nav-cta:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(242,138,33,.20); }
.btn-nav-cta:active { transform: translateY(0) scale(.98); }
.btn-nav-cta:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  place-items: center;
  gap: 5px;
  width: 41px; height: 41px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 17px; height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .22s ease-out, opacity .22s ease-out;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 3px; }

/* --- Panneau mobile plein écran --- */
.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  padding: calc(var(--nav-height) + 32px) 26px 40px;
  background: var(--bm-dark-surface);
  opacity: 0;
  transition: opacity .28s ease-out;
}
.nav-panel[hidden] { display: none; }
.nav-panel.is-open { opacity: 1; }
.nav-panel-links { display: flex; flex-direction: column; gap: 6px; }
.nav-panel-links a {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(38px, 12vw, 48px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--bm-cream);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease-out, transform .3s ease-out;
}
.nav-panel.is-open .nav-panel-links a { opacity: 1; transform: translateY(0); }
.nav-panel.is-open .nav-panel-links a:nth-child(2) { transition-delay: .05s; }
.nav-panel-links a.is-current { color: var(--bm-orange); }
.nav-panel-links a:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 4px; }
.nav-panel-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease-out .1s, transform .3s ease-out .1s;
}
.nav-panel.is-open .nav-panel-foot { opacity: 1; transform: translateY(0); }
.nav-panel-cta { justify-content: center; height: 52px; }
.nav-panel-adresse { font-size: 13px; line-height: 1.55; color: rgba(248,238,223,.6); }

@media (prefers-reduced-motion: reduce) {
  .site-header, .brand img, .main-nav a, .nav-underline,
  .cart-btn, .cart-badge, .btn-nav-cta, .nav-toggle span,
  .nav-panel, .nav-panel-links a, .nav-panel-foot { transition: none; }
}

/* --- Tablette : on resserre avant de basculer --- */
@media (max-width: 1024px) {
  .nav-inner { padding-inline: 24px; }
  .main-nav { gap: 26px; }
  .nav-right { gap: 10px; }
  .btn-nav-cta { padding: 0 18px; }
}

/* --- Mobile --- */
@media (max-width: 860px) {
  :root { --nav-height: 64px; --nav-height-scrolled: 58px; }
  .nav-inner { padding-inline: 18px; grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .brand img { height: 40px; }
  .site-header.is-scrolled .brand img { height: 34px; }
  .site-header.is-scrolled .nav-inner { height: 50px; width: calc(100% - 24px); padding-inline: 16px; }
  [id] { scroll-margin-top: calc(var(--nav-height) + 20px); }
  .nav-toggle { display: grid; }
  .btn-nav-cta { display: none; }   /* repris dans le panneau mobile */
}

/* ============================================================
   PANIER — drawer latéral Braise Master
   L'état vit dans localStorage (voir js/main.js) : ce bloc n'habille que l'UI.
   Hiérarchie z-index : navbar 100 · menu mobile 95 · overlay 200 · drawer 210.
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 8, 5, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease-out;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 210;
  width: min(480px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #19100c;
  color: var(--bm-cream);
  border-left: 1px solid rgba(242, 138, 33, .18);
  box-shadow: -20px 0 50px rgba(0,0,0,.20);
  transform: translate3d(100%, 0, 0);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.cart-drawer.is-open { transform: translate3d(0, 0, 0); }
@media (prefers-reduced-motion: reduce) {
  .cart-drawer, .cart-overlay { transition: none; }
}

/* --- En-tête --- */
.cart-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cart-head::after {
  content: "";
  position: absolute; top: 14px; right: 74px;
  width: 62px; height: 42px;
  background-image: radial-gradient(rgba(248,238,223,.5) 1.4px, transparent 1.4px);
  background-size: 9px 9px;
  opacity: .09;
  pointer-events: none;
}
.cart-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bm-orange);
}
.cart-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: cartEmber 2.6s ease-in-out infinite;
}
@keyframes cartEmber { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .cart-eyebrow-dot { animation: none; } }

.cart-title {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--bm-cream);
}
.cart-title-dot { color: var(--bm-orange); }
.cart-count { margin-top: 6px; font-size: 13px; color: rgba(248,238,223,.55); }

.cart-close {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: var(--bm-cream);
  cursor: pointer;
  transition: background-color .2s ease-out;
}
.cart-close:hover { background: rgba(255,255,255,.12); }
.cart-close:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 3px; }

.cart-error {
  margin: 14px 24px 0;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(239, 43, 35, .14);
  border: 1px solid rgba(239, 43, 35, .34);
  color: #ffd9d6;
  font-size: 13px;
}
.cart-error[hidden] { display: none; }

/* --- Zone défilante --- */
.cart-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 24px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(248,238,223,.2) transparent;
  overscroll-behavior: contain;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}
.cart-scroll::-webkit-scrollbar { width: 5px; }
.cart-scroll::-webkit-scrollbar-thumb { background: rgba(248,238,223,.18); border-radius: 999px; }

.cart-items { display: flex; flex-direction: column; gap: 11px; }

/* --- Carte produit --- */
.cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 13px;
  padding: 13px;
  border-radius: 17px;
  background: #f7ebdd;
  color: var(--bm-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
  opacity: 0;
  transform: translateY(8px);
  animation: cartItemIn .22s ease-out forwards;
}
@keyframes cartItemIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .cart-item { animation: none; opacity: 1; transform: none; }
}
.cart-item.is-leaving {
  opacity: 0;
  transform: scale(.97);
  transition: opacity .2s ease-out, transform .2s ease-out;
}
.cart-item img {
  width: 86px; height: 86px;
  border-radius: 12px;
  object-fit: cover;
  background: #e6d6c4;
}
.cart-item-info { display: flex; flex-direction: column; min-width: 0; }
.cart-item-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.cart-item-info h4 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--bm-dark);
}
.cart-item-desc {
  margin-top: 3px;
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(26,17,13,.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-bottom {
  margin-top: auto;
  padding-top: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  height: 33px;
  border-radius: 999px;
  border: 1px solid rgba(26,17,13,.14);
  background: #fffaf3;
  overflow: hidden;
}
.cart-item-qty button {
  width: 31px; height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  color: var(--bm-dark);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease-out;
}
.cart-item-qty button:hover { background: rgba(26,17,13,.07); }
.cart-item-qty button:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: -2px; }
.cart-item-qty span {
  min-width: 22px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.cart-item-price {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--bm-dark);
  font-variant-numeric: tabular-nums;
  transition: opacity .15s ease-out, transform .15s ease-out;
}
.cart-item-price.is-updating { opacity: .7; transform: scale(.98); }
.cart-item-remove {
  align-self: flex-start;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(26,17,13,.42);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: color .18s ease-out;
}
.cart-item-remove:hover { color: var(--bm-red); }
.cart-item-remove:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 2px; border-radius: 4px; }

/* --- Panier vide --- */
.cart-empty { text-align: center; padding: 22px 8px 8px; }
.cart-empty[hidden] { display: none; }
.cart-empty-mascot { width: min(190px, 62%); margin: 0 auto 18px; }
.cart-empty h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--bm-cream);
  margin-bottom: 8px;
}
.cart-empty p { font-size: 14px; color: rgba(248,238,223,.6); margin-bottom: 22px; }
.cart-empty-cta {
  background: var(--bm-orange);
  color: var(--bm-dark);
  min-height: 52px;
  padding-inline: 30px;
}
.cart-empty-cta:hover { filter: brightness(1.06); }

/* --- Pied : sous-total + CTA --- */
.cart-foot {
  padding: 18px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(242,138,33,.16);
  background: rgba(255,255,255,.025);
  box-shadow: 0 -10px 26px rgba(0,0,0,.22);
}
.cart-foot[hidden] { display: none; }
.cart-reassurance {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bm-orange);
  margin-bottom: 12px;
}
.cart-subtotal-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.cart-subtotal-row span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(248,238,223,.6);
}
.cart-subtotal-row strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--bm-cream);
  font-variant-numeric: tabular-nums;
}
.cart-note { margin: 5px 0 15px; font-size: 11.5px; color: rgba(248,238,223,.42); }
.cart-checkout-btn {
  width: 100%;
  min-height: 56px;
  border-radius: 15px;
  background: var(--bm-orange);
  color: var(--bm-dark);
  font-size: 13.5px;
  font-weight: 800;
  transition: transform .15s ease-out, box-shadow .15s ease-out, filter .15s ease-out;
}
.cart-checkout-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(242,138,33,.22);
}
.cart-checkout-btn:active { transform: scale(.99); }
.cart-continue {
  display: block;
  width: 100%;
  margin-top: 11px;
  padding: 6px;
  border: 0;
  background: none;
  color: rgba(248,238,223,.5);
  font-size: 12.5px;
  cursor: pointer;
  transition: color .18s ease-out;
}
.cart-continue:hover { color: var(--bm-cream); }
.cart-continue:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 2px; border-radius: 6px; }

.cart-btn.is-active {
  background: rgba(242,138,33,.18);
  border-color: rgba(242,138,33,.5);
}

@media (max-width: 520px) {
  .cart-drawer { width: 100vw; border-left: 0; }
  .cart-head { padding: 20px 18px 16px; }
  .cart-title { font-size: 29px; }
  .cart-scroll { padding: 16px 18px 20px; }
  .cart-foot { padding: 16px 18px calc(18px + env(safe-area-inset-bottom)); }
  .cart-item { grid-template-columns: 78px minmax(0, 1fr); }
  .cart-item img { width: 78px; height: 78px; }
  .cart-error { margin-inline: 18px; }
}

h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-weight: 800;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(44px, 5.6vw, 78px); }
h2 { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: clamp(20px, 2vw, 27px); }
p { line-height: 1.65; }

.section-pad { padding: clamp(70px, 7vw, 108px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 0 0 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(228,135,50,.12);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  min-width: 164px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease, color .3s ease;
}
.btn::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15M13 6l6 6-6 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15M13 6l6 6-6 6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transform: translateX(0);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(196,71,45,.25);
}
.btn:hover::after { transform: translateX(4px); }

.btn-red,
.btn-dark {
  background: var(--yellow);
  color: var(--black);
}
.btn-red:hover,
.btn-dark:hover { background: #f0a05a; }

.btn-light,
.btn-cream,
.btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.btn-light:hover,
.btn-cream:hover,
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,255,255,.1);
}

/* On light sections, outline buttons need dark text/border instead of white */
.menu-section .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.38);
}

.hero {
  position: relative;
  min-height: 700px;
  height: 100svh;
  max-height: 1040px;
  display: grid;
  place-items: center;
  padding: 104px 20px 62px;
  overflow: hidden;
  text-align: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1.5px) saturate(1.14) contrast(1.08);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(228,135,50,.12), transparent 24rem),
    linear-gradient(90deg, rgba(12,8,6,.20) 0%, rgba(12,8,6,.08) 48%, rgba(12,8,6,.18) 100%),
    linear-gradient(180deg, rgba(20,12,8,.42) 0%, rgba(58,28,16,.56) 45%, rgba(13,9,7,.84) 100%);
}
.hero-content {
  width: min(700px, 100%);
  margin-top: 28px;
}
[data-hero-word] { opacity: 0; }
[data-hero-float] { opacity: 0; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--black);
  border-radius: 50%;
}
.hero h1 span {
  display: block;
  color: var(--yellow);
}
.hero-text {
  max-width: 580px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.5vw, 18px);
}
.hero-actions,
.hero-mini-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin-top: 28px; }
.hero-mini-actions { margin-top: 18px; }
.hero-mini-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(0,0,0,.26);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px 16px 20px;
  border-radius: 18px;
  background: rgba(15,10,8,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-left: 3px solid var(--yellow);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  transition: transform .3s ease;
}
.hero-float:hover { transform: translateY(-4px) scale(1.03); }
.hero-float-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero-float strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  color: var(--yellow);
  line-height: 1;
}
.hero-float small { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.8); font-weight: 700; }
.hero-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(228,135,50,.18);
  font-size: 20px;
  flex-shrink: 0;
}
.hero-float-1 { left: max(24px, calc((100vw - var(--max)) / 2)); top: 26%; transform: rotate(-3deg); }
.hero-float-1:hover { transform: rotate(-3deg) translateY(-4px) scale(1.03); }
.hero-float-2 { right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 20%; transform: rotate(2deg); }
.hero-float-2:hover { transform: rotate(2deg) translateY(-4px) scale(1.03); }
@media (max-width: 1020px) { .hero-float { display: none; } }

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 20px;
  transform: translateX(-50%);
}
.hero-scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--yellow);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}
@media (max-width: 760px) { .hero-scroll-cue { display: none; } }

.stamp-row {
  padding: 34px 20px 40px;
  background: var(--surface-2, var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.stamp-row-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  width: min(var(--max), 100%);
  margin-inline: auto;
}
.stamp {
  display: inline-flex;
  transform: rotate(var(--r));
  transition: transform .3s ease;
  animation: stampBreathe 4.5s ease-in-out infinite;
}
.stamp:nth-child(2) { animation-delay: .3s; }
.stamp:nth-child(3) { animation-delay: .6s; }
.stamp:nth-child(4) { animation-delay: .9s; }
.stamp:nth-child(5) { animation-delay: 1.2s; }
.stamp:hover { transform: rotate(0deg) scale(1.08); animation-play-state: paused; }
.stamp-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 2px dashed rgba(228,135,50,.55);
  background: radial-gradient(circle, rgba(228,135,50,.08), transparent 70%);
  text-align: center;
}
.stamp-ring strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  color: #fb1110;
  line-height: 1;
}
.stamp-ring small {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--muted-light);
  font-weight: 700;
  max-width: 78px;
  line-height: 1.25;
}
@keyframes stampBreathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}
@media (max-width: 640px) {
  .stamp-ring { width: 84px; height: 84px; }
  .stamp-ring strong { font-size: 16px; }
  .stamp-ring small { font-size: 8.5px; max-width: 60px; }
}

.section-head {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head p:last-child {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
}

.menu-section {
  --text: #fbf4eb;
  --muted: rgba(251,244,235,.70);
  --muted-light: rgba(251,244,235,.54);
  --line: rgba(251,244,235,.15);
  --surface: #211914;
  --surface-2: #2b211b;
  --surface-3: #382920;
  background: #17110e;
  color: var(--text);
}
.menu-section { padding-top: clamp(80px, 8vw, 116px); position: relative; overflow: hidden; }
.menu-section-full { padding-top: clamp(50px, 5vw, 70px); }

/* Homepage teaser: light mode on purpose, contrasts with the full dark carte page */
.menu-section-teaser {
  --text: #241a15;
  --muted: rgba(36,26,21,.68);
  --muted-light: rgba(36,26,21,.55);
  --line: rgba(36,26,21,.14);
  --surface: #fffaf3;
  --surface-2: #eadfd2;
  --surface-3: #ddcdbd;
  background:
    radial-gradient(circle at 12% 8%, rgba(228,135,50,.16), transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(251,17,16,.09), transparent 48%),
    #fbf1e2;
  color: var(--text);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(68px, 7vw, 88px);
  padding-bottom: clamp(34px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}
.menu-section-teaser::before { display: none; }
.menu-section-teaser .eyebrow { background: rgba(251,17,16,.1); color: #fb1110; font-size: 12.5px; padding: 0 16px; min-height: 30px; }

/* Stamps woven into the teaser section — parked in the head zone, clear of the full-bleed rail */
.stamp-float { position: absolute; z-index: 2; opacity: 0; }
.stamp-a { top: 2%; left: 2.5%; }
.stamp-b { top: 2%; right: 2.5%; }
.stamp-c { top: 13%; left: 6.5%; }
.stamp-d { top: 13%; right: 6.5%; }
.stamp-e { top: 6%; left: 14%; }
@media (max-width: 1560px) { .stamp-float { display: none; } }
.menu-section-teaser h2 { color: var(--text); }

.teaser-rail-wrap { position: relative; padding-inline: 58px; }

/* V6 — retour au vrai slide horizontal, mais page-par-page et verrouillé. */
.teaser-viewport {
  position: relative;
  overflow: hidden;
  padding: 10px 2px;
  border-radius: 24px;
}
.teaser-rail {
  display: flex;
  align-items: stretch;
  width: 100%;
  transform: translate3d(0,0,0);
  transition: transform .56s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.teaser-page {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(var(--page-count, var(--cols, 4)), minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  justify-items: stretch;
}
.teaser-page-products {
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.teaser-page-products > .teaser-product-card {
  width: 100%;
  height: 100% !important;
  min-height: 390px;
  align-self: stretch !important;
}
.teaser-page[data-solo] {
  grid-template-columns: minmax(0,1fr);
  align-items: stretch;
  justify-items: stretch;
}
.teaser-viewport.is-transitioning .teaser-nav,
.teaser-viewport.is-transitioning ~ .teaser-nav { pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .teaser-rail { transition: none !important; }
}

/* Mobile : swipe natif, pas de transform JS. */
@media (max-width: 767px) {
  .teaser-rail-wrap { padding-inline: 0; }
  .teaser-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-inline: 16px;
    border-radius: 0;
  }
  .teaser-viewport::-webkit-scrollbar { display: none; }
  .teaser-rail {
    width: max-content;
    transform: none !important;
    transition: none !important;
    will-change: auto;
    gap: 14px;
  }
  .teaser-page {
    flex: 0 0 min(300px, 82vw);
    width: min(300px, 82vw);
    grid-template-columns: minmax(0,1fr);
    scroll-snap-align: center;
  }
  .teaser-page-products > .teaser-product-card {
    min-height: 365px;
  }
}

.teaser-card {
  min-width: 0;
  opacity: 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 20px 46px rgba(36,26,21,.1);
  transform: scale(var(--s, 1));
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, opacity .45s ease;
}
/* .teaser-card:hover { box-shadow: 0 28px 58px rgba(36,26,21,.18); } */
.teaser-card-media { position: relative; display: block; aspect-ratio: 1/0.95; background: var(--surface-2); }
.teaser-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.teaser-card:hover .teaser-card-media img { transform: scale(1.08); }
.teaser-card-price {
  position: absolute; top: 14px; left: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.teaser-card-tag {
  position: absolute; top: 14px; right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.teaser-card-body { padding: 18px 20px 20px; }
.teaser-card-title { display: block; color: inherit; }
.teaser-card-body h3 { font-size: 20px; margin-bottom: 6px; transition: color .25s ease; }
.teaser-card-title:hover h3 { color: var(--accent); }
.teaser-card-body p { color: var(--muted); font-size: 13.5px; line-height: 1.5; min-height: 38px; }

.add-cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: var(--black);
  color: #fff;
  font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
  cursor: pointer;
  overflow: hidden;
  transition: background .25s ease, transform .25s ease;
}
.add-cart-btn:hover { background: var(--accent); transform: translateY(-2px); }
.add-cart-btn svg { transition: transform .3s ease; }
.add-cart-btn .cart-check { display: none; }
.add-cart-btn.is-added { background: #3a7a4e; }
.add-cart-btn.is-added .cart-bag { display: none; }
.add-cart-btn.is-added .cart-check { display: inline-flex; }

.teaser-product-card {
  display: flex;
  flex-direction: column;
  height: auto !important;
  align-self: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff9f1;
  border: 1px solid rgba(26,17,13,.07);
  box-shadow: 0 3px 12px rgba(26,17,13,.05);
  transition: transform .25s ease-out, box-shadow .25s ease-out, opacity .35s ease;
}
.teaser-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(26,17,13,.12);
}
.teaser-product-card .teaser-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eadfd2;
}
.teaser-product-card .teaser-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-out;
}
.teaser-product-card:hover .teaser-card-media img { transform: scale(1.025); }
.teaser-product-card .teaser-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 15px 15px;
}
.teaser-product-card .teaser-card-title { display: block; color: inherit; }
.teaser-product-card .teaser-card-body h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--bm-dark, #1a110d);
}
.teaser-product-card .teaser-card-desc {
  margin: 6px 0 0;
  min-height: 36px;
  font-size: 12.5px;
  line-height: 1.42;
  color: rgba(26,17,13,.58);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.teaser-product-card .teaser-card-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.teaser-product-card .teaser-card-price {
  position: static;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--bm-dark, #1a110d);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.teaser-add {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--bm-orange, #f28a21);
  color: var(--bm-dark, #1a110d);
  cursor: pointer;
  transition: transform .16s ease-out, filter .16s ease-out, background-color .2s ease-out;
}
.teaser-add:hover { filter: brightness(1.07); transform: scale(1.06); }
.teaser-add:active { transform: scale(.96); }
.teaser-add:focus-visible { outline: 2px solid var(--bm-dark, #1a110d); outline-offset: 2px; }
.teaser-add-plus { transition: transform .2s ease-out; }
.teaser-add:hover .teaser-add-plus { transform: rotate(90deg); }
.teaser-add-check { display: none; }
.teaser-add.is-added { background: #3a7a4e; color: #fff; }
.teaser-add.is-added .teaser-add-plus { display: none; }
.teaser-add.is-added .teaser-add-check { display: block; }

.teaser-card-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px 0 90px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    width: 100%;
    background: #fceacf;
    height: 460px;
    border: 1px solid #fe9d2c;
}
.teaser-card-cta::before {
  content: "";
  position: absolute; top: 26px; left: 26px;
  width: 72px; height: 50px;
  background-image: radial-gradient(rgba(36,26,21,.18) 1.6px, transparent 1.6px);
  background-size: 10px 10px;
  z-index: 1;
}
.teaser-card-cta-copy {
    position: relative;
    z-index: 2;
    flex: 0 0 400px;
    max-width: 400px;
}
.teaser-card-cta h3 {
  display: flex; flex-direction: column;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  text-transform: uppercase;
}
.teaser-card-cta h3 .cta-line-dark { color: #140d06; }
.teaser-card-cta h3 .cta-line-accent { color: #fb1110; }
.teaser-card-cta-underline { display: block; width: 78px; height: 4px; margin: 16px 0 22px; border-radius: 2px; background: #fe9400; }
.teaser-card-cta-copy p { color: #4a3b2e; font-size: 18px; line-height: 1.6; margin-bottom: 16px; }
.teaser-card-cta-tag { color: #fb1110; font-weight: 800; font-size: 19px; margin-bottom: 28px; }
.teaser-card-cta-btn {
  background: #fb1110;
  color: #fff;
  min-height: 62px;
  min-width: 240px;
  padding: 0 34px;
  font-size: 14px;
  cursor: pointer;
}
.teaser-card-cta-btn:hover { background: #d80d0c; }

.teaser-card-cta-mascot-wrap {
  position: relative;
  flex-shrink: 0;
  align-self: center;
  display: flex; align-items: center; justify-content: center;
  width: 400px;
}
.teaser-card-cta-mascot {
  height: auto;
  width: 100%;
  /* max-width: 250px; */
  border-radius: 18px;
  object-fit: contain;
  transform: scale(1);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.teaser-card-cta:hover .teaser-card-cta-mascot { transform: scale(1.04); }

.teaser-swipe-hint { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: #4a3b2e; }
.teaser-swipe-hint svg { flex-shrink: 0; animation: swipeHintMove 1.6s ease-in-out infinite; }
.teaser-swipe-hint span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
@keyframes swipeHintMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.teaser-card-intro { justify-content: flex-start; padding-right: 0; }
.teaser-card-intro-mascot-wrap {
  position: relative;
  flex: 1 1 auto;
  align-self: center;
  height: 78%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.teaser-card-intro-mascot {
    height: 100%;
    width: auto;
    position: relative;
    left: -45px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    transform: scale(1);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.teaser-card-intro:hover .teaser-card-intro-mascot { transform: scale(1.03); }

@media (max-width: 640px) {
  .teaser-card-cta-mascot-wrap,
  .teaser-card-intro-mascot-wrap { display: none; }
  .teaser-card-cta-copy { max-width: none; text-align: center; margin: 0 auto; }
  .teaser-card-cta-underline { margin-inline: auto; }
  .teaser-card-cta { justify-content: center; padding: 36px 26px; }
  .teaser-swipe-hint { justify-content: center; }
}

.teaser-nav {
  display: flex;
  position: absolute; top: 50%; z-index: 6;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 12px 26px rgba(36,26,21,.14);
  opacity: 1;
  transition: background .25s ease, color .25s ease, transform .2s ease, opacity .2s ease;
}
.teaser-nav:hover { background: var(--accent); color: #fff; transform: translateY(-50%) scale(1.06); }
.teaser-nav-prev { left: 0; transform: translateY(-50%); }
.teaser-nav-next { right: 0; transform: translateY(-50%); }
.teaser-nav.is-hidden, .teaser-nav:disabled { opacity: 0; pointer-events: none; visibility: hidden; }
@media (max-width: 900px) { .teaser-nav { display: none; } }

.teaser-dots { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 24px; }
.teaser-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: width .35s cubic-bezier(.16,1,.3,1), background .3s ease;
}
.teaser-dot:hover { background: var(--muted); }
.teaser-dot.is-active { width: 26px; background: var(--accent); }

@media (max-width: 640px) {
  .teaser-card { flex-basis: 240px; }
}

.carte-hero {
  padding: clamp(150px, 16vw, 200px) 0 60px;
  text-align: center;
  background: #17110e;
  color: #fbf4eb;
  border-bottom: 1px solid rgba(251,244,235,.12);
}
.carte-hero h1 { color: #fbf4eb; font-size: clamp(46px, 6vw, 80px); }
.carte-hero-text { max-width: 560px; margin: 18px auto 0; color: rgba(251,244,235,.7); }
.menu-section::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(228,135,50,.14), transparent 65%);
  pointer-events: none;
}
.menu-section h2 { color: var(--text); }
.accent-dot { color: var(--yellow); }

.menu-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  margin-inline: auto;
}
.menu-tabs button {
  position: relative;
  z-index: 2;
  min-height: 42px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease;
}
.menu-tabs button.active { color: var(--black); }
.menu-tabs-indicator {
  position: absolute;
  z-index: 1;
  top: 6px; left: 6px;
  height: 42px;
  border-radius: 999px;
  background: var(--yellow);
  transition: transform .4s cubic-bezier(.16,1,.3,1), width .4s cubic-bezier(.16,1,.3,1);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transition: transform .3s ease, border-color .3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228,135,50,.5);
}
.menu-card.is-hidden { display: none; }
.menu-card-media { position: relative; aspect-ratio: 1/0.85; background: var(--surface-3); }
.menu-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-media img { transform: scale(1.08); }
.menu-card-price {
  position: absolute; top: 12px; left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
}
.menu-card-tag {
  position: absolute; top: 12px; right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15,10,8,.6);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.menu-card-body { padding: 16px 18px 20px; }
.menu-card-body h3 { font-size: 18px; margin-bottom: 6px; letter-spacing: 0; }
.menu-card-body p { color: var(--muted); font-size: 13px; line-height: 1.5; }

.sauces-panel {
  margin-top: 40px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.sauces-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.sauces-col h4 span { font-family: Inter, sans-serif; font-size: 11px; color: var(--muted-light); font-weight: 700; }
.sauces-col ul { display: flex; flex-direction: column; gap: 6px; }
.sauces-col li { color: var(--text); font-size: 13.5px; font-weight: 600; }
.sauces-note { flex-basis: 100%; color: var(--muted-light); font-size: 12px; margin-top: 4px; }

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .menu-card-body { padding: 12px 14px 16px; }
  .menu-card-body h3 { font-size: 15px; }
}

/* ---------- Avis : la note réelle mise en scène ----------
   Pensée comme la suite directe du carrousel : même fond crème, et le halo
   rouge que la section menu laisse en bas à droite est repris ici en haut à
   droite, pour que les deux se lisent comme une seule surface continue. */
.avis {
  position: relative;
  background:
    radial-gradient(circle at 88% 0%, rgba(251,17,16,.10), transparent 44%),
    radial-gradient(circle at 8% 78%, rgba(228,135,50,.15), transparent 46%),
    #fbf1e2;
  padding: clamp(20px, 3vw, 40px) 0 clamp(80px, 9vw, 120px);
}
/* Motif pointillé repris des cartes du carrousel : fil conducteur entre les deux sections. */
.avis::before {
  content: "";
  position: absolute; top: clamp(20px, 3vw, 40px); left: max(24px, calc((100vw - var(--max)) / 2));
  width: 78px; height: 54px;
  background-image: radial-gradient(rgba(36,26,21,.16) 1.6px, transparent 1.6px);
  background-size: 10px 10px;
}
.avis-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.avis .eyebrow { background: rgba(251,17,16,.1); color: #fb1110; font-size: 12.5px; padding: 0 16px; min-height: 30px; }

/* États de départ des animations. Toujours rattrapés par finalAvisState()
   (ScrollTrigger + IntersectionObserver + timeout), donc jamais bloqués invisibles. */
.avis .eyebrow,
.avis h2,
.avis-score-number,
.avis-score-meta,
.avis-btn { opacity: 0; }

.avis-score-main { display: flex; align-items: center; gap: 22px; margin-bottom: 22px; }
.avis-score-number {
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(92px, 12vw, 150px);
  line-height: .82;
  color: #fb1110;
  letter-spacing: -.02em;
}
.avis-score-side { display: flex; flex-direction: column; gap: 8px; }

.avis-stars { position: relative; display: inline-block; }
.avis-stars-base,
.avis-stars-fill { display: flex; gap: 4px; }
.avis-stars-base { color: rgba(36,26,21,.16); }
.avis-stars-fill {
  position: absolute; inset: 0;
  color: #fe9400;
  width: 0;
  overflow: hidden;
}
.avis-stars svg { width: 26px; height: 26px; flex-shrink: 0; }

.avis-score-meta { color: #4a3b2e; font-size: 15px; }
.avis-score-meta strong { color: #241a15; font-weight: 800; }
.avis h2 { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.02; color: #241a15; }

.avis-bars { display: flex; flex-direction: column; gap: 26px; }
.avis-bar { opacity: 0; }
.avis-bar-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 9px; }
.avis-bar-name { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #241a15; }
.avis-bar-score {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px; font-weight: 800; color: #fb1110; line-height: 1;
}
.avis-bar-score small { font-size: 14px; color: rgba(36,26,21,.45); margin-left: 2px; }
.avis-bar-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(36,26,21,.1);
  overflow: hidden;
}
.avis-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #fe9400, #fb1110);
}
.avis-bar-count { display: block; margin-top: 8px; font-size: 12.5px; color: #4a3b2e; }
.avis-btn { background: #fb1110; color: #fff; margin-top: 6px; align-self: flex-start; }
.avis-btn:hover { background: #d80d0c; }

@media (max-width: 860px) {
  .avis-inner { grid-template-columns: 1fr; }
  .avis-btn { align-self: stretch; }
}

/* ---------- Récit : l'histoire en une phrase qui s'écrit au scroll ----------
   Pas de colonne texte + photo (trop template) : la typo EST le visuel. Le tampon
   24H et l'icône feu sont posés dans la phrase, à la place des mots. */
.recit {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  background: #17110e;
  padding: clamp(40px, 4vw, 54px) 0;
  overflow: hidden;
  text-align: center;
}
/* Macro peau caramélisée en fond (image fixe, pas de vidéo). */
.recit-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/img/braise-macro.webp") center 42% / cover no-repeat;
  will-change: transform;
}
/* Voile minimal : le centre de l'image est déjà quasi noir, on ne rajoute qu'un
   fondu sur les bords haut/bas pour raccorder aux sections voisines. */
.recit-veil {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,10,7,.72), transparent 22%, transparent 78%, rgba(15,10,7,.78)),
    radial-gradient(ellipse at 50% 50%, rgba(15,10,7,.3) 30%, transparent 70%);
  pointer-events: none;
}
/* Trame pointillée discrète, confinée au centre derrière le texte. */
.recit-grain {
  position: absolute; inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(251,244,235,.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 8%, transparent 46%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 8%, transparent 46%);
  pointer-events: none;
}
.recit .section-inner { position: relative; z-index: 3; }
.recit-inner { max-width: 720px; margin-inline: auto; }

.recit .eyebrow {
  background: rgba(251,17,16,.2);
  color: #ff6a4d;
  font-size: 12.5px;
  padding: 0 16px;
  min-height: 30px;
  opacity: 0;
  margin: 0 auto 22px;
}

/* Titre : même traitement que les h2 du reste du site (Barlow condensé),
   révélé ligne par ligne derrière un masque. */
.recit-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  color: #fbf4eb;
  margin-bottom: 22px;
}
.recit-line { display: block; overflow: hidden; }
.recit-line > span { display: block; transform: translateY(105%); }
.recit-title em { font-style: normal; color: #fe9400; }

/* Corps de texte : Inter, casse normale, comme partout ailleurs sur le site.
   C'est ce qui manquait — tout était en capitales condensées. */
.recit-lead {
  max-width: 52ch;
  margin: 0 auto;
  font-size: clamp(15.5px, 1.55vw, 17.5px);
  line-height: 1.7;
  color: rgba(251,244,235,.82);
  opacity: 0;
}

/* Trois repères factuels, discrets, en ligne. */
.recit-reperes {
  list-style: none;
  margin: clamp(26px, 3.4vw, 38px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 0;
}
.recit-reperes li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 clamp(18px, 2.6vw, 32px);
  opacity: 0;
}
.recit-reperes li + li::before {
  content: "";
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: rgba(251,244,235,.22);
}
.recit-reperes strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 800;
  color: #fe9400;
  line-height: 1;
}
.recit-reperes span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(251,244,235,.6);
}

.recit-foot { margin-top: clamp(30px, 4vw, 42px); }
.recit-btn {
  background: #fb1110;
  color: #fff;
  min-height: 56px;
  min-width: 220px;
  opacity: 0;
}
.recit-btn:hover { background: #d80d0c; }

@media (max-width: 560px) {
  .recit-btn { width: 100%; }
  .recit-reperes { flex-direction: column; gap: 16px; }
  .recit-reperes li { padding: 0; }
  .recit-reperes li + li::before { display: none; }
}

/* ---------- Reels homepage ---------- */
/* ---------- Reels « Le braisé prend vie » ----------
   Composition en grille à colonnes EGALES : aucune carte ne peut recouvrir sa
   voisine ni changer de gabarit pendant la navigation. L'état actif se joue
   uniquement sur border / opacity / scale(1.015) — jamais sur la taille de piste. */
.reels-story {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
311deg, rgb(255 246 231 / 31%), rgba(255, 246, 231, .42)), url(../assets/img/reels-backdrop.png) center / cover no-repeat, #fff1df47;
    color: #241a15;
    padding: clamp(72px, 7vw, 110px) clamp(20px, 4vw, 64px) clamp(80px, 7.5vw, 120px);
    /* height: 90vh retire : la hauteur fixe centrait le contenu et laissait
       ~85px de vide sous les reels, juste avant la barre des avantages.
       La section est desormais a la hauteur de son contenu (mise en page inchangee). */
    display: flex;
    align-items: center;
    justify-content: center;
}
.reels-story-inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 33%) minmax(0, 1fr);
  gap: clamp(70px, 5vw, 90px);   /* jamais moins de 70px entre texte et vidéos */
  align-items: center;
}

/* --- Colonne éditoriale --- */
.reels-copy { position: relative; z-index: 2; }
.reels-copy::before {                 /* couronne graffiti, décor secondaire */
  content: "";
  position: absolute;
  width: 74px;
  height: 46px;
  left: 54%;
  top: -34px;
  background: #e48732;
  opacity: .3;
  pointer-events: none;
  user-select: none;
  transform: rotate(-8deg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='100' height='66' viewBox='0 0 100 66' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 46 26 8l14 25L61 7l5 32 25-9-17 25H17' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='100' height='66' viewBox='0 0 100 66' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 46 26 8l14 25L61 7l5 32 25-9-17 25H17' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.reels-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin: 0 0 24px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(251,17,16,.08);
  color: #fb1110;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.reels-kicker span { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.reels-copy h2 {
  max-width: 8ch;
  font-size: clamp(74px, 6.4vw, 118px);
  line-height: .86;
  letter-spacing: -.035em;
  color: #241a15;
}
.reels-copy h2 strong { display: block; color: #f04a13; }
.reels-copy > p:not(.reels-kicker) {
  max-width: 410px;
  margin: 26px 0 30px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(36,26,21,.86);
}
.reels-cta {
  min-width: 0;
  padding-inline: 34px;
  background: #fb1110;
  color: #fff;
  box-shadow: 0 16px 30px rgba(251,17,16,.22);
}
.reels-cta:hover { background: #d80d0c; color: #fff; }

/* --- Scène des reels --- */
.reels-stage { min-width: 0; position: relative; }
.reels-stage::before {                /* trait graffiti, décor secondaire */
  content: "";
  position: absolute;
  left: -30px;
  bottom: 92px;
  width: 240px;
  height: 38px;
  background: #e48732;
  opacity: .22;
  pointer-events: none;
  user-select: none;
  transform: rotate(-6deg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='320' height='54' viewBox='0 0 320 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 41C83 14 172 6 311 16' stroke='black' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='320' height='54' viewBox='0 0 320 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 41C83 14 172 6 311 16' stroke='black' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Colonnes strictement égales : pas de reflow quand l'actif change. */
.reels-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 1.9vw, 30px);
  align-items: start;
  min-width: 0;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;          /* réserve la place dès le 1er paint : zéro CLS */
  overflow: hidden;
  border-radius: 22px;
  background: #1b120d;           /* fond avant chargement de la vidéo */
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 18px 34px rgba(36,26,21,.16);
  opacity: .84;
  /* Pas de scale : la composition reste strictement stable au changement d'actif. */
  transition: opacity .28s ease, border-color .28s ease, box-shadow .28s ease;
}
/* Voile chaud sur les reels en veille : on voit tout de suite lequel a le focus,
   sans filtre qui dégraderait l'image. */
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;              /* au-dessus de la vidéo, sous les textes (z-index 2) */
  pointer-events: none;
  background: rgba(27,21,17,.28);
  transition: opacity .28s ease;
}
.reel-card.is-active::after { opacity: 0; }
.reel-card.is-active {
  border-color: #e48732;
  opacity: 1;
  box-shadow: 0 22px 44px rgba(196,71,45,.2);
}
/* Halo qui respire uniquement pendant la lecture : signale le reel en cours. */
.reel-card.is-active.is-playing { animation: reelPulse 2.4s ease-in-out infinite; }
@keyframes reelPulse {
  0%, 100% { box-shadow: 0 22px 44px rgba(196,71,45,.2), 0 0 0 0 rgba(228,135,50,.34); }
  50%      { box-shadow: 0 22px 44px rgba(196,71,45,.24), 0 0 0 9px rgba(228,135,50,0); }
}
@media (prefers-reduced-motion: reduce) {
  .reel-card.is-active.is-playing { animation: none; }
}
/* Le poster est peint en fond de carte : il reste visible tant que la vidéo
   n'a pas décodé de frame, et aussi en cas d'erreur de chargement. */
.reel-card {
  background-color: #1b1511;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.reel-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .22s ease;
}
.reel-card.is-ready video { opacity: 1; }
.reel-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,12,8,.22) 0%, transparent 26%, transparent 52%, rgba(20,12,8,.86) 100%);
}
.reel-topline,
.reel-caption,
.reel-play { position: absolute; z-index: 2; }
.reel-topline {
  top: 14px;
  left: 14px;
}
.reel-topline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(20,12,8,.5);
  backdrop-filter: blur(6px);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.reel-topline svg { width: 14px; height: 14px; }

.reel-play {
  top: 50%; left: 50%;
  display: grid;
  place-items: center;
  width: 66px; height: 66px;
  border: 0;
  border-radius: 50%;
  background: rgba(20,12,8,.42);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
}
.reel-play:hover { background: rgba(251,17,16,.72); transform: translate(-50%, -50%) scale(1.06); }
.reel-play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.reel-play svg { width: 26px; height: 26px; }
.reel-card.is-playing .reel-play { opacity: 0; }
.reel-card.is-playing:hover .reel-play,
.reel-card.is-playing .reel-play:focus-visible { opacity: 1; }
.reel-card.is-playing .reel-icon-play,
.reel-card:not(.is-playing) .reel-icon-pause { display: none; }

.reel-caption {
  left: 0; right: 0; bottom: 0;
  padding: 0 16px 16px;
}
.reel-progress {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.reel-progress::before {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}
.reel-progress span {
  position: absolute;
  left: 0;
  height: 3px;
  width: 0;
  border-radius: 999px;
  background: #e48732;
  transition: width .12s linear;
}
.reel-progress small {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  font-variant-numeric: tabular-nums;
}
.reel-caption h3 {
  font-size: clamp(17px, 1.25vw, 21px);
  letter-spacing: .01em;
  margin-bottom: 4px;
}
.reel-caption p {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.8);
}

/* --- Navigation, proche des reels --- */
.reels-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.reels-control > button {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(36,26,21,.2);
  background: rgba(255,255,255,.6);
  color: #241a15;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.reels-control > button:hover { background: #fb1110; border-color: #fb1110; color: #fff; }
.reels-control > button:focus-visible { outline: 3px solid #fb1110; outline-offset: 2px; }
.reels-control svg { width: 17px; height: 17px; }
.reels-dots { display: flex; align-items: center; gap: 7px; }
.reels-dots button {
  width: 7px; height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(36,26,21,.24);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.reels-dots button.is-active { width: 24px; background: #fb1110; }
.reels-dots button:focus-visible { outline: 2px solid #fb1110; outline-offset: 3px; }

/* --- Tablette : 2 reels visibles, on suggère le swipe --- */
@media (max-width: 1199px) {
  .reels-story-inner { grid-template-columns: 1fr; gap: clamp(34px, 5vw, 48px); }
  .reels-copy h2 { max-width: none; }
  .reels-copy::before { left: auto; right: 6%; top: -26px; }
  .reels-stage::before { display: none; }
  .reels-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .reels-track::-webkit-scrollbar { display: none; }
  .reel-card {
    flex: 0 0 clamp(240px, 42vw, 300px);
    scroll-snap-align: center;
    transform: none;                 /* pas de scale en piste scrollable */
  }
  .reel-card.is-active { transform: none; }
}

/* --- Mobile : 1 reel centré, texte au-dessus --- */
@media (max-width: 767px) {
  .reels-story { padding: 64px 0 76px; }
  .reels-story-inner { gap: 30px; }
  .reels-copy,
  .reels-stage > .reels-control { padding-inline: 20px; }
  .reels-copy h2 { font-size: clamp(48px, 13vw, 62px); }
  .reels-copy > p:not(.reels-kicker) { margin: 20px 0 24px; font-size: 16px; }
  .reels-cta { width: 100%; }
  .reels-track { gap: 16px; padding-inline: 20px; }
  .reel-card { flex-basis: min(300px, 78vw); border-radius: 20px; }
  .reels-control { margin-top: 26px; }
}

/* --- Accessibilité : mouvement réduit --- */
@media (prefers-reduced-motion: reduce) {
  .reel-card,
  .reel-play,
  .reels-dots button,
  .reel-progress span { transition: none; }
  .reel-card.is-active { transform: none; }
  .reels-copy::before,
  .reels-stage::before { display: none; }
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 32px 24px 28px;
  background: var(--bm-dark-surface);
  color: #fff;
  text-align: center;
}
.site-footer img {
  width: 88px;
  height: 36px;
  object-fit: contain;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.site-footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.48);
}
.site-footer-seo { font-size: 12.5px; color: rgba(255,255,255,.38); }

.reveal {
  opacity: .94;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero {
    min-height: 94vh;
    padding-top: 94px;
  }
  .hero-actions .btn { width: 100%; }
  .menu-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE LA CARTE — hero pleine largeur + sidebar + grille 4 colonnes
   Données réelles : data/braise-master-menu.json (79 produits, 10 catégories).
   ============================================================ */
.carte-page { background: var(--bm-cream); }
.carte-shell {
  width: 100%;
  max-width: 1520px;
  margin-inline: auto;
  padding-inline: clamp(20px, 2.6vw, 40px);
}

/* --- HERO --- */
.carte-hero {
  position: relative;
  min-height: clamp(430px, 34vw, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #110905;
  padding-top: var(--nav-height);
}
.carte-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.carte-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,9,5,.88) 0%, rgba(17,9,5,.62) 38%, rgba(17,9,5,.14) 72%, rgba(17,9,5,.05) 100%);
}
.carte-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
.carte-hero-copy { max-width: 520px; }
.carte-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(242,138,33,.55);
  border-radius: 999px;
  color: var(--bm-orange);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.carte-hero h1 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--bm-cream);
}
.carte-hero h1 em { font-style: normal; color: var(--bm-orange); }
.carte-hero-text {
  max-width: 450px;
  margin: 20px 0 26px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(248,238,223,.82);
}
.carte-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.carte-hero-cta {
  min-height: 46px;
  padding-inline: 26px;
  background: var(--bm-orange);
  color: var(--bm-dark);
}
.carte-hero-cta:hover { filter: brightness(1.06); }
.carte-hero-ghost {
  min-height: 46px;
  padding-inline: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--bm-cream);
}
.carte-hero-ghost:hover { border-color: var(--bm-orange); color: var(--bm-orange); }

.carte-hero-rating {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 165px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,12,7,.6);
  backdrop-filter: blur(8px);
  text-align: center;
}
.carte-hero-stars { color: var(--bm-orange); font-size: 15px; font-weight: 800; }
.carte-hero-rating span:last-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(248,238,223,.6);
}

/* --- Grille sidebar + contenu --- */
.carte-layout {
  display: grid;
  grid-template-columns: 262px minmax(0, 1fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: start;
  padding-block: clamp(40px, 4vw, 62px) clamp(56px, 6vw, 80px);
}

/* --- Sidebar --- */
.carte-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 22px);
  max-height: calc(100dvh - var(--nav-height) - 44px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
}
.carte-search { position: relative; display: block; }
.carte-search input {
  width: 100%;
  height: 46px;
  padding: 0 42px 0 16px;
  border-radius: 15px;
  border: 1px solid rgba(26,17,13,.12);
  background: #fffaf3;
  color: var(--bm-dark);
  font-size: 14px;
}
.carte-search input::placeholder { color: rgba(26,17,13,.42); }
.carte-search input:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 1px; }
.carte-search svg {
  position: absolute; right: 15px; top: 50%;
  transform: translateY(-50%);
  color: rgba(26,17,13,.45);
  pointer-events: none;
}

.carte-box {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(26,17,13,.09);
  background: #fffaf3;
  box-shadow: 0 4px 16px rgba(26,17,13,.05);
}
.carte-cat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 11px;
  color: rgba(26,17,13,.72);
  font-size: 13.5px;
  font-weight: 600;
  transition: background-color .18s ease-out, color .18s ease-out;
}
.carte-cat:hover { background: rgba(26,17,13,.045); color: var(--bm-dark); }
.carte-cat.is-active {
  background: rgba(239,43,35,.07);
  color: var(--bm-red);
  font-weight: 800;
}
.carte-cat.is-active::before {
  content: "";
  position: absolute; left: 0; top: 9px; bottom: 9px;
  width: 3px;
  border-radius: 999px;
  background: var(--bm-red);
}
.carte-cat-icon {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(26,17,13,.05);
  color: currentColor;
}
.carte-cat.is-active .carte-cat-icon { background: rgba(239,43,35,.12); }
.carte-cat-icon svg { width: 15px; height: 15px; }
.carte-cat:focus-visible { outline: 2px solid var(--bm-orange); outline-offset: 2px; }

.carte-note { text-align: center; padding: 22px 18px; }
.carte-note img { width: 46px; margin: 0 auto 12px; }
.carte-note h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bm-dark);
  margin-bottom: 8px;
}
.carte-note p { font-size: 12.5px; line-height: 1.5; color: rgba(26,17,13,.6); }

/* --- Contenu produits --- */
.carte-main { min-width: 0; }
.carte-cat-block { margin-bottom: clamp(42px, 4vw, 58px); }
.carte-cat-block:last-of-type { margin-bottom: clamp(48px, 5vw, 64px); }
.carte-cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.carte-cat-head h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bm-dark);
  line-height: 1;
}
.carte-cat-head p { margin-top: 5px; font-size: 13px; color: rgba(26,17,13,.55); }

.carte-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* --- Carte produit --- */
.carte-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff9f1;
  border: 1px solid rgba(26,17,13,.07);
  box-shadow: 0 3px 12px rgba(26,17,13,.05);
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.carte-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(26,17,13,.12); }
.carte-card-media {
  aspect-ratio: 4 / 3;      /* réserve la place : aucun saut au chargement */
  overflow: hidden;
  background: #eadfd2;
}
.carte-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease-out;
}
.carte-card:hover .carte-card-media img { transform: scale(1.025); }
.carte-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 15px 15px;
}
.carte-card-body h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--bm-dark);
}
.carte-card-body p {
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.42;
  color: rgba(26,17,13,.58);
  min-height: 36px;          /* hauteur réservée : les prix restent alignés */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.carte-card-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.carte-card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--bm-dark);
  font-variant-numeric: tabular-nums;
}
.carte-add {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--bm-orange);
  color: var(--bm-dark);
  cursor: pointer;
  transition: transform .16s ease-out, filter .16s ease-out, background-color .2s ease-out;
}
.carte-add:hover { filter: brightness(1.07); transform: scale(1.06); }
.carte-add:active { transform: scale(.96); }
.carte-add:focus-visible { outline: 2px solid var(--bm-dark); outline-offset: 2px; }
.carte-add-check { display: none; }
.carte-add.is-added { background: #3a7a4e; color: #fff; }
.carte-add.is-added .carte-add-plus { display: none; }
.carte-add.is-added .carte-add-check { display: block; }
.carte-card.is-hidden { display: none; }

/* --- CTA final --- */
.carte-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 210px;
  padding: 26px clamp(24px, 3vw, 46px);
  border-radius: 20px;
  overflow: hidden;
  background: #140c07;
}
.carte-cta-bg {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.carte-cta-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,12,7,.25) 0%, rgba(20,12,7,.72) 30%, rgba(20,12,7,.96) 46%, #140c07 60%);
}
.carte-cta-copy { position: relative; z-index: 2; margin-left: auto; width: min(430px, 46%); }
.carte-cta-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bm-orange);
  margin-bottom: 10px;
}
.carte-cta h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bm-cream);
  line-height: 1;
}
.carte-cta-copy > p {
  margin: 10px 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(248,238,223,.72);
}
.carte-cta-btn {
  min-height: 46px;
  padding-inline: 24px;
  background: var(--bm-orange);
  color: var(--bm-dark);
}
.carte-cta-btn:hover { filter: brightness(1.06); }
.carte-cta-mascot {
  position: relative;
  z-index: 2;
  width: clamp(120px, 13vw, 172px);
  margin-left: 22px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1360px) {
  .carte-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1080px) {
  .carte-layout { grid-template-columns: minmax(0, 1fr); }
  .carte-sidebar, .carte-main { min-width: 0; }
  .carte-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }
  .carte-search { flex: 1 1 100%; }
  .carte-sidebar .carte-box[data-catalog-nav] {
    flex: 1 1 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .carte-sidebar .carte-box[data-catalog-nav]::-webkit-scrollbar { display: none; }
  .carte-cat { flex-shrink: 0; white-space: nowrap; }
  .carte-cat.is-active::before { display: none; }
  .carte-note { display: none; }
}
@media (max-width: 900px) {
  .carte-hero-inner { flex-direction: column; }
  .carte-hero-rating { align-self: flex-start; }
}
@media (max-width: 900px) {
  .carte-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .carte-hero { min-height: clamp(520px, 78vh, 620px); align-items: flex-end; padding-bottom: 44px; }
  .carte-hero-img { object-position: 62% center; }
  .carte-hero-veil { background: linear-gradient(180deg, rgba(17,9,5,.55) 0%, rgba(17,9,5,.35) 40%, rgba(17,9,5,.92) 100%); }
  .carte-hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .carte-hero-rating { display: none; }
  .carte-hero-actions .btn { flex: 1 1 100%; }
  .carte-grid { gap: 14px; }
  .carte-card-body { padding: 12px; }
  .carte-card-body h3 { font-size: 15px; }
  .carte-card-price { font-size: 16px; }
  .carte-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; min-height: 0; }
  .carte-cta-bg { width: 100%; height: 42%; inset: 0 0 auto 0; }
  .carte-cta-veil { background: linear-gradient(180deg, rgba(20,12,7,.35) 0%, rgba(20,12,7,.9) 38%, #140c07 55%); }
  .carte-cta-copy { width: 100%; margin: 120px 0 0; }
  .carte-cta-mascot { display: none; }
}
@media (max-width: 359px) {
  .carte-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOTION — page LA CARTE
   Les états de départ vivent ici ; GSAP prend le relais au scroll.
   Chaque famille d'éléments a son propre langage (voir js/main.js).
   ============================================================ */

/* Ligne de braise : progression de lecture sous la navbar. */
.carte-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  height: 2px;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease-out;
}
.carte-progress.is-on { opacity: 1; }
.carte-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bm-orange), var(--bm-red));
  box-shadow: 0 0 8px rgba(242,138,33,.55);
  transform-origin: left;
}

/* --- États de départ (annulés par GSAP dès qu'il tourne) --- */
.js-motion .carte-hero-img { clip-path: inset(0 0 0 100%); }
.js-motion .carte-line { display: block; overflow: hidden; }
.js-motion .carte-line > span { display: block; }
.js-motion .carte-hero-eyebrow,
.js-motion .carte-hero-text,
.js-motion .carte-hero-actions .btn,
.js-motion .carte-hero-rating { opacity: 0; }
.js-motion .carte-cat-head h2,
.js-motion .carte-cat-head p { opacity: 0; }
.js-motion .carte-card { opacity: .9; }
.js-motion .carte-cta-copy > *,
.js-motion .carte-cta-mascot { opacity: 0; }

/* Le trait chaud qui traverse la photo au survol. */
.carte-card-media { position: relative; }
.carte-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255,196,120,.28) 50%, transparent 62%);
  transform: translateX(-110%);
  transition: transform .42s ease-out;
}
.carte-card:hover .carte-card-media::after { transform: translateX(110%); }

/* Bouton + : rotation au survol, bascule en check à l'ajout. */
.carte-add-plus { transition: transform .2s ease-out; }
.carte-add:hover .carte-add-plus { transform: rotate(90deg); }

/* Onde de chaleur sur le CTA final. */
.carte-cta-btn { position: relative; overflow: hidden; }
.carte-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255,225,180,.45) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform .5s ease-out;
  pointer-events: none;
}
.carte-cta-btn:hover::after { transform: translateX(110%); }

/* Curseur actif du sidebar : une seule barre qui glisse. */
.carte-box[data-catalog-nav] { position: relative; }
.carte-cursor {
  position: absolute;
  left: 6px; right: 6px;
  height: 44px;
  border-radius: 11px;
  background: rgba(239,43,35,.07);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.carte-cat { position: relative; z-index: 1; }
/* Le fond de l'item actif est désormais porté par le curseur animé. */
.js-motion .carte-cat.is-active { background: transparent; }

/* Braises du hero. */
.carte-embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.carte-ember {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--bm-orange);
  opacity: 0;
}

/* Sécurité : sans JS, ou en mouvement réduit, tout reste visible. */
@media (prefers-reduced-motion: reduce) {
  .js-motion .carte-hero-img { clip-path: none; }
  .js-motion .carte-hero-eyebrow,
  .js-motion .carte-hero-text,
  .js-motion .carte-hero-actions .btn,
  .js-motion .carte-hero-rating,
  .js-motion .carte-cat-head h2,
  .js-motion .carte-cat-head p,
  .js-motion .carte-card,
  .js-motion .carte-cta-copy > *,
  .js-motion .carte-cta-mascot { opacity: 1 !important; }
  .carte-embers, .carte-progress { display: none; }
  .carte-card-media::after, .carte-cta-btn::after { display: none; }
}

/* ============================================================
   HOME — suite après les Reels
   Composition éditoriale dense : promesses / incontournables + map /
   avis + réseaux / CTA final. Rythme vertical serré (28–34px).
   ============================================================ */
.home-shell {
  width: 100%;
  max-width: 1460px;
  margin-inline: auto;
  padding-inline: clamp(20px, 2.4vw, 32px);
}
/* L'ecart reels -> promesses reste dans 28-40px (padding-bottom des reels inclus). */
.reels-story { padding-bottom: clamp(14px, 1.4vw, 18px); }
.promesses { background: var(--bm-cream); padding-top: clamp(20px, 1.9vw, 25px); }
.home-duo, .home-avis, .home-cta { background: var(--bm-cream); padding-top: clamp(26px, 2.6vw, 34px); }
/* Le telephone deborde du bandeau : padding = debordement (~58px) + 44px de respiration. */
/* 50-70px sous le bandeau, le debordement du telephone (56px) compris. */
.home-cta { padding-bottom: clamp(44px, 4vw, 58px); }

.home-card {
  background: #fffaf3;
  border: 1px solid rgba(32,19,14,.07);
  border-radius: 24px;
  padding: clamp(20px, 1.9vw, 26px);
}
.home-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.home-card-head h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  color: #20130e;
  line-height: 1;
}
.home-card-head > div > p { margin-top: 7px; font-size: 13.5px; color: rgba(32,19,14,.6); }
.home-pin { display: inline-flex; width: 27px; height: 27px; color: var(--bm-red); }

/* Precision "a emporter" + badge halal maison : texte reel, indexable, discret.
   Aucun logo ni nom de certificateur (Achahada) tant que l'accord ecrit manque. */
.home-map-seo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(32,19,14,.6);
}
.home-halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(47,125,77,.32);
  background: rgba(47,125,77,.08);
  color: #2f7d4d;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-halal-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.home-ghost-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 19px;
  border-radius: 999px;
  border: 1px solid rgba(32,19,14,.16);
  background: #fbf1e4;
  color: #20130e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background-color .2s ease-out, border-color .2s ease-out;
}
.home-ghost-btn::after { content: "→"; font-size: 12px; }
.home-ghost-btn:hover { background: #20130e; border-color: #20130e; color: #fbf1e4; }

/* --- 1. Barre des promesses --- */
.promesses-bar {
  list-style: none;
  margin: 0;
  padding: clamp(14px, 1.4vw, 16px) clamp(16px, 2vw, 30px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 114px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(32,19,14,.07);
  background: #fffaf3;
}
.promesse {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  text-align: center;
}
.promesse + .promesse::before {
  content: "";
  position: absolute; left: 0; top: 4%; bottom: 4%;
  width: 1px;
  background: linear-gradient(180deg, rgba(32,19,14,0), rgba(32,19,14,.2) 22%, rgba(32,19,14,.2) 78%, rgba(32,19,14,0));
}
.promesse-icon { width: 45px; height: 45px; flex-shrink: 0; color: var(--bm-orange); }
.promesse-icon svg { width: 100%; height: 100%; }
.promesse h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #20130e;
  line-height: 1.05;
}
.promesse p { margin: 0; font-size: 11.5px; line-height: 1.35; color: rgba(32,19,14,.58); }

/* --- 2. Incontournables + map --- */
.home-duo-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 22px;
  align-items: stretch;
}
.home-tops, .home-map-card { display: flex; flex-direction: column; }
/* Marge interieure reduite cote produits : la grille occupe toute la largeur utile. */
.home-tops { padding-inline: clamp(14px, 1.3vw, 18px); }
.home-tops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(22px, 2vw, 28px);
  margin-bottom: 0;
}
.mini-card {
  display: flex;
  flex-direction: column;
  transition: transform .25s ease-out;
}
.mini-card:hover { transform: translateY(-3px); }
.mini-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  overflow: hidden;
  background: #eadfd2;
}
.mini-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease-out; }
.mini-card:hover .mini-card-media img { transform: scale(1.025); }
.mini-card-body { padding-top: 12px; display: flex; flex-direction: column; flex: 1; }
.mini-card-body h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #20130e;
}
.mini-card-foot {
  margin-top: auto;
  padding-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mini-card-price { font-size: 18px; font-weight: 800; color: var(--bm-red); }
.mini-add {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: var(--bm-orange);
  color: #20130e;
  cursor: pointer;
  transition: transform .18s var(--nav-ease), filter .2s ease-out, background-color .2s ease-out;
}
.mini-add:hover { transform: scale(1.06); filter: brightness(1.06); }
.mini-add:active { transform: scale(.90); }
.mini-add:focus-visible { outline: 2px solid #20130e; outline-offset: 2px; }
/* Confirmation d'ajout : la coche remplace le +, la card ne bouge pas. */
.mini-add-check { display: none; }
.mini-add.is-added { background: #3a7a4e; color: #fff; }
.mini-add.is-added .mini-add-plus { display: none; }
.mini-add.is-added .mini-add-check { display: block; }

/* Map */
.home-map {
  position: relative;
  flex: 1;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #eadfd2;
}
.home-map-frame { position: relative; flex: 1; display: flex; border-radius: 16px; overflow: hidden; }
.home-map-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: min(52%, 265px);
  height: 66px;
  background: linear-gradient(110deg, rgba(248,238,223,.88) 0%, rgba(248,238,223,.72) 58%, rgba(248,238,223,0) 100%);
  pointer-events: none;
}
.home-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
/* Pas de voile sur toute la carte : il blanchissait la map.
   Le petit masque .home-map-frame::before suffit à calmer le cartouche Google. */
.home-map::before { display: none; }
/* Cadre de marque : l'encadrement appartient a Braise Master, pas a Google. */
.home-map::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(32,19,14,.12);
  box-shadow: inset 0 0 0 1px rgba(242,138,33,.28);
  pointer-events: none;
}
/* Pin maison, pose au-dessus du marqueur Google pour prendre la priorite visuelle. */
.home-map-pin {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 3;
  width: 50px; height: 64px;
  transform: translate(-50%, -100%);
  color: var(--bm-red);
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(32,19,14,.45));
}
.home-map-pin svg { width: 100%; height: 100%; display: block; }
.home-map-pin::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -9px;
  width: 34px; height: 34px;
  margin-left: -17px;
  border-radius: 50%;
  background: rgba(239,43,35,.28);
  animation: bmPinPulse 2.6s ease-out infinite;
}
@keyframes bmPinPulse {
  0%   { transform: scale(.5); opacity: .75; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.home-map-info {
  position: absolute;
  bottom: 26px; right: 14px;
  z-index: 4;
  width: 246px;
  padding: 13px 15px;
  border-radius: 16px;
  background: #fffaf3;
  border: 1px solid rgba(32,19,14,.1);
  border-left: 4px solid var(--bm-orange);
  box-shadow: 0 14px 34px rgba(32,19,14,.22);
}
.home-map-name {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  color: #20130e;
  line-height: 1.02;
  margin-bottom: 5px;
}
.home-map-adresse { font-size: 12px; line-height: 1.4; color: rgba(32,19,14,.62); }
.home-map-open {
  display: flex; align-items: center; gap: 6px;
  margin-top: 9px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  color: #2f7d4d;
}
.home-map-open span { width: 7px; height: 7px; border-radius: 50%; background: #2f7d4d; }
.home-map-hours { margin-top: 3px; font-size: 13px; font-weight: 800; color: #20130e; }
.home-map-actions { display: flex; gap: 8px; margin-top: 11px; }
.home-mini-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(32,19,14,.16);
  color: #20130e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color .2s ease-out;
}
.home-mini-btn:hover { background: rgba(32,19,14,.06); }

/* --- 3. Avis + réseaux --- */
.home-avis-card {
  display: grid;
  grid-template-columns: 62fr 38fr;
  gap: 28px;
}
/* Un seul avis disponible : la colonne temoignage se resserre, la colonne
   reseaux recupere la place (voir data-avis-count dans layout/avis-social.php). */
.home-avis-card[data-avis-count="1"] { grid-template-columns: 52fr 48fr; }
/* Colonne note un peu plus large : le titre tient sur 2 lignes au lieu de 3,
   la carte perd ~30px de haut et le trou de la colonne reseaux se resserre. */
.home-avis-card[data-avis-count="1"] .home-avis-left { grid-template-columns: minmax(0, 242px) minmax(0, 1fr); gap: 22px; }
.home-avis-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 28px;
  border-left: 1px solid rgba(32,19,14,.08);
}
.home-avis-left { display: grid; grid-template-columns: minmax(0, 236px) minmax(0, 1fr); gap: 26px; }
.home-rating { display: flex; flex-direction: column; align-items: flex-start; }
.home-rating > * { margin: 0; }
.home-rating h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .96;
  color: #20130e;
}
.home-rating h2 em { font-style: normal; color: var(--bm-red); }
.home-rating-score {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 14px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 1;
  color: #20130e;
}
.home-rating-score span { color: var(--bm-orange); font-size: 30px; }
.home-rating-stars { margin-top: 7px; color: var(--bm-orange); font-size: 15px; letter-spacing: .12em; line-height: 1; }
.home-rating-meta {
  margin-top: 7px;
  margin-bottom: 15px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(32,19,14,.55);
}

/* Grille quand on dispose d'au moins 2 avis reels ; sinon un seul avis en vedette.
   Aucun emplacement vide n'est rendu : le nombre de cartes suit les donnees. */
.home-reviews { display: grid; gap: 12px; align-content: start; }
.home-reviews.is-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-reviews.is-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-reviews.is-solo   { grid-template-columns: minmax(0, 1fr); }

.home-review {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 17px;
  border-radius: 16px;
  background: #fbf1e4;
  border: 1px solid rgba(32,19,14,.06);
}
/* Les <p> heritaient des marges globales (~23px chacun) : la carte gonflait
   d'une trentaine de pixels et creusait la colonne voisine. */
.home-review p { margin: 0; }
.home-review header { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.home-review-avatar {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bm-orange);
  color: #20130e;
  font-weight: 800;
  font-size: 15px;
}
.home-review header strong { display: block; font-size: 13.5px; color: #20130e; }
.home-review header small { font-size: 11px; color: rgba(32,19,14,.5); }
.home-review-stars { color: var(--bm-orange); font-size: 13px; letter-spacing: .09em; margin-bottom: 7px; }
.home-review-text { font-size: 13px; line-height: 1.55; color: rgba(32,19,14,.72); }

/* Avis unique : traite en citation editoriale, il remplit toute la colonne. */
.home-review.is-featured {
  flex: 1;
  justify-content: center;
  padding: clamp(20px, 1.9vw, 26px) clamp(20px, 2.1vw, 28px);
  border-radius: 20px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(242,138,33,.13), transparent 58%),
    #fbf1e4;
}
.home-review.is-featured::before {
  content: "\201C";
  position: absolute;
  top: -8px; left: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(242,138,33,.28);
  pointer-events: none;
}
.home-review.is-featured .home-review-stars { font-size: 17px; margin-bottom: 10px; }
.home-review.is-featured .home-review-text {
  position: relative;
  font-size: clamp(14.5px, 1.15vw, 16px);
  line-height: 1.55;
  color: #291912;
  font-weight: 600;
}
.home-review-foot {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(32,19,14,.09);
}
.home-review-foot strong { display: block; font-size: 14px; color: #20130e; }
.home-review-foot small { font-size: 11.5px; color: rgba(32,19,14,.52); }
.home-review-more {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--bm-red);
  white-space: nowrap;
}
.home-review-more:hover { text-decoration: underline; }

.home-avis-right h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  color: #20130e;
  line-height: 1;
}
.home-social-sub { margin-top: 7px; font-size: 13px; color: rgba(32,19,14,.6); }
.home-social-icons { display: flex; gap: 10px; margin: 16px 0 18px; }
.home-social-icons a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(32,19,14,.16);
  color: #20130e;
  transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out;
}
.home-social-icons a:hover { background: var(--bm-orange); border-color: var(--bm-orange); }
.home-social-icons svg { width: 19px; height: 19px; }
.home-feed-note {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(32,19,14,.42);
}
.home-feed { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
.home-feed-item {
  position: relative;
  display: block;
  height: clamp(72px, 6vw, 86px);
  border-radius: 12px;
  overflow: hidden;
  background: #eadfd2;
}
.home-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-out;
}
.home-feed-item:hover img { transform: scale(1.04); }
/* Pastille play sur les visuels qui viennent d'un reel. */
.home-feed-play {
  position: absolute;
  right: 5px; bottom: 5px;
  display: grid;
  place-items: center;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(25,17,13,.62);
  color: #fff;
  pointer-events: none;
}
.home-feed-play svg { width: 8px; height: 8px; }

/* --- 4. CTA final --- */
.home-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2vw, 32px);
  min-height: 206px;
  /* Reserve a droite pour le telephone, qui est sorti du flux (voir .home-cta-phone). */
  padding: 24px 214px 24px clamp(26px, 3vw, 44px);
  border-radius: 24px;
  /* overflow visible : le telephone doit deborder sous le bandeau.
     Les couches de fond portent donc elles-memes leur rayon. */
  overflow: visible;
  background: #19100c;
}
.home-cta-food {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}
.home-cta-veil {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(25,16,12,.18) 0%, rgba(25,16,12,.55) 17%, #19100c 34%);
}
.home-cta-copy { position: relative; z-index: 2; margin-left: 32%; max-width: 470px; }
.home-cta-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bm-orange); margin-bottom: 9px;
}
.home-cta-copy h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bm-cream);
  line-height: 1;
}
.home-cta-copy h2 span { display: inline; }
.home-cta-copy h2 span + span { color: var(--bm-orange); }
.home-cta-text { margin: 9px 0 14px; font-size: 13.5px; line-height: 1.45; color: rgba(248,238,223,.72); }
.home-cta-btn { min-height: 48px; padding-inline: 26px; font-size: 13px; background: var(--bm-orange); color: #20130e; }
.home-cta-btn:hover { filter: brightness(1.06); }

.home-cta-steps {
  position: relative;
  z-index: 2;
  padding: 15px 20px;
  border-radius: 18px;
  border: 1px solid rgba(242,138,33,.32);
  background: rgba(242,138,33,.07);
}
.home-cta-steps-title {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  color: var(--bm-orange); margin-bottom: 11px; text-align: center;
}
.home-cta-steps ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.home-cta-steps li {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-align: center;
  font-size: 11px; font-weight: 700; line-height: 1.3;
  color: rgba(248,238,223,.8);
}
.home-cta-steps svg { width: 24px; height: 24px; color: var(--bm-orange); }

.home-cta-arrow {
  position: absolute;
  /* Entre le bloc « 2 clics » et le téléphone, sans canvas transparent autour. */
  right: 190px; bottom: 44px;
  z-index: 3;
  width: 92px;
  color: var(--bm-orange);
  opacity: .74;
  pointer-events: none;
}
.home-cta-arrow svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Sorti du flux : sinon sa hauteur imposerait celle du bandeau (cible 190-220px).
   Ancre en bas pour deborder sous le bandeau, comme demande.
   Le visuel est deja en perspective : aucune rotation CSS. */
.home-cta-phone {
    position: absolute;
    z-index: 3;
    right: clamp(18px, 2vw, 30px);
    bottom: -48px;
    width: 184px;
    filter: drop-shadow(-14px 20px 30px rgba(0,0,0,.5));
    pointer-events: none;
}
.home-cta-phone img { width: 100%; height: auto; display: block; }

/* --- Responsive --- */
@media (max-width: 1340px) {
  .home-cta-arrow { display: none; }
}
/* 1001-1200px : le telephone reste, en plus compact, et la colonne texte se
   resserre pour qu'il ne passe jamais devant le bloc "2 clics". */
@media (max-width: 1200px) {
  .home-cta-banner { grid-template-columns: minmax(0, 1fr) auto; padding-right: 154px; }
  .home-cta-copy { margin-left: 30%; max-width: 330px; }
  .home-cta-phone { width: 112px; bottom: -34px; right: 22px; }
  .home-cta-steps { padding: 13px 16px; }
  .home-cta-steps ul { gap: 14px; }
  .home-cta { padding-bottom: 56px; }
}
@media (max-width: 1100px) {
  .promesses-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 22px; }
  .promesse:nth-child(4)::before { display: none; }
  .home-duo-grid { grid-template-columns: minmax(0, 1fr); }
  .home-avis-card,
  .home-avis-card[data-avis-count="1"] { grid-template-columns: minmax(0, 1fr); }
  .home-avis-right { padding-left: 0; padding-top: 22px; border-left: 0; border-top: 1px solid rgba(32,19,14,.08); }
  .home-reviews.is-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Le telephone du CTA est masque sous 1200px : plus besoin de reserver son debordement. */
  .home-cta { padding-bottom: clamp(44px, 5vw, 52px); }
}
@media (max-width: 860px) {
  /* Mobile : le telephone revient dans le flux, centre sous le bouton,
     et deborde legerement du bandeau comme en desktop. */
  .home-cta-banner { grid-template-columns: minmax(0, 1fr); padding: 24px clamp(20px, 5vw, 28px) 26px; }
  .home-cta-phone {
    position: static;
    width: 122px;
    margin: 6px auto -56px;   /* le padding bas du bandeau en absorbe 26 */
    right: auto; bottom: auto;
  }
  .home-cta-food { width: 100%; height: 40%; inset: 0 0 auto 0; border-radius: 24px 24px 0 0; }
  .home-cta-veil { background: linear-gradient(180deg, rgba(25,16,12,.4) 0%, rgba(25,16,12,.9) 34%, #19100c 52%); }
  .home-cta-copy { margin-left: 0; margin-top: 120px; max-width: none; }
  .home-cta { padding-bottom: 64px; }
  .home-avis-left { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 720px) {
  .promesses-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promesse::before { display: none !important; }
  /* Produits : défilement horizontal au doigt. */
  .home-tops-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: -4px;
    padding-inline: 4px;
  }
  .home-tops-grid::-webkit-scrollbar { display: none; }
  .mini-card { flex: 0 0 min(150px, 42vw); scroll-snap-align: start; }
  .home-card-head { flex-direction: column; align-items: flex-start; }
  /* La fiche adresse ne flotte plus sur la carte. */
  .home-map { display: flex; flex-direction: column; min-height: 0; background: none; }
  .home-map-frame { flex: 0 0 auto; }
  .home-map-frame::before { width: 52%; height: 58px; opacity: .78; }
  .home-map iframe { border-radius: 15px; min-height: 220px; }
  .home-map-info {
    position: static;
    width: 100%;
    margin-top: 12px;
    box-shadow: none;
  }
  .home-reviews,
  .home-reviews.is-grid-3,
  .home-reviews.is-grid-2 { grid-template-columns: minmax(0, 1fr); }
  .home-feed { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; }
  .home-feed img { height: clamp(58px, 17vw, 78px); }
}

/* Accents mascottes et doodles : ils enrichissent la composition sans modifier le layout. */
main { overflow-x: clip; }

.promesses .home-shell,
.home-tops,
.home-map-card,
.home-rating,
.home-avis-right,
.home-cta-banner { position: relative; }

.promesses-art-layer,
.promesses-art-layer *,
.home-tops-doodle,
.home-tops-doodle *,
.home-tops-spark,
.home-tops-spark *,
.home-map-mascot,
.home-map-mascot *,
.home-rating-mascot,
.home-rating-mascot *,
.home-social-mascot,
.home-social-mascot *,
.home-social-spark,
.home-social-spark *,
.home-cta-arrow,
.home-cta-arrow * {
  pointer-events: none;
  user-select: none;
}

.promesses-art-layer img,
.home-tops-doodle img,
.home-tops-spark img,
.home-map-mascot img,
.home-rating-mascot img,
.home-social-mascot img,
.home-social-spark img,
.home-cta-arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.promesses-art-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: visible;
}
.promesses-bar { position: relative; z-index: 2; }
.promesses-peek {
  position: absolute;
  left: -18px;
  top: 18px;
  width: 84px;
  height: 84px;
  overflow: visible;
  opacity: .98;
  transform: translateY(8px) rotate(-3deg);
  transform-origin: bottom left;
}
.promesses-peek img {
  width: 84px;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
}
.promesses-crown {
  position: absolute;
  left: -9px;
  top: -16px;
  width: 36px;
  opacity: .62;
  transform: rotate(-12deg);
}
.promesses-speed { display: none; }

.home-tops-doodle {
  position: absolute;
  z-index: 2;
  right: 120px;
  top: 57px;
  width: 92px;
  opacity: .62;
  transform: rotate(7deg);
}
.home-tops-spark {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 58px;
  width: 24px;
  opacity: .42;
}
.home-card-head,
.home-tops-grid { position: relative; z-index: 2; }

.home-map-card { overflow: visible; isolation: isolate; }
.home-map-card > .home-card-head,
.home-map-card > .home-map { position: relative; z-index: 2; }
.home-map-mascot {
  position: absolute;
  z-index: 4;
  right: -72px;
  bottom: 30px;
  width: 156px;
  filter: drop-shadow(0 6px 10px rgba(50,20,0,.08));
  opacity: 0;
  transform: translateX(42px) rotate(3deg);
  transform-origin: bottom center;
}

.home-reviews { position: relative; z-index: 2; }
.home-rating-mascot {
  position: absolute;
  z-index: 0;   /* sous la carte temoignage : il ne touche jamais la note ni les etoiles */
  left: 150px;
  bottom: calc(-1 * clamp(20px, 1.9vw, 26px));
  width: 92px;
  height: 82px;
  overflow: hidden;
  filter: drop-shadow(0 6px 10px rgba(50,20,0,.08));
  opacity: 0;
  transform: translateY(15px) scale(.96);
  transform-origin: bottom left;
}
.home-rating-mascot img {
  width: 94px;
  max-width: none;
  position: absolute;
  left: 0;
  bottom: -33px;
}
.home-rating > *:not(.home-rating-mascot) { position: relative; z-index: 2; }

.home-social-head {
  position: relative;
  z-index: 2;
  padding-right: 96px;
}
.home-social-icons,
.home-social-bottom { position: relative; z-index: 2; }
.home-social-mascot {
  position: absolute;
  z-index: 1;   /* la galerie (z-index 2) passe devant : il en sort par le haut */
  top: -8px;
  bottom: auto;
  right: 14px;
  width: 100px;
  height: 106px;
  overflow: hidden;
  filter: drop-shadow(0 6px 10px rgba(50,20,0,.08));
  opacity: 0;
  transform: translateY(15px) rotate(3deg) scale(.96);
  transform-origin: bottom right;
}
.home-social-mascot img {
  width: 112px;
  max-width: none;
  position: absolute;
  right: -5px;
  top: -2px;
}
.home-social-spark {
  position: absolute;
  z-index: 2;
  top: 6px;
  right: 106px;
  width: 28px;
  opacity: .45;
  transform: rotate(8deg);
}

.home-cta-arrow img { transform: rotate(8deg); }

@media (prefers-reduced-motion: reduce) {
  .promesses-peek,
  .home-map-mascot,
  .home-rating-mascot,
  .home-social-mascot {
    opacity: 1;
    transform: none;
  }
  .home-map-mascot { transform: none; }
}

@media (max-width: 1100px) {
  .promesses-peek { left: -12px; top: 16px; bottom: auto; width: 74px; height: 74px; }
  .promesses-peek img { width: 74px; left: 0; top: 0; bottom: auto; }
  .home-map-mascot { width: 128px; right: -46px; bottom: 28px; }
  .home-rating-mascot { width: 86px; height: 76px; left: 132px; bottom: calc(-1 * clamp(20px, 1.9vw, 26px)); }
  .home-rating-mascot img { width: 88px; left: 0; bottom: -31px; }
  .home-social-mascot { width: 92px; height: 98px; right: 12px; top: -6px; bottom: auto; }
  .home-social-head { padding-right: 88px; }
}

@media (max-width: 720px) {
  .home-avis-card[data-avis-count="1"] .home-avis-left {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .promesses-peek {
    left: -4px;
    bottom: auto;
    top: -22px;
    width: 58px;
    height: 58px;
  }
  .promesses-peek img {
    width: 58px;
    left: 0;
    top: 0;
    bottom: auto;
  }
  .promesses-speed,
  .promesses-crown,
  .home-social-mascot,
  .home-social-spark { display: none; }
  .home-tops-doodle { right: 8px; top: 68px; width: 68px; opacity: .45; }
  .home-tops-spark { right: 76px; top: 68px; width: 20px; }
  .home-map-mascot {
    width: 84px;
    right: -20px;
    top: 76px;
    bottom: auto;
    transform: translateX(24px) rotate(3deg);
  }
  .home-rating { min-height: 200px; }
  .home-rating-mascot {
    width: 70px;
    height: 62px;
    left: 154px;
    bottom: calc(-1 * clamp(20px, 1.9vw, 26px));
  }
  .home-rating-mascot img {
    width: 72px;
    left: 0;
    bottom: -25px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-map-mascot:hover img { transform: translateX(-2px); }
  .home-social-mascot:hover img { transform: rotate(1.5deg); transform-origin: 72% 18%; }
  .home-rating-mascot:hover img { transform: scale(1.025); transform-origin: 35% 28%; }
}


/* ==========================================================
   V6 — Product cards : même langage que carte.php + hauteur égale
   ========================================================== */
.menu-section-teaser .teaser-page-products {
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.menu-section-teaser .teaser-page-products > .teaser-card.carte-card {
  align-self: stretch !important;
  height: 100% !important;
  min-height: 390px !important;
  border-radius: 16px;
  background: #fff9f1;
}
.menu-section-teaser .teaser-product-card .carte-card-body {
  min-height: 150px;
  height: 100%;
}
.menu-section-teaser .teaser-product-card .teaser-card-title h3 {
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-section-teaser .teaser-product-card .teaser-card-desc {
  min-height: 36px;
  max-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-section-teaser .teaser-product-card .carte-card-foot {
  margin-top: auto;
}
.menu-section-teaser .teaser-product-card .carte-add {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
@media (min-width: 1200px) {
  .menu-section-teaser .teaser-page-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ==========================================================
   V7 — Slider teaser : hauteur unique 350px
   Produits + intro + outro partagent exactement le même gabarit.
   ========================================================== */
.menu-section-teaser .teaser-page,
.menu-section-teaser .teaser-page-products,
.menu-section-teaser .teaser-page[data-solo] {
  min-height: 350px;
  height: 350px;
  max-height: 350px;
  align-items: stretch;
}

.menu-section-teaser .teaser-page-products > .teaser-card.carte-card,
.menu-section-teaser .teaser-product-card {
  height: 350px !important;
  min-height: 350px !important;
  max-height: 350px !important;
  align-self: stretch !important;
  overflow: hidden;
}

.menu-section-teaser .teaser-product-card .teaser-card-media,
.menu-section-teaser .teaser-product-card .carte-card-media {
  flex: 0 0 205px;
  height: 205px;
  min-height: 205px;
  max-height: 205px;
  aspect-ratio: auto;
}

.menu-section-teaser .teaser-product-card .teaser-card-body,
.menu-section-teaser .teaser-product-card .carte-card-body {
  flex: 1 1 auto;
  min-height: 0;
  height: 145px;
  max-height: 145px;
  padding: 12px 14px 13px;
  overflow: hidden;
}

.menu-section-teaser .teaser-product-card .teaser-card-title h3 {
  min-height: 38px;
  max-height: 38px;
  margin: 0;
  font-size: 17px;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-section-teaser .teaser-product-card .teaser-card-desc {
  min-height: 32px;
  max-height: 32px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
}

.menu-section-teaser .teaser-product-card .teaser-card-foot,
.menu-section-teaser .teaser-product-card .carte-card-foot {
  margin-top: auto;
  padding-top: 7px;
  min-height: 38px;
}

.menu-section-teaser .teaser-product-card .teaser-card-price,
.menu-section-teaser .teaser-product-card .carte-card-price {
  font-size: 17px;
}

.menu-section-teaser .teaser-product-card .teaser-add,
.menu-section-teaser .teaser-product-card .carte-add {
  width: 36px;
  height: 36px;
}

/* Intro / Outro : même box de 350px, contenu recentré et compact. */
.menu-section-teaser .teaser-card-cta,
.menu-section-teaser .teaser-card-intro {
  box-sizing: border-box;
  height: 350px !important;
  min-height: 350px !important;
  max-height: 350px !important;
  padding: 26px 54px;
  overflow: hidden;
  align-items: center;
}

.menu-section-teaser .teaser-card-intro {
  padding-right: 24px;
}

.menu-section-teaser .teaser-card-cta::before {
  top: 20px;
  left: 22px;
  width: 62px;
  height: 42px;
}

.menu-section-teaser .teaser-card-cta-copy {
  flex: 0 1 350px;
  max-width: 350px;
  min-width: 0;
}

.menu-section-teaser .teaser-card-cta h3 {
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.02;
}

.menu-section-teaser .teaser-card-cta-underline {
  width: 64px;
  height: 3px;
  margin: 10px 0 12px;
}

.menu-section-teaser .teaser-card-cta-copy p {
  font-size: 15px;
  line-height: 1.42;
  margin-bottom: 10px;
}

.menu-section-teaser .teaser-card-cta-tag {
  font-size: 16px;
  margin-bottom: 14px;
}

.menu-section-teaser .teaser-card-cta-btn {
  min-height: 48px;
  min-width: 198px;
  padding: 0 24px;
  font-size: 12.5px;
}

.menu-section-teaser .teaser-swipe-hint {
  margin-top: 12px;
  gap: 8px;
}

.menu-section-teaser .teaser-swipe-hint span {
  font-size: 11px;
}

.menu-section-teaser .teaser-card-cta-mascot-wrap {
  width: min(300px, 30vw);
  height: 300px;
  max-height: 300px;
  flex: 0 0 auto;
}

.menu-section-teaser .teaser-card-cta-mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-section-teaser .teaser-card-intro-mascot-wrap {
  height: 300px;
  max-height: 300px;
  flex: 1 1 auto;
  min-width: 0;
}

.menu-section-teaser .teaser-card-intro-mascot {
  height: 100%;
  max-height: 300px;
  left: -18px;
}

@media (max-width: 1199px) {
  .menu-section-teaser .teaser-card-cta,
  .menu-section-teaser .teaser-card-intro {
    padding: 24px 36px;
  }
  .menu-section-teaser .teaser-card-cta-copy {
    flex-basis: 320px;
    max-width: 320px;
  }
  .menu-section-teaser .teaser-card-cta-mascot-wrap,
  .menu-section-teaser .teaser-card-intro-mascot-wrap {
    height: 270px;
    max-height: 270px;
  }
}

@media (max-width: 767px) {
  .menu-section-teaser .teaser-page,
  .menu-section-teaser .teaser-page-products,
  .menu-section-teaser .teaser-page[data-solo],
  .menu-section-teaser .teaser-page-products > .teaser-card.carte-card,
  .menu-section-teaser .teaser-product-card,
  .menu-section-teaser .teaser-card-cta,
  .menu-section-teaser .teaser-card-intro {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
  }
  .menu-section-teaser .teaser-product-card .teaser-card-media,
  .menu-section-teaser .teaser-product-card .carte-card-media {
    flex-basis: 205px;
    height: 205px;
  }
  .menu-section-teaser .teaser-card-cta,
  .menu-section-teaser .teaser-card-intro {
    justify-content: center;
    padding: 24px 22px;
  }
  .menu-section-teaser .teaser-card-cta-copy {
    flex: 1 1 auto;
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin-inline: auto;
  }
  .menu-section-teaser .teaser-card-cta-underline {
    margin-inline: auto;
  }
  .menu-section-teaser .teaser-swipe-hint {
    justify-content: center;
  }
}

/* ==========================================================
   V8 — Ce qu'on vous conseille : editorial fixe + rail stable
   ========================================================== */
.menu-section-teaser {
  --teaser-card-h: clamp(420px, 31vw, 460px);
  --teaser-gap: 18px;
  background:
    linear-gradient(135deg, rgba(255,250,243,.86), rgba(251,241,226,.96)),
    radial-gradient(circle at 4% 20%, rgba(242,138,33,.16), transparent 32%),
    radial-gradient(circle at 96% 90%, rgba(239,43,35,.08), transparent 34%),
    #fbf1e2;
  padding-block: clamp(72px, 7vw, 106px);
}

.menu-section-teaser .teaser-layout {
  width: min(1320px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(260px, 32fr) minmax(0, 68fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.teaser-editorial {
  position: relative;
  min-width: 0;
  padding-block: clamp(8px, 2vw, 22px);
}

.teaser-editorial .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  background: rgba(239,43,35,.09);
  color: #ef2b23;
}

.teaser-editorial h2 {
  max-width: 390px;
  margin: 0;
  color: #1a110d;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.teaser-editorial > p:not(.eyebrow) {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(26,17,13,.66);
  font-size: 16px;
  line-height: 1.65;
}

.teaser-main-cta {
  margin-top: 28px;
  min-height: 52px;
  padding-inline: 24px;
  background: #1a110d;
  color: #fffaf3;
  box-shadow: 0 14px 28px rgba(26,17,13,.16);
}

.teaser-main-cta:hover {
  background: #ef2b23;
  transform: translateY(-2px);
}

.teaser-editorial-line {
  display: block;
  width: 112px;
  height: 4px;
  margin-top: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f28a21, rgba(242,138,33,0));
}

.teaser-editorial-mascot {
  position: absolute;
  right: -10px;
  bottom: -36px;
  width: min(118px, 32%);
  height: auto;
  opacity: .16;
  pointer-events: none;
  transform: rotate(-5deg);
}

.teaser-products {
  min-width: 0;
}

.teaser-rail-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 58px 12px;
  color: rgba(26,17,13,.48);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-section-teaser .teaser-rail-wrap {
  position: relative;
  padding-inline: 58px;
}

.menu-section-teaser .teaser-viewport {
  overflow-x: auto;
  overflow-y: visible;
  padding: 10px 2px 18px;
  border-radius: 0;
  container-type: inline-size;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-section-teaser .teaser-viewport::-webkit-scrollbar { display: none; }

.menu-section-teaser .teaser-rail {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: var(--teaser-gap);
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

.menu-section-teaser .teaser-card,
.menu-section-teaser .teaser-product-card,
.menu-section-teaser .teaser-card-cta {
  box-sizing: border-box;
  flex: 0 0 calc((100cqw - (var(--teaser-gap) * 3)) / 4);
  width: calc((100cqw - (var(--teaser-gap) * 3)) / 4);
  min-width: 0;
  height: var(--teaser-card-h) !important;
  min-height: var(--teaser-card-h) !important;
  max-height: var(--teaser-card-h) !important;
  border-radius: 18px;
  scroll-snap-align: start;
  opacity: 1;
}

@media (min-width: 1200px) {
  .menu-section-teaser .teaser-card,
  .menu-section-teaser .teaser-product-card,
  .menu-section-teaser .teaser-card-cta {
    flex-basis: clamp(220px, 18vw, 260px);
    width: clamp(220px, 18vw, 260px);
  }
  .menu-section-teaser .teaser-card-cta {
    flex-basis: clamp(248px, 20vw, 292px);
    width: clamp(248px, 20vw, 292px);
  }
}

.menu-section-teaser .teaser-product-card {
  display: flex;
  flex-direction: column;
  background: #fffaf3;
  border: 1px solid rgba(26,17,13,.08);
  box-shadow: 0 10px 26px rgba(26,17,13,.075);
  overflow: hidden;
  transition: transform .32s cubic-bezier(.16,1,.3,1), box-shadow .32s ease, border-color .32s ease;
}

.menu-section-teaser .teaser-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,138,33,.34);
  box-shadow: 0 20px 42px rgba(26,17,13,.14);
}

.menu-section-teaser .teaser-product-card .teaser-card-media,
.menu-section-teaser .teaser-product-card .carte-card-media {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 4 / 3;
  background: #eadfd2;
  overflow: hidden;
}

.menu-section-teaser .teaser-product-card .teaser-card-media img,
.menu-section-teaser .teaser-product-card .carte-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .48s cubic-bezier(.16,1,.3,1);
}

.menu-section-teaser .teaser-product-card:hover .teaser-card-media img,
.menu-section-teaser .teaser-product-card:hover .carte-card-media img {
  transform: scale(1.035);
}

.menu-section-teaser .teaser-product-card .teaser-card-body,
.menu-section-teaser .teaser-product-card .carte-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  height: auto;
  max-height: none;
  padding: 16px 16px 15px;
  overflow: hidden;
}

.menu-section-teaser .teaser-product-card .teaser-card-title h3 {
  min-height: calc(2em * 1.08);
  max-height: calc(2em * 1.08);
  margin: 0;
  color: #1a110d;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(18px, 1.28vw, 21px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-section-teaser .teaser-product-card .teaser-card-desc {
  min-height: calc(2em * 1.42);
  max-height: calc(2em * 1.42);
  margin: 8px 0 0;
  color: rgba(26,17,13,.58);
  font-size: 12.5px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-section-teaser .teaser-product-card .teaser-card-foot,
.menu-section-teaser .teaser-product-card .carte-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  margin-top: auto;
  padding-top: 12px;
}

.menu-section-teaser .teaser-product-card .teaser-card-price,
.menu-section-teaser .teaser-product-card .carte-card-price {
  position: static;
  padding: 0;
  background: transparent;
  color: #1a110d;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.menu-section-teaser .teaser-product-card .teaser-add,
.menu-section-teaser .teaser-product-card .carte-add {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f28a21;
  color: #1a110d;
  cursor: pointer;
  transition: transform .18s ease-out, filter .18s ease-out, background-color .22s ease-out;
}

.menu-section-teaser .teaser-product-card .teaser-add:hover,
.menu-section-teaser .teaser-product-card .carte-add:hover {
  filter: brightness(1.06);
  transform: scale(1.07);
}

.menu-section-teaser .teaser-product-card .teaser-add:active,
.menu-section-teaser .teaser-product-card .carte-add:active {
  transform: scale(.94);
}

.menu-section-teaser .teaser-card-cta {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-basis: calc(((100cqw - (var(--teaser-gap) * 3)) / 4) * 1.16);
  width: calc(((100cqw - (var(--teaser-gap) * 3)) / 4) * 1.16);
  padding: 24px 20px;
  background:
    linear-gradient(145deg, #fff0d7 0%, #ffd292 58%, #f28a21 100%);
  border: 1px solid rgba(239,43,35,.18);
  box-shadow: 0 16px 34px rgba(152,77,21,.16);
  overflow: hidden;
  color: #1a110d;
  text-decoration: none;
}

.menu-section-teaser .teaser-card-cta::before {
  top: 18px;
  left: 18px;
  width: 62px;
  height: 42px;
  opacity: .42;
}

.menu-section-teaser .teaser-card-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}

.menu-section-teaser .teaser-card-eyebrow {
  margin: 0 0 12px;
  color: rgba(26,17,13,.58);
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-section-teaser .teaser-card-cta h3 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-section-teaser .teaser-card-cta h3 .cta-line-accent {
  color: #ef2b23;
}

.menu-section-teaser .teaser-card-cta-underline {
  width: 66px;
  height: 4px;
  margin: 14px 0 16px;
  background: #1a110d;
}

.menu-section-teaser .teaser-card-cta-copy > p:not(.teaser-card-eyebrow) {
  max-width: 210px;
  margin: 0;
  color: rgba(26,17,13,.66);
  font-size: 14px;
  line-height: 1.5;
}

.menu-section-teaser .teaser-card-cta-btn {
  width: fit-content;
  min-width: 0;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  background: #1a110d;
  color: #fffaf3;
  font-size: 11.5px;
}

.menu-section-teaser .teaser-card-cta-mascot-wrap {
  position: absolute;
  right: -32px;
  bottom: -22px;
  z-index: 1;
  width: min(170px, 56%);
  pointer-events: none;
}

.menu-section-teaser .teaser-card-cta-mascot {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  opacity: .72;
}

.menu-section-teaser .teaser-card-cta:hover .teaser-card-cta-mascot {
  transform: translateY(-3px) scale(1.025);
}

.menu-section-teaser .teaser-nav {
  top: 50%;
  width: 44px;
  height: 44px;
  background: #fffaf3;
  border-color: rgba(26,17,13,.1);
  color: #1a110d;
  box-shadow: 0 14px 30px rgba(26,17,13,.14);
}

.menu-section-teaser .teaser-nav:hover {
  background: #f28a21;
  color: #1a110d;
}

.menu-section-teaser .teaser-dots {
  justify-content: flex-start;
  margin: 12px 58px 0;
}

.menu-section-teaser:not(.is-teaser-visible) .teaser-editorial,
.menu-section-teaser:not(.is-teaser-visible) .teaser-card {
  opacity: .98;
}

@media (max-width: 1199px) {
  .menu-section-teaser .teaser-layout {
    grid-template-columns: minmax(240px, 34fr) minmax(0, 66fr);
  }
  .menu-section-teaser .teaser-card,
  .menu-section-teaser .teaser-product-card,
  .menu-section-teaser .teaser-card-cta {
    flex-basis: calc((100cqw - var(--teaser-gap)) / 2);
    width: calc((100cqw - var(--teaser-gap)) / 2);
  }
  .menu-section-teaser .teaser-card-cta {
    flex-basis: calc(((100cqw - var(--teaser-gap)) / 2) * 1.08);
    width: calc(((100cqw - var(--teaser-gap)) / 2) * 1.08);
  }
}

@media (max-width: 900px) {
  .menu-section-teaser .teaser-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .teaser-editorial {
    max-width: 560px;
  }
  .teaser-editorial h2,
  .teaser-editorial > p:not(.eyebrow) {
    max-width: none;
  }
  .teaser-editorial-mascot {
    right: 10px;
    bottom: 6px;
  }
  .teaser-rail-head {
    margin-inline: 0;
  }
  .menu-section-teaser .teaser-rail-wrap {
    padding-inline: 0;
  }
  .menu-section-teaser .teaser-nav {
    display: none;
  }
  .menu-section-teaser .teaser-dots {
    margin-inline: 0;
  }
}

@media (max-width: 767px) {
  .menu-section-teaser {
    --teaser-card-h: 420px;
    padding-block: 64px 72px;
  }
  .menu-section-teaser .teaser-layout {
    width: min(100% - 28px, 540px);
  }
  .teaser-editorial h2 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .teaser-editorial > p:not(.eyebrow) {
    font-size: 15px;
  }
  .teaser-rail-head {
    display: none;
  }
  .menu-section-teaser .teaser-viewport {
    padding-inline: 0;
  }
  .menu-section-teaser .teaser-card,
  .menu-section-teaser .teaser-product-card,
  .menu-section-teaser .teaser-card-cta {
    flex-basis: min(310px, 84vw);
    width: min(310px, 84vw);
  }
  .menu-section-teaser .teaser-card-cta {
    flex-basis: min(330px, 88vw);
    width: min(330px, 88vw);
  }
  .menu-section-teaser .teaser-card-cta-copy {
    max-width: 230px;
    text-align: left;
    margin: 0;
  }
  .menu-section-teaser .teaser-card-cta-underline {
    margin-inline: 0;
  }
  .menu-section-teaser .teaser-product-card .teaser-card-body,
  .menu-section-teaser .teaser-product-card .carte-card-body {
    padding: 16px;
  }
}


/* V8 — teaser full-width + motion éditorial inspiré de la référence vidéo */
@media (min-width: 768px) {
  .menu-section-teaser .section-inner {
    width: min(100%, 1460px);
    max-width: 1460px;
  }

  .menu-section-teaser .teaser-rail-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: clamp(62px, 6vw, 118px);
  }

  .menu-section-teaser .teaser-viewport {
    border-radius: 0;
    padding-block: 8px 12px;
    overflow: hidden;
  }

  .menu-section-teaser .teaser-page {
    gap: clamp(18px, 1.65vw, 28px);
  }

  .menu-section-teaser .teaser-nav-prev { left: clamp(18px, 2vw, 36px); }
  .menu-section-teaser .teaser-nav-next { right: clamp(18px, 2vw, 36px); }
}

.menu-section-teaser .teaser-card-intro,
.menu-section-teaser .teaser-page[data-solo] > .teaser-card-intro {
  position: relative;
  isolation: isolate;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0 clamp(26px, 6vw, 96px) !important;
}

.menu-section-teaser .teaser-card-intro::after {
  content: "";
  position: absolute;
  inset: 10px clamp(26px, 5vw, 78px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 58% 50%, rgba(244,139,33,.17), transparent 34%),
    linear-gradient(90deg, rgba(251,241,226,.98) 0%, rgba(251,241,226,.87) 25%, rgba(251,241,226,.18) 52%, rgba(251,241,226,0) 76%);
  border: 1px solid rgba(242,138,33,.18);
  z-index: -1;
  pointer-events: none;
}

.menu-section-teaser .teaser-card-intro .teaser-card-cta-copy {
  position: relative;
  z-index: 4;
  flex: 0 0 clamp(250px, 22vw, 340px);
  max-width: clamp(250px, 22vw, 340px);
  margin-left: clamp(6px, 2vw, 24px);
}

.menu-section-teaser .teaser-card-intro-mascot-wrap {
  position: absolute;
  z-index: 2;
  inset: 0 clamp(18px, 3vw, 48px) 0 clamp(250px, 25vw, 390px);
  height: 350px !important;
  max-height: 350px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.menu-section-teaser .teaser-card-intro-mascot {
  position: relative;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 350px !important;
  max-width: none !important;
  object-fit: contain;
  object-position: center center;
  transform-origin: 54% 55%;
  filter: drop-shadow(0 18px 26px rgba(96,52,18,.08));
}

.menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) {
  position: relative;
  isolation: isolate;
  border-radius: 28px;
  margin-inline: clamp(6px, 2vw, 26px);
  width: calc(100% - clamp(12px, 4vw, 52px));
  background:
    radial-gradient(circle at 76% 44%, rgba(242,138,33,.2), transparent 28%),
    linear-gradient(105deg, #fceacf 0%, #fff7eb 48%, #f9dfbc 100%);
  box-shadow: 0 24px 54px rgba(83,46,20,.08);
}

.menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) .teaser-card-cta-copy {
  margin-left: clamp(8px, 2.5vw, 34px);
  max-width: 390px;
}

.menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) .teaser-card-cta-mascot-wrap {
  width: min(330px, 29vw);
  height: 330px;
  max-height: 330px;
  margin-right: clamp(8px, 3vw, 40px);
}

.menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) .teaser-card-cta-mascot {
  filter: drop-shadow(0 18px 28px rgba(89,42,16,.1));
}

.menu-section-teaser .section-head {
  transform-origin: 50% 100%;
}

.menu-section-teaser .teaser-viewport {
  transform-origin: 50% 50%;
}

.menu-section-teaser .teaser-card-intro .teaser-card-cta-underline,
.menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) .teaser-card-cta-underline {
  transform-origin: left center;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .menu-section-teaser .teaser-rail-wrap { padding-inline: 52px; }
  .menu-section-teaser .teaser-card-intro .teaser-card-cta-copy {
    flex-basis: 250px;
    max-width: 250px;
  }
  .menu-section-teaser .teaser-card-intro-mascot-wrap {
    left: 225px;
    right: 16px;
  }
}

@media (max-width: 767px) {
  .menu-section-teaser .teaser-card-intro,
  .menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) {
    border-radius: 22px;
    margin-inline: 0;
    width: 100%;
    padding: 24px 20px !important;
  }

  .menu-section-teaser .teaser-card-intro::after {
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(251,241,226,.92), rgba(251,241,226,.72));
  }

  .menu-section-teaser .teaser-card-intro .teaser-card-cta-copy {
    margin: 0 auto;
    max-width: 270px;
    text-align: center;
  }

  .menu-section-teaser .teaser-card-intro-mascot-wrap {
    display: none;
  }

  .menu-section-teaser .teaser-card-intro .teaser-card-cta-underline {
    margin-inline: auto;
  }
}

/* V9 — garde-fou final : le teaser n'est plus un rail full-width à pages. */
.menu-section-teaser .teaser-layout.section-inner {
  width: min(1320px, calc(100% - 36px));
  max-width: 1320px;
  margin-inline: auto;
}

.menu-section-teaser .teaser-products,
.menu-section-teaser .teaser-rail-wrap,
.menu-section-teaser .teaser-viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.menu-section-teaser .teaser-rail-wrap {
  margin-left: 0;
  padding-inline: 58px;
}

.menu-section-teaser .teaser-viewport {
  overflow-x: auto;
  overflow-y: visible;
}

.menu-section-teaser .teaser-rail {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}

@media (min-width: 1200px) {
  .menu-section-teaser .teaser-card,
  .menu-section-teaser .teaser-product-card,
  .menu-section-teaser .teaser-card-cta {
    flex: 0 0 calc((100% - (var(--teaser-gap) * 3)) / 4);
    width: calc((100% - (var(--teaser-gap) * 3)) / 4);
  }

  .menu-section-teaser .teaser-card-cta:not(.teaser-card-intro),
  .menu-section-teaser .teaser-card-cta {
    flex-basis: calc(((100% - (var(--teaser-gap) * 3)) / 4) * 1.16);
    width: calc(((100% - (var(--teaser-gap) * 3)) / 4) * 1.16);
    margin-inline: 0;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .menu-section-teaser .teaser-card,
  .menu-section-teaser .teaser-product-card,
  .menu-section-teaser .teaser-card-cta {
    flex: 0 0 calc((100% - var(--teaser-gap)) / 2);
    width: calc((100% - var(--teaser-gap)) / 2);
  }
  .menu-section-teaser .teaser-card-cta:not(.teaser-card-intro),
  .menu-section-teaser .teaser-card-cta {
    flex-basis: calc(((100% - var(--teaser-gap)) / 2) * 1.08);
    width: calc(((100% - var(--teaser-gap)) / 2) * 1.08);
    margin-inline: 0;
  }
}

@media (max-width: 900px) {
  .menu-section-teaser .teaser-rail-wrap {
    padding-inline: 0;
  }
}

@media (max-width: 767px) {
  .menu-section-teaser .teaser-layout.section-inner {
    width: min(100% - 28px, 540px);
  }
  .menu-section-teaser .teaser-card,
  .menu-section-teaser .teaser-product-card,
  .menu-section-teaser .teaser-card-cta,
  .menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) {
    flex: 0 0 min(310px, 84vw);
    width: min(310px, 84vw);
    margin-inline: 0;
  }
  .menu-section-teaser .teaser-card-cta,
  .menu-section-teaser .teaser-card-cta:not(.teaser-card-intro) {
    flex-basis: min(330px, 88vw);
    width: min(330px, 88vw);
  }
}
