/* ═══════════════════════════════════════════════
   O'CHEF — CSS PRINCIPAL
   Design : street food chaud, briques sombres, orange vif
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:        #0d0d0d;
  --bg2:       #141414;
  --bg3:       #1a1a1a;
  --surface:   #222222;
  --surface2:  #2a2a2a;
  --border:    #333333;

  --orange:    #e85d04;
  --orange2:   #fb8500;
  --or:        #f9a825;
  --red:       #ef4444;
  --green:     #22c55e;
  --blue:      #3b82f6;

  --text:      #f0ece4;
  --text2:     #b0a898;
  --text3:     #706860;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.55);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.7);

  --transition: .18s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo-icon svg { display: block; }
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: .03em;
}
.nav-brand-tag {
  font-size: .68rem;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

/* Cart btn */
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-cart {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: white;
  padding: .5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.btn-cart:hover { background: var(--orange2); transform: translateY(-1px); }
.cart-icon { font-size: 1rem; }
.cart-badge {
  background: white;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform .2s;
}
.cart-badge.has-items { transform: scale(1.15); }

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(232,93,4,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(251,133,0,.07) 0%, transparent 50%),
    #0a0a0a;
}
.brick-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0px, rgba(255,255,255,.012) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.008) 0px, rgba(255,255,255,.008) 1px, transparent 1px, transparent 64px);
  background-size: 64px 32px;
}

/* Floating lights */
.hero-lights { position: absolute; inset: 0; pointer-events: none; }
.light {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.light:nth-child(1) { width:400px; height:400px; top:-100px; right:-80px; background:radial-gradient(circle, rgba(232,93,4,.2) 0%, transparent 70%); animation-delay:0s; }
.light:nth-child(2) { width:250px; height:250px; bottom:10%; left:5%; background:radial-gradient(circle, rgba(249,168,37,.12) 0%, transparent 70%); animation-delay:3s; }
.light:nth-child(3) { width:180px; height:180px; top:30%; right:30%; background:radial-gradient(circle, rgba(232,93,4,.1) 0%, transparent 70%); animation-delay:5s; }
.light:nth-child(4) { width:120px; height:120px; bottom:20%; right:15%; background:radial-gradient(circle, rgba(251,133,0,.15) 0%, transparent 70%); animation-delay:2s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 70px;
}

.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: .9;
}
.hero-title-top {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: white;
  letter-spacing: -.01em;
}
.hero-title-sub {
  font-family: var(--font-cond);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: .3rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 480px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.htag {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text2);
  padding: .35rem .8rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  transition: all var(--transition);
}
.htag:hover { background: rgba(232,93,4,.15); border-color: var(--orange); color: var(--orange); }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange);
  color: white;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: all var(--transition);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: white;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.25);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,.06);
}

/* Hero right */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-logo-big {
  filter: drop-shadow(0 0 40px rgba(232,93,4,.35));
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { filter: drop-shadow(0 0 40px rgba(232,93,4,.35)); }
  50% { filter: drop-shadow(0 0 60px rgba(232,93,4,.6)); }
}

.hero-info-cards {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 340px;
}
.hcard {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  transition: border-color var(--transition);
}
.hcard:hover { border-color: var(--orange); }
.hcard-icon { font-size: 1.4rem; }
.hcard-title { font-weight: 700; font-size: .88rem; color: white; }
.hcard-sub { font-size: .75rem; color: var(--text2); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text3);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════
   SECTIONS COMMONS
   ═══════════════════════════════════════════════ */
section { padding: 6rem 2rem; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header-dark {
  background: var(--bg2);
  padding: 3rem 2rem;
  margin: -6rem -2rem 3rem;
}
.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  letter-spacing: -.01em;
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}
.section-desc {
  color: var(--text2);
  margin-top: .75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════════ */
#menu {
  background: var(--bg);
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* Tabs */
.menu-tabs-wrapper {
  overflow-x: auto;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.menu-tabs {
  display: flex;
  gap: .4rem;
  min-width: max-content;
  padding: .25rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.mtab {
  padding: .55rem 1.15rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text2);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .02em;
}
.mtab:hover { color: white; background: rgba(255,255,255,.06); }
.mtab.active {
  background: var(--orange);
  color: white;
  box-shadow: 0 2px 10px rgba(232,93,4,.4);
}

/* Content transitions */
.menu-content {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.menu-content.fade-in {
  opacity: 1;
  transform: none;
}

/* Category header */
.menu-cat-note {
  font-size: .88rem;
  color: var(--text2);
  background: rgba(232,93,4,.1);
  border: 1px solid rgba(232,93,4,.25);
  border-radius: 8px;
  padding: .6rem 1rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.menu-banner {
  background: linear-gradient(135deg, rgba(232,93,4,.15), rgba(251,133,0,.08));
  border: 1px solid rgba(232,93,4,.3);
  border-radius: 10px;
  padding: .75rem 1.2rem;
  font-size: .85rem;
  color: var(--or);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Subcategory */
.menu-subcat { margin-bottom: 2.5rem; }
.menu-subcat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.menu-subcat-title::before {
  content: '';
  display: block;
  width: 4px; height: 18px;
  background: var(--orange);
  border-radius: 2px;
}
.menu-subcat-note {
  font-size: .8rem;
  color: var(--text3);
  margin-bottom: 1rem;
  font-style: italic;
}

/* Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}

/* Item cards */
.menu-item-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  position: relative;
  overflow: hidden;
}
.menu-item-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,93,4,0) 0%, rgba(232,93,4,.04) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.menu-item-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(232,93,4,.2);
}
.menu-item-card:hover::before { opacity: 1; }

.mic-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
}
.mic-name {
  font-weight: 600;
  font-size: .95rem;
  color: white;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.mic-price {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  white-space: nowrap;
}
.mic-desc {
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.4;
}
.mic-add {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
  letter-spacing: .04em;
}
.menu-item-card:hover .mic-add {
  opacity: 1;
  transform: none;
}

/* Badge */
.mic-badge {
  background: var(--orange);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  padding: .18rem .45rem;
  border-radius: 4px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* Sauces */
.menu-sauces {
  margin-top: 1.5rem;
  font-size: .82rem;
  color: var(--text3);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ═══════════════════════════════════════════════
   COMMANDER SECTION
   ═══════════════════════════════════════════════ */
#commander {
  background: var(--bg2);
  padding: 6rem 2rem;
}
#commander .section-header-dark {
  margin: 0 0 3rem;
  padding: 0;
  background: none;
}

.order-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.omode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.omode-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(232,93,4,.25);
}
.omode-featured {
  border-color: var(--orange) !important;
  background: linear-gradient(145deg, var(--surface), rgba(232,93,4,.08));
}
.omode-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 0 0 8px 8px;
}
.omode-icon { font-size: 3rem; }
.omode-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.omode-card p {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   INFOS SECTION
   ═══════════════════════════════════════════════ */
#infos { background: var(--bg); }

.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-ico {
  font-size: 1.3rem;
  width: 2.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.info-row strong { display: block; color: white; font-weight: 700; margin-bottom: .2rem; }
.info-row p { font-size: .9rem; color: var(--text2); }
.info-row a { color: var(--orange); }
.info-row a:hover { text-decoration: underline; }
.info-closed { color: var(--text3); font-style: italic; font-size: .85rem; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: white;
  padding: .9rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  margin-top: .5rem;
}
.btn-call:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,.4);
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 100%; }
.map-pin-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
  color: var(--text2);
  font-size: .8rem;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
#contact {
  background: linear-gradient(135deg, #111 0%, #1a0a00 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.contact-desc {
  color: var(--text2);
  font-size: .95rem;
  margin-top: .75rem;
  max-width: 420px;
}
.contact-btns { display: flex; flex-direction: column; gap: .75rem; }
.btn-contact-call, .btn-contact-sms {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-contact-call {
  background: var(--orange);
  color: white;
}
.btn-contact-call:hover { background: var(--orange2); transform: translateX(3px); }
.btn-contact-sms {
  background: var(--surface);
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-contact-sms:hover { border-color: var(--orange); color: var(--orange); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: .15rem; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}
.footer-tag { font-size: .75rem; color: var(--text3); }
.footer-links {
  display: flex;
  gap: .7rem;
  font-size: .8rem;
  color: var(--text3);
  flex-wrap: wrap;
  align-items: center;
}
.footer-gerant {
  font-size: .78rem;
  color: var(--text3);
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--transition);
}
.footer-gerant:hover { color: var(--orange); border-color: var(--orange); }

/* ═══════════════════════════════════════════════
   CART SIDEBAR
   ═══════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: -420px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg3);
  border-left: 1px solid var(--border);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transition: right .3s cubic-bezier(.25,.1,.25,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.5);
}
.cart-sidebar.open { right: 0; }

.cart-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-sidebar-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}
.cart-sidebar-head button {
  color: var(--text3);
  font-size: 1.2rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.cart-sidebar-head button:hover { color: white; background: var(--surface2); }

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cart-empty {
  color: var(--text3);
  font-size: .9rem;
  text-align: center;
  padding: 2rem 0;
}

.cart-sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.csi-name { font-weight: 600; font-size: .9rem; color: white; }
.csi-price { font-size: .8rem; color: var(--text3); margin-top: .1rem; }
.csi-controls {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.csi-controls button {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface2);
  color: white;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.csi-controls button:hover { background: var(--orange); }
.csi-controls span { font-size: .9rem; font-weight: 700; min-width: 18px; text-align: center; }

.cart-sidebar-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.cart-sidebar-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text2);
}
.cart-sidebar-total strong { color: white; font-size: 1.1rem; }

/* ═══════════════════════════════════════════════
   ORDER MODAL
   ═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(6px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  margin: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-head h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.modal-head p {
  font-size: .83rem;
  color: var(--text3);
  margin-top: .2rem;
}
.modal-close {
  color: var(--text3);
  font-size: 1.3rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { color: white; background: var(--surface2); }

/* Modal body */
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  flex: 1;
}

.modal-left {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-right {
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.modal-section-title {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg3);
}

/* Modal tabs */
.modal-menu-tabs {
  display: flex;
  gap: .3rem;
  padding: .75rem 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mmtab {
  padding: .4rem .65rem;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--text3);
}
.mmtab:hover { background: var(--surface2); }
.mmtab.active {
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(232,93,4,.35);
}

/* Modal items */
.modal-items {
  overflow-y: auto;
  flex: 1;
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.modal-subcat-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
  padding: .6rem .25rem .3rem;
}
.modal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .65rem .75rem;
  border-radius: 8px;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.modal-item:hover { background: var(--surface); border-color: var(--border); }
.modal-item.in-cart { background: rgba(232,93,4,.07); border-color: rgba(232,93,4,.25); }
.mitem-info { flex: 1; }
.mitem-name { font-size: .88rem; font-weight: 600; color: white; }
.mitem-desc { font-size: .74rem; color: var(--text3); margin-top: .15rem; }
.mitem-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .35rem;
  flex-shrink: 0;
}
.mitem-price { font-family: var(--font-cond); font-size: .95rem; font-weight: 700; color: var(--orange); }
.mitem-add {
  background: var(--orange);
  color: white;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  transition: all var(--transition);
}
.mitem-add:hover { background: var(--orange2); transform: scale(1.1); }
.mitem-qty-ctrl {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.mitem-qty-ctrl button {
  background: var(--surface2);
  color: white;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.mitem-qty-ctrl button:hover { background: var(--orange); }
.mitem-qty-ctrl span { font-size: .85rem; font-weight: 700; min-width: 14px; text-align: center; }

/* Modal cart */
.cart-list { display: flex; flex-direction: column; gap: .5rem; }
.cart-modal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .75rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.cmi-left { display: flex; flex-direction: column; gap: .1rem; }
.cmi-name { font-size: .85rem; font-weight: 600; color: white; }
.cmi-qty { font-size: .75rem; color: var(--text3); }
.cmi-right { display: flex; align-items: center; gap: .6rem; }
.cmi-price { font-family: var(--font-cond); font-size: .95rem; font-weight: 700; color: var(--orange); }
.cmi-del {
  color: var(--text3);
  font-size: 1.1rem;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cmi-del:hover { background: rgba(239,68,68,.15); color: var(--red); }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
  color: var(--text2);
  font-size: .9rem;
}
.cart-total-row strong { color: white; font-size: 1.1rem; }

/* Order form */
.order-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--text2); letter-spacing: .04em; text-transform: uppercase; }
.form-group input, .form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .65rem .9rem;
  color: white;
  font-size: .9rem;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text3); }

.btn-confirm {
  background: var(--orange);
  color: white;
  padding: .9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all var(--transition);
  width: 100%;
  margin-top: .5rem;
}
.btn-confirm:hover {
  background: var(--orange2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,93,4,.4);
}

/* Success */
.order-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.success-icon { font-size: 3.5rem; }
.order-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}
.order-success p { color: var(--text2); }
.success-sub { font-size: .9rem; color: var(--text3); }
.success-sub strong { color: var(--orange); }

/* ═══════════════════════════════════════════════
   GÉRANT MODAL
   ═══════════════════════════════════════════════ */
.gerant-modal {
  max-width: 760px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gerant-login {
  padding: 2.5rem;
  text-align: center;
}
.gerant-login h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}
.gerant-form {
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-error {
  color: var(--red);
  font-size: .85rem;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: 6px;
  padding: .5rem;
}

/* Dashboard */
#gerantDashboard { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.gerant-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.gtab {
  padding: .9rem 1.5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}
.gtab:hover { color: white; }
.gtab.active { color: var(--orange); border-bottom-color: var(--orange); }

.gerant-panel { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }

.gpanel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.gpanel-title { font-weight: 700; color: white; }
.gpanel-count { font-size: .82rem; color: var(--text3); }

.orders-filter {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.ofilter {
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text3);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.ofilter:hover { color: white; border-color: rgba(255,255,255,.2); }
.ofilter.active { background: var(--orange); color: white; border-color: var(--orange); }

.orders-list { display: flex; flex-direction: column; gap: .75rem; }
.no-orders { color: var(--text3); font-size: .9rem; text-align: center; padding: 2rem; }

.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.oc-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.oc-id { font-family: var(--font-cond); font-size: .9rem; font-weight: 700; color: white; letter-spacing: .05em; }
.oc-badge { font-size: .7rem; font-weight: 700; padding: .18rem .6rem; border-radius: 50px; letter-spacing: .04em; }
.oc-time { font-size: .75rem; color: var(--text3); margin-left: auto; }
.oc-mode { font-size: .78rem; color: var(--text3); font-style: italic; }
.oc-client { font-size: .85rem; color: var(--text2); }
.oc-client a { color: var(--orange); }
.oc-items { font-size: .85rem; color: white; }
.oc-note { font-size: .82rem; color: var(--or); background: rgba(249,168,37,.08); padding: .4rem .7rem; border-radius: 6px; }
.oc-foot { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.oc-total { font-size: .88rem; color: var(--text2); }
.oc-total strong { color: white; }
.oc-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.oc-btn {
  padding: .35rem .85rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all var(--transition);
}
.oc-btn-confirm { background: rgba(59,130,246,.15); color: var(--blue); border: 1px solid rgba(59,130,246,.3); }
.oc-btn-confirm:hover { background: rgba(59,130,246,.25); }
.oc-btn-ready { background: rgba(34,197,94,.15); color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.oc-btn-ready:hover { background: rgba(34,197,94,.25); }
.oc-btn-cancel { background: rgba(239,68,68,.1); color: var(--red); border: 1px solid rgba(239,68,68,.25); }
.oc-btn-cancel:hover { background: rgba(239,68,68,.2); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.stat-card.stat-full { grid-column: 1/-1; }
.stat-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: white; }
.stat-label { font-size: .82rem; color: var(--text3); margin-top: .3rem; }

/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface2);
  color: white;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  border: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  opacity: 0;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-success { border-left: 4px solid var(--green); }
.toast-error { border-left: 4px solid var(--red); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 100px; padding-bottom: 3rem; }
  .hero-right { display: none; }
  .infos-grid { grid-template-columns: 1fr; gap: 2rem; }
  .order-modes { grid-template-columns: 1fr; gap: 1rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-left { border-right: none; border-bottom: 1px solid var(--border); max-height: 40vh; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-full { grid-column: 1; }
}

@media (max-width: 640px) {
  section { padding: 4rem 1rem; }
  #navbar { padding: 0 1rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,.98);
    padding: 1rem;
    gap: .25rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li a { padding: .7rem 1rem; display: block; border-radius: 8px; }
  .nav-links li a:hover { background: var(--surface); }
  .nav-burger { display: flex; }
  .cart-label { display: none; }

  .hero-title-top { font-size: 3.5rem; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .modal { max-height: 95vh; margin: .5rem; border-radius: 12px; }
  .oc-time { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hcard { padding: .7rem .8rem; }
}

/* ── Scrollbar custom ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }