/* ==========================================================================
   HOTBOX HUSTLE — PRODUCTION STYLESHEET
   Aesthetic: Dark Smoky Vibes, Street Gourmet, Flame & Charcoal Accents
   Pure CSS3 — Zero Frameworks
   Brand: Hotbox Hustle (@hotbox_hustle)
   ========================================================================== */

/* --------------------------------------------------
   1. CSS VARIABLES & SMOKY PALETTE
   -------------------------------------------------- */
:root {
  /* Dark Charcoal & Midnight Smoky Foundation */
  --bg-primary: #0a0a0d;
  --bg-secondary: #101015;
  --bg-surface: #15151c;
  --bg-card: #181822;
  --bg-card-hover: #1f1f2c;
  --bg-elevated: #252533;

  /* Fiery Flame & Glowing Ember Accents */
  --flame-primary: #ff5722;
  --flame-bright: #ff6d00;
  --flame-glow: #ff7a00;
  --flame-deep: #e64a19;
  --ember-yellow: #ffb703;
  --ember-gold: #ffc107;
  --crimson-fire: #e63946;

  /* Gradients */
  --gradient-fire: linear-gradient(135deg, #ff3d00 0%, #ff7a00 55%, #ffb703 100%);
  --gradient-fire-hover: linear-gradient(135deg, #ff5722 0%, #ff8f00 60%, #ffc107 100%);
  --gradient-smoke: radial-gradient(circle at 50% 20%, rgba(255, 87, 34, 0.12) 0%, rgba(10, 10, 13, 0) 70%);
  --gradient-card: linear-gradient(180deg, #1a1a24 0%, #14141c 100%);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e6e6ee;
  --text-muted: #9e9eb0;
  --text-dim: #6c6c7d;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-flame: rgba(255, 87, 34, 0.35);
  --border-flame-glow: rgba(255, 122, 0, 0.7);

  /* Dietary Indicators (Vibrant Neon) */
  --veg-color: #00e676;
  --veg-bg: rgba(0, 230, 118, 0.12);
  --veg-border: rgba(0, 230, 118, 0.45);

  --nonveg-color: #ff3d57;
  --nonveg-bg: rgba(255, 61, 87, 0.12);
  --nonveg-border: rgba(255, 61, 87, 0.45);

  --mixed-color: #ffb703;
  --mixed-bg: rgba(255, 183, 3, 0.12);
  --mixed-border: rgba(255, 183, 3, 0.45);

  /* Modern High-Impact Fonts */
  --font-heading: 'Bebas Neue', 'Montserrat', -apple-system, sans-serif;
  --font-subheading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Glow Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.65);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.85);
  --shadow-flame: 0 0 25px rgba(255, 87, 34, 0.4);
  --shadow-flame-lg: 0 0 40px rgba(255, 87, 34, 0.55);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-medium: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Dimensions */
  --container-max: 1280px;
  --header-height: 84px;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-pill: 50px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(230, 57, 70, 0.05) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  background-attachment: fixed;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

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

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* --------------------------------------------------
   3. TYPOGRAPHY & FLAME DIVIDERS
   -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flame-bright);
  margin-bottom: 0.5rem;
}

.flame-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0.8rem auto 1.2rem;
}

.flame-divider::before,
.flame-divider::after {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--flame-primary));
}

.flame-divider::after {
  background: linear-gradient(90deg, var(--flame-primary), transparent);
}

.flame-accent {
  font-size: 1.1rem;
  animation: flameFlicker 2s infinite alternate ease-in-out;
}

@keyframes flameFlicker {
  0% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(255, 87, 34, 0.5)); }
  100% { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(255, 122, 0, 0.9)); }
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --------------------------------------------------
   4. BUTTONS & ACTIONS
   -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
}

.btn-primary {
  background: var(--gradient-fire);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 61, 0, 0.35);
}

.btn-primary:hover {
  background: var(--gradient-fire-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-flame);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--flame-glow);
  background: rgba(255, 87, 34, 0.1);
  color: var(--flame-bright);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-fire);
  color: #fff;
  box-shadow: var(--shadow-flame-sm);
}

.btn-gold:hover {
  background: var(--gradient-fire-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-flame);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
}

/* --------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 10, 13, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.site-header.scrolled {
  background: rgba(10, 10, 13, 0.98);
  border-bottom: 1px solid var(--border-flame);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid var(--border-flame);
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.brand-subtitle {
  font-family: var(--font-subheading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ember-yellow);
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

/* Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 1.8rem);
  flex-shrink: 0;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--flame-bright);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-btn-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: currentColor;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 87, 34, 0.08);
  border: 1px solid var(--border-flame);
  padding: 0.5rem 0.9rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  transition: all var(--transition-fast);
}

.header-phone-btn:hover {
  background: rgba(255, 87, 34, 0.2);
  border-color: var(--flame-glow);
  transform: translateY(-1px);
}

.header-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-fire);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 61, 0, 0.35);
  transition: all var(--transition-fast);
}

.header-order-btn:hover {
  background: var(--gradient-fire-hover);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
  transform: translateY(-1px);
}

.cart-count-badge {
  background: #000;
  color: var(--ember-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 50px;
}

/* Nav Toggle */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}

.nav-toggle-btn span {
  height: 2px;
  width: 100%;
  background-color: var(--flame-bright);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-flame);
  z-index: 1050;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
  transition: right var(--transition-medium);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.2rem;
  margin-bottom: 1.8rem;
}

.mobile-close-btn {
  color: var(--flame-bright);
  font-size: 1.8rem;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mobile-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

.mobile-contact-link {
  color: var(--text-secondary);
  font-weight: 600;
}

.mobile-contact-link.wp-link {
  color: var(--ember-yellow);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------
   6. HERO SECTION (SMOKY VIBES)
   -------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 30%, rgba(255, 87, 34, 0.12) 0%, rgba(10, 10, 13, 1) 70%);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid var(--border-flame);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ember-yellow);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

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

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.hero-quick-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-phone-pill {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-phone-pill strong {
  color: var(--ember-yellow);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e676;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Hero Visual Frame with Flame Halo */
.hotbox-showcase-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow-halo {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.45) 0%, rgba(255, 61, 0, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: glowPulse 4s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero-logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  border: 1px solid rgba(255, 87, 34, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 87, 34, 0.3);
}

.floating-flame-seal {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-flame);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg), 0 0 15px rgba(255, 87, 34, 0.35);
  z-index: 2;
}

.seal-flame {
  font-size: 1.4rem;
}

.seal-text-top {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.seal-text-bottom {
  font-family: var(--font-subheading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ember-yellow);
}

/* --------------------------------------------------
   7. ABOUT US SECTION (THE HUSTLE STORY)
   -------------------------------------------------- */
.about-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-lead {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ember-yellow);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-fast);
}

.feature-block:hover {
  border-color: var(--border-flame);
  transform: translateY(-3px);
  box-shadow: var(--shadow-flame-sm);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
}

.about-image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-image-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.8rem;
}

/* --------------------------------------------------
   8. MENU CONTROLS & STICKY QUICKNAV
   -------------------------------------------------- */
.menu-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.1) 0%, transparent 48%),
    var(--bg-surface);
}

.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius-pill);
  padding: 1rem 3rem 1rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--flame-glow);
  box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
  background: var(--bg-card);
}

.search-icon {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
  opacity: 0.6;
}

.type-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.type-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-fast);
}

.type-filter-btn[data-type="ALL"] {
  color: var(--text-secondary);
  border-color: var(--border-medium);
}

.type-filter-btn[data-type="VEG"] {
  color: var(--veg-color);
  background: var(--veg-bg);
  border-color: var(--veg-border);
}

.type-filter-btn[data-type="NON-VEG"] {
  color: var(--nonveg-color);
  background: var(--nonveg-bg);
  border-color: var(--nonveg-border);
}

.type-filter-btn[data-type="MIXED"] {
  color: var(--mixed-color);
  background: var(--mixed-bg);
  border-color: var(--mixed-border);
}

.type-filter-btn:hover {
  color: #fff;
  border-color: var(--border-flame);
}

.type-filter-btn.active {
  background: var(--gradient-fire);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 61, 0, 0.35);
}

.type-filter-btn.active[data-type="ALL"] {
  background: var(--gradient-fire);
  border-color: transparent;
}

.type-filter-btn.active[data-type="VEG"] {
  background: var(--veg-color);
  border-color: var(--veg-color);
  color: #062b18;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.type-filter-btn.active[data-type="NON-VEG"] {
  background: var(--nonveg-color);
  border-color: var(--nonveg-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 61, 87, 0.3);
}

.type-filter-btn.active[data-type="MIXED"] {
  background: var(--mixed-color);
  border-color: var(--mixed-color);
  color: #332300;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.type-filter-btn .type-icon {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
}

.type-filter-btn .type-icon.veg {
  background: var(--veg-color);
}

.type-filter-btn .type-icon.non-veg {
  background: var(--nonveg-color);
}

.type-filter-btn .type-icon.mixed {
  background: var(--mixed-color);
}

/* Category Quick-Jump Bar */
.category-quicknav-container {
  position: sticky;
  top: var(--header-height);
  background: rgba(37, 37, 51, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  margin-bottom: 2.5rem;
  z-index: 900;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.category-quicknav-shell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.category-nav-arrow {
  flex: 0 0 38px;
  width: 38px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius);
  color: var(--flame-bright);
  font-size: 2rem;
  line-height: 1;
  transition: all var(--transition-fast);
}

.category-nav-arrow:hover:not(:disabled) {
  background: var(--gradient-fire);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.category-nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.category-quicknav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.category-quicknav::-webkit-scrollbar {
  display: none;
}

.quicknav-btn {
  flex: 0 0 auto;
  min-width: 96px;
  max-width: 132px;
  min-height: 54px;
  white-space: normal;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 0.65rem 0.8rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.quicknav-btn:nth-child(4n + 1) {
  border-top: 2px solid var(--flame-bright);
}

.quicknav-btn:nth-child(4n + 2) {
  border-top: 2px solid var(--veg-color);
}

.quicknav-btn:nth-child(4n + 3) {
  border-top: 2px solid var(--mixed-color);
}

.quicknav-btn:nth-child(4n) {
  border-top: 2px solid var(--nonveg-color);
}

.quicknav-btn:hover {
  color: #fff;
  border-color: var(--border-flame);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.quicknav-btn.active {
  background: rgba(255, 87, 34, 0.18);
  border-color: var(--flame-bright);
  color: var(--ember-yellow);
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.35);
}

.menu-results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.8rem;
}

/* --------------------------------------------------
   9. MENU CATEGORY SECTIONS & IMAGE-FREE CARDS
   -------------------------------------------------- */
.menu-category-section {
  margin-bottom: 4.5rem;
  scroll-margin-top: calc(var(--header-height) + 70px);
}

.category-header {
  text-align: center;
  margin-bottom: 2rem;
}

.category-badge-pill {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame-bright);
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid var(--border-flame);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 0.6rem;
}

.category-title {
  font-size: 2.2rem;
  color: #fff;
}

.category-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0.3rem auto 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Pure Smoky Typographic Menu Card */
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--flame-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-flame-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 87, 34, 0.25);
  background: var(--bg-card-hover);
}

.menu-card:hover::before {
  opacity: 1;
}

/* Card Topbar */
.menu-card-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.card-category-tag {
  font-family: var(--font-subheading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Dietary Indicators */
.card-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-subheading);
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--border-radius-sm);
}

.type-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.card-type-badge.veg {
  background: var(--veg-bg);
  color: var(--veg-color);
  border: 1px solid var(--veg-border);
}

.card-type-badge.veg .type-icon {
  background: var(--veg-color);
  box-shadow: 0 0 6px var(--veg-color);
}

.card-type-badge.non-veg {
  background: var(--nonveg-bg);
  color: var(--nonveg-color);
  border: 1px solid var(--nonveg-border);
}

.card-type-badge.non-veg .type-icon {
  background: var(--nonveg-color);
  box-shadow: 0 0 6px var(--nonveg-color);
}

.card-type-badge.mixed {
  background: var(--mixed-bg);
  color: var(--mixed-color);
  border: 1px solid var(--mixed-border);
}

.card-type-badge.mixed .type-icon {
  background: var(--mixed-color);
  box-shadow: 0 0 6px var(--mixed-color);
}

.menu-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.menu-item-title {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.menu-item-leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 0 6px 4px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ember-yellow);
  white-space: nowrap;
}

.menu-item-description {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  flex-grow: 1;
}

.menu-card-footer {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--border-subtle);
}

.add-to-order-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 87, 34, 0.08);
  border: 1px solid var(--border-flame);
  color: var(--flame-bright);
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.add-to-order-btn:hover {
  background: var(--gradient-fire);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
  transform: translateY(-1px);
}

.add-to-order-btn:active {
  transform: scale(0.98);
}

/* --------------------------------------------------
   10. TESTIMONIALS SECTION
   -------------------------------------------------- */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.carousel-container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide,
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  background: var(--bg-card);
  border: 1px solid var(--border-flame);
  border-radius: var(--border-radius);
  padding: 2.8rem 2.2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 87, 34, 0.15);
  position: relative;
}

.quote-ornament {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--flame-bright);
  opacity: 0.35;
  margin-bottom: -0.5rem;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
}

.testimonial-stars {
  color: var(--ember-yellow);
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: var(--font-subheading);
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-dish {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ember-yellow);
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  margin-top: 0.8rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.carousel-arrow {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--flame-bright);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background: var(--flame-primary);
  color: #fff;
  border-color: var(--flame-primary);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--flame-bright);
  width: 24px;
  border-radius: 10px;
}

/* --------------------------------------------------
   11. LOCATION SECTION ("HOURS & LOCATION")
   -------------------------------------------------- */
.location-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.location-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 14px;
}

.info-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.info-text h4 {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.info-text a {
  color: var(--ember-yellow);
  font-weight: 600;
}

.info-text a:hover {
  text-decoration: underline;
}

.map-wrapper {
  height: 420px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* --------------------------------------------------
   12. CONTACT US SECTION (HOTLINE & FORM)
   -------------------------------------------------- */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-direct-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.8rem 0;
}

.direct-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.direct-link-item a {
  color: var(--ember-yellow);
  font-weight: 700;
}

.direct-link-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--flame-glow);
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.3);
  background: var(--bg-elevated);
}

.form-feedback {
  padding: 0.8rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  display: block;
  background: var(--veg-bg);
  color: var(--veg-color);
  border: 1px solid var(--veg-border);
}

.form-feedback.error {
  display: block;
  background: var(--nonveg-bg);
  color: var(--nonveg-color);
  border: 1px solid var(--nonveg-border);
}

/* --------------------------------------------------
   13. FOOTER
   -------------------------------------------------- */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--flame-bright);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.footer-contact-info a {
  color: var(--ember-yellow);
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.2rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  padding: 0.5rem 0.95rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  border-color: var(--flame-glow);
  color: #fff;
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.25);
}

.social-icon-btn.instagram:hover {
  border-color: #e1306c;
  color: #fff;
  background: rgba(225, 48, 108, 0.12);
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.35);
}

.social-icon-btn.youtube:hover {
  border-color: #ff0000;
  color: #fff;
  background: rgba(255, 0, 0, 0.12);
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.35);
}

.social-icon-btn.email:hover {
  border-color: var(--flame-bright);
  color: #fff;
  background: rgba(255, 87, 34, 0.12);
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}

.social-svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --------------------------------------------------
   14. CART DRAWER
   -------------------------------------------------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-flame);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
  transition: right var(--transition-medium);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-header h3 {
  font-size: 1.5rem;
  color: #fff;
}

.cart-close-btn {
  color: var(--flame-bright);
  font-size: 1.8rem;
  line-height: 1;
}

.cart-items-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 1.8rem;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 1rem;
}

.cart-item-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.3rem;
}

.cart-item-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
}

.cart-item-unit-price {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius-sm);
}

.qty-btn {
  padding: 4px 10px;
  color: var(--flame-bright);
  font-weight: 800;
  font-size: 1rem;
}

.qty-btn:hover {
  background: rgba(255, 87, 34, 0.2);
}

.qty-value {
  padding: 0 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.cart-item-remove-btn {
  font-size: 0.75rem;
  color: var(--crimson-fire);
  text-decoration: underline;
}

.cart-item-subtotal {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ember-yellow);
  white-space: nowrap;
}

.cart-empty-state {
  text-align: center;
  padding: 4rem 1rem;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cart-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.4rem 1.6rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  width: 100%;
}

.total-line {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.8rem;
  margin-top: 0.2rem;
  width: 100%;
}

.total-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--ember-yellow);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

#proceedToCheckoutBtn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.4rem;
  font-size: 0.88rem;
}

/* --------------------------------------------------
   15. CHECKOUT MODAL & POPUPS
   -------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-flame);
  border-radius: 12px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 87, 34, 0.3);
}

.checkout-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-modal-body {
  padding: 1.8rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-full-width {
  grid-column: 1 / -1;
}

.radio-group-container {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.radio-label, .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.field-error-msg {
  display: none;
  font-size: 0.78rem;
  color: var(--crimson-fire);
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--crimson-fire);
}

.form-group.has-error .field-error-msg {
  display: block;
}

.checkout-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}

.checkout-footer-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.checkout-total-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checkout-total-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--ember-yellow);
}

.checkout-footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-dark {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-muted);
}

.btn-outline-dark:hover {
  color: #fff;
  border-color: #fff;
}

/* Success Modal */
.success-modal-content {
  text-align: center;
  padding: 3rem 2rem;
}

.vintage-checkmark-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.15);
  border: 2px solid var(--veg-color);
  color: var(--veg-color);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-btn-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

/* --------------------------------------------------
   16. TOAST & BACK TO TOP
   -------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-flame);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg), 0 0 15px rgba(255, 87, 34, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-flame);
  color: var(--flame-bright);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--flame-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-flame);
}

/* Floating WhatsApp Quick-Action Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 995;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-subheading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

.floating-whatsapp-btn .wa-icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* Mobile Sticky Quick Order Bar */
.mobile-quick-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 25, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-flame);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.85);
  z-index: 1020;
  padding: 0.8rem 1.2rem;
  padding-bottom: max(0.8rem, env(safe-area-inset-bottom, 0px));
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-quick-cart-bar.visible {
  transform: translateY(0);
}

.quick-cart-info {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.quick-cart-badge {
  font-family: var(--font-subheading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--flame-bright);
}

.quick-cart-total {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--ember-yellow);
  line-height: 1.1;
}

/* --------------------------------------------------
   17. COMPREHENSIVE RESPONSIVE BREAKPOINTS
   -------------------------------------------------- */

/* 1. Laptops & Small Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .header-inner {
    gap: 1rem;
  }

  .desktop-nav {
    gap: 1.1rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* 2. Tablets & iPad Landscape (<= 1024px) */
@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }

  /* Switch desktop nav to mobile drawer for an uncluttered tablet header */
  .desktop-nav {
    display: none;
  }

  .nav-toggle-btn {
    display: flex;
  }

  /* Hero Section */
  .hero-section {
    padding: calc(var(--header-height) + 2rem) 0 4rem;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-quick-contacts {
    justify-content: center;
  }

  .hotbox-showcase-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-logo-img {
    max-width: 320px;
  }

  /* About section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  /* Location & Contact Grids */
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* 3. Tablets & Large Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: 94%;
  }

  /* Section Spacing */
  .hero-section,
  .about-section,
  .menu-section,
  .testimonials-section,
  .location-section,
  .contact-section {
    padding: 3.8rem 0;
  }

  .section-header {
    margin-bottom: 2.2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Header Branding */
  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-subtitle {
    font-size: 0.55rem;
  }

  .header-actions {
    gap: 0.7rem;
  }

  .header-phone-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
  }

  .header-order-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.72rem;
  }

  /* Hero Section */
  .hero-title {
    font-size: clamp(2.3rem, 7vw, 3.2rem);
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  /* Menu Grid (Single Column) */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .menu-card {
    padding: 1.25rem 1.3rem;
  }

  /* Sticky Quicknav: Optimized for Horizontal Touch Swipe */
  .category-quicknav-container {
    padding: 0.6rem 0;
    margin-bottom: 1.8rem;
  }

  .category-nav-arrow {
    display: none; /* Hide arrows on touch for full swipe area */
  }

  .category-quicknav {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .quicknav-btn {
    scroll-snap-align: start;
    min-width: 90px;
    max-width: 124px;
    font-size: 0.68rem;
    padding: 0.55rem 0.65rem;
    min-height: 48px;
  }

  .feature-blocks {
    grid-template-columns: 1fr;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Mobile Quick Cart Bar Activation */
  .mobile-quick-cart-bar {
    display: flex;
  }

  /* Reposition floating actions safely above mobile bottom bar */
  .floating-whatsapp-btn {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .back-to-top-btn {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    left: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* Cart Drawer Full Fit */
  .cart-drawer {
    width: 100%;
    max-width: 420px;
  }
}

/* 4. Standard Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: 95%;
  }

  /* Compact Header */
  .brand-text .brand-subtitle {
    display: none;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-logo-img {
    width: 34px;
    height: 34px;
  }

  /* Convert phone to compact round button */
  .header-phone-btn {
    padding: 0.45rem 0.6rem;
    border-radius: 50%;
  }

  .header-phone-btn .phone-num {
    display: none;
  }

  .header-phone-btn .phone-icon {
    font-size: 0.95rem;
  }

  /* Compact cart order button */
  .header-order-btn .btn-label {
    display: none;
  }

  .header-order-btn {
    padding: 0.45rem 0.75rem;
  }

  /* Hero Section */
  .hero-section {
    padding: calc(var(--header-height) + 1.5rem) 0 3rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8.5vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
  }

  .hero-quick-contacts {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 6px;
  }

  /* Flame logo showcase frame */
  .hotbox-showcase-frame {
    max-width: 290px;
    width: 100%;
  }

  .hero-logo-img {
    max-width: 260px;
  }

  .logo-glow-halo {
    width: 210px;
    height: 210px;
  }

  .floating-flame-seal {
    bottom: -12px;
    right: -4px;
    padding: 6px 10px;
  }

  .seal-text-top {
    font-size: 0.9rem;
  }

  .seal-text-bottom {
    font-size: 0.52rem;
  }

  /* About stats */
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  /* Filters */
  .type-filters {
    gap: 0.4rem;
  }

  .type-filter-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  /* Menu cards */
  .menu-card {
    padding: 1rem 1.1rem;
  }

  .menu-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .menu-item-leader {
    display: none;
  }

  .menu-item-title {
    font-size: 1rem;
  }

  .menu-item-price {
    font-size: 1.25rem;
  }

  .menu-item-description {
    font-size: 0.84rem;
    margin-bottom: 1rem;
  }

  /* Contact boxes */
  .contact-card-box,
  .contact-form {
    padding: 1.5rem 1.2rem;
  }

  /* Testimonials on mobile */
  .testimonial-slide,
  .testimonial-card {
    padding: 2rem 1.3rem;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
  }

  /* Native Mobile App Sheet Experience for Cart Drawer */
  .cart-drawer {
    width: 100%;
    max-width: 100vw;
    height: 100dvh;
    height: 100vh;
    border-left: none;
  }

  .cart-drawer-header {
    padding: 1.2rem 1.2rem;
  }

  .cart-items-body {
    padding: 1rem 1.2rem;
  }

  .cart-drawer-footer {
    padding: 1.2rem 1.2rem max(1.2rem, env(safe-area-inset-bottom, 0px));
  }

  /* Native Bottom Sheet Experience for Checkout Modal */
  .checkout-modal {
    width: 100%;
    max-width: 100vw;
    height: 94dvh;
    max-height: 94dvh;
    border-radius: 16px 16px 0 0;
    margin-top: auto;
  }

  .checkout-modal-header {
    padding: 1.2rem 1.2rem;
  }

  .checkout-modal-body {
    padding: 1.2rem 1.2rem;
  }

  .checkout-modal-footer {
    padding: 1rem 1.2rem max(1rem, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }

  .checkout-footer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .checkout-footer-actions {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .checkout-footer-actions .btn {
    flex: 1;
    min-height: 44px;
  }

  /* Form inputs 16px to prevent iOS Safari auto-zoom */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Floating WhatsApp Button (Compact Round Pill) */
  .floating-whatsapp-btn .wa-text {
    display: none;
  }

  .floating-whatsapp-btn {
    padding: 11px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }

  .floating-whatsapp-btn .wa-icon {
    font-size: 1.35rem;
  }
}

/* 5. Ultra Compact Mobile (<= 360px) */
@media (max-width: 360px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .brand-logo-img {
    width: 28px;
    height: 28px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .quicknav-btn {
    min-width: 76px;
    font-size: 0.62rem;
    padding: 0.45rem 0.5rem;
  }

  .quick-cart-total {
    font-size: 1.15rem;
  }

  .mobile-quick-cart-bar .btn-sm {
    padding: 0.45rem 0.75rem;
    font-size: 0.7rem;
  }
}

