@import url('../assets/fonts/fonts.css'); /* polices auto-hébergées (RGPD) */

/* ==========================================================================
   DÉLICE — feuille de style · ambiance fast-food (flamme / BBQ)
   ========================================================================== */

:root {
  /* Palette CLAIRE & vive — orange du logo, crème lumineuse */
  --charbon: #2a1a10;      /* brun foncé (texte / accents sombres) */
  --charbon-2: #3a2416;
  --braise: #e8541d;       /* orange du logo (CTA principal) */
  --braise-d: #c8410f;
  --flamme: #ff7a2e;       /* orange flamme (dégradés) */
  --ambre: #f6a51f;        /* or / moutarde */
  --ambre-clair: #ffcc5c;
  --creme: #fffdf9;        /* fond quasi blanc, chaud */
  --creme-2: #fff2e2;      /* pêche clair (panneaux) */
  --vert: #4e9c53;
  --texte: #2a1a10;        /* brun foncé (texte) */
  --texte-doux: #8a6b52;
  --blanc: #ffffff;
  --bord: #f0e1cd;
  --ombre: 0 18px 40px rgba(232, 84, 29, .13);
  --ombre-sm: 0 8px 20px rgba(232, 84, 29, .10);
  --rayon: 22px;
  --rayon-sm: 12px;
  --max: 1160px;
  --nav-h: 72px;

  --font-titre: "Baloo 2", "Trebuchet MS", system-ui, -apple-system, sans-serif;
  --font-corps: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* L'attribut hidden doit toujours l'emporter sur les display des classes */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 52px); }

body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--creme);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-titre); line-height: 1.1; font-weight: 800; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.muted { color: var(--texte-doux); }
.small { font-size: .85rem; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 700; cursor: pointer;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; transition: transform .12s ease, background .2s, box-shadow .2s;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--braise); color: #fff; box-shadow: 0 6px 18px rgba(224, 66, 31, .35); }
.btn-primary:hover { background: var(--braise-d); }
.btn-ghost { background: transparent; color: var(--charbon); border-color: var(--charbon); }
.btn-ghost:hover { background: var(--charbon); color: #fff; }
.btn-block { width: 100%; }
.link-btn { background: none; border: none; color: var(--texte-doux); text-decoration: underline; cursor: pointer; font: inherit; padding: 8px; width: 100%; }
.link-btn:hover { color: var(--braise); }
.icon-btn { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: inherit; line-height: 1; padding: 6px; border-radius: 8px; }
.icon-btn:hover { background: rgba(0,0,0,.06); }

/* ---------- En-tête (clair) ---------- */
.site-header {
  position: sticky; top: 40px; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  color: var(--texte);
  border-bottom: 1px solid var(--bord);
  box-shadow: 0 3px 18px rgba(232, 84, 29, .07);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--texte); }
.brand-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; }
.brand-mark { font-size: 1.8rem; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-titre); font-weight: 800; font-size: 1.3rem; letter-spacing: .2px; color: var(--braise); }
.brand-sub { font-size: .72rem; color: var(--texte-doux); letter-spacing: .5px; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.main-nav a { text-decoration: none; padding: 9px 15px; border-radius: 999px; font-weight: 700; font-size: .95rem; color: var(--texte); opacity: .85; transition: all .18s; white-space: nowrap; }
.main-nav a:hover { opacity: 1; background: var(--creme-2); }
.main-nav a.nav-active { background: var(--braise); color: #fff; opacity: 1; }
.nav-call { background: var(--ambre); color: var(--charbon) !important; opacity: 1 !important; }
.nav-call:hover { background: var(--ambre-clair); }

.cart-btn {
  position: relative; background: var(--braise); color: #fff; border: none; cursor: pointer;
  width: 46px; height: 46px; border-radius: 14px; font-size: 1.25rem; display: grid; place-items: center;
  transition: background .2s, transform .1s;
}
.cart-btn:hover { background: var(--braise-d); }
.cart-btn:active { transform: scale(.95); }
.cart-count {
  position: absolute; top: -6px; right: -6px; background: var(--ambre); color: var(--charbon);
  font-size: .72rem; font-weight: 800; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; display: grid; place-items: center; border: 2px solid var(--charbon);
}
.cart-count.hidden { display: none; }

/* ---------- Héro ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 82vh, 780px);
  display: grid;
  align-items: center;
  background: linear-gradient(160deg, var(--charbon), var(--charbon-2)); /* fond de secours */
  color: var(--creme);
}
/* Diaporama de fond */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slideshow .slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.6s ease-in-out;
  will-change: opacity, transform;
}
.hero-slideshow .slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slideshow .slide.active { opacity: 1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.14); } }
/* Calque d'assombrissement : texte lisible à gauche, image visible à droite */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(36,18,8,.9) 0%, rgba(36,18,8,.66) 40%, rgba(36,18,8,.22) 74%, rgba(36,18,8,0) 100%),
    linear-gradient(0deg, rgba(232,84,29,.38) 0%, rgba(36,18,8,0) 38%);
}
.hero-inner { position: relative; z-index: 2; padding: 56px 20px 64px; width: 100%; }
.hero-copy { max-width: 620px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; color: var(--ambre-clair); font-weight: 700; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.hero h1 span { color: var(--ambre); }
.lead { margin: 18px 0 26px; font-size: 1.1rem; max-width: 46ch; color: rgba(253,246,236,.9); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn-ghost { color: var(--creme); border-color: rgba(253,246,236,.5); }
.hero .btn-ghost:hover { background: var(--creme); color: var(--charbon); }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; font-size: .9rem; color: rgba(253,246,236,.85); }

/* ---------- Sections ---------- */
.section-head { text-align: center; margin: 54px 0 26px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.section-head h2::after { content: ""; display: block; width: 60px; height: 4px; background: var(--braise); border-radius: 2px; margin: 12px auto 0; }
.section-head p { color: var(--texte-doux); margin-top: 6px; }

/* ---------- Bandeau promo hero + gros boutons ---------- */
.hero-promo {
  display: inline-block; background: var(--braise); color: #fff; font-weight: 800;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 16px; font-size: .92rem;
  box-shadow: 0 6px 20px rgba(224, 66, 31, .45);
}
.btn-lg { padding: 16px 32px; font-size: 1.08rem; }

/* ---------- Nos offres (promos) ---------- */
.promos { padding-top: 10px; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.promo-card {
  position: relative; border: none; cursor: pointer; text-align: left; display: block; width: 100%;
  min-height: 240px; border-radius: 20px; overflow: hidden; padding: 0; font: inherit; color: #fff;
  background-size: cover; background-position: center; background-color: var(--charbon);
  box-shadow: var(--ombre-sm); transition: transform .15s, box-shadow .2s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--ombre); }
.promo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,19,16,.05) 0%, rgba(24,19,16,.4) 45%, rgba(24,19,16,.93) 100%); }
.promo-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 5px; padding: 18px; height: 100%; min-height: 240px; justify-content: flex-end; align-items: flex-start; }
.promo-badge { background: var(--ambre); color: var(--charbon); font-weight: 800; font-size: .7rem; text-transform: uppercase; letter-spacing: .6px; padding: 4px 10px; border-radius: 999px; }
.promo-title { font-family: var(--font-titre); font-weight: 800; font-size: 1.45rem; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.promo-text { font-size: .9rem; color: rgba(255,255,255,.9); }
.promo-price { font-weight: 800; color: var(--ambre-clair); font-size: 1.2rem; }
.promo-cta { margin-top: 8px; font-weight: 800; color: #fff; }

/* ---------- Tuiles catégories ---------- */
/* Tuiles catégories = gros pictos modernes (pas de photo) */
.cat-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.cat-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: var(--blanc); border: 2px solid var(--bord); border-radius: 22px; padding: 24px 12px;
  text-decoration: none; color: var(--texte); cursor: pointer; min-height: 148px;
  box-shadow: var(--ombre-sm); transition: transform .16s ease, box-shadow .2s, border-color .2s;
}
.cat-tile:hover { transform: translateY(-5px); border-color: var(--braise); box-shadow: var(--ombre); }
.tile-ic {
  font-size: 2.7rem; line-height: 1; width: 84px; height: 84px; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 22px;
  background: radial-gradient(circle at 30% 25%, #fff0dc, var(--creme-2));
  transition: transform .2s, background .2s;
}
.cat-tile:hover .tile-ic { transform: scale(1.08) rotate(-4deg); background: radial-gradient(circle at 30% 25%, #ffe3c6, #ffd3ac); }
.tile-name { font-family: var(--font-titre); font-weight: 800; font-size: 1.02rem; text-align: center; }

/* ---------- Onglets catégories ---------- */
.cat-tabs {
  position: sticky; top: calc(var(--nav-h) + 40px); z-index: 40;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  padding: 12px 0; margin: 0 0 8px;
  background: var(--creme);
}
.cat-tabs::-webkit-scrollbar { display: none; }
/* Sur mobile : bande défilante horizontale plutôt que plusieurs lignes */
@media (max-width: 620px) {
  .cat-tabs {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
}
.cat-tab {
  flex: 0 0 auto; background: var(--blanc); border: 2px solid var(--bord); color: var(--texte-doux);
  padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: .92rem; cursor: pointer;
  white-space: nowrap; transition: all .15s; font-family: inherit;
}
.cat-tab:hover { border-color: var(--ambre); color: var(--texte); }
.cat-tab.active { background: var(--braise); border-color: var(--braise); color: #fff; }

/* ---------- Catégories & articles ---------- */
.cat-block { padding-top: 26px; }

/* Bannière de catégorie (jolis titres avec photo, façon hero) */
.cat-banner {
  position: relative; overflow: hidden;
  border-radius: 20px; margin: 8px 0 22px;
  min-height: 180px; display: flex; align-items: flex-end; padding: 26px;
  background-color: var(--charbon); background-size: cover; background-position: center;
  box-shadow: var(--ombre-sm);
}
.cat-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,19,16,.12) 0%, rgba(24,19,16,.35) 42%, rgba(24,19,16,.9) 100%);
}
.cat-banner-inner { position: relative; z-index: 1; color: var(--creme); }
.cat-banner h3 {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem); color: #fff;
  display: flex; align-items: center; gap: 12px; text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.cat-banner .cat-intro { color: rgba(253,246,236,.92); margin-top: 6px; max-width: 60ch; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.cat-emoji-badge {
  font-size: 1.55rem; width: 52px; height: 52px; flex: 0 0 auto;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px; display: grid; place-items: center;
}

.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

.item-card {
  background: var(--blanc); border: 1px solid var(--bord); border-radius: var(--rayon);
  padding: 16px; display: flex; gap: 14px; align-items: flex-start;
  cursor: pointer; transition: transform .12s, box-shadow .2s, border-color .2s;
  text-align: left; font: inherit; color: inherit; width: 100%;
}
.item-card:hover { transform: translateY(-3px); box-shadow: var(--ombre); border-color: var(--ambre); }
.item-emoji {
  font-size: 2.2rem; flex: 0 0 auto; width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--creme-2); border-radius: 14px;
}
.item-body { flex: 1; min-width: 0; }
.item-name { font-weight: 800; font-family: var(--font-titre); font-size: 1.08rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.item-desc { color: var(--texte-doux); font-size: .9rem; margin: 4px 0 10px; }
.item-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.item-price { font-weight: 800; color: var(--braise); font-size: 1.05rem; }
.item-add { background: var(--charbon); color: #fff; border: none; border-radius: 10px; width: 34px; height: 34px; font-size: 1.2rem; cursor: pointer; display: grid; place-items: center; flex: 0 0 auto; }
.item-card:hover .item-add { background: var(--braise); }

.tag { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 3px 8px; border-radius: 999px; }
.tag-populaire { background: #fff2d6; color: #a86b00; }
.tag-nouveau { background: #e5f5e6; color: #2e7d33; }
.tag-epice { background: #fde3dc; color: #c0392b; }
.tag-vege { background: #e5f5e6; color: #2e7d33; }

/* ---------- Infos (clair) ---------- */
.infos-section { background: var(--creme-2); color: var(--texte); margin-top: 64px; padding: 56px 0; border-top: 1px solid var(--bord); }
.infos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info-card { background: var(--blanc); border: 1px solid var(--bord); border-radius: var(--rayon); padding: 24px; box-shadow: var(--ombre-sm); }
.info-card h3 { font-size: 1.12rem; margin-bottom: 12px; color: var(--braise); }
.info-card a { color: var(--braise); font-weight: 700; }
.info-card .muted { color: var(--texte-doux); }
.hours { width: 100%; border-collapse: collapse; font-size: .92rem; }
.hours td { padding: 5px 0; border-bottom: 1px solid var(--bord); }
.hours td:last-child { text-align: right; color: var(--texte-doux); }
.hours tr.today td { color: var(--braise); font-weight: 800; }

/* ---------- Pied (clair) ---------- */
.site-footer { background: var(--blanc); color: var(--texte-doux); padding: 30px 0; text-align: center; border-top: 1px solid var(--bord); }
.site-footer strong { color: var(--texte); }
.site-footer a { color: var(--braise); }
.site-footer .small { color: var(--texte-doux); margin-top: 4px; }

/* ---------- Tiroir panier ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(20,14,10,.5); z-index: 60; animation: fade .2s; }
@keyframes fade { from { opacity: 0; } }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(420px, 100%);
  background: var(--creme); z-index: 70; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--bord); }
.drawer-head h2 { font-size: 1.3rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--texte-doux); text-align: center; }
.cart-empty p:first-child { font-size: 3rem; }

.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--bord); align-items: flex-start; }
.ci-emoji { font-size: 1.6rem; width: 44px; height: 44px; background: var(--creme-2); border-radius: 10px; display: grid; place-items: center; flex: 0 0 auto; }
.ci-body { flex: 1; min-width: 0; }
.ci-name { font-weight: 700; }
.ci-opts { font-size: .82rem; color: var(--texte-doux); margin-top: 2px; }
.ci-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.ci-qty { display: inline-flex; align-items: center; gap: 8px; background: var(--blanc); border: 1px solid var(--bord); border-radius: 999px; padding: 2px; }
.ci-qty button { width: 26px; height: 26px; border: none; background: none; cursor: pointer; font-size: 1.1rem; border-radius: 50%; }
.ci-qty button:hover { background: var(--creme-2); }
.ci-qty span { min-width: 18px; text-align: center; font-weight: 700; font-size: .9rem; }
.ci-price { margin-left: auto; font-weight: 800; color: var(--braise); }
.ci-remove { background: none; border: none; color: var(--texte-doux); cursor: pointer; font-size: .8rem; text-decoration: underline; }
.ci-remove:hover { color: var(--braise); }
.ci-del {
  flex: 0 0 auto; align-self: center; background: none; border: none; cursor: pointer;
  font-size: 1.05rem; line-height: 1; padding: 6px; border-radius: 9px; opacity: .65; transition: all .15s;
}
.ci-del:hover { opacity: 1; background: #ffe3dc; transform: scale(1.1); }

.cart-foot { padding: 18px 20px; border-top: 1px solid var(--bord); background: var(--creme-2); }
.cart-line { display: flex; justify-content: space-between; margin-bottom: 8px; }
.cart-line.total { font-weight: 800; font-size: 1.2rem; border-top: 2px dashed var(--bord); padding-top: 10px; margin-top: 4px; }
.cart-line.total span:last-child { color: var(--braise); }

/* ---------- Modales ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: end center; background: rgba(20,14,10,.55); padding: 0; animation: fade .2s; }
@media (min-width: 640px) { .modal { place-items: center; padding: 20px; } }
.modal-card {
  background: var(--creme); width: min(520px, 100%); max-height: 92dvh; overflow-y: auto;
  border-radius: 22px 22px 0 0; padding: 24px; position: relative;
  animation: slideUp .3s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 640px) { .modal-card { border-radius: 22px; animation: pop .25s; } }
@keyframes slideUp { from { transform: translateY(100%); } }
@keyframes pop { from { transform: scale(.95); opacity: 0; } }
.modal-close { position: absolute; top: 14px; right: 14px; }
.modal-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; padding-right: 30px; }
.modal-emoji { font-size: 2.4rem; width: 60px; height: 60px; background: var(--creme-2); border-radius: 14px; display: grid; place-items: center; flex: 0 0 auto; }
.modal-head h3 { font-size: 1.4rem; }

/* Options */
.options-form { display: flex; flex-direction: column; gap: 20px; }
.opt-group legend, .opt-group .opt-label { font-weight: 800; font-family: var(--font-titre); margin-bottom: 10px; display: block; }
.opt-group .opt-hint { font-weight: 400; color: var(--texte-doux); font-size: .82rem; }
.opt-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 999px;
  border: 2px solid var(--bord); background: var(--blanc); cursor: pointer; font-size: .9rem; font-weight: 600;
  user-select: none; transition: all .12s;
}
.chip:hover { border-color: var(--ambre); }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip.checked { background: var(--charbon); color: #fff; border-color: var(--charbon); }
.chip.remove-style.checked { background: var(--vert); border-color: var(--vert); }
.chip.remove-style { background: var(--vert); color: #fff; border-color: var(--vert); }
.chip.remove-style.unchecked { background: var(--blanc); color: var(--texte-doux); border-color: var(--bord); text-decoration: line-through; }
.opt-error { color: var(--braise); font-size: .82rem; margin-top: 6px; display: none; }
.opt-group.invalid .opt-error { display: block; }

.note-field { display: block; margin-top: 18px; font-weight: 700; font-family: var(--font-titre); }
.note-field input { width: 100%; margin-top: 8px; padding: 11px 14px; border: 2px solid var(--bord); border-radius: var(--rayon-sm); font: inherit; font-weight: 400; background: var(--blanc); }
.note-field input:focus, .checkout-form input:focus { outline: none; border-color: var(--ambre); }

.modal-foot { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.qty { display: inline-flex; align-items: center; gap: 6px; background: var(--blanc); border: 2px solid var(--bord); border-radius: 999px; padding: 4px; }
.qty-btn { width: 36px; height: 36px; border: none; background: var(--creme-2); border-radius: 50%; font-size: 1.3rem; cursor: pointer; line-height: 1; }
.qty-btn:hover { background: var(--ambre-clair); }
.qty span { min-width: 26px; text-align: center; font-weight: 800; }
.modal-foot .btn-primary { flex: 1; }

/* Checkout */
.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.checkout-form label { font-weight: 700; font-family: var(--font-titre); display: flex; flex-direction: column; gap: 6px; }
.checkout-form input { padding: 11px 14px; border: 2px solid var(--bord); border-radius: var(--rayon-sm); font: inherit; font-weight: 400; background: var(--blanc); }
.mode-choice { border: none; }
.mode-choice legend { font-weight: 800; font-family: var(--font-titre); margin-bottom: 8px; }
.mode-opts { display: flex; gap: 10px; }
.mode-opts .chip { flex: 1; justify-content: center; }
.order-recap { background: var(--creme-2); border-radius: var(--rayon-sm); padding: 16px; margin-top: 4px; }
.order-recap h4 { margin-bottom: 10px; }
.recap-item { display: flex; justify-content: space-between; font-size: .9rem; padding: 4px 0; gap: 10px; }
.recap-item .ri-name { flex: 1; }
.checkout-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
#sendWhatsapp { background: #25D366; box-shadow: 0 6px 18px rgba(37,211,102,.35); }
#sendWhatsapp:hover { background: #1eb658; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--charbon); color: var(--creme); padding: 14px 22px; border-radius: 999px;
  z-index: 100; box-shadow: var(--ombre); font-weight: 600; animation: toastIn .3s;
}
@keyframes toastIn { from { transform: translate(-50%, 20px); opacity: 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { min-height: clamp(500px, 88vh, 720px); }
  .hero-inner { padding: 40px 20px 48px; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(24,19,16,.92) 4%, rgba(24,19,16,.45) 55%, rgba(24,19,16,.6) 100%);
  }
  .infos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  /* En-tête compact : logo seul (le logo = lien Accueil) */
  .brand-text { display: none; }
  .brand-logo { width: 44px; height: 44px; }
  .header-inner { gap: 8px; }
  .main-nav { gap: 5px; margin-left: auto; }
  .main-nav a:first-child { display: none; }   /* « Accueil » redondant avec le logo */
  .main-nav a { padding: 9px 12px; font-size: .88rem; }
  .items-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 22px; font-size: 1rem; }
}
@media (max-width: 360px) {
  .main-nav a { padding: 8px 9px; font-size: .8rem; }
  .cart-btn { width: 42px; height: 42px; }
}

/* ================= Ambiance fast-food : compléments ================= */
.btn-primary { background: linear-gradient(135deg, var(--flamme), var(--braise)); box-shadow: 0 8px 22px rgba(228, 35, 26, .40); }
.btn-primary:hover { background: linear-gradient(135deg, var(--braise), var(--braise-d)); }

/* Distinction (badge doré) + Notre histoire */
.hero-award {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: linear-gradient(135deg, var(--ambre), var(--ambre-clair)); color: var(--charbon);
  font-weight: 800; padding: 8px 16px; border-radius: 999px; margin-bottom: 12px; font-size: .9rem;
  box-shadow: 0 6px 18px rgba(245, 163, 0, .4);
}
.story { padding: 24px 20px 0; }
.story-card {
  background: linear-gradient(160deg, #fff6ea, #ffe6cf);
  color: var(--texte); border-radius: 26px; padding: 44px 40px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--ombre); border: 1px solid var(--bord);
}
.story-card::before {
  content: ""; position: absolute; right: -30px; bottom: -34px; width: 210px; height: 210px;
  background: url('../assets/img/logo-cut.png?v=45') center/contain no-repeat; opacity: .14;
}
.story-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--ambre), var(--ambre-clair)); color: var(--charbon);
  font-weight: 800; padding: 8px 18px; border-radius: 999px; font-size: .95rem; margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(245, 163, 0, .3);
}
.story-card h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--texte); }
.story-text { max-width: 68ch; margin: 12px auto 0; color: var(--texte-doux); font-size: 1.08rem; line-height: 1.7; position: relative; }

/* Barre panier flottante (mobile) */
.cart-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 56;
  display: none; align-items: center; gap: 10px; justify-content: space-between;
  background: linear-gradient(135deg, var(--flamme), var(--braise)); color: #fff;
  border: none; cursor: pointer; padding: 14px 18px; border-radius: 16px; font: inherit; font-weight: 800;
  box-shadow: 0 12px 30px rgba(228, 35, 26, .5);
}
.cart-bar-count { background: rgba(255,255,255,.28); border-radius: 999px; min-width: 30px; text-align: center; padding: 3px 10px; flex: 0 0 auto; }
.cart-bar-mid { flex: 1; text-align: center; white-space: nowrap; }
.cart-bar-total { font-size: 1.05rem; flex: 0 0 auto; }
@media (max-width: 760px) { .cart-bar:not([hidden]) { display: flex; } }

/* Bandeau de page (carte, promos) — clair */
.page-hero {
  background:
    radial-gradient(900px 280px at 82% -30%, rgba(255,122,46,.28), transparent 60%),
    linear-gradient(135deg, #fff0dc, #ffdcbb);
  color: var(--texte); padding: 48px 0 42px; text-align: center; border-bottom: 1px solid var(--bord);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--texte); }
.page-hero p { color: var(--texte-doux); margin-top: 8px; max-width: 60ch; margin-inline: auto; }
.promo-hero .hero-promo { margin-bottom: 14px; }

/* Page thème : visuel dédié en tête */
.cat-hero { position: relative; overflow: hidden; min-height: clamp(220px, 34vh, 340px); display: grid; align-items: end; color: var(--creme); }
.cat-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.cat-hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,16,10,.25) 0%, rgba(24,16,10,.5) 40%, rgba(24,16,10,.92) 100%); }
.cat-hero-inner { position: relative; z-index: 1; padding: 24px 20px 28px; width: 100%; }
.cat-hero h1 { font-size: clamp(2rem, 6vw, 3rem); display: flex; align-items: center; gap: 12px; }
.cat-hero .lead { color: rgba(253,246,236,.92); margin-top: 4px; }
.back-link { display: inline-block; color: var(--ambre-clair); font-weight: 700; text-decoration: none; margin-bottom: 10px; }
.back-link:hover { text-decoration: underline; }

/* Page promotions : grands visuels promo */
.promo-full-section { padding-top: 30px; }
.promo-full { display: flex; flex-direction: column; gap: 22px; }
.promo-banner { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--blanc); border: 1px solid var(--bord); border-radius: 24px; overflow: hidden; box-shadow: var(--ombre-sm); }
.promo-banner.reverse .pb-media { order: 2; }
.pb-media { position: relative; background-size: cover; background-position: center; min-height: 240px; }
.pb-body { padding: 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; }
.pb-title { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.pb-text { color: var(--texte-doux); }
.pb-price { font-size: 1.7rem; font-weight: 800; color: var(--braise); }

/* Mentions / notes */
.inline-link { color: var(--braise); font-weight: 700; text-decoration: none; }
.inline-link:hover { text-decoration: underline; }
.highlight-card { border: 2px solid var(--ambre); }
.allerg-note { padding: 22px 20px 44px; }
.allerg-note p { background: var(--creme-2); border-radius: var(--rayon-sm); padding: 14px 18px; color: var(--texte-doux); font-size: .92rem; }
.foot-notes { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center; align-items: center; margin-bottom: 12px; }
.foot-tag { background: var(--braise); color: #fff; font-weight: 800; padding: 5px 14px; border-radius: 999px; font-size: .85rem; }
.foot-allerg { color: var(--texte-doux); font-size: .82rem; max-width: 60ch; }
.foot-logo { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 8px; display: block; }

@media (max-width: 700px) {
  .promo-banner, .promo-banner.reverse { grid-template-columns: 1fr; }
  .promo-banner.reverse .pb-media { order: 0; }
  .pb-media { min-height: 180px; }
}

/* ===== Contact (accueil) : tél + WhatsApp ===== */
.contact-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.contact-link { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 999px; font-weight: 800; text-decoration: none; font-size: .95rem; transition: transform .12s, box-shadow .2s; }
.contact-link.tel { background: var(--charbon); color: #fff; }
.contact-link.wa { background: #25D366; color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.35); }
.contact-link:hover { transform: translateY(-2px); }

/* ===== Identité : logo plus présent (filigranes) ===== */
.brand-logo { width: 52px; height: 52px; }
.hero::after {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  right: -30px; top: 50%; transform: translateY(-50%);
  width: 340px; max-width: 42%; aspect-ratio: 1;
  background: url('../assets/img/logo-cut.png?v=45') center/contain no-repeat; opacity: .13;
}
.page-hero { position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -24px; bottom: -46px; width: 210px; height: 210px; pointer-events: none;
  background: url('../assets/img/logo-cut.png?v=45') center/contain no-repeat; opacity: .14;
}

/* ===== Pop-up promo (accueil) ===== */
.promo-popup-card { text-align: center; max-width: 560px; }
.pp-logo { width: 64px; height: 64px; object-fit: contain; display: block; margin: 0 auto 8px; }
.pp-head h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-top: 4px; }
.pp-head .hero-promo { margin-bottom: 4px; }
.pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.pp-item { position: relative; border-radius: 16px; overflow: hidden; min-height: 128px; background-size: cover; background-position: center; background-color: var(--charbon); text-decoration: none; display: block; }
.pp-item .pp-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,16,10,.08), rgba(24,16,10,.85)); }
.pp-item-body { position: absolute; z-index: 1; inset: auto 0 0 0; padding: 10px; color: #fff; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.pp-item-title { font-family: var(--font-titre); font-weight: 800; font-size: .95rem; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.pp-item-price { font-weight: 800; color: var(--ambre-clair); font-size: .9rem; }
.pp-actions { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 560px) { .pp-grid { grid-template-columns: 1fr; } .pp-item { min-height: 84px; } }

/* ===== Code de commande (checkout) ===== */
.order-code {
  background: linear-gradient(135deg, #fff0dc, #ffe0c2); border: 2px dashed var(--braise);
  border-radius: 14px; padding: 14px 16px; text-align: center; margin-bottom: 6px;
  display: flex; flex-direction: column; gap: 3px;
}
.oc-label { font-size: .74rem; color: var(--texte-doux); font-weight: 800; text-transform: uppercase; letter-spacing: .6px; }
.oc-code { font-family: var(--font-titre); font-weight: 800; font-size: 1.9rem; color: var(--braise); letter-spacing: 3px; }
.oc-hint { font-size: .82rem; color: var(--texte-doux); }

/* ===== Aération des sections ===== */
.section-head { margin-top: 74px; }
.infos-section { padding: 74px 0; margin-top: 84px; }
.promo-grid, .cat-tiles { gap: 18px; }
.items-grid { gap: 18px; }
.cat-block { padding-top: 40px; }
.story { padding-top: 40px; }

/* ===== Transition d'entrée de page ===== */
@keyframes pageIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero, .page-hero, .cat-hero { animation: pageIn .55s ease-out both; }
.site-header { animation: pageIn .4s ease-out both; }

/* ===== Apparition des sections au scroll ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Effets boutons (survol / focus) ===== */
.btn { transition: transform .16s ease, background .2s, box-shadow .2s, filter .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 14px 32px rgba(232, 84, 29, .48); }
.btn-lg:hover { transform: translateY(-3px); }
a:focus-visible, button:focus-visible, .chip:focus-visible, .cat-tab:focus-visible, .cat-tile:focus-visible, input:focus-visible {
  outline: 3px solid var(--ambre); outline-offset: 2px;
}

/* ===== Cartes articles : survol plus vivant ===== */
.item-card { transition: transform .16s ease, box-shadow .2s, border-color .2s; }
.item-card:hover { transform: translateY(-4px); }
.item-card:hover .item-emoji { transform: scale(1.12) rotate(-6deg); transition: transform .2s; }
.item-add { transition: transform .15s, background .2s; }
.item-card:hover .item-add { transform: scale(1.12); }

/* ===== Envol vers le panier (ajout d'un article) ===== */
.fly-emoji { position: fixed; z-index: 95; font-size: 2rem; line-height: 1; pointer-events: none; will-change: transform, opacity; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }
@keyframes cartPop { 0%,100% { transform: scale(1); } 40% { transform: scale(1.28); } }
.cart-btn.pop { animation: cartPop .4s ease; }
.cart-bar.pop { animation: cartPop .4s ease; }

/* ===== Statut Ouvert / Fermé ===== */
.hero-status { margin-bottom: 14px; }
.hero-status.center { display: flex; justify-content: center; }
.open-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 999px; font-weight: 800; font-size: .85rem; background: #eee; color: var(--texte); }
.open-badge .dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.open-badge.open { background: #e3f6e5; color: #1f7a29; }
.open-badge.open .dot { background: #3fbf49; animation: pulseDot 1.8s infinite; }
.open-badge.closed { background: #fde3df; color: #c0130b; }
.open-badge.closed .dot { background: #e2231a; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(63,191,73,.55); } 70% { box-shadow: 0 0 0 8px rgba(63,191,73,0); } 100% { box-shadow: 0 0 0 0 rgba(63,191,73,0); } }
.info-card h3 .open-badge { font-size: .72rem; vertical-align: middle; }

/* ===== Plan / Google Maps ===== */
.map-section { padding-bottom: 20px; }
.map-wrap { border-radius: 22px; overflow: hidden; box-shadow: var(--ombre); border: 1px solid var(--bord); background: var(--creme-2); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }
@media (max-width: 620px) { .map-wrap iframe { height: 300px; } }

/* ===== Bandeau téléphone (haut de page) ===== */
.topbar { position: sticky; top: 0; z-index: 55; height: 40px; background: var(--charbon); color: #fff; display: flex; gap: 10px; align-items: center; justify-content: center; padding: 0 14px; font-weight: 800; font-size: .92rem; overflow: hidden; }
.topbar-tel { color: #fff; text-decoration: none; background: linear-gradient(135deg, var(--flamme), var(--braise)); padding: 4px 14px; border-radius: 999px; box-shadow: 0 4px 12px rgba(232,84,29,.4); }
.topbar-tel:hover { filter: brightness(1.06); }
.topbar-msg { color: rgba(255,255,255,.85); font-weight: 600; }
@media (max-width: 620px) { .topbar-msg { display: none; } .topbar { font-size: .9rem; padding: 0 12px; } }

/* ===== Avantage commande directe ===== */
#directBanner { margin-top: 26px; }
.direct-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--flamme), var(--braise)); color: #fff;
  border-radius: 24px; padding: 26px 30px; box-shadow: 0 14px 34px rgba(232,84,29,.34);
}
.db-text { flex: 1; min-width: 260px; }
.db-tag { display: inline-block; background: rgba(255,255,255,.22); padding: 4px 12px; border-radius: 999px; font-weight: 800; font-size: .8rem; margin-bottom: 8px; }
.direct-banner h2 { color: #fff; font-size: clamp(1.4rem, 3.2vw, 2rem); }
.direct-banner p { color: rgba(255,255,255,.95); margin-top: 6px; }
.db-code { background: #fff; color: var(--braise); font-weight: 800; padding: 2px 10px; border-radius: 8px; letter-spacing: 1px; }
.direct-banner .btn-primary { background: #fff; color: var(--braise); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.direct-banner .btn-primary:hover { background: #fff; filter: brightness(.97); }

/* ===== Carte de fidélité ===== */
.fidelite-section { margin-top: 8px; }
.fidelite-card { background: var(--blanc); border: 2px dashed var(--ambre); border-radius: 24px; padding: 26px 28px; box-shadow: var(--ombre-sm); }
.fid-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fid-icon { font-size: 2.2rem; }
.fid-head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.fid-stamps { display: grid; grid-template-columns: repeat(10, 1fr); gap: 10px; }
.fid-stamps .stamp {
  aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%;
  background: var(--creme-2); border: 2px dashed var(--bord); color: var(--texte-doux);
  font-weight: 800; font-size: 1.1rem;
}
.fid-stamps .stamp.on { background: linear-gradient(135deg, #fff0dc, #ffdcbb); border-style: solid; border-color: var(--ambre); }
@media (max-width: 620px) { .fid-stamps { grid-template-columns: repeat(5, 1fr); } .direct-banner { padding: 22px; } }

/* ===== Numéro de téléphone dans le hero ===== */
.hero-phone { margin-top: 16px; font-family: var(--font-titre); font-weight: 800; font-size: 1.25rem; }
.hero-phone a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.hero-phone a:hover { color: var(--ambre-clair); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   CHARTE « KEBAB DE L'EURE » — identité du menu : charbon + doré + rouge,
   on GARDE l'orange pour les boutons/CTA. (Redéfinit les tokens → cascade.)
   ========================================================================== */
:root {
  --charbon: #2b2926;      /* charbon chaud (comme l'emblème/le bandeau du menu) */
  --charbon-2: #3c3833;
  /* orange conservé : --braise / --flamme inchangés */
  --ambre: #c99a43;        /* doré du logo */
  --ambre-clair: #e6c877;
  --or-fonce: #a97f2e;
  --rouge: #d6202a;        /* rouge du menu (accents « chaud » / épicé) */
  --creme: #fbf7f0;
  --creme-2: #f3ebdd;
  --texte: #24201c;
  --texte-doux: #7c6f60;
  --bord: #e9ded0;
  --ombre: 0 18px 40px rgba(30, 26, 22, .16);
  --ombre-sm: 0 10px 24px rgba(30, 26, 22, .10);
}

/* En-tête SOMBRE (l'emblème à liseré blanc y ressort, façon menu) */
.site-header {
  background: linear-gradient(180deg, rgba(46, 43, 38, .98), rgba(30, 27, 24, .98));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #fff;
  border-bottom: 2px solid var(--ambre);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .30);
}
.brand, .brand:hover { color: #fff; }
.brand-logo { border-radius: 0; filter: drop-shadow(0 3px 6px rgba(0,0,0,.35)); }
.brand-name { color: #fff; }
.brand-sub { color: var(--ambre-clair); }
.main-nav a { color: rgba(255, 255, 255, .88); opacity: 1; }
.main-nav a:hover { background: rgba(255, 255, 255, .13); color: #fff; }
.main-nav a.nav-active { background: var(--braise); color: #fff; }
.cart-count { border-color: #2b2926; }

/* Filet doré sous les titres (garde une pointe d'orange) */
.section-head h2::after { background: linear-gradient(90deg, var(--braise), var(--ambre)); width: 74px; height: 4px; }

/* Pied SOMBRE = rappel du bas de menu, badge complet en évidence */
.site-footer {
  background: linear-gradient(180deg, #2b2825, #201d1a);
  color: rgba(255, 255, 255, .72);
  border-top: 3px solid var(--ambre);
}
.site-footer strong { color: #fff; }
.site-footer a { color: var(--ambre-clair); }
.site-footer .small, .site-footer .muted, .foot-allerg { color: rgba(255,255,255,.6); }
.foot-logo { width: 132px; height: auto; }

/* Épicé = rouge du menu */
.tag-epice { background: #fbe1de; color: var(--rouge); }

/* Onglets : survol doré, actif orange (conservé) */
.cat-tab:hover { border-color: var(--ambre); }
.cat-tile:hover { border-color: var(--ambre); }
.cat-tile:hover .tile-ic { background: radial-gradient(circle at 30% 25%, #f6e6c4, #e8cf9c); }

/* Logo en GRAND en tête de la home + TEXTE À DROITE (2 colonnes) */
.hero-layout { display: flex; align-items: center; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.hero-logo {
  flex: 0 0 auto; width: clamp(190px, 24vw, 300px); height: auto; margin: 0;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .55));
  animation: heroLogoIn .7s cubic-bezier(.2,.7,.2,1) both;
}
.hero-layout .hero-copy { flex: 1 1 360px; min-width: 0; max-width: 600px; }
@keyframes heroLogoIn { from { opacity: 0; transform: translateY(14px) scale(.94); } }
.hero::after { display: none; } /* le grand logo remplace le filigrane sur la home */
@media (max-width: 820px) {
  .hero-layout { flex-direction: column; align-items: center; text-align: center; gap: 22px; }
  .hero-copy { text-align: center; }
  .hero-status, .hero-cta, .hero-badges { justify-content: center; }
  .hero-award { align-self: center; }
}

/* ===== Polices calées sur le logo (condensé / impact italique) ===== */
:root { --font-titre: "Oswald", "Baloo 2", system-ui, sans-serif; --font-display: "Anton", "Oswald", Impact, sans-serif; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: .2px; }
.hero h1, .section-head h2, .page-hero h1, .cat-hero h1, .cat-banner h3,
.story-card h2, .promo-title, .pb-title, .fid-head h2, .db-text h2, .pp-head h3 {
  font-family: var(--font-display); font-weight: 400; font-style: normal;
  text-transform: uppercase; letter-spacing: .5px; line-height: 1.03;
}

/* ===== Header : LOGO ENTIER (badge complet avec le nom) ===== */
.brand-logo { width: auto; height: 58px; border-radius: 0; filter: drop-shadow(0 2px 5px rgba(0,0,0,.4)); }
.brand-name { display: none; } /* le badge porte déjà le nom → on garde la ville */
.brand-sub { color: var(--ambre-clair); font-size: .8rem; font-weight: 700; }
@media (max-width: 620px) { .brand-logo { height: 46px; } .brand-sub { display: none; } }

/* ==========================================================================
   CHARTE v2 — ROUGE du menu À LA PLACE de l'orange (charbon + doré + ROUGE).
   L'orange est retiré partout ; le rouge devient la couleur d'action.
   ========================================================================== */
:root {
  --braise: #d81f26;    /* ROUGE = couleur d'action (remplace l'orange) */
  --braise-d: #a8141a;  /* rouge foncé (survol) */
  --flamme: #e83a30;    /* rouge clair (dégradés) */
  --rouge: #d81f26;
}
/* Boutons & dégradés : 100% rouge */
.btn-primary { background: linear-gradient(135deg, var(--flamme), var(--braise)); color: #fff; box-shadow: 0 8px 22px rgba(216,31,38,.42); }
.btn-primary:hover { background: linear-gradient(135deg, var(--braise), var(--braise-d)); filter: none; box-shadow: 0 14px 32px rgba(216,31,38,.5); }

/* Hero : voile charbon + lueur ROUGE (fini l'orange) */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20,17,14,.92) 0%, rgba(20,17,14,.64) 42%, rgba(20,17,14,.24) 75%, rgba(20,17,14,0) 100%),
    linear-gradient(0deg, rgba(216,31,38,.30) 0%, rgba(20,17,14,0) 42%);
}
@media (max-width: 860px) { .hero-overlay { background: linear-gradient(0deg, rgba(20,17,14,.93) 6%, rgba(20,17,14,.5) 55%, rgba(20,17,14,.64) 100%); } }
.hero-promo { box-shadow: 0 6px 18px rgba(216,31,38,.42); }
.hero-inner { padding-bottom: 92px; }

/* Bande d'infos EN BAS du hero, centrée sur une seule ligne */
.hero-strip {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; padding: 0 16px;
}
@media (max-width: 820px) { .hero-strip { position: static; margin: 22px 0 0; } .hero-inner { padding-bottom: 56px; } }
/* pastilles du hero : hauteur/padding/typo UNIFORMES + centrées (fix alignement) */
.hero-strip { align-items: center; gap: 10px; }
.hero-strip > * {
  margin: 0; align-self: center; box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 7px 16px; font-size: .82rem; line-height: 1.1; font-weight: 800;
}

/* Bandeau de page (carte / promos) en CHARBON, comme le menu */
.page-hero {
  background:
    radial-gradient(900px 300px at 82% -30%, rgba(216,31,38,.22), transparent 60%),
    linear-gradient(135deg, #2b2926, #1f1c19);
  color: #fff; border-bottom: 2px solid var(--ambre);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); }
.page-hero::after { opacity: .22; }

/* Retrait des touches pêche/orange résiduelles → crème & doré neutres */
.tile-ic { background: radial-gradient(circle at 30% 25%, #f6ecd6, #efe1c4); }
.cat-tile:hover .tile-ic { background: radial-gradient(circle at 30% 25%, #f1e2bd, #e7d09d); }
.story-card { background: linear-gradient(160deg, #fbf7f0, #efe6d5); }
.order-code { background: linear-gradient(135deg, #fbf7f0, #f2ead9); border-color: var(--braise); }
.oc-code { color: var(--braise); }
.fid-stamps .stamp.on { background: linear-gradient(135deg, #f7efdb, #ecdcb4); border-color: var(--ambre); }
.direct-banner { box-shadow: 0 14px 34px rgba(216,31,38,.34); }
.cart-bar { box-shadow: 0 12px 30px rgba(216,31,38,.5); }
.topbar-tel { box-shadow: 0 4px 12px rgba(216,31,38,.42); }

/* Icône caddie en BLANC (SVG) */
.cart-ic { display: block; color: #fff; }
.cart-btn { color: #fff; }
.cart-bar-mid { display: inline-flex; align-items: center; gap: 8px; }

/* ===== Bandeau haut : UNE seule ligne, centrée & alignée (n° + message) ===== */
.topbar { justify-content: center; align-items: center; gap: 10px; }
.topbar-tel { background: none; box-shadow: none; padding: 0; color: #fff; font-weight: 800; }
.topbar-tel:hover { filter: none; color: var(--ambre-clair); }
.topbar-msg { color: rgba(255,255,255,.92); font-weight: 600; }
.topbar-msg::before { content: "·"; color: var(--ambre); margin-right: 10px; font-weight: 800; }
@media (max-width: 620px) { .topbar-msg { display: inline; } .topbar { font-size: .72rem; gap: 8px; } }
@media (max-width: 380px) { .topbar-msg { display: none; } }

/* ==========================================================================
   FOND HARMONISÉ — GRIS chaud en dégradé (bien visible) + cartes blanches
   ========================================================================== */
:root { --creme: #e6e4df; --creme-2: #d9d5ce; --bord: #cfc9c0; }
body {
  background:
    radial-gradient(1000px 460px at 50% -8%, #f2f1ee, rgba(242,241,238,0) 55%),
    linear-gradient(180deg, #e7e4df 0%, #d0ccc4 100%);
  background-attachment: fixed;
}
.infos-section { background: linear-gradient(180deg, #ddd9d2, #cdc8c0); border-top: 1px solid var(--bord); }
.cat-tabs { background: rgba(231,228,223,.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.story-card { background: linear-gradient(160deg, #ffffff, #e8e5df); }
.order-recap, .allerg-note p, .cart-foot, .qty-btn { background: #ded9d2; }
/* cartes = restent BLANCHES (le blanc conservé), léger dégradé pour la profondeur */
.item-card, .info-card, .cat-tile { background: linear-gradient(180deg, #ffffff, #f7f6f4); border-color: #e4e0d9; }
.map-wrap { background: #d9d5ce; }
/* Logo pop-up = badge complet (entier) */
.pp-logo { width: auto; height: 74px; }

/* ===== Téléphone intégré au HEADER (bandeau séparé supprimé) ===== */
.site-header { top: 0; }
.cat-tabs { top: var(--nav-h); }
html { scroll-padding-top: calc(var(--nav-h) + 14px); }
.header-tel { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 800; font-size: .96rem; white-space: nowrap; }
.header-tel .ht-msg { color: rgba(255,255,255,.78); font-weight: 600; }
.header-tel:hover { color: var(--ambre-clair); }
@media (max-width: 1040px) { .header-tel .ht-msg { display: none; } }
@media (max-width: 760px) {
  .header-tel { font-size: .82rem; gap: 5px; }
  .header-tel .tel-emoji { display: none; }
  .header-inner { gap: 10px; }
  .main-nav { gap: 4px; }
}

/* ==========================================================================
   QA — correctifs mise en page (audit multi-agents, revue complète)
   ========================================================================== */
/* Header : jamais de débordement sur petit écran (≤480 = pastille 📞 seule) */
.brand-logo { max-width: 46vw; }
.main-nav, .header-tel { min-width: 0; }
@media (max-width: 480px) {
  .header-tel [data-tel-text], .header-tel .ht-msg { display: none; }
  .header-tel .tel-emoji { display: inline !important; font-size: 1.2rem; }
}
/* Carte « Halal & allergènes » : liseré doré rétabli */
.info-card.highlight-card { border-color: var(--ambre); }
/* Rythme vertical de l'accueil, homogène (~72px) */
#directBanner { margin-top: 40px; }
.promos { padding-top: 0; }
.section-head { margin-top: 72px; }
.story { padding-top: 72px; }
.fidelite-section { margin-top: 72px; }
.map-section { padding-bottom: 48px; }
.infos-section + .map-section .section-head { margin-top: 8px; }
/* Badges dorés : ombre alignée sur l'or (fini la lueur orange résiduelle) */
.hero-award, .story-badge { box-shadow: 0 6px 18px rgba(201,154,67,.35); }
/* Voile sur les grands visuels promo (page promotions) */
.pb-media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,19,16,.05), rgba(24,19,16,.42)); }
/* Barre panier flottante : libellé centré */
.cart-bar-mid { justify-content: center; }
/* Accessibilité clavier : anneau de focus sur les puces (input masqué) */
.chip:focus-within, .mode-chip:focus-within { outline: 3px solid var(--ambre); outline-offset: 2px; }
/* Ancrage scroll : dégager header + onglets collants */
html { scroll-padding-top: calc(var(--nav-h) + 76px); }

/* ---- Responsive ---- */
/* Onglets de la carte : une seule ligne défilante jusqu'au desktop */
@media (max-width: 860px) {
  .cat-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
}
/* Infos accueil : palier 2 colonnes entre tablette et desktop */
@media (max-width: 1100px) { .infos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .infos-grid { grid-template-columns: 1fr; } }
/* Hero empilé : combler le vide sous les pastilles + centrer le paragraphe */
@media (max-width: 820px) {
  .hero-inner { padding-bottom: 16px; }
  .hero-strip { margin-top: 18px; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
}
/* Divers mobile */
@media (max-width: 620px) {
  .story-card { padding: 32px 20px; }
  .direct-banner .btn { width: 100%; }
}
@media (max-width: 760px) { .toast { bottom: 84px; } }
@media (max-width: 400px) {
  .hours { font-size: .82rem; }
  .hours td:last-child { white-space: nowrap; }
}

/* ===== Horaires : présentation claire (jours regroupés, 2 services alignés) ===== */
.hours td { padding: 8px 0; vertical-align: top; }
.hours .h-day { font-weight: 700; padding-right: 12px; }
.hours .h-time { text-align: right; color: var(--texte-doux); }
.hours .h-time span { display: block; white-space: nowrap; line-height: 1.35; }
.hours .h-closed { color: var(--rouge); font-weight: 700; }
.hours tr.today .h-day, .hours tr.today .h-time, .hours tr.today .h-time span { color: var(--braise); font-weight: 800; }

/* ===== Carte Google en « clic pour afficher » (RGPD : pas d'appel Google au chargement) ===== */
.map-consent { width: 100%; min-height: 300px; border: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: #e7e4e0; color: var(--texte); font: inherit; padding: 28px 24px; transition: background .2s; }
.map-consent:hover { background: #ded9d2; }
.map-consent-ic { font-size: 2.6rem; }
.map-consent-t { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px; font-size: 1.2rem; }
.map-consent-s { color: var(--texte-doux); font-size: .85rem; text-align: center; max-width: 40ch; }

/* ===== Pages légales (mentions / confidentialité) ===== */
.legal { max-width: 880px; margin: 0 auto; padding: 8px 20px 48px; }
.legal .card { background: var(--blanc); border: 1px solid var(--bord); border-radius: var(--rayon); padding: 26px 30px; box-shadow: var(--ombre-sm); }
.legal h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px; font-size: 1.25rem; margin: 26px 0 10px; }
.legal h2:first-child { margin-top: 4px; }
.legal p, .legal li { color: var(--texte-doux); line-height: 1.7; }
.legal p { margin-bottom: 10px; }
.legal ul { margin: 6px 0 12px 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--braise); font-weight: 700; }
.legal strong { color: var(--texte); }
.legal .todo { background: #fff4d6; border: 1px dashed var(--ambre); color: #8a6300; padding: 1px 8px; border-radius: 6px; font-weight: 700; font-size: .92em; }
.legal .upd { color: var(--texte-doux); font-size: .85rem; margin-bottom: 18px; }
/* Liens légaux du pied de page */
.foot-legal { margin-top: 6px; }
.foot-legal a { color: var(--ambre-clair); font-weight: 700; }
/* Signature studio */
.foot-credit { margin-top: 8px; font-size: .78rem; letter-spacing: .04em; }
.foot-credit a { color: rgba(230,200,119,.75); text-decoration: none; }
.foot-credit a:hover { color: var(--ambre-clair); text-decoration: underline; }
@media (max-width: 620px) { .legal .card { padding: 20px; } }

/* ===== Affiches promo (galerie cliquable) ===== */
.affiches-section { padding-top: 8px; }
.affiches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.affiche { display: block; border-radius: 18px; overflow: hidden; box-shadow: var(--ombre-sm); border: 1px solid var(--bord); background: #14110e; transition: transform .18s ease, box-shadow .2s; }
.affiche:hover { transform: translateY(-5px); box-shadow: var(--ombre); }
.affiche img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .affiches { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .affiches { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ===== Nos atouts (pictos SVG recréés des affiches) ===== */
.atouts-section { padding-top: 8px; margin-top: 40px; }
.atouts { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 30px; }
.atout { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 132px; text-align: center; }
.atout-ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, #ffffff, #f1efe9); border: 1px solid var(--bord); color: #a97f2e; box-shadow: var(--ombre-sm); transition: transform .18s ease; }
.atout:hover .atout-ic { transform: translateY(-4px) rotate(-3deg); }
.atout-ic svg { width: 30px; height: 30px; }
.atout > span:last-child { font-family: var(--font-titre); font-weight: 700; font-size: .92rem; }

/* ===== Réseaux sociaux (footer) ===== */
.foot-social { display: flex; justify-content: center; gap: 12px; margin: 12px 0 4px; }
.soc-link { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(201,154,67,.55); transition: all .18s ease; }
.soc-link:hover { background: var(--braise); border-color: var(--braise); transform: translateY(-2px); }
.soc-link svg { width: 20px; height: 20px; }

/* ==========================================================================
   FOND GRIS FONCÉ + texte clair (façon affiches) — cartes claires conservées
   ========================================================================== */
body { background: linear-gradient(180deg, #3a362f 0%, #2a2722 100%); background-attachment: fixed; }
.section-head h2 { color: #f5f2ec; }
.section-head p { color: rgba(255,255,255,.72); }
.section-head p .inline-link { color: var(--ambre-clair); }
.atout > span:last-child { color: #f1ede6; }
.infos-section { background: linear-gradient(180deg, #302c27, #262320); border-top: 1px solid #423b33; }
.cat-tabs { background: rgba(28,25,22,.92); }
.allerg-note p { background: #322e29; color: rgba(255,255,255,.72); }

/* ===== « Nos offres » en style AFFICHE (charbon + doré + prix rouge) ===== */
.promo-card {
  display: flex; flex-direction: column; text-align: left; color: #fff;
  background: #2b2926; border: 1px solid rgba(201,154,67,.45); border-radius: 20px;
  overflow: hidden; box-shadow: var(--ombre-sm); min-height: 0; padding: 0;
  transition: transform .16s ease, box-shadow .2s, border-color .2s;
}
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--ombre); border-color: var(--ambre); }
.promo-media { position: relative; display: block; height: 158px; background-size: cover; background-position: center; }
.promo-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,0) 45%, rgba(20,17,14,.6)); }
.promo-card .promo-badge { position: absolute; top: 12px; left: 12px; z-index: 1; }
.promo-body { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; flex: 1; }
.promo-card .promo-title { font-size: 1.35rem; color: #fff; text-shadow: none; }
.promo-card .promo-text { font-size: .9rem; color: rgba(255,255,255,.72); flex: 1; }
.promo-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.promo-card .promo-price { background: var(--braise); color: #fff; font-weight: 800; padding: 5px 12px; border-radius: 8px; font-size: 1.05rem; box-shadow: 0 4px 12px rgba(216,31,38,.35); }
.promo-card .promo-cta { color: var(--ambre-clair); font-weight: 800; font-size: .9rem; }

/* ===== Photo d'article (quand le prospectus en fournit une) ===== */
.item-photo { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 14px; background-size: cover; background-position: center; box-shadow: var(--ombre-sm); transition: transform .2s ease; }
.item-card:hover .item-photo { transform: scale(1.06) rotate(-2deg); }

/* ===== Bouton « Appeler » (rubrique Nous situer) lisible sur fond foncé ===== */
.map-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.map-actions .btn-ghost:hover { background: #fff; color: var(--charbon); }

/* ==========================================================================
   EMBLÈME ANIMÉ du hero (SVG) — broche qui tourne, rayons, vapeur, flamme, tracé
   ========================================================================== */
.hero-brand { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-emblem { width: clamp(200px, 26vw, 300px); height: auto; filter: drop-shadow(0 14px 30px rgba(0,0,0,.5)); animation: heroLogoIn .7s cubic-bezier(.2,.7,.2,1) both; }
.hero-wordmark { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.hw-name { font-family: var(--font-display); text-transform: uppercase; color: #fff; font-size: clamp(1.4rem, 3.4vw, 2rem); letter-spacing: .5px; text-shadow: 0 3px 12px rgba(0,0,0,.5); }
.hw-sub { color: var(--ambre-clair); font-weight: 700; letter-spacing: 4px; font-size: .68rem; text-transform: uppercase; margin-top: 5px; }

/* Rayons qui pulsent */
.hero-emblem .rays { animation: rayPulse 3.2s ease-in-out infinite; }
@keyframes rayPulse { 0%, 100% { opacity: .4; } 50% { opacity: .95; } }
/* Broche qui "tourne" : reflet qui balaie + léger souffle */
.hero-emblem .shine { animation: shineSweep 3.6s ease-in-out infinite; }
@keyframes shineSweep { 0% { transform: translateX(-6px); opacity: 0; } 20% { opacity: 1; } 55% { transform: translateX(118px); opacity: 0; } 100% { transform: translateX(118px); opacity: 0; } }
.hero-emblem .broche { transform-box: fill-box; transform-origin: center; animation: broche 4.2s ease-in-out infinite; }
@keyframes broche { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(.965); } }
/* Vapeur qui monte */
.hero-emblem .steam { opacity: 1; }
.hero-emblem .steam path { transform-box: fill-box; }
.hero-emblem .steam .steam1 { animation: steam 3s ease-out infinite; }
.hero-emblem .steam .steam2 { animation: steam 3s ease-out .6s infinite; }
.hero-emblem .steam .steam3 { animation: steam 3s ease-out 1.2s infinite; }
@keyframes steam { 0% { opacity: 0; transform: translateY(8px); } 35% { opacity: .75; } 100% { opacity: 0; transform: translateY(-12px); } }
/* Flamme qui vacille */
.hero-emblem .flame { transform-box: fill-box; transform-origin: center bottom; animation: flame 1.5s ease-in-out infinite; }
@keyframes flame { 0%, 100% { transform: scale(1) rotate(-2deg); opacity: .9; } 50% { transform: scale(1.1, 1.2) rotate(2deg); opacity: 1; } }
/* Tracé au chargement (broche + sabre se dessinent) */
.hero-emblem .trace { stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw 1.6s ease-out .2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Accessibilité : pas d'animation si l'utilisateur le demande (emblème reste net) */
@media (prefers-reduced-motion: reduce) {
  .hero-emblem .trace { stroke-dashoffset: 0 !important; }
  .hero-emblem .steam { opacity: 0 !important; }
}

/* ===== Logo réel dans le hero + FUMÉE animée par-dessus ===== */
.hero-logo-wrap { position: relative; display: inline-block; line-height: 0; }
.hero-logo-wrap .hero-logo { width: clamp(200px, 26vw, 300px); height: auto; display: block; margin: 0; filter: drop-shadow(0 14px 30px rgba(0,0,0,.5)); animation: heroLogoIn .7s cubic-bezier(.2,.7,.2,1) both; }
.hero-smoke { position: absolute; left: 50%; top: -7%; transform: translateX(-50%); width: 44%; height: 48%; pointer-events: none; z-index: 2; overflow: visible; filter: blur(.7px); }
.hero-smoke .sm { transform-box: fill-box; transform-origin: bottom center; opacity: 0; }
.hero-smoke .sm1 { animation: smoke 3.6s ease-out infinite; }
.hero-smoke .sm2 { animation: smoke 3.6s ease-out .9s infinite; }
.hero-smoke .sm3 { animation: smoke 3.6s ease-out 1.8s infinite; }
@keyframes smoke {
  0%   { opacity: 0;  transform: translateY(16px) scaleY(.6); }
  25%  { opacity: .5; }
  70%  { opacity: .28; }
  100% { opacity: 0;  transform: translateY(-22px) scaleY(1.2); }
}
@media (prefers-reduced-motion: reduce) { .hero-smoke { display: none; } }


/* ===== A11y : lien d'évitement + focus clavier (EAA) ===== */
.skip-link{position:absolute;left:-9999px;top:0;z-index:2000;background:var(--braise,#e8541d);color:#fff;padding:12px 18px;border-radius:0 0 10px 0;font-weight:700;text-decoration:none}
.skip-link:focus{left:0;outline:3px solid #fff;outline-offset:-3px}
a:focus-visible,button:focus-visible,[tabindex]:focus-visible,.btn:focus-visible{outline:3px solid var(--ambre,#f5a300);outline-offset:2px;border-radius:4px}
/* ===== Avis Google ===== */
.avis-section{padding:24px 0}
.avis-card{display:flex;gap:26px;align-items:center;flex-wrap:wrap;background:#fff;color:var(--charbon,#2b2926);border-radius:20px;padding:26px 30px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.avis-score{display:flex;flex-direction:column;align-items:center;min-width:150px}
.avis-note{font-family:var(--font-display,var(--font-titre,inherit));font-size:3.2rem;line-height:1;color:var(--charbon,#2b2926)}
.avis-stars{color:#f5a300;font-size:1.5rem;letter-spacing:3px;margin-top:4px}
.avis-count{font-size:.9rem;color:#6b6b6b;margin-top:6px}
.avis-text{flex:1;min-width:240px}
.avis-text h2{margin:0 0 8px}
.avis-text p{margin:0 0 14px}
@media(max-width:600px){.avis-card{flex-direction:column;text-align:center}}

/* ===== Bandeau « mezze » — habillage éditorial de la home ===== */
.mezze-band{position:relative;margin:56px 0;padding:66px 20px;text-align:center;
  background:linear-gradient(rgba(20,16,12,.55),rgba(20,16,12,.70)), url("../assets/img/home-mezze.jpg") center/cover;
  background-attachment:fixed;border-top:1px solid rgba(207,162,74,.25);border-bottom:1px solid rgba(207,162,74,.25)}
.mezze-band-inner{max-width:640px;margin:0 auto;color:#fff}
.mezze-eyebrow{letter-spacing:3px;text-transform:uppercase;font-size:.82rem;color:var(--ambre,#f5a300);margin:0 0 10px}
.mezze-band h2{color:#fff;margin:0 0 10px;font-size:clamp(1.7rem,4vw,2.6rem)}
.mezze-sub{color:rgba(255,255,255,.92);margin:0 0 22px;font-size:1.05rem}
@media(max-width:600px){.mezze-band{background-attachment:scroll;padding:48px 18px;margin:40px 0}}

/* ===== Pop-up de départ dans la charte (charbon/doré) — pas en gris clair ===== */
.promo-popup-card{
  background:linear-gradient(180deg,#2c2723 0%,#1f1b18 100%)!important;
  color:var(--creme,#fbf2e2);
  border:1px solid rgba(207,162,74,.38);
  box-shadow:0 26px 72px rgba(0,0,0,.6);
}
.promo-popup-card .pp-head h3{color:#fff;}
.promo-popup-card .pp-head p,.promo-popup-card .pp-head .muted,.promo-popup-card .muted{color:rgba(251,242,226,.78)!important;}
.promo-popup-card .modal-close{color:var(--creme,#fbf2e2);}
.promo-popup-card .modal-close:hover{background:rgba(255,255,255,.14);}
.promo-popup-card .link-btn{color:rgba(251,242,226,.82);}
.promo-popup-card .link-btn:hover{color:#fff;}
.promo-popup-card .pp-head{border-bottom:1px solid rgba(207,162,74,.22);padding-bottom:6px;margin-bottom:6px;}

/* ===== Page Spécialités turques ===== */
.turc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px;margin:22px 0}
.turc-card{display:flex;flex-direction:column;border-radius:18px;overflow:hidden;background:#fff;color:var(--charbon,#2b2926);text-decoration:none;border:1px solid rgba(207,162,74,.28);box-shadow:0 8px 26px rgba(0,0,0,.18);transition:transform .25s,box-shadow .25s}
.turc-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.3)}
.turc-photo{display:block;height:172px;background-size:cover;background-position:center;background-color:var(--charbon,#2b2926)}
.turc-emoji{display:flex;align-items:center;justify-content:center;height:172px;font-size:4rem;background:linear-gradient(160deg,#2c2723,#1f1b18)}
.turc-body{display:flex;flex-direction:column;gap:6px;padding:16px 18px;flex:1}
.turc-name{font-family:var(--font-titre,inherit);font-weight:800;font-size:1.15rem;line-height:1.15}
.turc-desc{color:#6b6b6b;font-size:.92rem;flex:1}
.turc-foot{display:flex;align-items:center;justify-content:space-between;margin-top:8px}
.turc-price{font-weight:800;color:var(--braise,#d81f26);font-size:1.05rem}
.turc-cta{color:var(--ambre,#cfa24a);font-weight:700;font-size:.9rem}
.turc-more{text-align:center;margin:10px 0 8px}
.turc-cat{font-size:.72rem;letter-spacing:.6px;text-transform:uppercase;color:var(--ambre,#cfa24a);font-weight:700}

/* ===== Tuiles catégories avec pictos photo (fond blanc, aliment détouré) ===== */
.tile-ic.tile-photo{width:96px;height:96px;background:#fff;background-size:contain;background-repeat:no-repeat;background-position:center}
.cat-tile:hover .tile-ic.tile-photo{background:#fff;background-size:contain;background-repeat:no-repeat;background-position:center;transform:scale(1.08) rotate(-3deg)}

/* Picto de catégorie en vignette d'article (fond blanc, aliment entier) */
.item-photo.item-photo-contain{background-size:contain;background-color:#fff}

/* ===== Bandeau photos défilant (mouvement sur toutes les pages) ===== */
.food-marquee{overflow:hidden;width:100%;background:linear-gradient(180deg,#241f1b,#1b1714);padding:16px 0;border-top:1px solid rgba(207,162,74,.22);border-bottom:1px solid rgba(207,162,74,.22)}
.marquee-track{display:flex;gap:14px;width:max-content;padding:0 7px;animation:marqueeScroll 45s linear infinite}
.food-marquee:hover .marquee-track{animation-play-state:paused}
.marquee-item{flex:0 0 auto;width:210px;height:124px;border-radius:14px;background-size:cover;background-position:center;box-shadow:0 8px 20px rgba(0,0,0,.4)}
@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.marquee-track{animation:none}}
@media (max-width:600px){.marquee-item{width:150px;height:92px}}
/* Picto (fond blanc) en vignette de carte « Spécialités » : aliment entier, pas rogné */
.turc-photo.turc-photo-contain{background-size:contain;background-repeat:no-repeat;background-color:#fff}
/* Lien e-mail du bloc contact (texte injecté par app.js → icône en ::before) */
.contact-link.mail::before{content:"✉️ ";}

/* ===== Correctif : jamais de répétition d'image de fond =====
   Avec `background-size: contain`, le navigateur RÉPÈTE l'image par défaut pour
   combler le vide (on voyait des tranches en haut/bas des vignettes produit).
   NB : le motif étoilé décoratif de theme-premium.css garde son `repeat` voulu. */
.item-photo,
.item-photo.item-photo-contain,
.turc-photo,
.turc-photo.turc-photo-contain,
.tile-ic.tile-photo,
.cat-banner,
.cat-hero-bg,
.promo-media,
.pb-media,
.pp-item,
.marquee-item,
.mezze-band { background-repeat: no-repeat; }

/* ===== Bloc « Partagez cette page à vos amis » ===== */
.share-section{padding:20px 0 8px}
.share-card{display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  background:linear-gradient(180deg,#2c2723 0%,#211d19 100%);
  border:1px solid rgba(207,162,74,.35);border-radius:20px;padding:24px 28px;
  box-shadow:0 12px 34px rgba(0,0,0,.32)}
.share-ic{font-size:2.4rem;line-height:1;flex:0 0 auto}
.share-text{flex:1 1 260px;min-width:0}
.share-text h2{color:#fff;margin:0 0 4px;font-size:clamp(1.2rem,2.6vw,1.6rem)}
.share-text p{color:rgba(251,242,226,.82);margin:0;font-size:.96rem}
.share-actions{display:flex;gap:10px;flex-wrap:wrap;flex:0 0 auto}
.share-actions .btn{padding:10px 16px;font-size:.92rem}
.share-actions .btn-ghost{color:var(--creme,#fbf2e2);border-color:rgba(207,162,74,.55);background:transparent}
.share-actions .btn-ghost:hover{background:rgba(207,162,74,.16);color:#fff}
@media(max-width:720px){
  .share-card{flex-direction:column;align-items:flex-start;text-align:left;padding:22px 20px}
  .share-actions{width:100%}
  .share-actions .btn{flex:1 1 auto;justify-content:center}
}


/* Icône officielle du bloc partage (remplace l'emoji) */
.share-ic{width:72px;height:72px;flex:0 0 auto;object-fit:contain;display:block}
@media(max-width:720px){.share-ic{width:58px;height:58px}}

/* ===== MODALES À LA CHARTE (article + commande) — étaient en gris clair ===== */
#itemModal .modal-card,
#checkoutModal .modal-card{
  background:linear-gradient(180deg,#2c2723 0%,#211d19 100%);
  color:var(--creme,#fbf2e2);
  border:1px solid rgba(207,162,74,.35);
  box-shadow:0 26px 72px rgba(0,0,0,.6);
}
#itemModal .modal-card h3,#checkoutModal .modal-card h3,
#itemModal .modal-card h4,#checkoutModal .modal-card h4,
#itemModal legend,#checkoutModal legend{color:#fff}
#itemModal .muted,#checkoutModal .muted,
#itemModal .opt-label,#itemModal .note-field span,
#checkoutModal label,#checkoutModal .order-recap{color:rgba(251,242,226,.80)}
#itemModal .modal-close,#checkoutModal .modal-close{color:var(--creme,#fbf2e2);background:rgba(255,255,255,.06)}
#itemModal .modal-close:hover,#checkoutModal .modal-close:hover{background:rgba(255,255,255,.16)}
/* Chips d'options lisibles sur fond sombre */
#itemModal .chip{background:rgba(255,255,255,.07);border-color:rgba(207,162,74,.30);color:var(--creme,#fbf2e2)}
#itemModal .chip:hover{background:rgba(207,162,74,.18)}
#itemModal .chip.checked{background:var(--braise,#d81f26);border-color:var(--braise,#d81f26);color:#fff}
#itemModal .opt-group{border-color:rgba(207,162,74,.22)}
/* Champs de saisie */
#itemModal input[type=text],#checkoutModal input{
  background:rgba(255,255,255,.06);border:1px solid rgba(207,162,74,.28);color:#fff}
#itemModal input::placeholder,#checkoutModal input::placeholder{color:rgba(251,242,226,.45)}
#itemModal input:focus,#checkoutModal input:focus{border-color:var(--ambre,#cfa24a);outline:none}
/* Quantité + récap + lignes de total */
#itemModal .qty{background:rgba(255,255,255,.07);border-color:rgba(207,162,74,.28)}
#itemModal .qty-btn,#itemModal #qtyValue{color:#fff}
#checkoutModal .order-recap{background:rgba(255,255,255,.05);border-color:rgba(207,162,74,.22)}
#checkoutModal .cart-line{color:rgba(251,242,226,.85)}
#checkoutModal .cart-line.total{color:#fff}
#itemModal .link-btn,#checkoutModal .link-btn{color:rgba(251,242,226,.82)}
#itemModal .link-btn:hover,#checkoutModal .link-btn:hover{color:#fff}

/* Vignette produit dans la fiche : vraie photo au lieu de l'emoji */
.modal-emoji.has-photo{background-size:cover;background-position:center;background-repeat:no-repeat;
  width:68px;height:68px;border:1px solid rgba(207,162,74,.30)}
.modal-emoji.has-photo.is-picto{background-size:contain;background-color:#fff}

/* ===== Icône partage : pastille dorée au trait (langage graphique du site) ===== */
.share-ic{width:66px;height:66px;flex:0 0 auto;display:flex;align-items:center;justify-content:center;
  border-radius:50%;border:1.5px solid rgba(207,162,74,.45);
  background:radial-gradient(circle at 32% 28%, rgba(207,162,74,.20), rgba(207,162,74,.07));
  color:var(--ambre,#cfa24a);box-shadow:inset 0 0 0 1px rgba(255,255,255,.04)}
.share-ic svg{width:32px;height:32px;display:block}
@media(max-width:720px){.share-ic{width:54px;height:54px}.share-ic svg{width:26px;height:26px}}

/* ===== Icônes au trait (remplacent les emoji) — taille & alignement ===== */
.ic{width:1.15em;height:1.15em;display:inline-block;vertical-align:-.2em;flex:0 0 auto}
.hero-badges .ic{width:1.05em;height:1.05em;color:var(--ambre,#cfa24a)}
.info-card h3 .ic{width:1.1em;height:1.1em;color:var(--braise,#d81f26);vertical-align:-.15em;margin-right:2px}
.db-tag .ic{width:1em;height:1em;color:inherit}
.fid-icon .ic{width:34px;height:34px;color:var(--ambre,#cfa24a)}
.contact-link .ic{width:1.1em;height:1.1em;margin-right:6px}
.map-actions .btn .ic,.share-actions .btn .ic{width:1.05em;height:1.05em;margin-right:6px}
.tel-emoji .ic{width:1.05em;height:1.05em;color:inherit;vertical-align:-.18em}
.cart-empty-ic .ic{width:44px;height:44px;color:var(--gris,#8b8b8b)}
.modal-emoji .ic{width:30px;height:30px;color:var(--ambre,#cfa24a)}
.map-consent .ic{width:30px;height:30px;color:var(--ambre,#cfa24a)}
.checkout-actions .btn .ic{width:1.05em;height:1.05em;margin-right:6px}

/* ===== Page 404 ===== */
.e404{min-height:58vh;display:flex;align-items:center;padding:56px 0}
.e404-inner{text-align:center;max-width:640px}
.e404-code{font-family:var(--font-display,var(--font-titre,inherit));font-size:clamp(4.5rem,16vw,9rem);
  line-height:.9;margin:0 0 6px;color:transparent;-webkit-text-stroke:2px rgba(207,162,74,.55);
  letter-spacing:.02em}
.e404 h1{color:#fff;margin:0 0 10px;font-size:clamp(1.4rem,4vw,2.2rem)}
.e404-lead{color:rgba(251,242,226,.80);margin:0 auto 24px;max-width:46ch}
.e404-cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:22px}
.e404-links{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;font-size:.94rem}
.e404-links a{color:var(--ambre,#cfa24a);text-decoration:none;border-bottom:1px solid rgba(207,162,74,.35);padding-bottom:2px}
.e404-links a:hover{color:#fff;border-color:#fff}
@media(max-width:600px){.e404{padding:36px 0;min-height:48vh}.e404-cta .btn{flex:1 1 auto;justify-content:center}}
/* 404 : bouton secondaire lisible sur fond sombre (texte blanc, liseré doré) */
.e404-cta .btn-ghost{color:#fff;border-color:var(--ambre,#cfa24a);background:transparent}
.e404-cta .btn-ghost:hover{background:rgba(207,162,74,.16);border-color:var(--ambre-2,#e7cd84);color:#fff}

/* ===== En-tête mobile : la nav (4 liens) ne doit jamais passer sous le panier ===== */
@media (max-width: 620px){
  .header-inner{gap:10px}
  .brand,.cart-btn{flex:0 0 auto}
  .main-nav{flex:1 1 auto;min-width:0;justify-content:flex-end;
    overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;
    scrollbar-width:none;-ms-overflow-style:none}
  .main-nav::-webkit-scrollbar{display:none}
}
@media (max-width: 430px){
  /* le téléphone ayant quitté l'en-tête, les liens respirent (calibré 375px) */
  .main-nav{gap:3px}
  .main-nav a{padding:8px 9px;font-size:.85rem}
  .header-inner{gap:8px}
  .brand-logo{width:42px;height:42px}
  .cart-btn{width:42px;height:42px}
}

/* ===== Petit écran : le téléphone quitte l'en-tête et passe sous le titre ===== */
.hero-tel-mob{display:none}
.hero-tel-mob a{color:#fff;font-family:var(--font-titre,inherit);font-weight:700;
  font-size:1.25rem;letter-spacing:.5px;text-decoration:none;white-space:nowrap}
@media (max-width: 620px){
  .header-tel{display:none}
  .hero-tel-mob{display:block;margin:10px 0 0}
  .page-hero .hero-tel-mob{margin-top:8px}
}

/* ===== Interlignage des gros titres : les accents des CAPITALES (Â, Î, É)
   touchaient la ligne au-dessus avec line-height 1.03 ===== */
.hero h1, .section-head h2, .page-hero h1, .cat-hero h1, .cat-banner h3,
.story-card h2, .promo-title, .pb-title, .fid-head h2, .db-text h2, .pp-head h3,
.e404 h1, .turc-name, .legal h2 { line-height: 1.18; }
.hero h1{ line-height: 1.16; }

/* ===== Correctifs de gabarit =====
   1) .avis-section / .share-section posaient `padding: … 0`, ce qui écrasait le
      `padding: 0 20px` de .wrap → les cartes touchaient les bords de l'écran.
   2) La nav mobile alignée en flex-end laissait le 1er lien déborder à gauche
      sans être atteignable ; `margin-left:auto` aligne à droite sans rogner. */
.avis-section{padding-left:20px;padding-right:20px}
.share-section{padding-left:20px;padding-right:20px}
@media (max-width: 620px){
  .main-nav{justify-content:flex-start;margin-left:auto}
}

/* ===== Bouton de fermeture : zone de clic confortable (44px, norme tactile) =====
   Il faisait ~32px et on le ratait souvent. */
.icon-btn.modal-close,
.drawer-head .icon-btn{
  width:44px;height:44px;padding:0;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;font-size:1.35rem;line-height:1;
}
.modal-close{top:12px;right:12px}
#itemModal .modal-close,#checkoutModal .modal-close{
  background:rgba(255,255,255,.10);color:var(--creme,#fbf2e2)}
#itemModal .modal-close:hover,#checkoutModal .modal-close:hover{
  background:rgba(255,255,255,.22);color:#fff}
#itemModal .modal-close:active,#checkoutModal .modal-close:active{transform:scale(.94)}
.modal-close:focus-visible{outline:3px solid var(--ambre,#cfa24a);outline-offset:2px}
/* le titre ne doit pas passer sous le bouton */
#itemModal .modal-head,#checkoutModal .modal-head{padding-right:52px}
