/* ═══════════════════════════════════════════
   PizzaHouse — Shared Stylesheet
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #c8102e;
  --red-h: #a50d25;
  --red-l: #fdf0f2;
  --black: #1a1a1a;
  --mid: #666;
  --light: #999;
  --border: #e4e4e4;
  --bg: #f6f6f6;
  --white: #fff;
  --green: #2e7d32;
  --font-h: 'Oswald', sans-serif;
  --font-b: 'Montserrat', sans-serif;
  --nav-h: 62px;
  --sub-h: 46px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--black); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-b); cursor: pointer; border: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTIL BAR ─── */
.util-bar {
  background: var(--black); height: 34px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; font-size: 0.71rem; color: #aaa;
}
.util-bar a { color: #aaa; transition: color .15s; }
.util-bar a:hover { color: #fff; }
.util-left, .util-right { display: flex; gap: 20px; align-items: center; }
.util-phone { color: #fff; font-weight: 700; letter-spacing: .5px; }

/* ─── MAIN NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--white); height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.nav-logo {
  font-family: var(--font-h); font-size: 1.65rem; font-weight: 700;
  letter-spacing: 1px; color: var(--red); cursor: pointer; user-select: none; flex-shrink: 0;
}
.nav-logo span { color: var(--black); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 700; color: var(--black);
  padding: 7px 13px; border-radius: 4px;
  letter-spacing: .3px; text-transform: uppercase; transition: all .15s;
}
.nav-links a:hover { color: var(--red); background: var(--red-l); }
.nav-links a.active { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-location, .nav-login {
  font-size: 0.78rem; font-weight: 700; color: var(--mid);
  background: none; border: none; transition: color .15s; padding: 6px 8px; border-radius: 4px;
}
.nav-location:hover, .nav-login:hover { color: var(--red); }
.nav-cart {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 6px; padding: 9px 16px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: .3px; text-transform: uppercase;
  transition: background .15s, transform .1s; position: relative;
}
.nav-cart:hover { background: var(--red-h); transform: translateY(-1px); }
.cart-badge {
  background: var(--white); color: var(--red);
  width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 900; flex-shrink: 0;
}
/* hamburger */
.nav-burger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--black); padding: 6px; }

/* ─── SUBNAV ─── */
.subnav {
  background: var(--white); border-bottom: 1px solid var(--border);
  height: var(--sub-h); display: flex; align-items: center;
  padding: 0 40px; gap: 0; overflow-x: auto;
  position: sticky; top: var(--nav-h); z-index: 800;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 0 16px; height: 100%;
  font-size: 0.77rem; font-weight: 700; color: var(--mid);
  border-bottom: 3px solid transparent;
  white-space: nowrap; text-transform: uppercase; letter-spacing: .3px;
  transition: all .15s; flex-shrink: 0;
}
.subnav-link:hover { color: var(--red); }
.subnav-link.active { color: var(--red); border-bottom-color: var(--red); }

/* ─── HERO ─── */
.hero { position: relative; height: 420px; overflow: hidden; background: #111; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero-slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11rem; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.25) 55%,transparent 100%);
}
.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 64px 60px; z-index: 2; color: #fff; max-width: 540px;
}
.hero-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 3px; margin-bottom: 13px;
}
.hero-content h1 {
  font-family: var(--font-h); font-size: 3.2rem; font-weight: 700;
  line-height: 1.05; margin-bottom: 11px; letter-spacing: .5px;
}
.hero-content p { font-size: 0.9rem; opacity: .88; margin-bottom: 20px; line-height: 1.65; }
.hero-btn {
  display: inline-block; background: var(--red); color: #fff;
  border: none; border-radius: 6px; padding: 12px 28px;
  font-size: 0.82rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  transition: background .15s, transform .1s;
}
.hero-btn:hover { background: var(--red-h); transform: translateY(-1px); }
.hero-dots { position: absolute; bottom: 20px; right: 40px; display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: all .2s; }
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,.13); border: 1.5px solid rgba(255,255,255,.28);
  color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.25); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ─── PAGE HEADER (non-home pages) ─── */
.page-header {
  background: var(--black); padding: 36px 40px 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.page-header h1 { font-family: var(--font-h); font-size: 2.6rem; color: var(--white); font-weight: 700; letter-spacing: 1px; }
.page-header p { font-size: 0.82rem; color: #888; margin-top: 6px; }
.page-header .item-count { font-size: 0.8rem; color: #888; font-weight: 600; }

/* ─── SECTION ─── */
.section { padding: 48px 40px; }
.section-gray { background: var(--bg); }
.section-dark { background: var(--black); }
.section-title { font-family: var(--font-h); font-size: 1.85rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 26px; }
.section-title.light { color: var(--white); }

/* ─── TRUST STRIP ─── */
.trust-strip { display: flex; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-item { flex: 1; display: flex; align-items: center; gap: 11px; padding: 18px 22px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.7rem; flex-shrink: 0; }
.trust-item h5 { font-size: 0.8rem; font-weight: 800; margin-bottom: 2px; }
.trust-item p { font-size: 0.71rem; color: var(--mid); }

/* ─── DEALS GRID ─── */
.deals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.deal-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.deal-img {
  width: 100%; height: 195px; object-fit: cover;
  background: linear-gradient(135deg,#f9ede0,#f7d4b4);
  display: flex; align-items: center; justify-content: center; font-size: 5.5rem;
}
.deal-body { padding: 18px 20px 22px; }
.deal-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 7px; }
.deal-body p { font-size: 0.8rem; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }
.deal-btn {
  display: inline-block; background: var(--red); color: var(--white);
  border: none; border-radius: 5px; padding: 8px 18px;
  font-size: 0.76rem; font-weight: 800; letter-spacing: .3px; text-transform: uppercase;
  transition: background .15s;
}
.deal-btn:hover { background: var(--red-h); }

/* ─── MENU GRID ─── */
.menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.menu-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: border-color .18s, transform .18s, box-shadow .18s;
  display: flex; flex-direction: column;
}
.menu-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(200,16,46,.12); }
.card-img {
  width: 100%; height: 165px; object-fit: cover;
  background: linear-gradient(135deg,#f9ede0,#f7d4b4);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.2rem; position: relative; flex-shrink: 0;
  transition: transform .3s;
}
.menu-card:hover .card-img { transform: scale(1.03); }
.card-img-wrap { overflow: hidden; }
.card-tag {
  position: absolute; top: 9px; left: 9px;
  background: var(--red); color: #fff;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px;
}
.card-tag.green { background: var(--green); }
.card-tag.orange { background: #e65100; }
.card-body { padding: 13px 15px 17px; display: flex; flex-direction: column; flex: 1; }
.card-name { font-size: 0.9rem; font-weight: 800; margin-bottom: 5px; line-height: 1.3; }
.card-desc { font-size: 0.74rem; color: var(--mid); line-height: 1.55; flex: 1; margin-bottom: 13px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 1.02rem; font-weight: 900; }
.card-add {
  width: 35px; height: 35px; background: var(--red); color: var(--white);
  border: none; border-radius: 50%; font-size: 1.35rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.card-add:hover { background: var(--red-h); transform: scale(1.1); }

/* ─── VALUES ─── */
.values-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 28px; }
.val-block { text-align: center; }
.val-icon {
  width: 54px; height: 54px; background: rgba(255,255,255,.07);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 13px; border: 1.5px solid rgba(255,255,255,.14);
}
.val-block h4 { font-family: var(--font-h); font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 8px; letter-spacing: .5px; text-transform: uppercase; }
.val-block p { font-size: 0.73rem; color: #888; line-height: 1.6; }

/* ─── FOOTER ─── */
footer { background: #111; color: #777; padding: 46px 40px 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.footer-logo { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--red); letter-spacing: 1px; margin-bottom: 12px; }
.footer-logo span { color: #fff; }
.footer-brand p { font-size: 0.76rem; line-height: 1.7; margin-bottom: 14px; }
.footer-social { display: flex; gap: 8px; }
.soc { width: 32px; height: 32px; background: #222; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; cursor: pointer; transition: background .15s; }
.soc:hover { background: var(--red); }
.footer-col h5 { color: #ddd; font-size: 0.75rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: #777; font-size: 0.75rem; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #222; padding-top: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 0.71rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #555; margin-left: 16px; transition: color .15s; }
.footer-bottom a:hover { color: var(--red); }

/* ─── CART DRAWER ─── */
.drawer-bg { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .28s; }
.drawer-bg.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: -460px; width: 420px; height: 100vh;
  background: var(--white); z-index: 1001; display: flex; flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1); box-shadow: -4px 0 40px rgba(0,0,0,.18);
}
.cart-drawer.open { right: 0; }
.cart-head { background: var(--black); color: var(--white); padding: 17px 22px; display: flex; justify-content: space-between; align-items: center; }
.cart-head h3 { font-family: var(--font-h); font-size: 1.35rem; letter-spacing: 1px; font-weight: 600; }
.cart-head-x { background: none; border: none; color: #aaa; font-size: 1.3rem; cursor: pointer; transition: color .15s; padding: 4px; }
.cart-head-x:hover { color: #fff; }
.cart-body { flex: 1; overflow-y: auto; padding: 14px; }
.cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--light); text-align: center; gap: 8px; }
.cart-empty .e-icon { font-size: 3.2rem; opacity: .5; }
.cart-empty p { font-size: 0.85rem; font-weight: 700; }
.cart-empty small { font-size: 0.73rem; color: #bbb; }
.cart-line { display: flex; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.cart-line:last-child { border-bottom: none; }
.cl-img { width: 62px; height: 62px; border-radius: 8px; background: linear-gradient(135deg,#f9ede0,#f7d4b4); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; flex-shrink: 0; }
.cl-info { flex: 1; min-width: 0; }
.cl-name { font-size: 0.83rem; font-weight: 800; margin-bottom: 2px; }
.cl-mods { font-size: 0.7rem; color: var(--light); line-height: 1.5; margin-bottom: 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cl-row { display: flex; align-items: center; justify-content: space-between; }
.qty-row { display: flex; align-items: center; gap: 6px; }
.qty-b { width: 25px; height: 25px; border-radius: 50%; border: 1.5px solid var(--border); background: none; font-size: 0.95rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.qty-b:hover { border-color: var(--red); color: var(--red); }
.qty-n { font-weight: 800; font-size: 0.88rem; min-width: 18px; text-align: center; }
.cl-price { font-weight: 900; font-size: 0.93rem; }
.del-btn { background: none; border: none; color: #ccc; font-size: 0.95rem; padding: 4px; transition: color .15s; }
.del-btn:hover { color: var(--red); }
.cart-foot { padding: 14px 20px 20px; border-top: 1px solid var(--border); }
.promo-row { display: flex; gap: 7px; margin-bottom: 13px; }
.promo-in { flex: 1; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-family: var(--font-b); font-size: 0.8rem; outline: none; transition: border-color .15s; }
.promo-in:focus { border-color: var(--red); }
.promo-btn { background: var(--black); color: var(--white); border-radius: 6px; padding: 9px 13px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; transition: background .15s; }
.promo-btn:hover { background: var(--red); }
.cart-totals { margin-bottom: 13px; }
.ct-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--mid); margin-bottom: 5px; }
.ct-row.total { font-size: 1.05rem; font-weight: 900; color: var(--black); margin-top: 9px; padding-top: 9px; border-top: 1.5px solid var(--border); }
.co-btn-main { width: 100%; background: var(--red); color: var(--white); border: none; border-radius: 7px; padding: 14px; font-family: var(--font-b); font-size: 0.88rem; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; transition: background .15s; }
.co-btn-main:hover { background: var(--red-h); }

/* ─── PRODUCT MODAL ─── */
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .22s; }
.modal-bg.open { opacity: 1; pointer-events: all; }
.prod-modal {
  background: var(--white); border-radius: 12px;
  width: 600px; max-width: 96vw; max-height: 92vh;
  overflow-y: auto; display: flex; flex-direction: column;
  transform: scale(.95) translateY(12px); transition: transform .22s;
}
.modal-bg.open .prod-modal { transform: scale(1) translateY(0); }
.modal-hero {
  width: 100%; height: 240px; flex-shrink: 0;
  background: linear-gradient(135deg,#f9ede0,#f7d4b4);
  display: flex; align-items: center; justify-content: center;
  font-size: 7.5rem; border-radius: 12px 12px 0 0; position: relative;
}
.modal-close-x {
  position: absolute; top: 13px; right: 13px;
  width: 31px; height: 31px; border-radius: 50%;
  background: rgba(0,0,0,.45); color: #fff; border: none; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.modal-close-x:hover { background: rgba(0,0,0,.7); }
.modal-body { padding: 20px 24px 0; }
.m-name { font-family: var(--font-h); font-size: 1.75rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 5px; }
.m-desc { font-size: 0.81rem; color: var(--mid); line-height: 1.65; margin-bottom: 18px; }

/* option groups */
.opt-group { margin-bottom: 20px; }
.opt-lbl { font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 9px; color: var(--black); }
.opt-lbl em { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--light); font-style: normal; font-size: 0.69rem; }
/* size */
.size-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.size-pill { padding: 9px 6px; border: 1.5px solid var(--border); border-radius: 8px; text-align: center; cursor: pointer; transition: all .15s; background: var(--white); }
.size-pill:hover { border-color: var(--red); }
.size-pill.sel { border-color: var(--red); background: var(--red-l); }
.sz-name { font-size: 0.75rem; font-weight: 800; display: block; }
.sz-in { font-size: 0.67rem; color: var(--mid); display: block; }
.sz-delta { font-size: 0.68rem; font-weight: 700; color: var(--red); display: block; margin-top: 2px; }
/* crust */
.crust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.crust-card { padding: 10px 8px; border: 1.5px solid var(--border); border-radius: 8px; text-align: center; cursor: pointer; transition: all .15s; }
.crust-card:hover { border-color: var(--red); }
.crust-card.sel { border-color: var(--red); background: var(--red-l); }
.cc-name { font-size: 0.76rem; font-weight: 700; display: block; margin-bottom: 2px; }
.cc-extra { font-size: 0.67rem; color: var(--red); font-weight: 700; }
/* chip row */
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  padding: 6px 14px; border: 1.5px solid var(--border);
  border-radius: 20px; font-size: 0.77rem; font-weight: 600;
  cursor: pointer; transition: all .15s; background: var(--white);
  white-space: nowrap;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.sel { background: var(--red); color: #fff; border-color: var(--red); }
/* toppings */
.tops-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.tops-count { font-size: 0.71rem; color: var(--mid); }
.tops-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.top-item { display: flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1.5px solid var(--border); border-radius: 7px; cursor: pointer; transition: all .15s; font-size: 0.75rem; font-weight: 600; }
.top-item:hover { border-color: var(--red); }
.top-item.sel { border-color: var(--red); background: var(--red-l); }
.top-chk { width: 15px; height: 15px; border-radius: 4px; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.58rem; color: #fff; transition: all .15s; }
.top-item.sel .top-chk { background: var(--red); border-color: var(--red); }
.top-em { font-size: 0.95rem; }
.top-nm { flex: 1; }
.top-pr { font-size: 0.66rem; color: var(--light); font-weight: 600; }
/* spice */
.spice-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.spice-card { padding: 9px 6px; border: 1.5px solid var(--border); border-radius: 8px; text-align: center; cursor: pointer; transition: all .15s; }
.spice-card:hover { border-color: var(--red); }
.spice-card.sel { border-color: var(--red); background: var(--red-l); }
.sp-em { display: block; font-size: 1.1rem; margin-bottom: 3px; }
.sp-lbl { font-size: 0.71rem; font-weight: 700; }
/* extras checklist */
.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.extra-item { display: flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 7px; cursor: pointer; transition: all .15s; font-size: 0.76rem; font-weight: 600; }
.extra-item:hover { border-color: var(--red); }
.extra-item.sel { border-color: var(--red); background: var(--red-l); }
.extra-chk { width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: #fff; transition: all .15s; }
.extra-item.sel .extra-chk { background: var(--red); border-color: var(--red); }
/* modal footer */
.modal-foot { padding: 14px 24px 22px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 13px; flex-shrink: 0; margin-top: 6px; }
.m-qty { display: flex; align-items: center; gap: 9px; }
.m-qty-b { width: 37px; height: 37px; border-radius: 50%; border: 1.5px solid var(--border); background: none; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.m-qty-b:hover { border-color: var(--red); color: var(--red); }
.m-qty-n { font-weight: 900; font-size: 1.05rem; min-width: 21px; text-align: center; }
.m-add { flex: 1; background: var(--red); color: #fff; border: none; border-radius: 7px; padding: 13px 18px; font-family: var(--font-b); font-size: 0.85rem; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; transition: background .15s; }
.m-add:hover { background: var(--red-h); }

/* ─── CHECKOUT MODAL ─── */
.co-modal { width: 520px; }
.co-steps { display: flex; border-bottom: 1px solid var(--border); }
.co-step { flex: 1; padding: 13px 6px; text-align: center; font-size: 0.73rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--light); border-bottom: 3px solid transparent; transition: all .15s; }
.co-step.active { color: var(--red); border-bottom-color: var(--red); }
.co-step.done { color: var(--green); border-bottom-color: var(--green); }
.co-body { padding: 22px 24px 18px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 5px; }
.field input, .field textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 7px; font-family: var(--font-b); font-size: 0.85rem; outline: none; transition: border-color .15s; }
.field input:focus { border-color: var(--red); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.del-types { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 16px; }
.del-type { padding: 14px; border: 1.5px solid var(--border); border-radius: 9px; text-align: center; cursor: pointer; transition: all .15s; }
.del-type .dt-icon { font-size: 2rem; display: block; margin-bottom: 5px; }
.del-type .dt-title { font-size: 0.82rem; font-weight: 800; display: block; margin-bottom: 2px; }
.del-type .dt-sub { font-size: 0.7rem; color: var(--mid); }
.del-type.sel { border-color: var(--red); background: var(--red-l); }
.sum-rows { margin-bottom: 13px; }
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.sum-row:last-child { border: none; }
.sum-total { display: flex; justify-content: space-between; padding: 11px 0; font-weight: 900; font-size: 1.02rem; border-top: 2px solid var(--border); }
.pay-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.co-submit { width: 100%; background: var(--red); color: #fff; border: none; border-radius: 7px; padding: 13px; font-family: var(--font-b); font-weight: 800; font-size: 0.88rem; letter-spacing: .3px; text-transform: uppercase; transition: background .15s; }
.co-submit:hover { background: var(--red-h); }
.success-wrap { text-align: center; padding: 28px 22px; }
.suc-icon { font-size: 3.8rem; display: block; margin-bottom: 15px; }
.suc-title { font-family: var(--font-h); font-size: 1.9rem; font-weight: 600; margin-bottom: 9px; }
.suc-text { font-size: 0.83rem; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.suc-eta { display: inline-block; background: var(--red-l); color: var(--red); font-weight: 800; font-size: 0.83rem; padding: 7px 18px; border-radius: 20px; margin-bottom: 18px; }

/* ─── TOAST ─── */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(18px); z-index: 2000; background: var(--black); color: #fff; padding: 11px 20px; border-radius: 8px; font-size: 0.83rem; font-weight: 700; display: flex; align-items: center; gap: 8px; opacity: 0; transition: all .28s; pointer-events: none; box-shadow: 0 4px 22px rgba(0,0,0,.22); white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── MOBILE NAV OVERLAY ─── */
.mob-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 1500; flex-direction: column; padding: 0; }
.mob-menu.open { display: flex; }
.mob-head { background: var(--black); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.mob-head .logo { font-family: var(--font-h); font-size: 1.4rem; color: var(--red); }
.mob-head .logo span { color: #fff; }
.mob-close { background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
.mob-links { padding: 16px; flex: 1; overflow-y: auto; }
.mob-links a { display: flex; align-items: center; gap: 10px; padding: 14px 8px; font-size: 0.95rem; font-weight: 700; border-bottom: 1px solid var(--border); color: var(--black); text-transform: uppercase; letter-spacing: .3px; }
.mob-links a:hover { color: var(--red); }
.mob-links a.active { color: var(--red); }
.mob-footer { padding: 16px; background: var(--bg); }
.mob-footer p { font-size: 0.75rem; color: var(--mid); text-align: center; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1200px) {
  .menu-grid, .menu-cat-panel { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 900px) {
  .util-bar { display: none; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-location { display: none; }
  .nav-login { display: none; }
  .subnav { padding: 0 20px; }
  .subnav-link { padding: 0 12px; font-size: 0.72rem; }
  .page-header { padding: 24px 20px 20px; }
  .page-header h1 { font-size: 2rem; }
  .section { padding: 32px 20px; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid, .menu-cat-panel { grid-template-columns: repeat(2,1fr) !important; }
  .values-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer { padding: 32px 20px 16px; }
  .trust-strip { flex-wrap: wrap; }
  .trust-item { flex: 1 1 calc(50% - 1px); border-right: none; border-bottom: 1px solid var(--border); }
  .hero-content { padding: 0 24px 40px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero { height: 340px; }
  .tops-grid { grid-template-columns: repeat(2,1fr); }
  .prod-modal { width: 100%; max-width: 100%; border-radius: 16px 16px 0 0; max-height: 95vh; }
  .modal-bg { align-items: flex-end; }
  .cart-drawer { width: 100%; right: -100%; }
}
@media (max-width: 600px) {
  .deals-grid { grid-template-columns: 1fr; }
  .menu-grid, .menu-cat-panel { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; }
  .card-img { height: 130px; font-size: 3.2rem; }
  .card-name { font-size: 0.82rem; }
  .card-desc { font-size: 0.7rem; }
  .size-grid { grid-template-columns: repeat(2,1fr); }
  .crust-grid { grid-template-columns: repeat(2,1fr); }
  .spice-grid { grid-template-columns: repeat(2,1fr); }
  .tops-grid { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .del-types { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero { height: 300px; }
  .values-grid { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr; }
  .nav-cart span:not(.cart-badge) { display: none; }
  .hero-content { padding: 0 16px 32px; }
  .trust-item { flex: 1 1 100%; }
}
