/* ============================================================
   ARENA PIZZA KEBAB — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --red:     #D42B2B;
  --red-dk:  #A81F1F;
  --gold:    #F5A623;
  --dark:    #0E0E0E;
  --dark2:   #161616;
  --dark3:   #1E1E1E;
  --dark4:   #282828;
  --white:   #FFFFFF;
  --gray:    #B0B0B0;
  --light:   #F5F5F5;
  --radius:  14px;
  --shadow:  0 8px 32px rgba(0,0,0,.45);
  --font-h:  'Bebas Neue', sans-serif;
  --font-b:  'Nunito', sans-serif;
  --nav-h:   70px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--dark); color: var(--white); font-family: var(--font-b); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── Utility ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-red  { color: var(--red); }
.text-gold { color: var(--gold); }
.section { padding: 80px 0; }
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 48px;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-red  { background: var(--red);  color: #fff; }
.badge-gold { background: var(--gold); color: #000; }
.badge-dark { background: var(--dark4); color: var(--gray); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--red);  color: #fff; }
.btn-primary:hover { background: var(--red-dk); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: #e09515; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(14,14,14,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(14,14,14,.98); }
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-size: 1.6rem;
  letter-spacing: 2px;
}
.nav-logo-img {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--red);
}
.nav-logo-badge {
  background: var(--red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  color: var(--gray);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.nav-cart-btn:hover { background: var(--red); }
.nav-cart-btn svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--dark);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-mobile { display: none; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 46px);
  padding-bottom: 80px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1600&q=90');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,.92) 40%, rgba(212,43,43,.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  animation: heroFadeIn .8s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--red); }
.hero-eyebrow-text {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-title .line-red { color: var(--red); display: block; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
.hero-stats .container {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 32px;
  flex: initial !important;
  justify-content: flex-start;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.hero-stat-label { font-size: .8rem; color: var(--gray); font-weight: 600; }

/* ─── Promos Banner ──────────────────────────────────────────── */
.promos-section {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  position: sticky;
  top: var(--nav-h);
  z-index: 999;
  width: 100%;
}
.promos-track {
  display: flex;
  animation: promoScroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes promoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .5px;
  border-right: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.promo-item .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ─── Category Cards ─────────────────────────────────────────── */
.categories-section { padding: 80px 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s, background .2s;
  text-decoration: none;
  display: block;
}
.cat-card:hover, .cat-card.active {
  border-color: var(--red);
  transform: translateY(-4px);
  background: var(--dark4);
}
.cat-card-img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--dark4);
}
.cat-card:hover .cat-card-img { border-color: var(--red); }
.cat-card-label { font-weight: 800; font-size: .9rem; }

/* ─── Featured Pizza ─────────────────────────────────────────── */
.featured-section {
  background: var(--dark2);
  padding: 80px 0;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-image-wrap {
  position: relative;
}
.featured-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.featured-badge-float {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.featured-promo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.promo-card {
  background: var(--dark3);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s;
}
.promo-card:hover { border-color: var(--red); }
.promo-card-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.promo-card-desc { font-size: .85rem; font-weight: 700; margin-bottom: 4px; }
.promo-card-note { font-size: .75rem; color: var(--gray); }

/* ─── Menu Grid (used in menu.html) ─────────────────────────── */
.menu-section { padding: 40px 0 80px; }
.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 40px;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .5px;
  background: var(--dark3);
  color: var(--gray);
  border: 2px solid transparent;
  transition: all .2s;
}
.menu-tab:hover { color: #fff; border-color: rgba(255,255,255,.15); }
.menu-tab.active { background: var(--red); color: #fff; border-color: var(--red); }

.pizza-size-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.size-btn {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  background: var(--dark3);
  color: var(--gray);
  border: 2px solid transparent;
  transition: all .2s;
}
.size-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.size-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.menu-card {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(212,43,43,.2);
}
.menu-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.menu-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }
.menu-card-badge {
  position: absolute;
  top: 10px; left: 10px;
}
.menu-card-size {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-name {
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-price {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.btn-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  transition: background .2s, transform .2s;
}
.btn-add:hover { background: var(--red-dk); transform: scale(1.1); }

/* ─── Item Modal ─────────────────────────────────────────────── */
.item-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.item-modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal-inner {
  background: var(--dark2);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform .3s;
  padding: 24px;
  padding-bottom: 40px;
}
.item-modal.active .modal-inner { transform: translateY(0); }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--dark4);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  margin-bottom: 16px;
}
.modal-close:hover { background: var(--red); }
.modal-item-header { display: flex; gap: 16px; margin-bottom: 24px; }
.modal-item-img {
  width: 120px; height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.modal-item-info h3 { font-weight: 900; font-size: 1.15rem; margin-bottom: 6px; }
.modal-item-info p { font-size: .82rem; color: var(--gray); line-height: 1.5; margin-bottom: 8px; }
.modal-base-price { font-family: var(--font-h); font-size: 1.4rem; color: var(--gold); }
.size-tag { background: var(--dark4); padding: 2px 8px; border-radius: 8px; font-size: .75rem; color: var(--gray); font-family: var(--font-b); font-weight: 700; }

.option-group { margin-bottom: 20px; }
.option-label { display: block; font-weight: 800; font-size: .9rem; margin-bottom: 10px; }
.req { color: var(--red); }
.option-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
}
.option-select:focus { outline: none; border-color: var(--red); }
.option-select option { background: var(--dark3); }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--dark3);
  border-radius: 10px;
  margin-bottom: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s;
  font-weight: 600;
  font-size: .88rem;
}
.checkbox-label:hover { border-color: var(--red); }
.checkbox-label input { accent-color: var(--red); width: 16px; height: 16px; }
.checkbox-label em { color: var(--gold); font-style: normal; font-size: .82rem; }
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.modal-price-line { font-weight: 700; color: var(--gray); }
.modal-price-line strong { color: var(--gold); font-family: var(--font-h); font-size: 1.5rem; }
.btn-add-confirm {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 900;
  font-size: .95rem;
  transition: background .2s, transform .2s;
}
.btn-add-confirm:hover { background: var(--red-dk); transform: translateY(-2px); }

/* ─── Cart Toast ─────────────────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark3);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 3000;
  border: 1px solid var(--red);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  white-space: nowrap;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── Sticky Cart ────────────────────────────────────────────── */
#sticky-cart {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: .9rem;
  box-shadow: 0 8px 30px rgba(212,43,43,.5);
  z-index: 999;
  transition: transform .2s;
  text-decoration: none;
}
#sticky-cart:hover { transform: translateY(-3px); }
#sticky-cart svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; }

/* ─── Cart Page ──────────────────────────────────────────────── */
.cart-page { padding: calc(var(--nav-h) + 40px) 0 80px; min-height: 100vh; }
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-items-section {}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--dark3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}
.cart-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 900; margin-bottom: 4px; }
.cart-item-opts { font-size: .8rem; color: var(--gray); margin-bottom: 8px; line-height: 1.4; }
.cart-item-price { font-family: var(--font-h); font-size: 1.2rem; color: var(--gold); }
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark4);
  border-radius: 50px;
  padding: 4px 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--dark3);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.qty-btn:hover { background: var(--red); }
.qty-num { font-weight: 900; font-size: .95rem; min-width: 20px; text-align: center; }
.btn-remove { color: var(--gray); font-size: .8rem; font-weight: 700; transition: color .2s; }
.btn-remove:hover { color: var(--red); }

.cart-summary {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  border: 1px solid rgba(255,255,255,.06);
}
.summary-title { font-family: var(--font-h); font-size: 1.4rem; letter-spacing: 1px; margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  margin-bottom: 10px;
  color: var(--gray);
}
.summary-row.total {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 12px;
  padding-top: 12px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
}
.summary-row.total span:last-child { color: var(--gold); font-family: var(--font-h); font-size: 1.4rem; }
.promo-input-wrap { margin: 16px 0; }
.promo-input-row { display: flex; gap: 8px; }
.promo-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
}
.promo-input:focus { outline: none; border-color: var(--gold); }
.promo-input::placeholder { color: var(--gray); }
.btn-promo {
  padding: 10px 16px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  transition: background .2s;
}
.btn-promo:hover { background: var(--gold); color: #000; }
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart-icon { font-size: 4rem; margin-bottom: 20px; opacity: .3; }
.empty-cart h2 { font-family: var(--font-h); font-size: 2rem; margin-bottom: 12px; }
.empty-cart p { color: var(--gray); margin-bottom: 32px; }

/* ─── Checkout Page ──────────────────────────────────────────── */
.checkout-page { padding: calc(var(--nav-h) + 40px) 0 80px; min-height: 100vh; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.checkout-section {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 20px;
}
.checkout-section-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section-title span {
  background: var(--red);
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
  font-family: var(--font-b);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .82rem; font-weight: 800; letter-spacing: .5px; color: var(--gray); text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.25); }
.form-select option { background: var(--dark3); }
.form-textarea { resize: vertical; min-height: 80px; }

.mode-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mode-btn {
  padding: 16px;
  border-radius: 12px;
  background: var(--dark4);
  border: 2px solid rgba(255,255,255,.08);
  color: var(--gray);
  font-weight: 800;
  font-size: .9rem;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mode-btn.active { border-color: var(--red); background: rgba(212,43,43,.15); color: #fff; }
.mode-btn:hover:not(.active) { border-color: rgba(255,255,255,.25); color: #fff; }
.mode-btn svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pay-method {
  padding: 14px 10px;
  border-radius: 10px;
  background: var(--dark4);
  border: 2px solid rgba(255,255,255,.08);
  color: var(--gray);
  font-size: .8rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pay-method.active { border-color: var(--gold); color: #fff; }
.pay-method img { height: 24px; object-fit: contain; }

/* ─── Confirmation Page ──────────────────────────────────────── */
.confirm-page {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  min-height: 100vh;
  text-align: center;
}
.confirm-icon {
  width: 100px; height: 100px;
  background: rgba(80,200,80,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  border: 3px solid #50c850;
}
.confirm-icon svg { width: 50px; height: 50px; stroke: #50c850; fill: none; stroke-width: 2; }
.confirm-order-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.confirm-message { color: var(--gray); font-size: 1rem; max-width: 500px; margin: 0 auto 40px; line-height: 1.6; }
.confirm-details {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.06);
}
.confirm-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
}
.confirm-detail-row:last-child { border-bottom: none; }
.confirm-detail-row label { color: var(--gray); font-weight: 700; }
.confirm-detail-row span { font-weight: 800; }
.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark3);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  border: 2px solid rgba(245,166,35,.3);
  margin-bottom: 32px;
}

/* ─── Reservation Page ───────────────────────────────────────── */
.reservation-page { padding: calc(var(--nav-h) + 60px) 0 80px; min-height: 100vh; }
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.reservation-info { }
.reservation-info-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.info-block { margin-bottom: 28px; }
.info-block-title { font-family: var(--font-h); font-size: 1.3rem; letter-spacing: 1px; margin-bottom: 10px; color: var(--gold); }
.info-block p { color: var(--gray); line-height: 1.6; font-size: .95rem; }
.info-block a { color: var(--gold); font-weight: 700; }

.reservation-form-wrap {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,.06);
}

/* ─── Reviews Section ────────────────────────────────────────── */
.reviews-section {
  background: var(--dark2);
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dark4);
}
.review-name { font-weight: 800; font-size: .9rem; }
.review-date { font-size: .75rem; color: var(--gray); }

/* ─── Hours & Location ───────────────────────────────────────── */
.info-section { padding: 80px 0; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.info-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,.06);
}
.info-card-title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card-title svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--gray); font-weight: 600; }
.hours-row .time { font-weight: 800; }
.map-embed {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  margin-top: 16px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-row:last-child { border-bottom: none; }
.contact-row svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-row a { font-weight: 700; transition: color .2s; }
.contact-row a:hover { color: var(--gold); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-h);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-brand-sub { color: var(--gray); font-size: .9rem; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-btn:hover { background: var(--red); }
.social-btn svg { width: 18px; height: 18px; fill: #fff; }
.footer-col-title { font-weight: 900; font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; color: var(--gray); }
.footer-col a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 8px;
  transition: color .2s;
  font-weight: 600;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); transition: color .2s; font-weight: 600; }
.footer-bottom a:hover { color: #fff; }

/* ─── Page Header ────────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,43,43,.2) 0%, transparent 60%);
}
.page-header .container { position: relative; }
.page-header-eyebrow { font-size: .8rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.page-header h1 { font-family: var(--font-h); font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: 2px; }
.page-header p { color: var(--gray); font-size: 1rem; margin-top: 8px; }

/* ─── Delivery Zones ─────────────────────────────────────────── */
.zone-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.zone-badge {
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 800;
}
.zone-badge span { color: var(--gold); margin-left: 6px; }

/* ─── Animations ─────────────────────────────────────────────── */
.fade-in { animation: fadeIn .5s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-image-wrap img { height: 320px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark2);
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
    z-index: 999;
  }
  .nav-mobile.open { max-height: 400px; }
  .nav-mobile a {
    padding: 16px 24px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    display: block;
  }
  .nav-mobile a:hover { color: #fff; background: var(--dark3); }

  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-stats { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .reservation-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .payment-methods { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .featured-promo-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .menu-card-img-wrap { height: 150px; }
  .modal-item-header { flex-direction: column; }
  .modal-item-img { width: 100%; height: 160px; }
  .cart-item-img { width: 64px; height: 64px; }
}

/* ─── Hero Buttons (below stats) ─────────────────────────────── */
.hero-actions-bottom {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

/* ── Radio buttons dans modal ─────────────────────────────── */
.radio-group { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.radio-label {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  cursor: pointer; transition: all .15s; font-size: .88rem;
}
.radio-label:hover { border-color: rgba(255,255,255,.2); }
.radio-label input[type=radio] { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; }
.radio-label input[type=radio]:checked + span { color: #fff; font-weight: 700; }
.radio-label:has(input:checked) { border-color: var(--gold); background: rgba(245,166,35,.08); }

/* ── Size radio (pizza) ────────────────────────────────────── */
.size-group { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.size-label {
  flex: 1; min-width: 120px; flex-direction: column; align-items: flex-start;
  gap: 2px; padding: 10px 12px;
}
.size-label.selected { border-color: var(--gold); background: rgba(245,166,35,.08); }
.size-name { font-weight: 800; font-size: .85rem; color: #fff; }
.size-price { font-size: .78rem; color: var(--gold); font-weight: 700; }

/* ── Demandes spéciales ────────────────────────────────────── */
.form-textarea {
  width: 100%; background: var(--dark3); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; color: #fff; font-family: var(--font-b); font-size: .85rem;
  padding: 10px 12px; resize: vertical; min-height: 70px;
  transition: border-color .2s;
}
.form-textarea:focus { outline: none; border-color: var(--gold); }
