:root {
  --red: #c0392b;
  --red-dark: #922b21;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --dark-3: #3d3d3d;
  --surface: #1a1a1a;
  --light: #f9f6f0;
  --white: #ffffff;
  --text-muted: #888;
  --border: #e0d5c5;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

/* ── NAV ── */
nav {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo span { color: var(--white); }
.logo-icon { font-size: 1.8rem; }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}

.nav-links .btn-order {
  background: var(--red);
  color: white !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
}

.nav-links .btn-order:hover { background: var(--red-dark); }

.cart-icon {
  position: relative;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.4rem;
  padding: 8px;
}

.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: #000 url('/images/hero-banner.png') center / cover no-repeat;
  color: white;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.30);
}

.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FEATURES ── */
.features {
  background: var(--dark-2);
  padding: 28px 24px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text strong { color: var(--gold); display: block; font-size: 0.95rem; }
.feature-text span { color: #999; font-size: 0.82rem; }

/* ── SECTION ── */
.section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header .tag {
  display: inline-block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header h2 em { font-style: normal; color: var(--red); }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ── INFO GRID ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 0.9rem; }
.hours-table td:last-child { text-align: right; color: var(--dark-3); }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.today-row td { color: var(--red); font-weight: 600; }

.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
}
.contact-list li:not(:last-child) { border-bottom: 1px solid var(--border); }
.contact-list .ci { font-size: 1.1rem; margin-top: 1px; }

/* ── MENU PAGE ── */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.menu-main { min-width: 0; }

.menu-header {
  background: var(--surface);
  color: white;
  padding: 36px 24px;
  text-align: center;
}
.menu-header h1 { font-size: 2rem; color: var(--gold); }
.menu-header p { color: #aaa; margin-top: 6px; }

/* Delivery toggle */
.order-type-toggle {
  display: flex;
  background: white;
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  width: fit-content;
}

.toggle-btn {
  flex: 1;
  padding: 10px 24px;
  border: none;
  background: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}

.toggle-btn.active {
  background: var(--red);
  color: white;
}

/* Category tabs */
.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  color: var(--dark-3);
}

.cat-tab:hover { border-color: var(--red); color: var(--red); }
.cat-tab.active { background: var(--red); border-color: var(--red); color: white; }

/* Menu section */
.menu-section { margin-bottom: 40px; }
.menu-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-items { display: flex; flex-direction: column; gap: 12px; }

.menu-item {
  background: white;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.menu-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.item-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}

.item-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.item-info { flex: 1; min-width: 0; }
.item-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.item-name-zh { font-weight: 400; color: var(--text-muted); font-size: 0.82rem; margin-left: 8px; }
.item-desc { color: var(--text-muted); font-size: 0.82rem; line-height: 1.4; }
.item-tags { display: flex; gap: 6px; margin-top: 5px; flex-wrap: wrap; }
.item-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.tag-spicy { background: #fff0ee; color: #e74c3c; }
.tag-veggie { background: #f0fff4; color: #27ae60; }
.tag-popular { background: #fffbf0; color: #f39c12; }
.tag-new { background: #f0f7ff; color: #2980b9; }

.item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.item-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--red);
}

.add-btn {
  background: var(--red);
  color: white;
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--red-dark); transform: scale(1.1); }

/* ── CART SIDEBAR ── */
.cart-sidebar {
  position: sticky;
  top: 84px;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.cart-header {
  background: var(--surface);
  color: white;
  padding: 18px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-size: 1rem; color: var(--gold); }
.cart-header span { font-size: 0.82rem; color: #aaa; }

.cart-items { padding: 16px; flex: 1; min-height: 80px; }

.cart-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted);
}
.cart-empty .empty-icon { font-size: 2.5rem; margin-bottom: 8px; }
.cart-empty p { font-size: 0.88rem; }

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

.cart-item-name { flex: 1; font-size: 0.88rem; font-weight: 600; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-num { font-size: 0.9rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-price { font-size: 0.88rem; font-weight: 700; color: var(--red); min-width: 48px; text-align: right; }

.cart-footer { padding: 16px; border-top: 2px solid var(--border); }

.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 4px 0;
  color: var(--dark-3);
}
.cart-row.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}

.min-order-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 6px 0 12px;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.checkout-btn:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-1px); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── CHECKOUT PAGE ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

.checkout-form-card, .order-summary-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-3);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: white;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Stripe element */
#card-element {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  background: var(--light);
  transition: border-color 0.2s;
}
#card-element.StripeElement--focus { border-color: var(--red); background: white; }
#card-errors { color: var(--red); font-size: 0.82rem; margin-top: 6px; }

.stripe-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.order-summary-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.summary-items { margin-bottom: 16px; }
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid #f0f0f0;
}
.summary-item:last-child { border-bottom: none; }
.summary-item .qty { color: var(--red); font-weight: 700; margin-right: 6px; }

.summary-totals { border-top: 2px solid var(--border); padding-top: 12px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 4px 0;
  color: var(--dark-3);
}
.summary-row.grand-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.pay-btn {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pay-btn:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-1px); }
.pay-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.success-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 40px;
  text-align: center;
  max-width: 500px;
}

.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h1 { font-size: 1.8rem; color: #27ae60; margin-bottom: 10px; }
.success-card p { color: var(--text-muted); margin-bottom: 24px; }
.order-num { font-size: 1.2rem; font-weight: 700; color: var(--red); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--light), #ede8df);
  transition: transform 0.2s;
}
.gallery-item:hover { transform: scale(1.02); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8e0d0;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}
.map-placeholder .map-pin { font-size: 3rem; }

.contact-form .form-group textarea { height: 120px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  color: #aaa;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.85rem; color: #aaa; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.payment-badges { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  background: #333;
  color: #ccc;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--surface);
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #27ae60; }
.toast.error { border-left: 4px solid var(--red); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .menu-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-sidebar { position: fixed; bottom: 0; left: 0; right: 0; top: auto; max-height: 85vh; border-radius: var(--radius) var(--radius) 0 0; transform: translateY(100%); transition: transform 0.3s; z-index: 900; }
  .cart-sidebar.open { transform: translateY(0); }
  /* Items scroll in their own space; header/footer (checkout) always stay pinned and visible. */
  .cart-header, .cart-footer { flex-shrink: 0; }
  .cart-items { overflow-y: auto; }
  .mobile-cart-bar { display: flex !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--surface); padding: 16px; gap: 4px; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px; }
  .features-inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile cart bar */
.mobile-cart-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: white;
  padding: 16px 24px;
  z-index: 800;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
}

.spinner {
  width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Page header bar */
.page-header {
  background: #000 url('/images/hero-banner.png') center / cover no-repeat;
  color: white;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.page-header > * { position: relative; }
.page-header h1 { font-size: 2rem; color: var(--gold); margin-bottom: 6px; }
.page-header p { color: #ddd; }

.breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 8px;
}
.breadcrumb a { color: #aaa; }
.breadcrumb a:hover { color: var(--gold); }

/* ── SAUCE CHOICE MODAL ── */
.sauce-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.sauce-modal {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  max-width: 380px;
  width: 100%;
  max-height: min(90vh, 640px);
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.sauce-modal-overlay.sauce-modal-setmeal .sauce-modal {
  max-width: min(96vw, 440px);
}
.sauce-modal h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--dark); }
.sauce-modal .sauce-modal-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.sauce-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  cursor: pointer;
}
.sauce-option:last-of-type { border-bottom: none; }
.sauce-option-label { display: flex; align-items: center; gap: 8px; }
.sauce-option input[type="radio"] { width: 16px; height: 16px; flex-shrink: 0; }
.sauce-option-price { font-weight: 700; color: var(--red); white-space: nowrap; }
.sauce-extra-select {
  width: 100%;
  margin-top: -4px;
  margin-bottom: 8px;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: inherit;
}
.sauce-modal-actions { display: flex; gap: 10px; margin-top: 20px; }
.sauce-modal-actions .btn { flex: 1; justify-content: center; }

.dish-slot-picker { margin-bottom: 14px; }
.dish-slot-picker-label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-3);
}
.dish-option-scroll {
  max-height: 220px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  background: #fafafa;
}
.dish-option-group-title {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #ececec;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark-3);
  border-bottom: 1px solid var(--border);
}
.dish-option-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.86rem;
  line-height: 1.35;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  background: #fff;
}
.dish-option-row:last-child { border-bottom: none; }
.dish-option-row:has(input:checked) { background: #fff8f0; }
.dish-option-row input[type="radio"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
