/* ==========================================================================
   YAMATO RAMEN — LUXURY JAPANESE RAMEN ORDERING PLATFORM STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME SETUP
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-dark-900: #08090C;
  --bg-dark-800: #0E1017;
  --bg-dark-700: #151822;
  --bg-dark-600: #1D2130;
  --bg-dark-500: #272C3F;
  --bg-surface: rgba(22, 26, 38, 0.75);
  --bg-surface-hover: rgba(32, 38, 54, 0.85);

  /* Gold & Warm Accents */
  --gold-primary: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --gold-gradient: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
  --gold-border: rgba(245, 158, 11, 0.3);

  /* Red & Chili Accents */
  --red-primary: #EF4444;
  --red-hover: #DC2626;
  --red-glow: rgba(239, 68, 68, 0.3);
  --red-gradient: linear-gradient(135deg, #F87171 0%, #EF4444 100%);

  /* Green Accent */
  --green-accent: #10B981;
  --green-glow: rgba(16, 185, 129, 0.25);

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-cream: #F8FAFC;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  --text-dark: #0F172A;

  /* Glassmorphism & Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-light: rgba(255, 255, 255, 0.15);
  --border-glass-gold: rgba(245, 158, 11, 0.25);
  --glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.05);
  --glass-shadow-strong: 0 20px 40px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(245, 158, 11, 0.12);

  /* Typography Fonts */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Cinzel', 'Noto Serif JP', serif;
  --font-japanese: 'Noto Serif JP', serif;

  /* Layout & Transitions */
  --max-width: 1280px;
  --header-height: 80px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-900);
  color: var(--text-cream);
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  background-color: var(--bg-dark-900);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(239, 68, 68, 0.03) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-dark-900) 0%, var(--bg-dark-800) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-900);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-dark-600);
  border-radius: 4px;
  border: 2px solid var(--bg-dark-900);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: var(--transition-fast);
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Utility Helpers */
.hidden { display: none !important; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); font-size: 0.9rem; }
.accent-gold { color: var(--gold-primary); }

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glassmorphism {
  background: var(--bg-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.glassmorphism-solid {
  background: rgba(18, 21, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow-strong);
}

/* --------------------------------------------------------------------------
   3. BUTTON STYLES & INTERACTION
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-dark-900);
  box-shadow: 0 4px 18px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-cream);
  border: 1px solid var(--border-glass-light);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
}
.btn-outline:hover {
  border-color: var(--text-cream);
  color: var(--text-cream);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg) translateX(-100%);
  animation: shineSweep 4s infinite;
}

@keyframes shineSweep {
  0% { transform: rotate(30deg) translateX(-120%); }
  25%, 100% { transform: rotate(30deg) translateX(120%); }
}

/* --------------------------------------------------------------------------
   4. ANNOUNCEMENT & TOP BAR
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #161208 0%, #20170A 50%, #161208 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-cream);
}

.badge-pill {
  background: rgba(239, 68, 68, 0.2);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pulse {
  animation: pulseGlow 2s infinite ease-in-out;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.promo-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px dashed var(--gold-primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.promo-badge:hover {
  background: rgba(245, 158, 11, 0.3);
}

.announcement-separator {
  color: var(--border-glass-light);
}

.announcement-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot.online {
  background: var(--green-accent);
  box-shadow: 0 0 8px var(--green-accent);
}

.reserve-btn-sm {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.reserve-btn-sm:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 13, 18, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.header-container {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-emblem {
  position: relative;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, #2A1A0B 0%, #140E05 100%);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: var(--gold-gradient);
  opacity: 0.2;
  z-index: -1;
  filter: blur(4px);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-japanese);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

/* Order Mode Switcher */
.order-mode-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-dark-700);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.mode-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mode-btn.active {
  background: var(--gold-primary);
  color: var(--bg-dark-900);
  box-shadow: 0 2px 8px var(--gold-glow);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-cream);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
.nav-link:hover {
  color: var(--gold-light);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Utilities */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Search Box */
.search-box-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box-wrapper input {
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 8px 36px 8px 36px;
  font-size: 0.85rem;
  color: var(--text-cream);
  width: 180px;
  transition: width var(--transition-normal), border-color var(--transition-fast);
}
.search-box-wrapper input:focus {
  width: 240px;
  border-color: var(--gold-primary);
  background: var(--bg-dark-600);
}
.search-box-wrapper input::placeholder {
  color: var(--text-subtle);
}

.search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  display: none;
}
.clear-search-btn:hover {
  color: var(--text-white);
}

/* Search Dropdown Results */
.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--bg-dark-800);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow-strong);
  max-height: 380px;
  overflow-y: auto;
  z-index: 1050;
  display: none;
  padding: 8px;
}
.search-dropdown.show {
  display: block;
}

.search-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}
.search-item-row:hover {
  background: var(--bg-dark-600);
}
.search-item-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}
.search-item-meta {
  flex: 1;
}
.search-item-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-cream);
}
.search-item-price {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 700;
}

/* Nav Action Buttons */
.nav-action-btn {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass-light);
  color: var(--text-cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-action-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Cart Trigger Button */
.cart-trigger-btn {
  background: linear-gradient(135deg, #20170A 0%, #151107 100%);
  border: 1px solid var(--gold-border);
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}
.cart-trigger-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.cart-icon-wrapper {
  position: relative;
  width: 34px;
  height: 34px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark-900);
  font-size: 1rem;
}

.cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark-900);
}

.cart-btn-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cart-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cart-total-preview {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-cream);
  border-radius: 2px;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark-800);
  border-left: 1px solid var(--border-glass-light);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}
.mobile-nav-drawer.open {
  right: 0;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.close-mobile-nav {
  font-size: 1.3rem;
  color: var(--text-muted);
}
.mobile-order-mode {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.mobile-nav-item {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-glass);
}
.mobile-nav-item i {
  color: var(--gold-primary);
  width: 20px;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 50px 0 60px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
}
.hero-glow-1 {
  top: -50px;
  right: 5%;
  background: var(--gold-primary);
}
.hero-glow-2 {
  bottom: 0;
  left: 10%;
  background: var(--red-primary);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-order-btn {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.hero-custom-btn {
  padding: 14px 26px;
  font-size: 1.02rem;
}

/* Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon-wrap {
  width: 36px;
  height: 36px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-cream);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-subtle);
}

/* Right Hero Visual Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dish-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.kanji-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-japanese);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.dish-aura {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.main-dish-frame {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  padding: 12px;
}

.hero-ramen-img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.2);
  transition: transform var(--transition-smooth);
}
.hero-dish-wrapper:hover .hero-ramen-img {
  transform: scale(1.03) rotate(2deg);
}

/* Steam Animation */
.steam-animation {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}
.steam-particle {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 40px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.25), transparent);
  border-radius: 50%;
  filter: blur(6px);
  animation: steamRise 3s infinite ease-out;
}
.steam-particle.s1 { left: 10px; animation-delay: 0s; }
.steam-particle.s2 { left: 35px; animation-delay: 1s; }
.steam-particle.s3 { left: 60px; animation-delay: 2s; }

@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  30% { opacity: 0.6; }
  100% { transform: translateY(-50px) scaleX(2.2); opacity: 0; }
}

/* Floating Ingredient Badges */
.floating-badge {
  position: absolute;
  z-index: 4;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
}

.badge-top-left {
  top: 10%;
  left: -20px;
}
.badge-bottom-right {
  bottom: 25%;
  right: -25px;
}
.badge-top-right {
  top: 15%;
  right: -15px;
}

.float-slow { animation: floatSlow 5s infinite ease-in-out; }
.float-medium { animation: floatMedium 4s infinite ease-in-out; }
.float-fast { animation: floatFast 4.5s infinite ease-in-out; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatMedium {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatFast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.badge-dot.red { background: var(--red-primary); box-shadow: 0 0 8px var(--red-primary); }
.badge-dot.gold { background: var(--gold-primary); box-shadow: 0 0 8px var(--gold-primary); }
.badge-dot.dark { background: #374151; box-shadow: 0 0 8px #9CA3AF; }

.badge-title {
  display: block;
  font-weight: 700;
  color: var(--text-cream);
  line-height: 1.1;
}
.badge-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Floating Quick Add Card */
.hero-dish-card {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  z-index: 6;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass-gold);
}

.dish-meta {
  margin-bottom: 8px;
}
.dish-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.8px;
}
.dish-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}
.dish-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}
.dish-rating .stars {
  color: var(--gold-primary);
  font-size: 0.75rem;
}
.dish-rating .rating-num {
  color: var(--text-muted);
}

.dish-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-price-wrap {
  display: flex;
  align-items: baseline;
  color: var(--gold-light);
  font-weight: 800;
}
.dish-price-wrap .currency {
  font-size: 0.95rem;
}
.dish-price-wrap .price-value {
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   7. DELIVERY DISPATCH BAR
   -------------------------------------------------------------------------- */
.delivery-bar-section {
  padding: 10px 0 40px;
}

.delivery-bar-card {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  border-radius: var(--radius-lg);
  gap: 24px;
}

.bar-col {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.bar-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bar-content {
  display: flex;
  flex-direction: column;
}
.bar-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-select-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.current-address {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}
.change-loc-btn {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
}

.bar-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-green {
  background: rgba(16, 185, 129, 0.2);
  color: #6EE7B7;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 800;
}

.progress-content {
  width: 100%;
}
.free-shipping-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.progress-pct {
  color: var(--gold-light);
  font-weight: 700;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: var(--bg-dark-600);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.bar-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

/* --------------------------------------------------------------------------
   8. SECTION HEADINGS & COMMONS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 40px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   9. MENU SECTION & FILTER TOOLBAR
   -------------------------------------------------------------------------- */
.menu-section {
  padding: 60px 0 80px;
}

.menu-toolbar-sticky {
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  background: rgba(11, 13, 18, 0.94);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-glass);
}

/* Category Tabs Scroll */
.category-tabs-scroll {
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.category-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.category-tabs-list {
  display: flex;
  gap: 10px;
  width: max-content;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-cream);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.cat-tab:hover {
  background: var(--bg-dark-600);
  border-color: var(--border-glass-light);
}
.cat-tab.active {
  background: var(--gold-gradient);
  color: var(--bg-dark-900);
  border-color: transparent;
  box-shadow: 0 4px 15px var(--gold-glow);
}
.cat-tab .tab-count {
  background: rgba(0, 0, 0, 0.2);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
}
.cat-tab.active .tab-count {
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

/* Secondary Filter Bar */
.secondary-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.diet-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.diet-chip {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.diet-chip:hover {
  color: var(--text-cream);
  border-color: var(--border-glass-light);
}
.diet-chip.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-weight: 600;
}

.menu-sort-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.sort-select-wrap i {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  pointer-events: none;
}
.sort-select-wrap select {
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 6px 14px 6px 32px;
  font-size: 0.82rem;
  color: var(--text-cream);
  appearance: none;
  cursor: pointer;
}
.sort-select-wrap select:focus {
  border-color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   10. MENU PRODUCT CARDS GRID
   -------------------------------------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  border: 1px solid var(--border-glass);
  background: var(--bg-surface);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-strong);
  border-color: var(--border-glass-gold);
}

/* Product Card Image */
.product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 70%;
  background: radial-gradient(circle, #1E2333 0%, #0F121C 100%);
  overflow: hidden;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.p-badge {
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-bestseller {
  background: var(--gold-gradient);
  color: var(--bg-dark-900);
}
.badge-chef {
  background: var(--red-gradient);
  color: white;
}
.badge-vegan {
  background: linear-gradient(135deg, #34D399, #059669);
  color: white;
}

.product-spice-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  z-index: 2;
}

/* Product Card Body */
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.p-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-rating .star {
  color: var(--gold-primary);
}
.p-prep-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 2px;
}
.product-jp-title {
  font-family: var(--font-japanese);
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product Card Footer */
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
  margin-top: auto;
}

.product-price-box {
  display: flex;
  flex-direction: column;
}
.p-label {
  font-size: 0.65rem;
  color: var(--text-subtle);
  text-transform: uppercase;
}
.p-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.product-action-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-quick-add {
  background: var(--gold-gradient);
  color: var(--bg-dark-900);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px var(--gold-glow);
}
.btn-quick-add:hover {
  transform: scale(1.1);
}

.btn-customize-item {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass-light);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-customize-item:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Empty Menu State */
.empty-menu-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-glass-light);
  max-width: 500px;
  margin: 40px auto;
}
.empty-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
}
.empty-menu-state h3 {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 8px;
}
.empty-menu-state p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   11. CUSTOM BOWL BUILDER SECTION
   -------------------------------------------------------------------------- */
.custom-bowl-section {
  padding: 60px 0 80px;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
}

.customizer-container {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 32px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass-gold);
}

/* Step Navigation Tabs */
.builder-step-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.step-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.step-nav-btn.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}
.step-nav-btn.completed {
  color: var(--text-cream);
  border-color: rgba(255, 255, 255, 0.15);
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.step-nav-btn.active .step-num {
  background: var(--gold-primary);
  color: var(--bg-dark-900);
  font-weight: 800;
}

/* Step Panels */
.builder-step-panels {
  position: relative;
}

.step-panel {
  display: none;
}
.step-panel.active {
  display: block;
  animation: fadeIn 0.35s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sub-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 12px;
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.options-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.option-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-dark-800);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.option-card:hover {
  background: var(--bg-dark-700);
  border-color: var(--border-glass-light);
}
.option-card.selected {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.12);
}

.option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-glass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  flex-shrink: 0;
  margin-top: 2px;
}
.option-card.selected .option-check {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-dark-900);
}

.option-icon {
  font-size: 1.5rem;
}

.option-info {
  flex: 1;
}
.option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.option-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}
.option-badge {
  font-size: 0.7rem;
  color: var(--text-subtle);
  background: var(--bg-dark-700);
  padding: 1px 6px;
  border-radius: 4px;
}
.option-price-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.option-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

.option-tags {
  display: flex;
  gap: 6px;
}
.option-tags .tag {
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-dark-700);
  color: var(--text-muted);
}

/* Firmness & Spice Pickers */
.firmness-selector, .spice-level-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.spice-level-picker {
  grid-template-columns: repeat(5, 1fr);
}

.firm-btn, .spice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  background: var(--bg-dark-800);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-cream);
}
.firm-btn:hover, .spice-btn:hover {
  background: var(--bg-dark-700);
}
.firm-btn.active, .spice-btn.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.firm-name, .spice-title {
  font-size: 0.85rem;
  font-weight: 700;
}
.firm-desc, .spice-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.spice-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

/* Toppings Checkboxes Grid */
.toppings-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.topping-check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-dark-800);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.topping-check-card input {
  display: none;
}
.topping-check-card:hover {
  background: var(--bg-dark-700);
}
.topping-check-card.checked {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--gold-primary);
}

.check-box-custom {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid var(--border-glass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  flex-shrink: 0;
}
.topping-check-card.checked .check-box-custom {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-dark-900);
}

.topping-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.t-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-cream);
}
.t-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Step Footer Actions */
.step-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

/* Customizer Summary Area (Right) */
.summary-card {
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.summary-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.summary-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.summary-bowl-preview {
  position: relative;
  width: 100%;
  padding-top: 65%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  background: radial-gradient(circle, #22293D 0%, #101422 100%);
}
.summary-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.preview-spice-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.summary-specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  gap: 8px;
}
.spec-key {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.spec-val {
  font-weight: 600;
  color: var(--text-cream);
  text-align: right;
}
.toppings-spec .spec-val {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.summary-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.summary-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.price-amount {
  display: flex;
  align-items: baseline;
  font-weight: 800;
  color: var(--gold-light);
}
.price-amount .curr { font-size: 1rem; }
.price-amount .val { font-size: 1.6rem; }

/* --------------------------------------------------------------------------
   12. COMBOS SECTION
   -------------------------------------------------------------------------- */
.combos-section {
  padding: 60px 0 80px;
}

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

.combo-card {
  position: relative;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: transform var(--transition-normal);
}
.combo-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
}

.combo-card.featured-combo {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.combo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-glass-gold);
  color: var(--gold-light);
}
.badge-popular {
  background: var(--gold-gradient);
  color: var(--bg-dark-900);
}

.combo-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: #141722;
}
.combo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.combo-card:hover .combo-img {
  transform: scale(1.06);
}

.combo-includes-pill {
  position: absolute;
  bottom: 10px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-cream);
}

.combo-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.combo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.combo-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
}
.combo-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.old-price {
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}
.curr-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
}

.combo-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.combo-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.combo-items-list li {
  font-size: 0.82rem;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  gap: 8px;
}
.combo-items-list li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   13. HERITAGE & CRAFTSMANSHIP
   -------------------------------------------------------------------------- */
.heritage-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark-900) 0%, #11141E 50%, var(--bg-dark-900) 100%);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.heritage-lead {
  font-size: 1.05rem;
  color: var(--text-cream);
  line-height: 1.7;
  margin-bottom: 32px;
}

.heritage-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pillar-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: rgba(245, 158, 11, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-glass-gold);
}

.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.heritage-card-showcase {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-lg);
}

.heritage-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.heritage-stamp-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red-primary);
  border: 3px double white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px var(--red-glow);
  transform: rotate(12deg);
}
.stamp-kanji {
  font-family: var(--font-japanese);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.stamp-text {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.heritage-quote-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass-gold);
}
.quote-stars {
  color: var(--gold-primary);
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.quote-text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.4;
  margin-bottom: 6px;
}
.quote-author {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 60px 0 80px;
}

.overall-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-gold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-top: 14px;
  font-size: 0.85rem;
}
.overall-rating-pill .stars {
  color: var(--gold-primary);
}
.overall-rating-pill .count {
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--border-glass-light);
}
.reviewer-meta {
  flex: 1;
}
.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}
.verified-tag {
  font-size: 0.7rem;
  color: var(--green-accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-date {
  font-size: 0.72rem;
  color: var(--text-subtle);
}

.review-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.review-headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-cream);
  line-height: 1.3;
  margin-bottom: 8px;
}
.review-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.review-order-pill {
  font-size: 0.72rem;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
}

/* --------------------------------------------------------------------------
   15. CART SLIDE-OVER DRAWER
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--bg-dark-800);
  border-left: 1px solid var(--border-glass-light);
  z-index: 2600;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}
.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-glass);
}
.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-header-title h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}
.cart-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark-700);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.cart-close-btn:hover {
  background: var(--bg-dark-600);
  color: white;
}

/* Free Shipping Bar */
.cart-free-shipping {
  background: var(--bg-dark-700);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-glass);
}
.shipping-status-text {
  font-size: 0.8rem;
  color: var(--text-cream);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.shipping-status-text i {
  color: var(--gold-primary);
}
.shipping-progress-track {
  width: 100%;
  height: 5px;
  background: var(--bg-dark-600);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.shipping-progress-bar {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

/* Cart Items Container */
.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Empty State */
.cart-empty-state {
  text-align: center;
  margin: auto 0;
  padding: 40px 20px;
}
.empty-bowl-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
}
.cart-empty-state h4 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 6px;
}
.cart-empty-state p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Cart Item Card */
.cart-item-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  position: relative;
}
.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}
.cart-item-options {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 4px 0 8px;
  line-height: 1.3;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
}

.item-qty-stepper {
  display: flex;
  align-items: center;
  background: var(--bg-dark-800);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 2px 4px;
}
.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-cream);
  font-size: 0.75rem;
}
.qty-btn:hover {
  background: var(--bg-dark-600);
}
.qty-val {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0 8px;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--text-subtle);
  font-size: 0.8rem;
}
.cart-item-remove:hover {
  color: var(--red-primary);
}

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  background: var(--bg-dark-900);
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Promo Box */
.promo-input-wrapper {
  position: relative;
  display: flex;
  gap: 8px;
}
.promo-input-wrapper i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
}
.promo-input-wrapper input {
  flex: 1;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 12px 8px 32px;
  font-size: 0.82rem;
  color: var(--text-cream);
}
.btn-promo-apply {
  background: var(--bg-dark-600);
  border: 1px solid var(--border-glass-light);
  color: var(--text-cream);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
}
.btn-promo-apply:hover {
  background: var(--gold-primary);
  color: var(--bg-dark-900);
}

.promo-discount-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #6EE7B7;
  margin-top: 6px;
}
.remove-promo-btn {
  color: #6EE7B7;
  font-size: 0.8rem;
}

/* Tip Section */
.tip-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tip-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.tip-amount-display {
  font-weight: 700;
  color: var(--text-cream);
}
.tip-buttons-row {
  display: flex;
  gap: 6px;
}
.tip-btn {
  flex: 1;
  padding: 6px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  font-size: 0.78rem;
  font-weight: 600;
}
.tip-btn.active {
  background: var(--gold-primary);
  color: var(--bg-dark-900);
  border-color: var(--gold-primary);
}

/* Financial Breakdown */
.cart-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border-glass);
  padding-top: 10px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breakdown-row.discount-row {
  color: #34D399;
}
.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass-light);
  padding-top: 8px;
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}
.final-total {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

.btn-checkout {
  padding: 14px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   16. MODALS SYSTEM (CUSTOMIZE, RESERVATION, CHECKOUT)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalScaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-dialog-medium { max-width: 540px; }
.modal-dialog-large { max-width: 780px; }
.modal-dialog-small { max-width: 420px; }

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark-700);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
}
.modal-close-btn:hover {
  background: var(--bg-dark-600);
  color: white;
}

/* Product Customization Modal */
.modal-header-product {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--border-glass);
}
.modal-product-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.modal-product-info {
  flex: 1;
}
.modal-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.modal-product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}
.modal-product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 4px 0 8px;
}
.modal-price-display {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.modal-body-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.group-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.required-tag {
  font-size: 0.68rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.pill-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}
.pill-radio {
  position: relative;
  cursor: pointer;
}
.pill-radio input {
  position: absolute;
  opacity: 0;
}
.pill-radio span {
  display: block;
  text-align: center;
  padding: 8px 10px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.pill-radio:hover span {
  background: var(--bg-dark-600);
}
.pill-radio input:checked + span {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.modal-addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.addon-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.addon-checkbox-row input {
  margin-right: 10px;
  accent-color: var(--gold-primary);
}
.addon-name {
  font-size: 0.85rem;
  color: var(--text-cream);
  flex: 1;
}
.addon-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
}

.modal-input {
  width: 100%;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-cream);
}
.modal-input:focus {
  border-color: var(--gold-primary);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid var(--border-glass);
}
.quantity-stepper {
  display: flex;
  align-items: center;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 4px 8px;
}
.step-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-cream);
  font-size: 0.85rem;
}
.step-qty-btn:hover {
  background: var(--bg-dark-600);
}
.qty-number {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0 12px;
}
.modal-add-cart-btn {
  flex: 1;
  padding: 12px;
}

/* Reservation Modal Form */
.reserve-modal-header {
  text-align: center;
  padding: 24px 24px 10px;
}
.reserve-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.reserve-modal-header h3 {
  font-size: 1.4rem;
  color: var(--text-white);
}
.reserve-modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.reserve-form {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group input, .form-group select {
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--text-cream);
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--gold-primary);
}

/* Checkout Modal Styles */
.checkout-header {
  padding: 24px 24px 14px;
  border-bottom: 1px solid var(--border-glass);
}
.checkout-header h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.checkout-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 24px;
  max-height: 75vh;
  overflow-y: auto;
}

.checkout-form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.pay-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.pay-option input {
  margin-right: 12px;
  accent-color: var(--gold-primary);
}
.pay-content {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-summary-section {
  background: var(--bg-dark-700);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 12px;
}
.chk-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.chk-item-name {
  color: var(--text-cream);
}
.chk-item-price {
  font-weight: 700;
  color: var(--gold-light);
}

.checkout-totals-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-totals-box .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.checkout-totals-box .row.discount {
  color: #34D399;
}
.checkout-totals-box .grand-total {
  border-top: 1px solid var(--border-glass-light);
  padding-top: 8px;
  margin-top: 4px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* Order Tracking & Success Screen */
.order-success-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confetti-icon {
  font-size: 3.5rem;
  margin-bottom: 8px;
}
.order-id-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.order-thanks-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}
.order-thanks-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 30px;
}

/* Timeline Step Tracker */
.order-tracker-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 550px;
  margin-bottom: 32px;
}
.order-tracker-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--bg-dark-600);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark-700);
  border: 2px solid var(--border-glass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.timeline-step.completed .timeline-dot {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: white;
}
.timeline-step.active .timeline-dot {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-dark-900);
  box-shadow: 0 0 15px var(--gold-glow);
  animation: pulse 1.5s infinite;
}

.timeline-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-cream);
  line-height: 1.2;
}
.timeline-time {
  font-size: 0.68rem;
  color: var(--text-subtle);
}

.order-details-snapshot {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 550px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  text-align: left;
}
.snap-col {
  display: flex;
  flex-direction: column;
}
.snap-label {
  font-size: 0.7rem;
  color: var(--text-subtle);
}
.snap-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-cream);
}

.success-actions {
  display: flex;
  gap: 12px;
}

/* Location Preset Chips */
.preset-addresses {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preset-addr-btn {
  text-align: left;
  padding: 8px 12px;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  font-size: 0.85rem;
}
.preset-addr-btn:hover {
  background: var(--bg-dark-600);
  border-color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   17. TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 21, 31, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass-gold);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  color: var(--text-white);
  font-size: 0.88rem;
  animation: slideToastIn 0.3s ease-out;
  max-width: 380px;
}
@keyframes slideToastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.toast-success i { color: var(--green-accent); }
.toast.toast-info i { color: var(--gold-primary); }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background: #060709;
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 30px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.brand-col .footer-logo {
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.social-icon:hover {
  background: var(--gold-primary);
  color: var(--bg-dark-900);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.hour-row .day { color: var(--text-muted); }
.hour-row .time { color: var(--text-cream); font-weight: 600; }

.footer-address, .footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Newsletter Form */
.footer-newsletter-form {
  margin-bottom: 14px;
}
.newsletter-input-wrap {
  display: flex;
  gap: 6px;
}
.newsletter-input-wrap input {
  flex: 1;
  background: var(--bg-dark-700);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-cream);
}
.newsletter-input-wrap input:focus {
  border-color: var(--gold-primary);
}

.security-badges {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-subtle);
}
.footer-legal-links {
  display: flex;
  gap: 16px;
}
.footer-legal-links a:hover {
  color: var(--text-cream);
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .customizer-container {
    grid-template-columns: 1fr;
  }
  .combos-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heritage-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .search-box-wrapper, .reservation-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .delivery-bar-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .bar-divider {
    display: none;
  }
  .bar-col {
    width: 100%;
  }
  .combos-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .form-row, .options-grid.grid-2, .toppings-selection-grid {
    grid-template-columns: 1fr;
  }
  .firmness-selector, .spice-level-picker {
    grid-template-columns: repeat(2, 1fr);
  }
  .checkout-grid-layout {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .floating-badge {
    display: none;
  }
}
