/* =====================================================
   SNACK SHACK — style.css
   Classic American Diner Theme
   ===================================================== */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C53030;
  --red-dark:   #9B2020;
  --red-light:  #FBDAD8;
  --pink:       #F5C4BF;
  --cream:      #FFF8F5;
  --white:      #FFFFFF;
  --dark:       #1A1A1A;
  --gray:       #6B6B6B;
  --light-gray: #F4F4F4;
  --border:     #E5DCDA;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --radius:     8px;
  --ease:       0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 10px;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--gray);
  border-color: var(--border);
  font-size: 0.9rem;
  padding: 10px 20px;
}
.btn-ghost:hover { color: var(--dark); border-color: #ccc; }

.btn-full { width: 100%; display: flex; }

/* ── HEADER ───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { font-size: 2rem; line-height: 1; }
.logo-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  transition: color var(--ease);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--red); border-bottom-color: var(--red); }

.cart-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--ease);
  flex-shrink: 0;
}
.cart-toggle:hover { background: var(--red-dark); }
.cart-badge {
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: #1A0E0E;
  overflow: hidden;
}

.hero-checker {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, #C53030 25%, transparent 25%),
    linear-gradient(-45deg, #C53030 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #F5C4BF 75%),
    linear-gradient(-45deg, transparent 75%, #F5C4BF 75%);
  background-size: 64px 64px;
  background-position: 0 0, 0 32px, 32px -32px, -32px 0;
  opacity: 0.10;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,14,14,0.85) 55%, rgba(26,14,14,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-info-strip span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ── HIGHLIGHTS ────────────────────────────────────── */
.highlights {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  text-align: center;
  padding: 16px;
}
.highlight-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.highlight-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--dark);
}
.highlight-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── MENU SECTION ─────────────────────────────────── */
.menu-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-header p { font-size: 0.9rem; color: var(--gray); }

/* Tabs */
.menu-tabs-wrap {
  position: relative;
  margin-bottom: 36px;
}
.menu-tabs-wrap::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, var(--white));
  pointer-events: none;
}
.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Category note banner */
.category-note {
  grid-column: 1 / -1;
  background: var(--red-light);
  border-left: 4px solid var(--red);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #7A2020;
  line-height: 1.5;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.menu-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.menu-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-sm);
}

.menu-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.menu-card-desc {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.4;
}
.menu-card-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.price-btn {
  flex: 1;
  min-width: 90px;
  padding: 8px 10px;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: var(--white);
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
  line-height: 1.2;
}
.price-btn:hover {
  background: var(--red);
  color: var(--white);
}
.price-btn .price-label {
  display: block;
  font-size: 0.62rem;
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-bottom: 1px;
}

/* Add to cart flash */
@keyframes flash {
  0% { background: var(--red); color: var(--white); }
  50% { background: #22C55E; color: var(--white); border-color: #22C55E; }
  100% { background: var(--red); color: var(--white); }
}
.price-btn.added { animation: flash 0.5s ease; }

/* ── CART SIDEBAR ─────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 390px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--ease), color var(--ease);
}
.close-btn:hover { background: var(--light-gray); color: var(--dark); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  text-align: center;
  color: var(--gray);
  font-size: 0.92rem;
  margin-top: 48px;
  line-height: 1.7;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 3px;
  word-break: break-word;
}
.cart-item-unit {
  font-size: 0.8rem;
  color: var(--gray);
}
.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  padding-top: 2px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all var(--ease);
}
.qty-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.qty-num { font-weight: 700; min-width: 20px; text-align: center; font-size: 0.9rem; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: none;
}
.cart-footer.visible { display: block; }

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cart-tax-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 16px;
}

/* ── CHECKOUT MODAL ───────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.modal-body { padding: 24px; }

/* Step Indicator */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
}
.step.active { border-color: var(--red); color: var(--red); }
.step.done { background: #22C55E; border-color: #22C55E; color: var(--white); }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
}
.step-line.active { background: #22C55E; }

h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  color: var(--dark);
}

/* Form */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark);
  margin-bottom: 6px;
}
.required { color: var(--red); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; }

/* Order type buttons */
.order-type-btns {
  display: flex;
  gap: 10px;
}
.type-btn {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  transition: all var(--ease);
  color: var(--gray);
}
.type-btn.active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* Order summary inside modal */
.order-summary-mini {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: var(--gray);
}
.summary-row span:last-child { font-weight: 600; color: var(--dark); }
.summary-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--red-light);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}
.total-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--red);
}

/* Stripe card element */
.stripe-card-element {
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--white);
  transition: border-color var(--ease);
  margin-bottom: 4px;
}
.stripe-card-element.StripeElement--focus { border-color: var(--red); }
.card-errors {
  color: var(--red);
  font-size: 0.82rem;
  min-height: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.form-error {
  color: var(--red);
  font-size: 0.85rem;
  min-height: 18px;
  margin-bottom: 14px;
}

/* Pay button loading state */
.btn-loading {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

/* Confirmation screen */
.confirmation { text-align: center; padding: 10px 0 20px; }
.confirm-checkmark {
  width: 68px;
  height: 68px;
  background: #22C55E;
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.confirmation h4 { font-size: 1.6rem; margin-bottom: 10px; }
.confirmation p { color: var(--gray); line-height: 1.6; }
.confirm-sub { margin-top: 8px; font-size: 0.88rem; }
.confirm-sub a { color: var(--red); font-weight: 600; }

/* ── ABOUT SECTION ────────────────────────────────── */
.about-section {
  padding: 96px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--dark);
}
.about-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; font-size: 0.97rem; }
.about-text strong { color: var(--dark); font-weight: 600; }
.about-text .btn { margin-top: 8px; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 5px 0;
  font-size: 0.92rem;
  color: var(--gray);
}
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }
.hours-table tr.closed td { color: #ccc; }
.info-card p { font-size: 0.92rem; color: var(--gray); margin-bottom: 5px; line-height: 1.5; }
.info-card a { color: var(--red); font-weight: 600; }
.service-modes { margin-top: 8px !important; font-weight: 500; color: var(--dark) !important; }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: #111;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer p { font-size: 0.88rem; line-height: 1.8; }
.footer strong { color: var(--white); }
.footer a { color: rgba(255,255,255,0.65); transition: color var(--ease); }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ───────────────────────────────────── */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 16px; }
  .highlight-card { display: flex; gap: 16px; text-align: left; padding: 0; align-items: flex-start; }
  .highlight-icon { flex-shrink: 0; font-size: 1.8rem; margin-top: 2px; }

  .about-section { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .menu-section { padding: 56px 0 72px; }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {

  /* ── Prevent iOS input zoom (must be 16px+) */
  input, textarea, select {
    font-size: 16px !important;
  }

  /* ── Global spacing */
  .container { padding: 0 16px; }

  /* ── Header */
  .header { border-bottom-width: 2px; }
  .nav-container { height: 60px; gap: 0; }
  .logo-name { font-size: 1.2rem; }
  .logo-sub { display: none; }
  .nav-links { display: none; }

  .cart-toggle {
    padding: 8px 14px;
    font-size: 0.88rem;
    gap: 6px;
    margin-left: auto;
    margin-right: 10px;
  }

  .hamburger { display: flex; flex-shrink: 0; }

  /* Mobile nav dropdown */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 8px 0 16px;
    gap: 0;
    z-index: 99;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a {
    padding: 14px 20px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .nav-links.open a:last-child { border-bottom: none; }

  /* ── Hero */
  .hero { min-height: 75vh; }
  .hero-content { padding: 64px 16px 56px; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 2px; margin-bottom: 12px; }
  .hero-title { font-size: 2.4rem; line-height: 1.08; margin-bottom: 14px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 14px; }
  .hero-info-strip { flex-direction: column; gap: 8px; margin-top: 0; }
  .hero-info-strip span { font-size: 0.82rem; }

  /* ── Highlights */
  .highlights { padding: 32px 0; }
  .highlight-card p { font-size: 0.88rem; }

  /* ── Menu section */
  .menu-section { padding: 40px 0 80px; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.9rem; }
  .section-header p { font-size: 0.82rem; }

  /* Menu tabs — bigger touch targets */
  .menu-tabs { gap: 6px; padding-bottom: 6px; }
  .tab-btn { padding: 10px 16px; font-size: 0.85rem; min-height: 40px; }

  /* Menu grid — single column, full width */
  .menu-grid { grid-template-columns: 1fr; gap: 10px; }
  .menu-card { padding: 14px 16px; }
  .menu-card-name { font-size: 0.98rem; }

  /* Price buttons — stack vertically on very narrow screens, tall touch targets */
  .menu-card-actions { flex-direction: column; gap: 7px; }
  .price-btn {
    min-width: unset;
    width: 100%;
    min-height: 44px;
    font-size: 0.95rem;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .price-btn .price-label {
    font-size: 0.68rem;
    opacity: 0.8;
    text-align: left;
  }

  /* ── Cart sidebar — full screen slide from right */
  .cart-sidebar { width: 100%; }
  .cart-header { padding: 16px 20px; }
  .cart-items { padding: 12px 20px; }
  .cart-footer { padding: 16px 20px; }

  /* Qty buttons — bigger tap area */
  .qty-btn { width: 32px; height: 32px; font-size: 1.1rem; }

  /* ── Checkout modal — bottom sheet */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .modal {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    /* Safe area for notched phones (iPhone X+) */
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .modal-header {
    padding: 16px 20px;
    /* Bottom sheet drag handle visual */
    position: relative;
  }
  .modal-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
  }
  .modal-body { padding: 16px 20px 20px; }
  .form-group { margin-bottom: 14px; }
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    min-height: 44px;
  }

  /* ── About section */
  .about-section { padding: 48px 0; }
  .about-text h2 { font-size: 1.75rem; }
  .about-text p { font-size: 0.93rem; }
  .about-text .btn { width: 100%; justify-content: center; }
  .info-card { padding: 18px 20px; }

  /* ── Footer */
  .footer { padding: 44px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
  .footer-bottom { font-size: 0.75rem; }

  /* ── Buttons — min 44px touch target */
  .btn { min-height: 44px; }
  .close-btn { width: 40px; height: 40px; font-size: 1.1rem; }

  /* ── Scroll padding so anchors clear the sticky header */
  html { scroll-padding-top: 70px; }
}

/* Very small phones (≤ 375px) */
@media (max-width: 375px) {
  .hero-title { font-size: 2rem; }
  .logo-name { font-size: 1.1rem; }
  .cart-toggle span:not(.cart-badge) { display: none; }
  .cart-toggle { padding: 8px 12px; }
}

/* ── Safe area / notch support ─────────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .cart-footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}
