/* ═══════════════════════════════════════════════════════
   C-livrer DETAIL/PAGES — Sirop Grenadine
   Unbounded + Sora · 100% clair · zéro dégradé
═══════════════════════════════════════════════════════ */

/* Shared transitions */
.g-cardbox, .g-softcard, .g-menu__item, .g-cart__row {
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.g-cardbox:hover, .g-softcard:hover, .g-menu__item:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
  box-shadow: 0 6px 24px rgba(249,115,22,.10);
}

/* ════════════════
   DESKTOP NAVBAR
════════════════ */
.g-desk-nav {
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.g-desk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
  text-decoration: none;
}
.g-desk-logo-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.g-desk-links { display: flex; align-items: center; gap: 4px; }
.g-desk-link {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text3);
  text-decoration: none;
  transition: background .14s, color .14s;
}
.g-desk-link:hover, .g-desk-link.on { background: var(--bg); color: var(--text); }
.g-desk-link.cta {
  background: var(--a);
  color: #fff;
  margin-left: 6px;
  border-radius: var(--r-sm);
}
.g-desk-link.cta:hover { background: var(--a-hv); }

/* ════════════════
   DETAIL PAGE
════════════════ */
.g-detail {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}
.g-detail__header { position: relative; padding: 20px 0 0; }
.g-detail__hero {
  height: 340px;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--surface);
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--border);
}
.g-detail__hero-wash {
  position: absolute;
  inset: 20px calc(50% - 590px) auto;
  max-width: 1180px;
  height: 340px;
  border-radius: 20px;
  background: rgba(249,115,22,.28);
  pointer-events: none;
}
.g-detail__overlay { position: relative; margin-top: -110px; padding: 0 0 16px; }
.g-detail__overlay-inner { max-width: 1060px; margin: 0 auto; padding: 0 16px; }
.g-detail__hero-card {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  padding: 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(249,115,22,.10);
}
.g-detail__hero-copy { min-width: 0; flex: 1; }
.g-detail__hero-side { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; min-width: 220px; }
.g-detail__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.g-detail__title h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text);
}
.g-detail__meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--text3);
  font-size: .9rem;
  font-weight: 600;
}
.g-star { color: #F59E0B; font-weight: 800; }
.g-sep { opacity: .45; }
.g-detail__desc { margin-top: 10px; color: var(--text2); max-width: 68ch; line-height: 1.7; font-size: .93rem; }
.g-detail__content { max-width: 1060px; margin: 0 auto; padding: 0 16px 52px; }
.g-detail__introgrid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; margin-bottom: 20px; }

/* Back/topbtn */
.g-back, .g-topbtn, .g-cartbtn {
  position: absolute;
  top: 38px;
  z-index: 10;
  text-decoration: none;
  padding: 9px 15px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--ui);
  font-weight: 700;
  font-size: 13px;
  transition: border-color .14s, transform .14s;
}
.g-back { left: max(16px, calc(50% - 574px)); }
.g-back:hover, .g-topbtn:hover, .g-cartbtn:hover { border-color: var(--a); transform: translateY(-1px); }
.g-detail__topactions { position: absolute; top: 38px; right: max(16px, calc(50% - 574px)); z-index: 10; display: flex; gap: 8px; align-items: center; }
.g-topbtn { position: static; cursor: pointer; }
.g-cartbtn { position: static; }

/* Badges */
.g-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 13px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: .82rem;
  border: 1.5px solid;
}
.g-badge.is-open { background: var(--ok-bg); color: var(--ok); border-color: var(--border); }
.g-badge.is-closed { background: #f5f5f5; color: #aaa; border-color: #e0e0e0; }

/* Pillbox */
.g-pillbox, .g-pillbox--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: .88rem;
}
.g-pillbox { background: var(--bg); border: 1.5px solid var(--border); color: var(--text2); }
.g-pillbox--outline { background: var(--surface); border: 1.5px solid var(--border); color: var(--text3); }
.g-hero-note { padding: 9px 14px; border-radius: 12px; background: var(--bg); border: 1.5px solid var(--border); color: var(--text2); font-size: .88rem; font-weight: 700; }

/* Softcards */
.g-softcard { padding: 20px; border-radius: 18px; background: var(--surface); border: 1.5px solid var(--border); }
.g-softcard--info { background: var(--bg); }
.g-softcard__eyebrow { font-family: var(--ui); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--a); font-weight: 800; margin-bottom: 10px; }
.g-softcard__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.g-softcard__list div { padding: 12px; border-radius: 12px; background: var(--surface); border: 1.5px solid var(--border); }
.g-softcard__list strong { display: block; color: var(--text); font-size: .88rem; margin-bottom: 5px; font-weight: 700; }
.g-softcard__list span { color: var(--text3); line-height: 1.55; font-size: .9rem; }
.g-muted-dark { color: var(--text2); }
.g-hours { display: flex; flex-direction: column; gap: 0; }
.g-hours__row { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1.5px solid var(--border); }
.g-hours__row:last-child { border-bottom: 0; }
.g-hours__row span { color: var(--text3); font-weight: 600; }
.g-hours__row strong { text-align: right; color: var(--text); font-weight: 700; }

/* Cardbox */
.g-cardbox {
  padding: 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
}
.g-cardbox--warm, .g-cardbox--airy, .g-cardbox--menu-soft { background: var(--surface); }
.g-cardbox--sticky { position: sticky; top: 18px; }
.g-cardbox__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.g-cardbox__head h2 { margin: 0; font-family: var(--display); font-size: 1.6rem; line-height: 1.05; letter-spacing: -.02em; color: var(--text); }
.g-cardbox__sub { margin-top: 6px; color: var(--text3); font-size: .92rem; }
.g-cardbox__sub--dark { color: var(--text2); }

/* Menu */
.g-cat { margin-top: 26px; }
.g-cat__title, .g-cat__title--soft {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--a);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.g-cat__title::after { content: ''; flex: 1; height: 1.5px; background: var(--border); border-radius: 99px; }
.g-menu { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.g-menu__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
}
.g-menu__visual {
  height: 120px;
  border-radius: 12px;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--border);
}
.g-menu__body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.g-menu__headerline { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.g-menu__name, .g-menu__name--soft {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--text);
}
.g-menu__desc, .g-menu__desc--soft { margin-top: 5px; color: var(--text3); line-height: 1.65; font-size: .9rem; max-width: 54ch; }
.g-menu__pricebox { display: flex; align-items: center; justify-content: flex-end; min-width: 120px; }
.g-menu__price, .g-menu__price--soft {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--a);
  line-height: 1;
}
.g-option-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.g-chip--soft { padding: 5px 10px; border-radius: 999px; background: var(--bg); border: 1.5px solid var(--border); font-size: .78rem; font-weight: 700; color: var(--text2); }

/* Customize panel */
.g-customize {
  border-radius: 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.g-customize__summary, .g-customize__summary--soft {
  cursor: pointer;
  list-style: none;
  font-family: var(--ui);
  font-weight: 700;
  font-size: .93rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: var(--a);
  color: #fff;
  transition: background .14s;
}
.g-customize__summary::-webkit-details-marker { display: none; }
.g-customize__summary::after { content: '+'; color: rgba(255,255,255,.85); font-size: 1.2rem; font-weight: 400; }
.g-customize[open] .g-customize__summary::after { content: '−'; }
.g-customize__summary:hover { background: var(--a-hv); }
.g-customize__form { padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.g-customize__block { display: flex; flex-direction: column; gap: 8px; }
.g-customize__title, .g-customize__title--soft {
  font-family: var(--ui);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--a);
}
.g-choice, .g-choice--soft {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--ui);
  transition: border-color .14s;
}
.g-choice:hover { border-color: var(--border2); }
.g-choice--between, .g-choice--between.g-choice--soft { justify-content: space-between; }
.g-choice input { accent-color: var(--a); }
.g-required { color: var(--a); }
.g-customize__actions, .g-customize__actions--soft {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}
.g-qty, .g-qty--soft {
  width: 76px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--ui);
  font-size: .93rem;
  outline: none;
  transition: border-color .14s;
}
.g-qty:focus, .g-input2:focus {
  border-color: var(--a);
  box-shadow: 0 0 0 3px rgba(249,115,22,.10);
  outline: none;
}
.g-qtybox { display: flex; flex-direction: column; gap: 5px; font-weight: 700; color: var(--text); font-family: var(--ui); }
.g-menu__quickform, .g-menu__quickform--soft { display: flex; justify-content: flex-end; padding-top: 4px; }
.g-detail__actions, .g-detail__actions--soft { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

/* ── Buttons ── */
.g-btn, .g-btn--small, .g-btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r);
  border: 1.5px solid var(--a);
  background: var(--a);
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .14s, border-color .14s, transform .14s;
}
.g-btn:hover, .g-btn--small:hover, .g-btn--cta:hover {
  background: var(--a-hv);
  border-color: var(--a-hv);
  transform: translateY(-1px);
}
.g-btn:active { transform: translateY(0); }
.g-btn--wide { width: 100%; justify-content: center; }
.g-btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.g-btn--ghost:hover { border-color: var(--border2); background: var(--bg); }
.g-btn--cool {
  background: var(--a2) !important;
  border-color: var(--a2) !important;
  color: #fff !important;
}
.g-btn--cool:hover { background: var(--a2-hv) !important; border-color: var(--a2-hv) !important; }
.g-btn--cta { min-width: 200px; font-size: .95rem; padding: 13px 24px; background: var(--a2); border-color: var(--a2); }
.g-btn--cta:hover { background: var(--a2-hv); border-color: var(--a2-hv); }
.g-btn--footer-main { flex: 2; font-size: .93rem; padding: 13px 22px; background: var(--a) !important; border-color: var(--a) !important; }
.g-btn--footer-main:hover { background: var(--a-hv) !important; border-color: var(--a-hv) !important; }
.g-btn--footer-secondary { flex: 1; font-size: .88rem; }
.g-btn__icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-btn__icon svg { width: 16px; height: 16px; }

/* ── Pages (cart, checkout, profile…) ── */
.g-page, .g-page--warm, .g-page--soft {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}
.g-page__top {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.g-page__top--warm { background: var(--bg); }
.g-page__title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--text);
}
.g-page__hero { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.g-page__hero--compact { margin-bottom: 12px; }
.g-page__hero-title { margin: 4px 0 0; font-family: var(--display); font-size: 1.7rem; font-weight: 900; letter-spacing: -.02em; line-height: 1.05; color: var(--text); }
.g-page__hero-sub { margin: 7px 0 0; color: var(--text3); line-height: 1.65; font-size: .93rem; }
.g-page__hero-chip { flex-shrink: 0; padding: 7px 15px; border-radius: 999px; background: var(--surface); border: 1.5px solid var(--border); color: var(--a); font-weight: 700; font-size: .88rem; }
.g-kicker { font-family: var(--ui); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--a); font-weight: 800; margin-bottom: 4px; }
.g-side-title { margin: 2px 0 10px; font-family: var(--display); font-size: 1.3rem; font-weight: 900; letter-spacing: -.01em; color: var(--text); line-height: 1.05; }
.g-side-note { margin-top: 12px; font-size: .84rem; color: var(--text3); line-height: 1.65; border-top: 1.5px solid var(--border); padding-top: 12px; }
.g-link { color: var(--a); text-decoration: none; font-weight: 700; }
.g-link:hover { color: var(--a-hv); }
.g-wrap, .g-wrap--warm { max-width: 980px; margin: 0 auto; padding: 0 16px 52px; }
.g-label { font-family: var(--ui); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--a); }
.g-hint { margin-top: 5px; font-size: .8rem; color: var(--text3); }
.g-empty { padding: 16px 0; color: var(--text3); }
.g-empty--dark { color: var(--text2); }

/* ── Alerts ── */
.g-alert {
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--a);
  font-size: .92rem;
}
.g-alert--ok { background: var(--ok-bg); border-color: var(--border); border-left-color: var(--ok); color: var(--text2); }
.g-alert--err { background: #fff5f5; border-color: #ffcdd2; border-left-color: #e53935; color: #b71c1c; }

/* ── Forms ── */
.g-form, .g-form--warm { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.g-form__section { display: flex; flex-direction: column; gap: 9px; }
.g-input2 {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--ui);
  font-size: .93rem;
  outline: none;
  transition: border-color .14s, box-shadow .14s;
}
.g-input2::placeholder { color: var(--text3); }
.g-grid2, .g-grid2--cartflow, .g-grid2--warmcart { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.g-grid2--form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── Cart ── */
.g-cart, .g-cart--warm { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.g-cart__row, .g-cart__row--warm {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
}
.g-cart__row:hover, .g-cart__row--warm:hover { border-color: var(--border2); }
.g-cart__left { flex: 1; min-width: 0; }
.g-cart__name { font-family: var(--display); font-size: 1rem; font-weight: 900; letter-spacing: -.01em; color: var(--text); }
.g-cart__sub { color: var(--text3); font-size: .88rem; margin-top: 4px; }
.g-cart__right, .g-cart__right--warm { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.g-cart__line { min-width: 86px; text-align: right; font-family: var(--display); font-size: 1rem; font-weight: 900; letter-spacing: -.01em; color: var(--a); }
.g-qtywrap { display: flex; flex-direction: column; gap: 3px; font-size: .78rem; font-weight: 700; color: var(--text3); }
.g-x {
  background: var(--surface);
  color: var(--text);
  padding: 7px 10px;
  border-radius: 9px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  font-size: 14px;
  transition: border-color .14s, color .14s;
}
.g-x:hover { border-color: #e53935; color: #e53935; }
.g-cart-empty { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px; }
.g-cart__options { margin-top: 5px; display: flex; flex-direction: column; gap: 3px; color: var(--text3); font-size: .88rem; }
.g-cart__options span { color: var(--text); font-weight: 700; }

/* ── Total / Recap ── */
.g-total, .g-total--warm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  font-weight: 700;
  color: var(--text);
}
.g-total__v { font-family: var(--display); font-size: 1.4rem; font-weight: 900; letter-spacing: -.02em; color: var(--a); }
.g-total--subline { margin-top: 6px; padding: 0; background: none; border: 0; border-radius: 0; font-size: .9rem; color: var(--text3); }
.g-total--grand { margin-top: 10px; border-top: 1.5px solid var(--border); padding-top: 10px; background: none; border-radius: 0; padding-left: 0; padding-right: 0; }
.g-actions, .g-actions--between { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.g-actions--between { justify-content: space-between; }

/* Recap */
.g-recap, .g-recap--warm, .g-recap--softflow { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.g-recap__row { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1.5px solid var(--border); }
.g-recap__row:first-child { border-top: 1.5px solid var(--border); }
.g-recap__row--stack .g-recap__l { display: flex; flex-direction: column; }
.g-recap__l { color: var(--text); font-size: .92rem; }
.g-recap__r { font-family: var(--display); font-size: 1rem; font-weight: 900; letter-spacing: -.01em; color: var(--a); }
.g-recap__opts { margin-top: 4px; color: var(--text3); font-size: .84rem; display: flex; flex-direction: column; gap: 2px; line-height: 1.5; }
.g-recap__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 13px 16px;
  background: var(--a);
  border-radius: 14px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: .93rem;
  color: #fff;
}
.g-recap__total div:last-child { font-family: var(--display); font-size: 1.2rem; letter-spacing: -.01em; color: #fff; }

/* ── Checkout success ── */
.g-orderhero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px;
  border-radius: 18px;
  background: var(--ok-bg);
  border: 1.5px solid var(--border);
  margin-bottom: 20px;
}
.g-orderhero h1 { margin: 0 0 8px; font-family: var(--display); font-size: 1.8rem; font-weight: 900; letter-spacing: -.02em; line-height: 1.05; color: var(--text); }
.g-orderhero p { margin: 0 0 12px; color: var(--text2); line-height: 1.7; max-width: 52ch; font-size: .93rem; }
.g-orderhero__kicker { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--a); margin-bottom: 5px; font-family: var(--ui); }
.g-orderhero__meta { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; font-size: .88rem; color: var(--text3); font-weight: 600; }
.g-stepbadge {
  flex-shrink: 0;
  padding: 13px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--a);
  white-space: nowrap;
  text-align: center;
}
.g-sidebox, .g-sidebox--sticky { position: sticky; top: 18px; }
.g-ordertips { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.g-ordertips__item { font-size: .88rem; color: var(--text2); padding: 9px 12px; border-radius: 11px; background: var(--bg); border-left: 3px solid var(--border); line-height: 1.55; }
.g-ordertips__item strong { color: var(--text); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .g-detail__hero-wash { left: 16px; right: 16px; max-width: none; }
  .g-back { left: 28px; }
  .g-detail__topactions { right: 28px; }
}
@media (max-width: 900px) {
  .g-detail__introgrid,
  .g-grid2, .g-grid2--cartflow, .g-grid2--warmcart { grid-template-columns: 1fr; }
  .g-softcard__list { grid-template-columns: 1fr 1fr; }
  .g-menu__item { grid-template-columns: 1fr; }
  .g-menu__visual { height: 200px; }
  .g-menu__headerline { flex-direction: column; align-items: flex-start; }
  .g-menu__pricebox { justify-content: flex-start; min-width: 0; }
  .g-cardbox--sticky, .g-sidebox--sticky { position: static; }
}
@media (max-width: 640px) {
  .g-detail__header { padding-top: 12px; }
  .g-detail__hero, .g-detail__hero-wash { height: 230px; border-radius: 16px; }
  .g-back { top: 24px; left: 18px; }
  .g-detail__topactions { position: absolute; left: 18px; right: 18px; top: 70px; justify-content: space-between; }
  .g-detail__overlay { margin-top: -78px; }
  .g-detail__hero-card { padding: 16px; flex-direction: column; border-radius: 16px; }
  .g-detail__hero-side { align-items: flex-start; min-width: 0; width: 100%; flex-direction: row; flex-wrap: wrap; }
  .g-detail__title h1 { font-size: 1.55rem; }
  .g-page__hero-title { font-size: 1.45rem; }
  .g-cardbox { padding: 16px; }
  .g-cardbox__head h2 { font-size: 1.35rem; }
  .g-menu__item { padding: 14px; border-radius: 14px; }
  .g-menu__visual { height: 160px; }
  .g-menu__name { font-size: 1.1rem; }
  .g-menu__price { font-size: 1.3rem; }
  .g-cart__row { flex-direction: column; }
  .g-cart__right { justify-content: space-between; }
  .g-orderhero { padding: 18px; flex-direction: column; }
  .g-orderhero h1 { font-size: 1.55rem; }
  .g-btn--cta { width: 100%; min-width: 0; }
  .g-qtybox { width: 100%; }
  .g-softcard__list { grid-template-columns: 1fr; }
}
@media (min-width: 981px) {
  html, body { height: auto; min-height: 100%; }
  body.g-body { overflow-y: auto; overflow-x: hidden; }
  .g-detail, .g-page { min-height: 100vh; }
}
@media (max-width: 980px) {
  .g-detail--soft .g-detail__content { padding-bottom: 120px; }
  .g-detail--soft .g-detail__actions { display: none !important; }
}


/* ════════════════════════════════════════════
   TYPOGRAPHIE PROPRE — pages internes
════════════════════════════════════════════ */

/* Titres = noir neutre */
.g-detail__title h1,
.g-cardbox__head h2,
.g-menu__name,
.g-menu__name--soft,
.g-cat__title,
.g-cat__title--soft,
.g-page__title,
.g-page__hero-title,
.g-side-title,
.g-orderhero h1,
.g-cart__name,
.g-recap__total,
.g-panel-sec-title { color: #111111 !important; }

/* Corps de texte = gris foncé neutre */
.g-detail__desc,
.g-detail__meta,
.g-softcard__list span,
.g-hours__row span,
.g-cardbox__sub,
.g-cardbox__sub--dark,
.g-page__hero-sub,
.g-side-note,
.g-hint,
.g-cart__sub,
.g-recap__l,
.g-ordertips__item,
.g-orderhero p { color: #444444 !important; }

/* Muted / méta = gris clair neutre */
.g-menu__desc,
.g-menu__desc--soft,
.g-card__meta,
.g-hours__row { color: #888888 !important; }

/* Accent rose UNIQUEMENT sur : kicker, labels, liens, prix */
.g-kicker,
.g-label,
.g-softcard__eyebrow,
.g-customize__title,
.g-customize__title--soft { color: var(--a) !important; }

.g-link { color: var(--a) !important; }
.g-menu__price,
.g-menu__price--soft,
.g-cart__line,
.g-recap__r,
.g-total__v { color: var(--a) !important; }

/* Sec link "Voir tout" */
.g-panel-sec-count { color: #888888 !important; }

/* Cat tag sous les cards */
.g-card__sub { color: var(--a) !important; }

/* Texte dans les softcards */
.g-softcard__list strong { color: #111111 !important; }

/* Formulaires */
.g-input2 { color: #111111; }
.g-input2::placeholder { color: #AAAAAA; }

/* Total recap : texte blanc sur fond rose = ok */
.g-recap__total { color: #ffffff !important; }
.g-recap__total div:last-child { color: #ffffff !important; }

/* Ordertips strong */
.g-ordertips__item strong { color: #111111 !important; }

/* Étoile = or */
.g-star { color: #F59E0B !important; }

/* Badge OUVERT / FERMÉ */
.g-badge.is-open { background: #FFF7ED; color: #C04A00 !important; border-color: #FDBA74; font-weight: 800; }
.g-badge.is-closed { background: #F5F5F5; color: #999999 !important; border-color: #E0E0E0; }


/* ════════════════════════════════════════════
   NAVY × PÊCHE — pages internes
════════════════════════════════════════════ */
:root {
  --navy:     #0B2545;
  --navy-hv:  #0D2E58;
  --accent:   #F97316;
  --accent-hv:#EA6A0A;
  --accent-bg:#FFF7ED;
  --accent-bd:#FDBA74;
}

/* Fond pages */
.g-page, .g-page--warm, .g-page--soft,
body.g-body { background: #FFF7ED !important; color: #111111 !important; }

/* Titres pages → navy */
.g-detail__title h1,
.g-cardbox__head h2,
.g-page__title,
.g-page__hero-title,
.g-side-title,
.g-orderhero h1,
.g-panel-sec-title { color: var(--navy) !important; }

/* Accent orange sur prix, liens, kickers */
.g-link { color: var(--accent) !important; }
.g-kicker { color: var(--accent) !important; }
.g-label { color: var(--accent) !important; }
.g-softcard__eyebrow { color: var(--accent) !important; }
.g-customize__title, .g-customize__title--soft { color: var(--accent) !important; }
.g-cat__title, .g-cat__title--soft { color: var(--accent) !important; }

/* Prix → navy */
.g-menu__price, .g-menu__price--soft { color: var(--navy) !important; }
.g-cart__line { color: var(--navy) !important; }
.g-total__v { color: var(--navy) !important; }
.g-recap__r { color: var(--navy) !important; }

/* Boutons → navy principal, accent secondaire */
.g-btn, .g-btn--small {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
}
.g-btn:hover, .g-btn--small:hover {
  background: var(--navy-hv) !important;
  border-color: var(--navy-hv) !important;
}
.g-btn--cta {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
.g-btn--cta:hover {
  background: var(--accent-hv) !important;
  border-color: var(--accent-hv) !important;
}
.g-btn--ghost {
  background: #fff !important;
  border-color: #FDBA74 !important;
  color: #333 !important;
}
.g-btn--ghost:hover {
  background: #FFF7ED !important;
  border-color: var(--accent) !important;
}
.g-btn--cool {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
.g-btn--footer-main {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}

/* Customize summary → accent orange */
.g-customize__summary, .g-customize__summary--soft {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
.g-customize__summary:hover, .g-customize__summary--soft:hover {
  background: var(--accent-hv) !important;
  border-color: var(--accent-hv) !important;
}

/* Cards → blanc avec bordures pêche */
.g-cardbox { border-color: #FDBA74 !important; }
.g-softcard { border-color: #FDBA74 !important; }
.g-menu__item { border-color: #FDBA74 !important; }
.g-cart__row, .g-cart__row--warm { border-color: #FDBA74 !important; }
.g-recap__row { border-bottom-color: #FDBA74 !important; }

/* Total recap → navy */
.g-recap__total {
  background: var(--navy) !important;
  color: #fff !important;
}
.g-recap__total div:last-child { color: #FED7AA !important; }

/* Orderhero → pêche clair */
.g-orderhero { background: #FFF7ED !important; border-color: #FDBA74 !important; }
.g-orderhero h1 { color: var(--navy) !important; }
.g-orderhero__kicker { color: var(--accent) !important; }
.g-stepbadge { border-color: #FDBA74 !important; color: var(--navy) !important; }

/* Badges */
.g-badge.is-open {
  background: #FFF7ED !important;
  color: var(--navy) !important;
  border-color: #FDBA74 !important;
}
.g-badge.is-closed {
  background: #f5f5f5 !important;
  color: #aaa !important;
  border-color: #e0e0e0 !important;
}

/* Chip actif → navy */
.g-chip.is-active {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
}
.g-page__hero-chip { border-color: #FDBA74 !important; color: var(--navy) !important; }

/* Inputs focus → orange */
.g-input2:focus, .g-qty:focus, .g-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(249,115,22,.14) !important;
}

/* Alerte */
.g-alert { border-left-color: var(--accent) !important; }
.g-alert--ok { border-left-color: #22c55e !important; }
.g-alert--err { border-left-color: #ef4444 !important; }

/* Étoile */
.g-star { color: #F59E0B !important; }

/* Textes neutres — jamais de couleur accent sur le corps */
.g-detail__desc, .g-detail__meta,
.g-cardbox__sub, .g-page__hero-sub,
.g-cart__sub, .g-menu__desc, .g-menu__desc--soft,
.g-ordertips__item { color: #555555 !important; }

.g-softcard__list span, .g-hours__row span,
.g-hint, .g-side-note { color: #888888 !important; }


/* ═══════════════════════════════════════════════════
   FOODTRUCK SHOW PAGE — Navy × Pêche
═══════════════════════════════════════════════════ */

.ft-page {
  min-height: 100vh;
  background: #FFF7ED;
  font-family: 'Sora', sans-serif;
  color: #111;
}

/* ── Hero ── */
.ft-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.ft-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,.82) 0%, rgba(11,37,69,.30) 50%, rgba(11,37,69,.10) 100%);
}
.ft-back {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .14s;
}
.ft-back:hover { background: rgba(255,255,255,.25); }
.ft-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px 28px;
}
.ft-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.ft-hero__status.is-open { background: rgba(249,115,22,.25); color: #FED7AA; border: 1px solid rgba(249,115,22,.4); }
.ft-hero__status.is-closed { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }
.ft-hero__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.ft-hero__name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.ft-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 600;
}
.ft-sep { opacity: .5; }
.ft-hero__desc {
  margin-top: 10px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.65;
  max-width: 56ch;
}

/* ── Info strip ── */
.ft-strip {
  background: #fff;
  border-bottom: 1.5px solid #FDBA74;
  position: sticky;
  top: 0;
  z-index: 50;
}
.ft-strip__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ft-strip__inner::-webkit-scrollbar { display: none; }
.ft-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 16px;
}
.ft-strip__item svg { color: #F97316; flex-shrink: 0; }
.ft-strip__sep {
  width: 1px;
  height: 22px;
  background: #FDBA74;
  flex-shrink: 0;
}
.ft-strip__item--hours { position: relative; }
.ft-strip__hours-btn {
  background: none;
  border: 0;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ft-strip__hours-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1.5px solid #FDBA74;
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 200px;
  box-shadow: 0 8px 28px rgba(11,37,69,.14);
  z-index: 200;
}
.ft-strip__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  border-bottom: 1px solid #FFF7ED;
}
.ft-strip__hours-row:last-child { border-bottom: 0; }
.ft-strip__hours-row.is-today { color: #0B2545; font-weight: 800; }
.ft-strip__hours-row strong { color: #111; font-weight: 700; }
.ft-strip__fav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #888;
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .14s;
}
.ft-strip__fav.is-fav { color: #F97316; }
.ft-strip__fav:hover { color: #F97316; }

/* ── Page content ── */
.ft-content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 24px 100px;
}

/* ── Category nav ── */
.ft-cat-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin-bottom: 24px;
}
.ft-cat-nav::-webkit-scrollbar { display: none; }
.ft-cat-nav__link {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid #FDBA74;
  background: #fff;
  color: #444;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .14s, border-color .14s, color .14s;
}
.ft-cat-nav__link:hover { background: #FFF7ED; border-color: #F97316; color: #0B2545; }

/* ── Category section ── */
.ft-cat-section { margin-bottom: 32px; }
.ft-cat-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #0B2545;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-cat-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: #FDBA74;
  border-radius: 99px;
}

/* ── Menu list ── */
.ft-menu-list { display: flex; flex-direction: column; gap: 10px; }

/* ── Menu item ── */
.ft-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #FDBA74;
  padding: 14px 16px 14px 14px;
  transition: border-color .14s, box-shadow .14s;
}
.ft-item:hover { border-color: #F97316; box-shadow: 0 4px 18px rgba(249,115,22,.12); }
.ft-item--unavailable { opacity: .5; pointer-events: none; }

.ft-item__img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: #FFF7ED;
  border: 1.5px solid #FDBA74;
  flex-shrink: 0;
}
.ft-item__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-item__body { min-width: 0; flex: 1; }
.ft-item__name {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #111;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: 5px;
}
.ft-item__desc {
  font-size: 12px;
  color: #888;
  line-height: 1.55;
  margin-bottom: 6px;
}
.ft-item__tags { display: flex; gap: 5px; flex-wrap: wrap; }
.ft-tag {
  padding: 3px 9px;
  border-radius: 999px;
  background: #FFF7ED;
  border: 1px solid #FDBA74;
  font-size: 10px;
  font-weight: 700;
  color: #F97316;
}
.ft-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  min-width: 90px;
}
.ft-item__price {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #0B2545;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.ft-item__unavail {
  font-size: 11px;
  font-weight: 700;
  color: #bbb;
}

/* ── Add button ── */
.ft-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  border-radius: 10px;
  background: #0B2545;
  color: #fff;
  border: 0;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background .14s, transform .12s;
}
.ft-add-btn:hover { background: #0D2E58; transform: translateY(-1px); }
.ft-add-btn:active { transform: translateY(0); }

/* ── Customize panel ── */
.ft-customize { width: 100%; }
.ft-customize__btn {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  border-radius: 10px;
  background: #F97316;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background .14s;
}
.ft-customize__btn::-webkit-details-marker { display: none; }
.ft-customize__btn:hover { background: #EA6A0A; }
.ft-customize[open] .ft-customize__btn { border-radius: 10px 10px 0 0; }
.ft-customize__panel {
  background: #FFF7ED;
  border: 1.5px solid #FDBA74;
  border-radius: 0 14px 14px 14px;
  padding: 16px;
  margin-top: -1px;
  width: max-content;
  min-width: 260px;
  max-width: min(380px, 90vw);
  position: relative;
  z-index: 10;
}
.ft-cust-block { margin-bottom: 14px; }
.ft-cust-block:last-of-type { margin-bottom: 0; }
.ft-cust-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #F97316;
  margin-bottom: 8px;
}
.ft-cust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #FDBA74;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: border-color .12s;
}
.ft-cust-row:last-child { margin-bottom: 0; }
.ft-cust-row:hover { border-color: #F97316; }
.ft-cust-row input { accent-color: #F97316; flex-shrink: 0; }
.ft-cust-row strong { color: #0B2545; font-weight: 800; white-space: nowrap; flex-shrink: 0; }
.ft-required { color: #F97316; margin-left: 2px; }
.ft-cust-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1.5px solid #FDBA74;
}
.ft-cust-qty {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
}
.ft-cust-qty input {
  width: 72px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1.5px solid #FDBA74;
  background: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: #111;
  outline: none;
}
.ft-cust-qty input:focus { border-color: #F97316; }
.ft-cta-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 10px;
  background: #0B2545;
  color: #fff;
  border: 0;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .14s;
}
.ft-cta-btn:hover { background: #0D2E58; }

/* ── Sticky cart bar ── */
.ft-cart-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #0B2545;
  color: #fff;
  box-shadow: 0 8px 32px rgba(11,37,69,.30);
  white-space: nowrap;
}
.ft-cart-bar__count {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.ft-cart-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 999px;
  background: #F97316;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .14s;
}
.ft-cart-bar__btn:hover { background: #EA6A0A; }

/* ── Empty ── */
.ft-empty { padding: 32px; color: #888; text-align: center; font-size: 14px; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .ft-hero { height: 260px; }
  .ft-item { grid-template-columns: 72px 1fr; gap: 12px; }
  .ft-item__right { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; min-width: 0; width: 100%; }
  .ft-item__img { width: 72px; height: 72px; border-radius: 10px; }
  .ft-content { padding: 20px 14px 120px; }
  .ft-hero__content { padding: 0 16px 22px; }
  .ft-strip__inner { padding: 0 14px; }
  .ft-customize__panel { min-width: 220px; }
}

@media (min-width: 701px) {
  .ft-cart-bar { display: none; }
}


/* ════════════════════════════════════════════
   FT-STRIP CART BUTTON + CART BAR DESKTOP
════════════════════════════════════════════ */

/* Bouton panier dans le strip */
.ft-strip__cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #0B2545;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .14s;
  position: relative;
}
.ft-strip__cart svg { color: #F97316; flex-shrink: 0; }
.ft-strip__cart:hover { color: #F97316; }
.ft-strip__cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #F97316;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

/* Sticky cart bar — visible sur desktop ET mobile quand panier > 0 */
.ft-cart-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #0B2545;
  color: #fff;
  box-shadow: 0 8px 32px rgba(11,37,69,.30);
  white-space: nowrap;
}
.ft-cart-bar__count {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.ft-cart-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 999px;
  background: #F97316;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .14s;
}
.ft-cart-bar__btn:hover { background: #EA6A0A; }

/* Sur mobile, la barre panier est au-dessus de la nav mobile */
@media (max-width: 700px) {
  .ft-cart-bar { bottom: 90px; }
}

/* ════════════════════════════════════════════
   FT-ITEM MOBILE — structure réelle
   .ft-item > img | body | right(prix+action)
════════════════════════════════════════════ */
@media (max-width: 980px) {

  /* Carte : flex colonne */
  .ft-item {
    display: flex !important;
    flex-direction: column !important;
    padding: 12px !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  /* Ligne 1 : image + body côte à côte */
  .ft-item__img {
    position: absolute; /* temporaire pour le retirer du flux */
  }

  /* Reset — on utilise flex row pour img+body */
  .ft-item {
    position: relative;
  }

  /* Ligne image+body via pseudo-wrapper en flex */
  .ft-item__img {
    position: static !important;
    float: left !important;
    width: 64px !important;
    height: 64px !important;
    margin-right: 10px !important;
    margin-bottom: 8px !important;
    border-radius: 10px !important;
    flex-shrink: 0;
  }

  .ft-item__body {
    overflow: hidden; /* clearfix pour float */
    min-width: 0;
  }

  .ft-item__name { font-size: 12px !important; line-height: 1.3 !important; }
  .ft-item__desc { font-size: 11px !important; }

  /* Ligne 2 : ft-item__right = prix + bouton/panel en colonne */
  .ft-item__right {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    clear: both; /* après le float de l'image */
    border-top: 1.5px solid #FDBA74 !important;
    padding-top: 0 !important;
  }

  /* Prix — ligne propre, bien visible */
  .ft-item__right .ft-item__price {
    display: block !important;
    font-size: 18px !important;
    color: #0B2545 !important;
    font-weight: 900 !important;
    padding: 10px 0 8px 0 !important;
    border-bottom: 1px solid #FFF7ED;
  }

  /* Bouton Ajouter — pleine largeur */
  .ft-add-btn {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 0 0 10px 10px !important;
    padding: 12px !important;
    font-size: 13px !important;
  }

  /* Panel Choisir — pleine largeur */
  .ft-customize {
    width: 100% !important;
  }

  .ft-customize__btn {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 0 !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
  }

  /* Panel options — position static, pas d'absolute */
  .ft-customize__panel {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-radius: 0 0 10px 10px !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
  }

  .ft-cust-row { font-size: 13px !important; }
  .ft-cta-btn { width: 100% !important; padding: 12px !important; }
  .ft-cust-footer { flex-wrap: wrap; }

  /* Padding page */
  .ft-content { padding-bottom: 160px !important; }

  /* Barre panier */
  .ft-cart-bar {
    bottom: 88px !important;
    left: 12px !important;
    right: 12px !important;
    transform: none !important;
    border-radius: 16px !important;
  }
}


/* ════════════════════════════════════════════
   CART — options (sauces, addons, groupes)
════════════════════════════════════════════ */

.cart-opt-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}

.cart-opt-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #F97316;
  flex-shrink: 0;
}

.cart-opt-val {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
}

/* Dans le récap latéral */
.cart-recap-opt {
  display: block;
  font-size: 11px;
  color: #888;
  font-weight: 500;
  margin-top: 1px;
}
