/* ==========================================================================
   KIMLING HALAL HAKKA — MAIN STYLESHEET
   Aesthetic: Zauq.ca Inspired Royal Forest Green, Warm Sand Ivory & Spiced Gold
   Website: demorestaurant.com | 100% Hand-Slaughtered Halal Certified
   Ultra-Mobile Friendly & Responsive
   ========================================================================== */

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

:root {
  /* Zauq.ca Inspired Royal Green Palette */
  --bg-forest-950: #05140E;
  --bg-forest-900: #08231A;
  --bg-forest-850: #0D3325;
  --bg-forest-800: #134030;
  --bg-forest-700: #1B523E;
  --bg-forest-600: #266E54;

  /* Zauq.ca Warm Sand & Cream Palette */
  --sand-50: #FDFBF7;
  --sand-100: #F7F2E7;
  --sand-200: #EBE2D2;
  --sand-300: #DECFC0;
  --sand-400: #C5B097;
  --sand-500: #9E886D;

  /* Luxury Accents */
  --gold-300: #F5E296;
  --gold-400: #E5C358;
  --gold-500: #D4AF37;
  --gold-600: #B89325;
  --chilli-red: #D13E2E;
  --chilli-red-dark: #A5281B;

  /* Text & Surfaces */
  --text-dark: #0E1F17;
  --text-muted: #617368;
  --text-light: #FDFBF7;
  --text-light-muted: #B4C7BD;
  
  /* Borders & Shadows */
  --border-gold: rgba(212, 175, 55, 0.28);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-sand: rgba(197, 176, 151, 0.45);
  --shadow-sm: 0 4px 14px rgba(5, 20, 14, 0.08);
  --shadow-md: 0 8px 28px rgba(5, 20, 14, 0.16);
  --shadow-lg: 0 18px 45px rgba(5, 20, 14, 0.32);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);

  /* Dimensions & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--sand-50);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

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

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  transition: var(--transition);
  touch-action: manipulation;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--bg-forest-950), var(--bg-forest-850), var(--bg-forest-950));
  color: var(--sand-100);
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  z-index: 110;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

.announcement-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.badge-halal {
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.promo-pill {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-light-muted);
}

.top-contact-links a:hover {
  color: var(--gold-400);
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(8, 35, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  z-index: 100;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
}

.brand-crest {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, #0F382A, #04120B);
  border: 2px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.4);
  color: var(--gold-400);
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.brand-logo:hover .brand-crest {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.85);
  border-color: #FFF2B2;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--sand-50);
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.brand-title span {
  color: var(--gold-400);
  font-weight: 800;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--sand-200);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 1px;
}

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

.nav-link {
  color: var(--sand-100);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.4rem 0.2rem;
  position: relative;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Primary and Secondary Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 44px;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-forest-950);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--sand-50);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--bg-forest-850);
  color: var(--sand-50);
  border: 1px solid var(--bg-forest-700);
}

.btn-forest:hover {
  background: var(--bg-forest-700);
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.cart-toggle-btn {
  position: relative;
  background: rgba(212, 175, 55, 0.14);
  border: 1.5px solid var(--gold-500);
  color: var(--sand-50);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.9rem;
  min-height: 44px;
}

.cart-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cart-badge {
  background: var(--chilli-red);
  color: #fff;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.75rem;
  color: var(--sand-50);
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
}

/* ==========================================================================
   HERO SECTION (ZAUQ.CA ELEVATED STYLE)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 86vh;
  background: linear-gradient(180deg, var(--bg-forest-950) 0%, var(--bg-forest-900) 50%, var(--bg-forest-850) 100%);
  color: var(--sand-50);
  display: flex;
  align-items: center;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 35%, rgba(27, 82, 62, 0.4) 0%, transparent 65%),
              linear-gradient(to right, rgba(5, 20, 14, 0.97) 35%, rgba(5, 20, 14, 0.6) 100%);
  z-index: 1;
}

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

.hero-brand-seal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(8, 35, 26, 0.85);
  border: 1.5px solid var(--gold-400);
  padding: 0.45rem 1.1rem 0.45rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  box-sizing: border-box;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand-200);
}

.tag-pill.gold {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-300);
  border-color: var(--gold-500);
  font-weight: 700;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--sand-50);
}

.hero-title .highlight {
  color: var(--gold-400);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--sand-200);
  max-width: 580px;
  line-height: 1.68;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-400);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Hero Visual Showcase */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(13, 51, 37, 0.7));
  box-shadow: var(--shadow-lg), 0 0 50px rgba(212, 175, 55, 0.15);
}

.hero-image-wrap {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background-color: var(--bg-forest-950);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-visual-card:hover .hero-image-wrap img {
  transform: scale(1.04);
}

.floating-dish-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: calc(100% - 30px);
  background: rgba(8, 35, 26, 0.95);
  border: 1.5px solid var(--gold-500);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sand-50);
  box-sizing: border-box;
}

.floating-dish-badge .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-forest-700);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-dish-badge .badge-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sand-100);
}

.floating-dish-badge .badge-meta {
  font-size: 0.78rem;
  color: var(--gold-400);
  font-weight: 700;
}

/* ==========================================================================
   MOVING TEXT TICKER / MARQUEE RIBBON (ZAUQ.CA STYLE)
   Left to Right Infinite Smooth Scroll
   ========================================================================== */
.marquee-ribbon {
  background: linear-gradient(90deg, #05140E 0%, #0D3325 50%, #05140E 100%);
  border-top: 1.5px solid var(--gold-500);
  border-bottom: 1.5px solid var(--gold-500);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  user-select: none;
  box-shadow: 0 4px 20px rgba(5, 20, 14, 0.4);
  z-index: 10;
}

.marquee-ribbon::before, .marquee-ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-ribbon::before {
  left: 0;
  background: linear-gradient(to right, #05140E, transparent);
}

.marquee-ribbon::after {
  right: 0;
  background: linear-gradient(to left, #05140E, transparent);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: scrollLeftToRight 28s linear infinite;
}

.marquee-ribbon:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gold-300);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 1.5rem;
}

.marquee-star {
  color: var(--gold-500);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.7));
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* ==========================================================================
   TRUST & PILLARS BAR
   ========================================================================== */
.pillars-section {
  background: var(--sand-100);
  border-bottom: 1px solid var(--border-sand);
  padding: 2rem 0;
}

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

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-forest-850);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.pillar-content h4 {
  font-size: 0.95rem;
  color: var(--bg-forest-900);
  margin-bottom: 0.15rem;
  font-weight: 800;
}

.pillar-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   ONLINE ORDERING & MENU HUB
   ========================================================================== */
.menu-section {
  padding: 4.5rem 0 5rem;
  background: var(--sand-50);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-subtitle-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg-forest-700);
  background: rgba(27, 82, 62, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.6rem;
  color: var(--bg-forest-950);
  margin-bottom: 0.85rem;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* Ordering Controls */
.ordering-controls-bar {
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fulfillment-switch {
  display: inline-flex;
  background: var(--sand-100);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-sand);
}

.switch-btn {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
}

.switch-btn.active {
  background: var(--bg-forest-850);
  color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}

.menu-search-box {
  position: relative;
  flex: 1;
  max-width: 420px;
}

.menu-search-input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-sand);
  background: var(--sand-50);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  min-height: 42px;
  transition: var(--transition);
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--bg-forest-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27, 82, 62, 0.12);
}

.search-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Category Filter Scroll - Mobile Optimized */
.category-filter-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.4rem 0 1.25rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.category-tab-btn {
  white-space: nowrap;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid var(--border-sand);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  flex-shrink: 0;
  transition: var(--transition);
}

.category-tab-btn:hover {
  border-color: var(--bg-forest-600);
  color: var(--bg-forest-700);
}

.category-tab-btn.active {
  background: var(--bg-forest-850);
  border-color: var(--bg-forest-850);
  color: var(--sand-50);
  box-shadow: var(--shadow-sm);
}

/* Dietary Quick Filters */
.dietary-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 2rem;
}

.dietary-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.4rem;
}

.diet-filter-pill {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  background: var(--sand-100);
  border: 1px solid var(--border-sand);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  min-height: 34px;
}

.diet-filter-pill:hover, .diet-filter-pill.active {
  background: var(--bg-forest-700);
  color: var(--gold-300);
  border-color: var(--bg-forest-700);
}

/* Dish Grid & Cards */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dish-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-sand);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

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

.dish-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--bg-forest-900);
}

.dish-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover .dish-image-wrap img {
  transform: scale(1.05);
}

.dish-badge-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.dish-pill {
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(8, 35, 26, 0.9);
  color: var(--sand-50);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
}

.dish-pill.signature {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--bg-forest-950);
  border: none;
}

.dish-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.dish-title {
  font-size: 1.18rem;
  color: var(--bg-forest-950);
  font-weight: 700;
  line-height: 1.25;
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--bg-forest-800);
  white-space: nowrap;
}

.dish-spice-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  color: var(--chilli-red);
  font-weight: 700;
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.48;
  margin-bottom: 1.15rem;
  flex: 1;
}

.dish-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-sand);
  margin-top: auto;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.dish-tag-item {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--sand-100);
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  font-weight: 600;
}

.btn-add-order {
  background: var(--bg-forest-850);
  color: var(--gold-400);
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  border: 1px solid var(--border-gold);
}

.btn-add-order:hover {
  background: var(--gold-500);
  color: var(--bg-forest-950);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   DIGITAL MENU BROCHURE VIEWER
   ========================================================================== */
.brochure-section {
  background: linear-gradient(180deg, var(--bg-forest-950) 0%, var(--bg-forest-900) 100%);
  color: var(--sand-50);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.brochure-section .section-title { color: var(--sand-50); }
.brochure-section .section-desc { color: var(--sand-200); }

.brochure-container {
  background: rgba(13, 51, 37, 0.7);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(12px);
}

.brochure-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 1.5rem;
}

.brochure-page-indicator {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-400);
  font-weight: 700;
}

.brochure-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brochure-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--sand-100);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.brochure-btn:hover {
  background: var(--gold-500);
  color: var(--bg-forest-950);
  border-color: var(--gold-500);
}

.brochure-sheet {
  background: #FCFAF6;
  color: #0E1F17;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  padding: 2.5rem;
  min-height: 520px;
  position: relative;
  border: 1px solid var(--sand-300);
  background-image: radial-gradient(var(--sand-200) 1px, transparent 1px);
  background-size: 24px 24px;
}

.sheet-header {
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--gold-500);
  margin-bottom: 1.75rem;
}

.sheet-header h3 {
  font-size: 1.75rem;
  color: var(--bg-forest-900);
  margin-bottom: 0.25rem;
}

.sheet-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

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

.sheet-category-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--bg-forest-800);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--sand-300);
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sheet-dish-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sheet-dish-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sheet-dish-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.sheet-dish-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-forest-950);
}

.sheet-dish-price {
  font-weight: 800;
  color: var(--bg-forest-800);
  font-family: var(--font-display);
}

.sheet-dish-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.38;
}

.brochure-page-jump-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.page-jump-pill {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--sand-200);
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 38px;
}

.page-jump-pill.active {
  background: var(--gold-500);
  color: var(--bg-forest-950);
  border-color: var(--gold-500);
}

/* ==========================================================================
   TANGRA HERITAGE & 100% HALAL PROMISE
   ========================================================================== */
.heritage-section {
  padding: 4.5rem 0;
  background: var(--sand-100);
  border-bottom: 1px solid var(--border-sand);
}

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

.heritage-image-stack {
  position: relative;
}

.heritage-main-img {
  border-radius: var(--radius-lg);
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.heritage-seal-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-forest-800), var(--bg-forest-950));
  border: 3px solid var(--gold-500);
  color: var(--gold-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  box-shadow: var(--shadow-gold);
}

.heritage-seal-badge .seal-icon { font-size: 1.6rem; }
.heritage-seal-badge .seal-text {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sand-50);
}

.heritage-story-p {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.68;
  margin-bottom: 1.25rem;
}

.heritage-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.heritage-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.feature-check-icon {
  color: var(--bg-forest-600);
  background: rgba(27, 82, 62, 0.15);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   BANQUET & CATERING CALCULATOR
   ========================================================================== */
.catering-section {
  padding: 4.5rem 0;
  background: var(--sand-50);
}

.catering-calculator-card {
  background: #fff;
  border: 2px solid var(--border-sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.calc-form-wrap h3 {
  font-size: 1.75rem;
  color: var(--bg-forest-950);
  margin-bottom: 0.4rem;
}

.calc-form-wrap p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
}

.slider-group {
  margin-bottom: 1.75rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.slider-label {
  font-weight: 700;
  color: var(--bg-forest-900);
}

.slider-val-badge {
  background: var(--bg-forest-850);
  color: var(--gold-400);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
}

.guest-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--sand-200);
  accent-color: var(--bg-forest-700);
  cursor: pointer;
}

.package-selection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.pkg-card-opt {
  border: 2px solid var(--border-sand);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--sand-50);
}

.pkg-card-opt.active, .pkg-card-opt:hover {
  border-color: var(--bg-forest-700);
  background: rgba(27, 82, 62, 0.06);
}

.pkg-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--bg-forest-900);
}

.pkg-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bg-forest-700);
  font-family: var(--font-display);
}

.calc-summary-box {
  background: linear-gradient(160deg, var(--bg-forest-950), var(--bg-forest-850));
  color: var(--sand-50);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-header h4 {
  font-size: 1.3rem;
  color: var(--gold-400);
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 0.65rem;
}

.tray-estimate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}

.tray-estimate-list li {
  display: flex;
  justify-content: space-between;
  color: var(--sand-100);
}

.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-gold);
  margin-bottom: 1.25rem;
}

.calc-total-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sand-200);
}

.calc-total-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-400);
}

/* ==========================================================================
   TABLE RESERVATION SECTION
   ========================================================================== */
.reservation-section {
  padding: 4.5rem 0;
  background: linear-gradient(rgba(5, 20, 14, 0.9), rgba(5, 20, 14, 0.96)), 
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: var(--sand-50);
}

.reservation-card {
  background: rgba(8, 35, 26, 0.96);
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 840px;
  margin: 0 auto;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.reservation-card .section-title { color: var(--sand-50); }

.reservation-grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sand-200);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--sand-50);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  min-height: 44px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 4.5rem 0;
  background: var(--sand-100);
}

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

.review-card {
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--gold-500);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.58;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-forest-850);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.author-name {
  font-weight: 700;
  color: var(--bg-forest-950);
  font-size: 0.9rem;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: var(--bg-forest-950);
  color: var(--sand-200);
  padding: 4.5rem 0 2rem;
  border-top: 2px solid var(--gold-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr 1.15fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1.12rem;
  color: var(--sand-50);
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.45rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-500);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.footer-links-list a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}

/* ==========================================================================
   INTERACTIVE CART DRAWER (SLIDE-OUT)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 14, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: #fff;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.3);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-drawer-header {
  background: var(--bg-forest-900);
  color: var(--sand-50);
  padding: 1.15rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gold);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sand-50);
}

.btn-close-drawer {
  font-size: 1.5rem;
  color: var(--sand-200);
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1.15rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-item-card {
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
  background: var(--sand-50);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-name {
  font-weight: 700;
  color: var(--bg-forest-950);
  font-size: 0.92rem;
}

.cart-item-price {
  font-weight: 800;
  color: var(--bg-forest-800);
  font-family: var(--font-display);
}

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

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.35rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-full);
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg-forest-800);
  font-size: 1rem;
}

.qty-val {
  padding: 0 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.btn-remove-item {
  color: var(--chilli-red);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px;
}

.cart-drawer-footer {
  background: var(--sand-100);
  border-top: 1px solid var(--border-sand);
  padding: 1.15rem 1.4rem;
}

.promo-input-row {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.promo-input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-transform: uppercase;
  min-height: 40px;
}

.cart-breakdown-table {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
}

.breakdown-row.total {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--bg-forest-950);
  padding-top: 0.45rem;
  border-top: 1px solid var(--border-sand);
  margin-top: 0.2rem;
}

/* ==========================================================================
   ITEM CUSTOMIZATION MODAL (BOTTOM-SHEET ON MOBILE)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 14, 0.75);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .custom-modal-card {
  transform: scale(1);
}

.modal-hero-header {
  position: relative;
  background: var(--bg-forest-900);
  color: var(--sand-50);
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border-gold);
}

.btn-close-modal {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--sand-50);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.modal-scroll-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.mod-group-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--bg-forest-950);
  margin-bottom: 0.55rem;
}

.radio-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.radio-opt-box {
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--sand-50);
  min-height: 44px;
}

.radio-opt-box.selected {
  border-color: var(--bg-forest-700);
  background: rgba(27, 82, 62, 0.08);
  color: var(--bg-forest-900);
  font-weight: 700;
}

.modal-footer {
  padding: 1.15rem 1.4rem;
  background: var(--sand-100);
  border-top: 1px solid var(--border-sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   FLOATING MOBILE BOTTOM CART BAR (ULTRA MOBILE FRIENDLY)
   ========================================================================== */
.floating-mobile-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-forest-950);
  border-top: 1.5px solid var(--gold-500);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.4);
}

.mobile-cart-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-cart-info {
  display: flex;
  flex-direction: column;
}

.mobile-cart-items-count {
  font-size: 0.78rem;
  color: var(--gold-400);
  font-weight: 700;
}

.mobile-cart-total-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sand-50);
}

.mobile-cart-action-btn {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-forest-950);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   LIVE ORDER TRACKER MODAL
   ========================================================================== */
.tracker-card {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-500);
}

.order-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-forest-850);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.15rem;
  box-shadow: var(--shadow-gold);
}

.order-tracker-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin: 1.75rem 0;
  position: relative;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}

.track-step.active {
  color: var(--bg-forest-800);
}

.track-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sand-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
}

.track-step.active .track-dot {
  background: var(--bg-forest-700);
  color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(27, 82, 62, 0.18);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast-msg {
  background: var(--bg-forest-950);
  color: var(--sand-50);
  border-left: 4px solid var(--gold-500);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: slideInToast 0.3s ease;
}

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

/* ==========================================================================
   MOBILE & RESPONSIVE BREAKPOINTS (VERY MOBILE FRIENDLY)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-subtitle { margin: 0 auto 1.8rem; }
  .hero-cta-group, .hero-badge-row { justify-content: center; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-calculator-card { grid-template-columns: 1fr; }
  .heritage-grid { grid-template-columns: 1fr; }
  .sheet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for sticky bottom cart bar */
    overflow-x: hidden;
    max-width: 100vw;
  }

  .main-header {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }

  .navbar {
    padding: 0.5rem 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
  }

  .brand-logo {
    gap: 0.55rem;
    max-width: 68%;
    text-decoration: none;
  }

  .brand-crest {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .brand-title {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .brand-tagline {
    display: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .nav-order-btn {
    display: none !important;
  }

  .cart-toggle-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    min-height: 38px;
    gap: 0.35rem;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1.4rem;
    padding: 0;
  }

  .announcement-bar {
    padding: 0.45rem 0.5rem;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .announcement-bar-container {
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
    justify-content: center;
  }

  .announcement-left {
    justify-content: center;
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .announcement-text {
    display: none;
  }

  .top-contact-links {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .hero-section {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 2rem 0 3rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
    word-break: break-word;
  }
  
  .section-title {
    font-size: 1.8rem;
    word-break: break-word;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 0.85rem 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .pillars-section, .menu-section, .brochure-section, 
  .heritage-section, .catering-section, .reservation-section, 
  .reviews-section, .main-footer, .marquee-ribbon {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .floating-dish-badge {
    left: 10px;
    bottom: 10px;
    padding: 0.5rem 0.85rem;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ordering-controls-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .fulfillment-switch {
    width: 100%;
    display: flex;
  }
  .switch-btn {
    flex: 1;
    justify-content: center;
  }
  .menu-search-box {
    max-width: 100%;
  }

  .package-selection-cards {
    grid-template-columns: 1fr;
  }

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

  .reservation-card {
    padding: 1.5rem;
  }
  .reservation-grid-form {
    grid-template-columns: 1fr;
  }

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

  /* Bottom sheet style for modal on mobile */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .custom-modal-card {
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    transform: translateY(100%);
  }

  .modal-overlay.open .custom-modal-card {
    transform: translateY(0);
  }

  .radio-pills-grid {
    grid-template-columns: 1fr;
  }

  /* Show floating mobile cart bar */
  .floating-mobile-cart-bar {
    display: block;
  }

  .cart-drawer {
    max-width: 100%;
  }

  .brochure-sheet {
    padding: 1.25rem;
  }

  .marquee-item {
    font-size: 0.78rem;
    padding: 0 1rem;
    gap: 0.85rem;
    letter-spacing: 0.1em;
  }

  .marquee-ribbon {
    padding: 0.65rem 0;
  }
}

/* ==========================================================================
   PRINT STYLESHEET (MENU BROCHURE EXPORT)
   ========================================================================== */
@media print {
  body * { visibility: hidden; }
  #brochureSheetContent, #brochureSheetContent * { visibility: visible; }
  #brochureSheetContent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    border: none;
  }
}
