/* ==========================================================================
   SHAHI DAWAT - LUXURY RESTAURANT & CULINARY HERITAGE
   Master Stylesheet (Screen-Fit Header, 2-Column Hero 3D Frame,
   Infinite Reviews Marquee, & Dark Emerald Theme)
   ========================================================================== */

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

/* --- CSS Variables & Color Tokens --- */
:root {
  /* Emerald & Obsidian Backgrounds (Theme.jpg match) */
  --bg-darkest: #030d0a;
  --bg-primary: #061813;
  --bg-secondary: #0a251e;
  --bg-card: rgba(10, 37, 30, 0.8);
  --bg-card-hover: rgba(15, 48, 39, 0.95);
  --bg-glass: rgba(6, 24, 19, 0.8);
  --bg-glass-light: rgba(255, 255, 255, 0.05);

  /* Gold & Warm Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5cf68;
  --gold-bright: #f5a623;
  --gold-amber: #e58e26;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --saffron-warm: #ff793f;
  --saffron-deep: #e15f41;

  /* Fresh Emerald & Mint */
  --mint-accent: #10b981;
  --mint-glow: rgba(16, 185, 129, 0.3);
  --ruby-red: #eb4d4b;

  /* Text Colors */
  --text-pure: #ffffff;
  --text-cream: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #f3c254;

  /* Borders & Shadows */
  --border-gold-subtle: rgba(212, 175, 55, 0.22);
  --border-gold-glow: rgba(212, 175, 55, 0.55);
  --border-glass: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.35);
  --shadow-card: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
  --shadow-elevation: 0 25px 50px -15px rgba(0, 0, 0, 0.85);

  /* Fonts */
  --font-royal: 'Cinzel', serif;
  --font-editorial: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Marcellus', serif;

  /* Layout */
  --container-max: 1320px;
  --header-height: 80px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color: var(--text-cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-darkest);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-darkest) 100%);
  background-attachment: fixed;
  color: var(--text-cream);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bg-secondary), var(--gold-primary));
  border-radius: 5px;
  border: 2px solid var(--bg-darkest);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-bright);
}

::selection {
  background: var(--gold-primary);
  color: var(--bg-darkest);
}

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

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

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

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #f7d774 40%, #d4af37 70%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.emerald-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 40%, #10b981 80%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-smooth);
}

.btn-gold {
  background: linear-gradient(135deg, #f5cf68 0%, #d4af37 50%, #b8860b 100%);
  color: #030d0a;
  box-shadow: 0 8px 22px -6px rgba(212, 175, 55, 0.5);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, #ffe082 0%, #e5a93c 50%, #c69500 100%);
}

.btn-outline-gold {
  background: rgba(10, 37, 30, 0.4);
  color: var(--gold-light);
  border: 1px solid var(--border-gold-glow);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-bright);
  color: var(--text-pure);
  transform: translateY(-2px);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px -6px rgba(16, 185, 129, 0.4);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-gold-glow);
  box-shadow: var(--shadow-elevation), 0 0 20px -8px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   SCREEN-TO-FIT HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(6, 24, 19, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold-subtle);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(4, 17, 13, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  height: 72px;
}

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

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

.brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold-primary) 70%, #996515 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-darkest);
  font-size: 1.2rem;
  box-shadow: 0 0 16px var(--gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Brand text stacks vertically: Title on top, subtitle below */
.brand-logo .brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-logo .brand-title {
  font-family: var(--font-royal);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-pure);
  line-height: 1;
  display: block;
}

.brand-logo .brand-subtitle {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-cream);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

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

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

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

.audio-toggle-btn, .cart-indicator-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.audio-toggle-btn:hover, .cart-indicator-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--text-pure);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--saffron-warm);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255, 121, 63, 0.6);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   2-COLUMN HERO SECTION (WITH 3D FRAMED SHOWCASE & ZERO BLANK SPACE)
   ========================================================================== */
.hero-section-clean {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 50px 0 40px;
  background: radial-gradient(circle at 75% 40%, rgba(212, 175, 55, 0.1) 0%, rgba(6, 24, 19, 0.98) 65%);
  overflow: visible;
}

.hero-grid-2col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(10, 37, 30, 0.85);
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.hero-heading {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.hero-actions-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-stats-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-cream);
}

.hero-stat-pill i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* Right Hero 3D Framed Showcase (Smooth 3-Animation Box) */
.hero-showcase-frame {
  position: relative;
  background: linear-gradient(145deg, rgba(16, 48, 39, 0.95) 0%, rgba(3, 13, 10, 0.98) 100%);
  border: 2px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevation), 0 0 35px rgba(212, 175, 55, 0.25);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  perspective: 1000px;
}

/* Animation 1: Gentle 3D Floating / Breathing motion */
.hero-showcase-frame {
  animation: heroCardFloat 5s infinite ease-in-out;
}

@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-8px) rotateX(1.5deg); }
}

/* Animation 2: Hover Specular 3D Tilt */
.hero-showcase-frame:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.45);
}

.canvas-viewport-box {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #020806;
}

#heroCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animation 3: Floating Milestone Ingredient Badges inside Frame */
.frame-milestone-badge {
  position: absolute;
  background: rgba(6, 24, 19, 0.92);
  border: 1px solid var(--border-gold-glow);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  z-index: 5;
  pointer-events: none;
  animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.05); opacity: 1; border-color: var(--gold-bright); }
}

.badge-top-left { top: 12px; left: 12px; }
.badge-bottom-right { bottom: 12px; right: 12px; animation-delay: 1.5s; }

/* In-Frame Interactive Controls */
.frame-controls-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.frame-controls-bar span {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
}

.frame-controls-bar input[type="range"] {
  width: 140px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.auto-play-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.auto-play-toggle-btn:hover, .auto-play-toggle-btn.active {
  background: var(--gold-primary);
  color: #030d0a;
  border-color: var(--gold-light);
}

/* Scroll Hint Overlay on Canvas */
.scroll-hint-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 13, 10, 0.45);
  border-radius: var(--radius-md);
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.6s ease;
  backdrop-filter: blur(2px);
}

.scroll-hint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-hint-inner i {
  font-size: 1.8rem;
  color: var(--gold-light);
  animation: scrollIconFloat 1.4s infinite ease-in-out;
}

.scroll-arrow-anim {
  animation: scrollArrowBounce 1s infinite;
}

.scroll-arrow-anim i {
  font-size: 1rem;
  animation: none;
}

@keyframes scrollIconFloat {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-5px); opacity: 1; }
}

@keyframes scrollArrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ==========================================================================
   TODAY'S SPECIAL DISH SECTION (SEAMLESS SPACING, NO BLANK GAP)
   ========================================================================== */
.today-special-section {
  padding: 50px 0 60px;
  position: relative;
  z-index: 10;
}

.special-deal-banner {
  background: linear-gradient(135deg, rgba(16, 48, 39, 0.95) 0%, rgba(6, 24, 19, 0.98) 100%);
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-elevation), 0 0 35px rgba(212, 175, 55, 0.2);
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 32px;
}

.deal-visual {
  position: relative;
}

.deal-badge-pill {
  position: absolute;
  top: -10px;
  left: -10px;
  background: linear-gradient(135deg, var(--saffron-warm), var(--ruby-red));
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 2;
}

.deal-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-gold-subtle);
}

.deal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-visual:hover img {
  transform: scale(1.05);
}

.deal-info h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.deal-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.deal-ingredients-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.deal-ingredients-tags .tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--gold-light);
}

.deal-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.deal-current-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.deal-original-price {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.deal-discount-tag {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--mint-accent);
  color: var(--mint-accent);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
}

.deal-countdown-box {
  background: rgba(3, 13, 10, 0.85);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
}

.deal-countdown-box h4 {
  font-size: 0.78rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.countdown-timer-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.time-digit-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  min-width: 44px;
}

.time-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1;
}

.time-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ==========================================================================
   FEATURED DISHES & MENU HIGHLIGHTS
   ========================================================================== */
.menu-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(10, 37, 30, 0.6);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-cream);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-amber));
  color: #030d0a;
  border-color: var(--gold-light);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-glow);
  box-shadow: var(--shadow-elevation), 0 0 20px -8px rgba(212, 175, 55, 0.35);
}

.dish-image-box {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

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

.dish-card:hover .dish-image-box img {
  transform: scale(1.06);
}

.dish-badges-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.diet-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.diet-tag.veg {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid #10b981;
  color: #10b981;
}

.diet-tag.non-veg {
  background: rgba(235, 77, 75, 0.25);
  border: 1px solid #eb4d4b;
  color: #eb4d4b;
}

.diet-tag.special {
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
}

.dish-spice-rating {
  background: rgba(3, 13, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  color: var(--saffron-warm);
}

.dish-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.dish-name {
  font-size: 1.3rem;
  color: var(--text-pure);
}

.dish-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
}

.dish-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.dish-ingredients-box {
  background: rgba(3, 13, 10, 0.55);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold-primary);
}

.dish-ingredients-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dish-ingredients-list {
  font-size: 0.78rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.dish-card-actions {
  display: flex;
  gap: 10px;
}

.dish-card-actions .btn {
  flex: 1;
}

/* ==========================================================================
   PURITY, HYGIENE & LIVE KITCHEN CAM
   ========================================================================== */
.purity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.purity-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.purity-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-smooth);
}

.purity-feature-card:hover {
  border-color: var(--mint-accent);
  transform: translateX(4px);
}

.purity-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--mint-accent);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purity-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

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

/* Live Cam Widget */
.live-kitchen-cam-box {
  background: #020806;
  border: 2px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevation), 0 0 30px rgba(16, 185, 129, 0.2);
}

.cam-monitor-header {
  background: #05140f;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cam-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.rec-dot {
  width: 9px;
  height: 9px;
  background: #eb4d4b;
  border-radius: 50%;
  animation: blinkRec 1.2s infinite ease-in-out;
}

@keyframes blinkRec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cam-meta-stats {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  font-family: monospace;
  color: var(--gold-light);
}

.cam-video-viewport {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.cam-video-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
  transition: opacity 0.3s ease;
}

.cam-scanlines-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 3;
}

.cam-onscreen-display {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  pointer-events: none;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: monospace;
  color: #00ff88;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.7);
  font-size: 0.8rem;
}

.cam-channel-selector {
  background: #05140f;
  padding: 12px 18px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cam-channel-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-cream);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.cam-channel-btn:hover, .cam-channel-btn.active {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* ==========================================================================
   QR DIGITAL MENU SECTION
   ========================================================================== */
.qr-feature-card {
  background: linear-gradient(135deg, rgba(10, 37, 30, 0.85) 0%, rgba(6, 24, 19, 0.95) 100%);
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  padding: 44px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.qr-info-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.qr-info-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.qr-perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.qr-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-cream);
}

.qr-perk-item i {
  color: var(--gold-primary);
}

.qr-visual-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-scanner-frame {
  background: #ffffff;
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevation), 0 0 30px rgba(212, 175, 55, 0.35);
  text-align: center;
}

.qr-frame-header {
  color: #030d0a;
  font-family: var(--font-royal);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.qr-code-canvas {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  position: relative;
}

.qr-scan-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e58e26, #eb4d4b, transparent);
  box-shadow: 0 0 8px rgba(235, 77, 75, 0.8);
  animation: scanLaser 2.2s infinite ease-in-out;
}

@keyframes scanLaser {
  0% { top: 5%; }
  50% { top: 90%; }
  100% { top: 5%; }
}

.qr-frame-footer {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
}

/* ==========================================================================
   MONTHLY SUBSCRIPTIONS & SENIOR CARE
   ========================================================================== */
.subscription-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.plan-card.featured {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(16, 48, 39, 0.9) 0%, rgba(6, 24, 19, 0.95) 100%);
  box-shadow: var(--shadow-elevation), 0 0 25px rgba(212, 175, 55, 0.25);
}

.plan-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary), var(--saffron-warm));
  color: #030d0a;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-header {
  margin-bottom: 20px;
}

.plan-name {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

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

.plan-price-box {
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-features-list {
  list-style: none;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
}

.plan-feature-item i {
  color: var(--gold-primary);
  margin-top: 3px;
}

/* Senior Care Banner */
.senior-care-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(6, 24, 19, 0.95) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}

.senior-care-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.senior-care-content p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.senior-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.senior-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
}

.senior-perk i {
  color: var(--mint-accent);
}

/* ==========================================================================
   ONLINE DELIVERY
   ========================================================================== */
.delivery-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.delivery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.delivery-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-glow);
}

.partner-logo-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.partner-logo-icon.direct { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.partner-logo-icon.zomato { background: rgba(235, 77, 75, 0.15); color: #eb4d4b; }
.partner-logo-icon.swiggy { background: rgba(255, 121, 63, 0.15); color: #ff793f; }
.partner-logo-icon.express { background: rgba(212, 175, 55, 0.15); color: var(--gold-light); }

.delivery-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.delivery-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ==========================================================================
   28+ YEARS GASTRONOMY & MASTER CHEFS (PERSON PHOTOS)
   ========================================================================== */
.heritage-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.heritage-stats-counter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.stat-item-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-bright);
  font-family: var(--font-royal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.chefs-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.chef-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
}

.chef-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-glow);
}

.chef-avatar-wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: #061813;
}

.chef-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chef-card:hover .chef-avatar-wrapper img {
  transform: scale(1.05);
}

.chef-exp-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(6, 24, 19, 0.9);
  border: 1px solid var(--border-gold-glow);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-light);
}

.chef-info {
  padding: 20px;
}

.chef-name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.chef-role {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.chef-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   INFINITE NON-STOP CONTINUOUS REVIEWS MARQUEE
   ========================================================================== */
.reviews-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: infiniteMarquee 32s linear infinite;
}

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

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--border-gold-glow);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold-bright);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.6;
  margin-bottom: 18px;
}

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

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #030d0a;
  font-size: 1rem;
}

.reviewer-details h5 {
  font-size: 0.92rem;
  color: var(--text-pure);
}

.reviewer-details span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESERVATION & LOCATION
   ========================================================================== */
.reservation-box {
  background: linear-gradient(135deg, rgba(10, 37, 30, 0.92) 0%, rgba(4, 17, 14, 0.98) 100%);
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  padding: 44px 50px;
}

.reservation-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
}

.form-control {
  background: rgba(3, 13, 10, 0.75);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-pure);
  font-size: 0.9rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  min-width: 40px;
}

.info-item-content h4 {
  font-size: 1rem;
  color: var(--text-pure);
  margin-bottom: 2px;
}

.info-item-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.map-embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold-subtle);
  aspect-ratio: 16/11;
  background: #061813;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #020907;
  border-top: 1px solid var(--border-gold-subtle);
  padding: 70px 0 28px;
}

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

.footer-col h4 {
  font-family: var(--font-royal);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background: var(--gold-primary);
  color: #030d0a;
  transform: translateY(-2px);
}

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

.footer-nav-list a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav-list a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   CART DRAWER & MODAL
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #061813;
  border-left: 1px solid var(--border-gold-glow);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

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

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

.cart-drawer-title {
  font-family: var(--font-royal);
  font-size: 1.2rem;
}

.close-cart-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}

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

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

.cart-item-row {
  background: rgba(10, 37, 30, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-pure);
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--gold-light);
}

.cart-qty-controller {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(3, 13, 10, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  padding: 2px 4px;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 5px;
}

.qty-val {
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-gold-subtle);
  background: rgba(3, 13, 10, 0.95);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-summary-line.total-line {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-pure);
  border-top: 1px dashed var(--border-gold-subtle);
  padding-top: 8px;
  margin-top: 8px;
  margin-bottom: 16px;
}

/* Modal */
.dish-detail-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.dish-detail-modal {
  background: #061813;
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(3, 13, 10, 0.8);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-light);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-notification-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast-item {
  background: rgba(6, 24, 19, 0.95);
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .special-deal-banner, .purity-grid, .qr-feature-card, .heritage-story-grid, .location-grid, .senior-care-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reservation-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(3, 13, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
    border-bottom: 1px solid var(--border-gold-subtle);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
  }
  .nav-menu.mobile-open {
    transform: translateY(0);
  }
  .mobile-menu-toggle {
    display: block;
  }
  .reservation-form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .dishes-grid {
    grid-template-columns: 1fr;
  }
}
