/* ==========================================================================
   RESTAURANT DEMO - LUXURY DIGITAL QR MENU STYLESHEET
   Aesthetics: Haute Cuisine, Warm Amber Gold, Deep Obsidian, Frosted Glass
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- THEME VARIABLES --- */
:root {
  /* Dark Luxury (Default Haute Cuisine) */
  --bg-primary: #0C0D0E;
  --bg-secondary: #141619;
  --bg-tertiary: #1C1F24;
  --card-bg: rgba(22, 25, 29, 0.75);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-border: rgba(245, 158, 11, 0.45);
  --glass-bg: rgba(14, 16, 18, 0.82);
  --modal-bg: #141619;
  
  --text-primary: #FAF9F6;
  --text-secondary: #A3A7AF;
  --text-muted: #6E7480;
  
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-light: rgba(245, 158, 11, 0.15);
  --accent-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 60%, #B45309 100%);
  --gold-glow: 0 8px 28px rgba(245, 158, 11, 0.28);
  --champagne: #FDE68A;
  
  --badge-veg: #10B981;
  --badge-spicy: #EF4444;
  --badge-popular: #F59E0B;
  --badge-chef: #8B5CF6;
  --badge-new: #06B6D4;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  
  --nav-height: 72px;
  --cat-height: 58px;
}

[data-theme="light"] {
  --bg-primary: #FAF8F5;
  --bg-secondary: #F2EFE9;
  --bg-tertiary: #E8E3DA;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(0, 0, 0, 0.08);
  --card-hover-border: rgba(217, 119, 6, 0.45);
  --glass-bg: rgba(250, 248, 245, 0.85);
  --modal-bg: #FFFFFF;
  
  --text-primary: #191614;
  --text-secondary: #57534E;
  --text-muted: #8C867E;
  
  --accent: #D97706;
  --accent-hover: #B45309;
  --accent-light: rgba(217, 119, 6, 0.12);
  --accent-gradient: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  --gold-glow: 0 8px 24px rgba(217, 119, 6, 0.22);
  --champagne: #78350F;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

/* --- BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark light;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

/* RTL Support */
[dir="rtl"] {
  font-family: var(--font-ar), var(--font-sans);
}

[dir="rtl"] .serif-font {
  font-family: var(--font-ar);
  font-weight: 700;
}

/* Typography Helpers */
.serif-font {
  font-family: var(--font-serif);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: 1.25;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* ==========================================================================
   1. SPLASH / WELCOME SCREEN
   ========================================================================== */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #08090A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(8, 9, 10, 0.5), rgba(8, 9, 10, 0.92)),
                    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.65);
  transform: scale(1.08);
  animation: splashZoom 12s infinite alternate ease-in-out;
}

@keyframes splashZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.splash-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: splashFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes splashFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.splash-emblem {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent);
  background: rgba(245, 158, 11, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  box-shadow: var(--gold-glow);
  animation: pulseGlow 3s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.2); }
  100% { box-shadow: 0 0 38px rgba(245, 158, 11, 0.45); }
}

.splash-title {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.splash-tagline {
  font-size: 1.125rem;
  color: #D1D5DB;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.splash-divider {
  width: 50px;
  height: 2px;
  background: var(--accent-gradient);
  margin-bottom: 24px;
}

.splash-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn-splash-primary {
  background: var(--accent-gradient);
  color: #000000;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--gold-glow);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-splash-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.45);
}

.btn-splash-secondary {
  background: transparent;
  color: #9CA3AF;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}

.btn-splash-secondary:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   2. TOP STICKY HEADER & UTILITY BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-monogram {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-gradient);
  color: #000000;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  box-shadow: var(--gold-glow);
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 640px) {
  .header-actions, .desktop-nav-group {
    gap: 12px;
  }
}

/* Control Buttons (Language, Theme, Search, Cart) */
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  font-size: 0.95rem;
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: var(--bg-tertiary);
}

/* Language Switcher */
.lang-selector {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--accent);
  color: #000000;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

/* Cart Button */
.cart-header-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  padding: 0 16px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.cart-header-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.cart-badge {
  background: var(--accent);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
  0% { transform: scale(0.5); }
  70% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Table Quick Action Button */
.reserve-header-btn {
  display: none;
}

@media (min-width: 900px) {
  .reserve-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 0 18px;
    height: 40px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .reserve-header-btn:hover {
    background: var(--accent);
    color: #000000;
    box-shadow: var(--gold-glow);
  }
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 48px 0 36px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 64px 0 48px 0;
  }
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 22, 25, 0.95), rgba(12, 13, 14, 0.88)),
              url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 35%;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-banner {
    padding: 72px 48px;
  }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-pill-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 750px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-desc {
  font-size: 1.05rem;
  color: #D1D5DB;
  max-width: 600px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--gold-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.42);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: #000000;
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

/* Hero Feature Highlights */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 680px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.hero-highlight-icon {
  color: var(--accent);
  margin-bottom: 2px;
}

.hero-highlight-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
}

.hero-highlight-sub {
  font-size: 0.7rem;
  color: #9CA3AF;
}

/* ==========================================================================
   4. SPECIAL OFFERS SECTION
   ========================================================================== */
.section-special-offers {
  padding: 24px 0 36px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

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

@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-md);
}

.offer-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.offer-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-card:hover .offer-card-media img {
  transform: scale(1.06);
}

.offer-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-gradient);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

[dir="rtl"] .offer-tag-badge {
  left: auto;
  right: 14px;
}

.offer-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.offer-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.offer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--card-border);
}

.offer-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.offer-price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.offer-price-original {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ==========================================================================
   5. STICKY CATEGORY NAVIGATION & SEARCH/FILTER BAR
   ========================================================================== */
.sticky-menu-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.category-scroll-container {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.category-scroll-container::-webkit-scrollbar {
  display: none;
}

.category-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.category-tab:hover {
  color: var(--text-primary);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-1px);
}

.category-tab.active {
  background: var(--accent-gradient);
  color: #000000;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.category-tab svg {
  width: 16px;
  height: 16px;
}

/* Search Bar Container */
.menu-toolbar {
  padding: 20px 0 10px 0;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.search-icon-inside {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

[dir="rtl"] .search-icon-inside {
  left: auto;
  right: 16px;
}

.search-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  padding: 13px 44px 13px 46px;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
  transition: all 0.25s ease;
}

[dir="rtl"] .search-input {
  padding: 13px 46px 13px 44px;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: var(--bg-tertiary);
}

.search-clear-btn {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: none;
  padding: 4px;
}

[dir="rtl"] .search-clear-btn {
  right: auto;
  left: 14px;
}

.search-clear-btn.visible {
  display: block;
}

/* Dietary Filter Chips */
.filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-chip:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.filter-chip.active {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

.filter-results-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
  padding: 0 4px;
}

/* ==========================================================================
   6. MENU ITEMS SECTION & PRODUCT CARDS
   ========================================================================== */
.menu-section-container {
  padding-bottom: 80px;
}

.category-group {
  margin-bottom: 56px;
  scroll-margin-top: 150px;
}

.category-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.category-group-title {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-group-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

@media (min-width: 640px) {
  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dish-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Dish Card */
.dish-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-md);
}

.dish-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-card:hover .dish-media img {
  transform: scale(1.07);
}

/* Badges on Card Media */
.dish-badges-layer {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

[dir="rtl"] .dish-badges-layer {
  left: auto;
  right: 12px;
}

.dish-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-popular {
  background: rgba(245, 158, 11, 0.92);
  color: #000000;
}

.badge-chef {
  background: rgba(139, 92, 246, 0.92);
  color: #FFFFFF;
}

.badge-spicy {
  background: rgba(239, 68, 68, 0.92);
  color: #FFFFFF;
}

.badge-veg {
  background: rgba(16, 185, 129, 0.92);
  color: #FFFFFF;
}

.badge-new {
  background: rgba(6, 182, 212, 0.92);
  color: #FFFFFF;
}

.dish-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.dish-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.dish-name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.dish-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.dish-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}

.btn-view-details {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-view-details:hover {
  color: var(--accent);
}

.btn-quick-add {
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-quick-add:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  transform: scale(1.08);
  box-shadow: var(--gold-glow);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1px dashed var(--card-border);
  margin: 32px 0;
}

.empty-state-icon {
  font-size: 2.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 20px auto;
}

/* ==========================================================================
   7. ABOUT SECTION & LIVE STATUS
   ========================================================================== */
.about-section {
  padding: 64px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-story {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hours-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.open {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: currentColor;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--card-border);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row.highlight {
  color: var(--accent);
  font-weight: 700;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ==========================================================================
   8. HAUTE CUISINE GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 64px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--card-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 14, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   9. REVIEWS / TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  padding: 64px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
}

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

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-rating {
  color: var(--accent);
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1.5px solid var(--accent);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.reviewer-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. FOOTER & QR EXPERIENCE NOTE
   ========================================================================== */
.site-footer {
  background: #08090A;
  color: #9CA3AF;
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col-brand .brand-name {
  color: #FFFFFF;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

.qr-promo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.qr-promo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #000000;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-promo-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #D1D5DB;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   11. FLOATING ACTION BUTTON (CART / WHATSAPP)
   ========================================================================== */
.floating-order-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 95;
  background: var(--accent-gradient);
  color: #000000;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.45);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  font-weight: 700;
  user-select: none;
}

.floating-order-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.floating-order-bar:hover {
  box-shadow: 0 14px 45px rgba(245, 158, 11, 0.6);
  transform: translateX(-50%) translateY(-2px);
}

.floating-cart-count {
  background: #000000;
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.floating-cart-total {
  font-size: 1.05rem;
  font-weight: 800;
}

/* ==========================================================================
   12. MODALS SYSTEM (ITEM DETAIL, CART DRAWER, RESERVATION, LIGHTBOX)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 9, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Item Detail Modal Card */
.modal-container-dish {
  background: var(--modal-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .modal-container-dish {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

[dir="rtl"] .modal-close-btn {
  right: auto;
  left: 16px;
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.08);
}

.modal-dish-hero {
  position: relative;
  width: 100%;
  height: 280px;
}

.modal-dish-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-dish-body {
  padding: 24px;
}

.modal-dish-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.modal-dish-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-dish-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
}

.modal-dish-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Ingredients Tags */
.modal-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ingredient-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Add-ons List */
.addons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.addon-item:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.addon-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.addon-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.addon-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.addon-price {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 700;
}

/* Quantity & Add to Cart Footer */
.modal-dish-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  padding: 4px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: var(--accent);
  color: #000000;
}

.qty-value {
  width: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.btn-add-modal {
  flex-grow: 1;
  background: var(--accent-gradient);
  color: #000000;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-add-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

/* ==========================================================================
   13. CART DRAWER (SLIDE-OVER)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(8, 9, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--modal-bg);
  border-left: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--card-border);
  transform: translateX(-100%);
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-addons {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 4px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--accent);
  color: #000000;
}

.cart-item-qty {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

.cart-empty-view {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}

/* Cart Footer & Checkout */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--card-border);
  background: var(--bg-secondary);
}

.cart-field-group {
  margin-bottom: 14px;
}

.cart-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.cart-select, .cart-textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
}

.cart-select:focus, .cart-textarea:focus {
  border-color: var(--accent);
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-top: 10px;
  border-top: 1px dashed var(--card-border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.cart-total-row.final {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  padding-top: 8px;
  border-top: 1px solid var(--card-border);
}

.cart-total-row.final .amount {
  color: var(--accent);
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-whatsapp-order {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-whatsapp-order:hover {
  background: #20BA5A;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

.btn-simulate-order {
  background: var(--accent-gradient);
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-simulate-order:hover {
  box-shadow: var(--gold-glow);
}

/* ==========================================================================
   14. TABLE RESERVATION MODAL
   ========================================================================== */
.reservation-modal-box {
  background: var(--modal-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 520px) {
  .reservation-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.form-control-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.form-control-input:focus {
  border-color: var(--accent);
}

/* ==========================================================================
   15. ORDER CONFIRMATION MODAL (RECEIPT)
   ========================================================================== */
.receipt-box {
  background: var(--modal-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.receipt-success-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 2px solid #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  animation: receiptPulse 0.6s ease;
}

@keyframes receiptPulse {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.receipt-order-id {
  display: inline-block;
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ==========================================================================
   16. TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 86px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

[dir="rtl"] .toast-container {
  right: auto;
  left: 20px;
}

.toast {
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   17. LIGHTBOX MODAL (FULL IMAGE PREVIEW)
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Utility Animations */
.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   18. REY SERVICES AGENCY CREDIT & WHATSAPP UPGRADE
   ========================================================================== */
.agency-credit-card {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.agency-credit-card:hover {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
}

.agency-credit-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}

.agency-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.agency-brand-link:hover {
  color: var(--accent);
}

.agency-tag {
  font-size: 0.74rem;
  color: #000000;
  background: var(--accent);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Enhanced WhatsApp Buttons */
.btn-whatsapp-order {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  width: 100%;
}

.btn-whatsapp-order:hover {
  background: #20BA5A;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

/* ==========================================================================
   19. ORDER MODE SELECTOR & GEOLOCATION STYLES
   ========================================================================== */
.order-mode-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.mode-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 4px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.mode-btn .mode-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.mode-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.mode-btn.active {
  background: var(--accent-gradient);
  color: #000000;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  font-weight: 800;
}

.mode-field-section {
  animation: fadeInMode 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInMode {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Location Button Pill */
.btn-location-pill {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--accent);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-location-pill:hover {
  background: var(--accent);
  color: #000000;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.btn-location-pill.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-location-pill.success {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10B981;
  color: #10B981;
}

/* Input with icon */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-with-icon .field-icon {
  position: absolute;
  left: 12px;
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}

[dir="rtl"] .input-with-icon .field-icon {
  left: auto;
  right: 12px;
}

.input-with-icon .cart-select {
  padding-left: 38px;
}

[dir="rtl"] .input-with-icon .cart-select {
  padding-left: 14px;
  padding-right: 38px;
}

/* ==========================================================================
   20. 24-TABLE INTERACTIVE SELECTOR STYLES
   ========================================================================== */
.table-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.table-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.table-selected-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  display: inline-block;
  animation: pulseGreenDot 2s infinite;
}

@keyframes pulseGreenDot {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 4px #10B981; }
  50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 8px #10B981; }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 4px #10B981; }
}

/* Zone Filter Pills */
.table-zone-filters {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.table-zone-filters::-webkit-scrollbar {
  display: none;
}

.zone-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.zone-pill:hover {
  color: var(--text-primary);
  border-color: rgba(245, 158, 11, 0.4);
}

.zone-pill.active {
  background: rgba(245, 158, 11, 0.16);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

/* Tables 24 Grid Container */
.tables-grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--card-border);
  padding: 8px;
  border-radius: var(--radius-md);
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.table-grid-btn {
  aspect-ratio: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  position: relative;
  outline: none;
}

.table-grid-btn .tbl-num {
  line-height: 1;
  transition: transform 0.2s ease;
}

.table-grid-btn:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.5);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.table-grid-btn.active {
  background: var(--accent-gradient);
  border-color: #F59E0B;
  color: #000000;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
  transform: scale(1.06);
  z-index: 2;
}

.table-grid-btn.active .tbl-num {
  transform: scale(1.08);
}

/* ==========================================================================
   21. BURGER MENU, MOBILE NAV DRAWER & MOBILE-FIRST RESPONSIVE UPGRADE
   ========================================================================== */

/* Hamburger Button */
.burger-btn {
  display: none; /* Hidden on desktop by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  cursor: pointer;
  padding: 8px;
  transition: all 0.25s ease;
  user-select: none;
  flex-shrink: 0;
}

.burger-btn:hover {
  border-color: var(--accent);
  background: var(--bg-tertiary);
}

.burger-btn .burger-bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.burger-btn.active .bar-1 {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--accent);
}

.burger-btn.active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--accent);
}

/* Mobile Nav Drawer Overlay & Panel */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 360px;
  background: var(--bg-secondary);
  border-left: 1px solid var(--card-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1090;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

[dir="rtl"] .mobile-nav-panel {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--card-border);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
  transform: translateX(-100%);
}

.mobile-nav-overlay.active .mobile-nav-panel {
  transform: translateX(0);
}

/* Mobile Nav Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-primary);
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

/* Mobile Nav Settings (Lang & Theme) */
.mobile-nav-settings {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-lang-row, .mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.settings-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-theme-toggle:hover {
  border-color: var(--accent);
}

/* Mobile Nav Links */
.mobile-nav-links {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: all 0.2s ease;
  background: transparent;
  border: 1px solid transparent;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--accent);
  transform: translateX(4px);
}

[dir="rtl"] .mobile-nav-link:hover, [dir="rtl"] .mobile-nav-link:active {
  transform: translateX(-4px);
}

.mobile-nav-link .link-icon {
  font-size: 1.2rem;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.mobile-nav-link .link-text {
  flex-grow: 1;
}

.mobile-nav-link .link-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

[dir="rtl"] .mobile-nav-link .link-arrow {
  transform: rotate(180deg);
}

.mobile-nav-link:hover .link-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

[dir="rtl"] .mobile-nav-link:hover .link-arrow {
  transform: rotate(180deg) translateX(3px);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--card-border);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}

.btn-mobile-whatsapp:hover {
  background: #20BA5A;
}

.mobile-agency-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.76rem;
  text-decoration: none;
  padding: 4px;
  transition: color 0.2s ease;
}

.mobile-agency-badge:hover {
  color: var(--accent);
}

.mobile-agency-badge strong {
  color: var(--text-primary);
}

/* ==========================================================================
   22. RESPONSIVE BREAKPOINTS (MOBILE & TABLET OPTIMIZATIONS)
   ========================================================================== */

/* Tablet & Mobile Breakpoint (<= 991px) */
@media (max-width: 991px) {
  .desktop-nav-group {
    display: none !important;
  }

  .burger-btn {
    display: flex !important;
  }

  .site-header {
    height: 64px;
  }

  .cart-header-btn {
    padding: 0 12px;
    height: 38px;
    font-size: 0.85rem;
  }

  .cart-header-btn svg {
    width: 18px;
    height: 18px;
  }

  .hero-section {
    padding: 56px 0 40px;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }
}

/* Small Tablet & Smartphone Breakpoint (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-banner {
    padding: 36px 18px;
    border-radius: var(--radius-lg);
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.75rem);
    margin-bottom: 12px;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-outline-gold {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.92rem;
  }

  /* Cart Drawer Fullscreen on Mobile */
  .cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0;
  }

  .cart-drawer-header {
    padding: 16px 18px;
  }

  .cart-items-list {
    padding: 14px 18px;
  }

  .cart-drawer-footer {
    padding: 16px 18px;
  }

  /* Grid Layouts Stack Cleanly */
  .special-offers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* Modals Optimization */
  .modal-box, 
  .dish-detail-box, 
  .reservation-modal-box,
  .receipt-box {
    max-width: 95vw !important;
    width: 95vw !important;
    padding: 22px 18px !important;
    border-radius: var(--radius-lg) !important;
    margin: 12px auto;
  }

  .dish-modal-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dish-modal-img {
    height: 220px;
  }

  /* Floating Order Bar */
  .floating-order-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }

  /* Sticky Category Bar */
  .category-scroll-container {
    padding: 8px 12px;
    gap: 6px;
  }

  .category-tab {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* Very Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    display: none; /* Hide subtitle on tiny screens for maximum logo clarity */
  }

  .brand-monogram {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .hero-pill-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .tables-grid-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    padding: 6px;
  }

  .table-grid-btn {
    font-size: 0.8rem;
  }

  .zone-pill {
    padding: 3px 7px;
    font-size: 0.65rem;
  }
}




