/* ============================================================
   TGS CHEFCHOICE RESTAURANT — $100K PREMIUM CULINARY UI/UX
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,600;1,500;1,600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* $100K LUXURY COLOR PALETTE */
  --saffron-gold:    #D97706;  /* Warm Saffron Amber Gold */
  --saffron-bright:  #F59E0B;  /* Highlight Sun Gold */
  --saffron-light:   #FFFBEB;  /* Soft Warm Cream Tint */
  --saffron-border:  #FDE68A;
  
  --chili-red:       #DC2626;  /* Fresh Crimson Chili Red Accent */
  --chili-light:     #FEF2F2;  /* Soft Red Tint for Non-Veg/Urgency */

  /* Missing Design System Color Tokens */
  --turmeric-gold:   #C9962E;
  --turmeric-light:  #E8C878;
  --muted-clay:      #C9BBA3;
  --off-white:       #F7F1E6;

  --bg-app:          #FAF9F5;  /* Luxury textured paper warm cream — prevents invisible sections */
  --bg-surface:      #FFFFFF;  /* Pure White Card Surface */
  --bg-subtle:       #F8FAFC;  /* Subtle Slate Light Section Tint */
  
  --text-dark:       #0F172A;  /* Deep Slate Ink (Primary Text - High Contrast) */
  --text-body:       #334155;  /* Slate Body Copy */
  --text-muted:      #475569;  /* Muted Subtext */

  /* Structural Token Aliases */
  --gold: var(--saffron-gold);
  --gold-light: var(--saffron-bright);
  --gold-dim: rgba(217, 119, 6, 0.25);
  --charcoal: var(--text-dark);
  --ink: var(--text-dark);
  --cream-text: var(--text-dark);

  /* Typography System */
  --font-heading: "Outfit", sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* Motion & Elevation Shadows */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.22s var(--ease-out);
  --transition-slow: 0.45s var(--ease-out);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 35px -10px rgba(217, 119, 6, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #FAF9F5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(217, 119, 6, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(217, 119, 6, 0.02) 0%, transparent 50%);
  background-attachment: scroll;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.25;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }

::selection {
  background: var(--saffron-bright);
  color: #FFFFFF;
}


:focus-visible {
  outline: 2px solid var(--saffron-gold);
  outline-offset: 3px;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron-gold), var(--saffron-bright));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Hover Lift Utility ── */
.hover-lift {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  will-change: opacity, transform;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ── Lightbox: support both .open and .active class ── */
.lightbox.open,
.lightbox.active {
  display: flex !important;
}

/* Stars color */
.stars { color: var(--saffron-bright); }

/* Scroll Hairline Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chili-red), var(--saffron-gold), var(--saffron-bright));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  will-change: width;
}

.hover-lift {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.hover-lift:hover {
  transform: translateY(-4px);
  border-color: var(--saffron-gold);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SPLASH SCREEN V2 — DARK AMBER ACCENT
   ============================================================ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: radial-gradient(ellipse at 50% 50%, #241D16 0%, #14110F 55%, #0D0B08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease 0.4s;
  cursor: pointer;
}

#splash.exit {
  clip-path: circle(0% at 50% 50%);
  opacity: 0;
  pointer-events: none;
}

.splash-bg-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28) 0%, rgba(217, 119, 6, 0.08) 55%, transparent 75%);
  filter: blur(70px);
  animation: emberDrift 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes emberDrift {
  0%   { transform: translate(-40px, -30px) scale(1); }
  25%  { transform: translate(30px, -50px) scale(1.1); }
  50%  { transform: translate(50px, 30px) scale(0.95); }
  75%  { transform: translate(-20px, 50px) scale(1.08); }
  100% { transform: translate(-40px, -30px) scale(1); }
}

.steam-wrap {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(240px, 24vw, 380px);
  height: 340px;
  pointer-events: none;
  z-index: 1;
}

.wisp {
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 240, 200, 0.18), transparent 70%);
  filter: blur(18px);
  opacity: 0;
  animation: rise 7s ease-in infinite;
}

.w1 { left: 15%; animation-delay: 0s; }
.w2 { left: 38%; animation-delay: 1.6s; }
.w3 { left: 62%; animation-delay: 3.2s; }
.w4 { left: 80%; animation-delay: 4.8s; }
.w5 { left: 48%; animation-delay: 6s; }

@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(0.8) rotate(0deg); opacity: 0; }
  12%  { opacity: 0.6; }
  50%  { transform: translateY(-160px) translateX(25px) scale(1.4) rotate(10deg); opacity: 0.35; }
  100% { transform: translateY(-320px) translateX(-18px) scale(2) rotate(-8deg); opacity: 0; }
}

.stamp-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-logo-container {
  width: clamp(240px, 30vw, 380px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.splash-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(201,150,46,0.3));
  opacity: 0;
  transform: scale(0.85);
  animation: logoEntrance 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards,
             logoPulse 3s ease-in-out infinite alternate;
}

@keyframes logoEntrance {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoPulse {
  0% {
    filter: drop-shadow(0 0 24px rgba(201,150,46,0.45)) drop-shadow(0 0 60px rgba(217,119,6,0.2));
  }
  100% {
    filter: drop-shadow(0 0 48px rgba(201,150,46,0.8)) drop-shadow(0 0 100px rgba(217,119,6,0.35));
  }
}

.splash-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: #E8C878;
  margin-top: 28px;
  opacity: 0;
  animation: ticketFade 0.9s ease 1.4s forwards;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px rgba(217,119,6,0.5);
}

@keyframes ticketFade {
  to {
    opacity: 1;
  }
}

/* Floating Call Hotline Pill */
.float-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid #CBD5E1;
  color: var(--saffron-gold);
  padding: 12px 22px;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.float-call:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--saffron-gold);
  color: #FFFFFF;
}

.float-call .ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chili-red);
  position: relative;
  flex: none;
}

.float-call .ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--chili-red);
  border-radius: 50%;
  animation: ringPulse 1.8s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

@media (max-width: 640px) {
  .float-call span.lbl { display: none; }
  .float-call { padding: 12px; }
}

/* ============================================================
   CLEAN CRISP LIGHT NAVIGATION BAR (.site-nav)
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg-surface);
  border-bottom: 1px solid #E2E8F0;
  padding: 14px 4vw;
  box-shadow: var(--shadow-sm);
}

.site-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.site-nav__logo span {
  color: var(--saffron-gold);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-body);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--saffron-gold);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.site-nav__links a:hover {
  color: var(--saffron-gold);
}

.site-nav__links a:hover::after {
  width: 100%;
}

.site-nav__links a[aria-current="page"] {
  color: var(--saffron-gold);
  font-weight: 700;
}

.site-nav__links a[aria-current="page"]::after {
  width: 100%;
}

.site-nav__cta {
  background: var(--saffron-gold);
  color: #FFFFFF !important;
  padding: 9px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.site-nav__cta::after { display: none !important; }

.site-nav__cta:hover {
  transform: translateY(-2px);
  background: #B45309 !important;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45);
}

/* ============================================================
   MENU CARD — FULL LAYOUT SYSTEM
   ============================================================ */

.menu__jumpnav {
  position: sticky;
  top: 58px;
  z-index: 80;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  max-width: 100vw;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
  padding: 12px 6vw;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu__jumpnav::-webkit-scrollbar { display: none; }

.jumpnav__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  background: transparent;
}

.jumpnav__link:hover,
.jumpnav__link.active {
  color: var(--saffron-gold);
  background: #FFFBEB;
  border-color: var(--saffron-border);
}

.menu__category {
  padding: 56px 6vw;
  border-bottom: 1px solid #E2E8F0;
}

.menu__category:nth-child(even) {
  background: #F8FAFC;
}

.menu__category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--saffron-border);
}

.menu__category-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--saffron-gold);
  background: #FFFBEB;
  border: 1.5px solid var(--saffron-border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu__category-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.menu__category-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--saffron-border), transparent);
}

/* 2-COLUMN GRID */
.menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu__grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 860px) {
  .menu__grid-2col { grid-template-columns: 1fr; }
}

/* INDIVIDUAL MENU ITEM CARD */
.menu__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
  cursor: default;
}

.menu__item:hover {
  transform: translateY(-3px);
  border-color: var(--saffron-gold);
  box-shadow: 0 10px 28px rgba(217,119,6,0.10);
}

/* VEG / NON-VEG INDICATOR */
.menu__item-icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  border: 2px solid;
  position: relative;
  border-radius: 3px;
  display: block;
}

.menu__item-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
}

.menu__item-icon--veg   { border-color: #16A34A; }
.menu__item-icon--veg::after   { background: #16A34A; }
.menu__item-icon--nonveg { border-color: #DC2626; }
.menu__item-icon--nonveg::after { background: #DC2626; }

/* TEXT BLOCK */
.menu__item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.menu__item-text h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.menu__item-text p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

/* PRICE ROW (title + price on same line) */
.menu__item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.menu__item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--saffron-gold);
  white-space: nowrap;
  flex-shrink: 0;
  background: #FFFBEB;
  border: 1px solid var(--saffron-border);
  padding: 3px 12px;
  border-radius: 8px;
}

/* BADGE PILL */
.menu__item-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  color: var(--saffron-gold);
  text-transform: uppercase;
  background: #FEF3C7;
  border: 1px solid var(--saffron-border);
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
}

.site-nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* X Hamburger Transformation */
.site-nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .site-nav__links {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    height: calc(100vh - 58px);
    background: var(--bg-surface);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform var(--transition-slow);
    z-index: 999;
    padding: 40px 24px;
    overflow-y: auto;
    border-top: 1px solid #E2E8F0;
    box-shadow: var(--shadow-lg);
  }
  .site-nav__links.open { transform: translateY(0); }
  .site-nav__toggle { display: flex; }
}

/* ============================================================
   SHARED FOOTER (.site-footer) — CLEAN MODERN LIGHT FOOTER
   ============================================================ */
.site-footer {
  background: #0F172A;
  color: #F8FAFC;
  padding: 70px 6vw 30px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer__brand h3 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.site-footer__brand p {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 14px;
}

.site-footer__rating {
  color: var(--saffron-bright);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer__col h4 {
  font-family: var(--font-heading);
  color: var(--saffron-bright);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer__col a, .site-footer__col p {
  display: block;
  color: #94A3B8;
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.site-footer__col a:hover {
  color: #FFFFFF;
}

.site-footer__bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
}

.site-footer__bottom p {
  color: #94A3B8;
  font-size: 0.82rem;
}

.footer-legal {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #94A3B8;
}

.footer-legal a {
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: #FFFFFF; }

@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* VIBRANT BUTTON SYSTEM */
.btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--saffron-gold);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn--gold:hover {
  background: #B45309;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.btn--ghost {
  background: var(--bg-surface);
  color: var(--text-dark);
  border: 1px solid #CBD5E1;
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--saffron-gold);
  color: var(--saffron-gold);
  background: var(--saffron-light);
  transform: translateY(-2px);
}

.btn--full { width: 100%; text-align: center; margin-top: 12px; }

/* PAGE HEADERS & BANNERS */
.menu__intro, .about__intro, .gallery__intro, .reviews__intro, .order__intro, .offers__intro, .events__intro, .location__intro, .contact__intro {
  padding: 85px 6vw 50px;
  text-align: center;
  background: linear-gradient(180deg, #FFFBEB 0%, var(--bg-app) 100%);
  border-bottom: 1px solid var(--saffron-border);
}

.about__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron-gold);
  margin-bottom: 10px;
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}

.about__lede {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto;
}

/* Family section */
.about__family-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: center;
}

.about__family-photo img {
  width: 100%;
  border: 1px solid var(--saffron-border);
  filter: saturate(0.85) contrast(1.05);
}

@media (max-width: 768px) {
  .about__family-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.dropcap {
  font-size: 1.6em;
  color: var(--saffron-gold);
  float: left;
  line-height: 0.9;
  padding-right: 10px;
  font-weight: 800;
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: auto;
  position: relative;
  background: var(--bg-app);
  padding: 60px 6vw;
  align-items: center;
  gap: 40px;
}

.hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 480px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: clamp(32px, 4.5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron-gold);
  margin-bottom: 12px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero__subhead {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--text-body);
  max-width: 42ch;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__rating {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__rating .stars {
  color: var(--saffron-bright);
  letter-spacing: 2px;
}

.hero__rating .rating-text {
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 24px; padding: 40px 6vw; }
  .hero__media { aspect-ratio: 4 / 3; max-height: 360px; }
}

/* ============================================================
   REVIEWS PAGE — $100K PATRON WALL
   ============================================================ */
.review-tag {
  display: inline-block;
  background: var(--saffron-light);
  color: var(--saffron-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid var(--saffron-border);
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-bright));
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   ORDER / RESERVE PAGE — MAÎTRÊ D' PODIUM
   ============================================================ */
.order-grid-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  padding: 60px 6vw;
  max-width: 1280px;
  margin: 0 auto;
}

.podium-card {
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%);
  border: 1.5px solid var(--saffron-border);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 90px;
}

.podium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF3C7;
  color: var(--saffron-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ============================================================
   OFFERS & TIERS PAGE — $100K VIP EXPERIENCE CARDS
   ============================================================ */
.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tier-card {
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 38px 28px;
  position: relative;
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.tier-card:hover {
  transform: translateY(-6px);
  border-color: var(--saffron-gold);
  box-shadow: var(--shadow-lg);
}

.tier-card--featured {
  border-color: var(--saffron-gold);
  background: linear-gradient(180deg, #FFFBEB 0%, var(--bg-surface) 100%);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--saffron-gold);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}

.tier-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--saffron-gold);
  font-size: 2.1rem;
  margin-bottom: 14px;
}

/* ============================================================
   CATERING & EVENTS PAGE — $100K EVENT HOSTING
   ============================================================ */
.process-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--saffron-gold);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

/* ============================================================
   LOCATION PAGE — DIRECT MAP & TURN-BY-TURN
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  padding: 60px 6vw;
}

@media (max-width: 900px) {
  .order-grid-hero, .location-grid { grid-template-columns: 1fr; }
  .tier-row { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY PAGE — MASONRY GRID & LIGHTBOX
   ============================================================ */
.gallery__filters,
.reviews__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 6vw;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  border: 1.5px solid #CBD5E1;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--saffron-gold);
  color: var(--saffron-gold);
  background: var(--saffron-light);
}

.filter-btn.active {
  background: var(--saffron-gold);
  border-color: var(--saffron-gold);
  color: #FFFFFF;
}

.gallery__grid {
  columns: 3;
  column-gap: 18px;
  padding: 40px 6vw 60px;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 900px) { .gallery__grid { columns: 2; } }
@media (max-width: 560px) { .gallery__grid { columns: 1; } }

.gallery__item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery__item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: #F1F5F9;
  min-height: 180px;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 28px 16px 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox.open { display: flex; }

.lightbox__stage {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox__stage img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.lightbox__caption {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--saffron-gold);
  border-color: var(--saffron-gold);
}
.lightbox__close { top: 24px; right: 24px; font-size: 1.6rem; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* Gallery item hidden on filter */
.gallery__item.hidden { display: none; }

/* ============================================================
   REVIEWS PAGE — PATRON WALL
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 6vw 60px;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 1000px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .reviews__grid { grid-template-columns: 1fr; } }

.review-card {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron-gold);
  box-shadow: var(--shadow-lg);
}

.review-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

.review-card cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: block;
}

.review-card .stars {
  color: var(--saffron-bright);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Hidden on filter */
.review-card.hidden { display: none; }

/* ============================================================
   ORDER PAGE — RESERVATION FORM
   ============================================================ */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-error {
  display: none;
  font-size: 12px;
  color: #DC2626;
  font-weight: 600;
  margin-top: 2px;
}

.form-error.show { display: block; }

.form-success {
  display: none;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #16A34A;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  margin-top: 8px;
}

.form-success.show { display: block; }

.req { color: #DC2626; margin-left: 2px; }

.order-form__header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--saffron-border);
  padding-bottom: 16px;
}

.order-form__num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--saffron-gold);
  background: #FFFBEB;
  border: 1.5px solid var(--saffron-border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-form__line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--saffron-border), transparent);
}

/* ============================================================
   SOCIAL ICONS ROW
   ============================================================ */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #94A3B8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--saffron-gold);
  border-color: var(--saffron-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE UTILITY GRIDS (FITS ALL SCREEN SIZES)
   ============================================================ */
.grid-4col-responsive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-3col-responsive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-4col-responsive {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3col-responsive {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-4col-responsive,
  .grid-3col-responsive {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================================
   GLOBAL MOBILE VIEW COMFORT OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .menu__intro, .about__intro, .gallery__intro, .reviews__intro, .order__intro, .offers__intro, .events__intro, .location__intro, .contact__intro,
  .order-hero-strip {
    padding: 50px 5vw 30px !important;
  }
  
  .about__title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  
  .about__lede {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }

  /* Compact sections for screen space efficiency */
  .about-page section,
  .offers__tiers,
  .offers__festive,
  .events__packages,
  .events__process,
  .location-page section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* ============================================================
   FLOATING INGREDIENTS BACKGROUND ANIMATIONS
   ============================================================ */
.floating-bg-item {
  position: absolute;
  pointer-events: none;
  opacity: 0.045;
  z-index: -2;
  transition: opacity 0.3s ease;
}

.float-anim-1 { animation: floatDrift1 infinite linear; }
.float-anim-2 { animation: floatDrift2 infinite linear; }
.float-anim-3 { animation: floatDrift3 infinite linear; }

@keyframes floatDrift1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -50px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes floatDrift2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-50px, 40px) rotate(-180deg); }
  100% { transform: translate(0, 0) rotate(-360deg); }
}

@keyframes floatDrift3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-30px, -40px) rotate(120deg); }
  66% { transform: translate(50px, 30px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}


/* ============================================================
   WHATSAPP ORDERING SYSTEM — Mini-Cart, Floating Bar, Modal
   ============================================================ */

/* --- Table Order Banner (QR Code scans: ?table=X) --- */
.table-order-banner {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-bottom: 2px solid var(--saffron-gold);
  padding: 10px 6vw;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  position: sticky;
  top: 58px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* --- Per-Item Quantity Stepper (menu.html) --- */
.menu__item-cart-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-shrink: 0;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--saffron-border);
  border-radius: 50%;
  background: transparent;
  color: var(--saffron-gold);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  padding: 0;
}

.qty-btn:hover {
  border-color: var(--saffron-gold);
  background: rgba(217, 119, 6, 0.1);
  transform: scale(1.1);
}

.qty-btn:active { transform: scale(0.95); }

.qty-btn.qty-plus { background: var(--saffron-gold); color: #FFFFFF; border-color: var(--saffron-gold); }
.qty-btn.qty-plus:hover { background: #B45309; border-color: #B45309; }

.qty-value {
  min-width: 22px;
  text-align: center;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

/* --- Floating Cart Bar (slides up from bottom when cart has items) --- */
.cart-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #14110F;
  border-top: 2px solid var(--saffron-gold);
  padding: 14px clamp(20px, 6vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cart-floating-bar.visible {
  transform: translateY(0);
}

.cart-bar__summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-bar__count {
  background: var(--saffron-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.cart-bar__text {
  font-family: var(--font-body);
  color: #E8C878;
  font-size: 14px;
  font-weight: 600;
}

.cart-bar__total {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
}

.cart-bar__btn {
  padding: 12px 28px;
  background: var(--saffron-gold);
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

.cart-bar__btn:hover {
  background: #B45309;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5);
}

/* --- Cart Confirm Modal --- */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-modal.open {
  opacity: 1;
  pointer-events: all;
}

.cart-modal__panel {
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  padding: clamp(24px, 5vw, 44px);
  width: 100%;
  max-width: 640px;
  max-height: 92dvh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
  position: relative;
}

.cart-modal.open .cart-modal__panel {
  transform: translateY(0);
}

.cart-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
}

.cart-modal__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.cart-modal__close {
  width: 32px;
  height: 32px;
  border: none;
  background: #F1F5F9;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.cart-modal__close:hover { background: #E2E8F0; color: var(--text-dark); }

.cart-modal__list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
}

.cart-modal__list li {
  padding: 12px 16px;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
}

.cart-modal__list li:last-child { border-bottom: none; }
.cart-modal__list li span.item-price { font-weight: 700; color: var(--saffron-gold); }

.cart-modal__total {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: right;
  padding: 12px 16px;
  background: #FFFBEB;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--saffron-border);
}

.cart-modal__total span { color: var(--saffron-gold); }

.cart-modal__order-type {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cart-type-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FAFAFA;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-muted);
}

.cart-type-option input[type="radio"] { display: none; }

.cart-type-option:has(input:checked),
.cart-type-option.selected {
  border-color: var(--saffron-gold);
  background: #FFFBEB;
  color: var(--saffron-gold);
}

.cart-modal__send {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  letter-spacing: 0.3px;
}

.cart-modal__send:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.cart-modal__send svg { width: 20px; height: 20px; fill: #FFFFFF; flex-shrink: 0; }

.cart-modal__keep {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.cart-modal__keep:hover { border-color: var(--text-muted); color: var(--text-dark); }

.cart-modal__disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
  font-style: italic;
}

/* --- Sticky WhatsApp Float Button (all pages) --- */
.wa-sticky-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 490;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5), 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  border: none;
  outline: none;
}

.wa-sticky-btn:hover {
  background: #128C7E;
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.wa-sticky-btn svg { width: 30px; height: 30px; fill: #FFFFFF; }

/* Tooltip */
.wa-sticky-btn::before {
  content: "Chat on WhatsApp";
  position: absolute;
  right: calc(100% + 12px);
  background: #14110F;
  color: #E8C878;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.wa-sticky-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Shift WA button up when cart bar is visible */
.cart-floating-bar.visible ~ .wa-sticky-btn,
body.cart-active .wa-sticky-btn {
  bottom: 88px;
}

/* --- Package WhatsApp CTA Buttons (offers/catering) --- */
.pkg-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  margin-top: 16px;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.pkg-wa-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.pkg-wa-btn svg { width: 16px; height: 16px; fill: #FFFFFF; flex-shrink: 0; }

/* --- WA Form Success Banner --- */
.wa-success-banner {
  display: none;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1.5px solid #86EFAC;
  border-radius: 14px;
  padding: 24px 28px;
  text-align: center;
  margin-top: 20px;
  animation: fadeInUp 0.5s ease forwards;
}

.wa-success-banner.show { display: block; }

.wa-success-banner .ref-id {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron-gold);
  background: #FFFBEB;
  border: 1px solid var(--saffron-border);
  border-radius: 8px;
  padding: 6px 16px;
  display: inline-block;
  margin: 10px 0;
  letter-spacing: 1px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsive adjustments --- */
@media (max-width: 640px) {
  .cart-floating-bar {
    flex-direction: column;
    padding: 12px 20px;
    gap: 10px;
    align-items: stretch;
  }

  .cart-bar__summary { justify-content: center; }

  .cart-bar__btn { width: 100%; text-align: center; padding: 14px; border-radius: 10px; }

  .wa-sticky-btn { bottom: 16px; right: 16px; width: 50px; height: 50px; }

  .cart-floating-bar.visible ~ .wa-sticky-btn {
    display: none; /* hide on mobile when bar is showing */
  }
}

/* ============================================================
   ENHANCED STICKY JUMPNAV SCROLLING & VISUAL SHADOW HINTS
   ============================================================ */
.menu__jumpnav {
  position: sticky;
  top: 70px;
  z-index: 90;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--saffron-border, #FDE68A);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.menu__jumpnav::-webkit-scrollbar {
  height: 5px;
}

.menu__jumpnav::-webkit-scrollbar-track {
  background: #FFF8EE;
}

.menu__jumpnav::-webkit-scrollbar-thumb {
  background: var(--saffron-gold, #D97706);
  border-radius: 10px;
}

.jumpnav__link {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark, #1E293B);
  text-decoration: none;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.jumpnav__link:hover {
  background: #FFF8EE;
  border-color: var(--saffron-gold, #D97706);
  color: var(--saffron-gold, #D97706);
}

.jumpnav__link.active {
  background: var(--saffron-gold, #D97706);
  color: #FFFFFF !important;
  border-color: var(--saffron-gold, #D97706);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

/* ============================================================
   QUICK CART POPOVER / DROPDOWN WITH DIRECT DELETE BUTTONS
   ============================================================ */
.cart-bar__popover {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 24px;
  right: 24px;
  max-width: 480px;
  margin: 0 auto;
  background: #14110F;
  border: 1.5px solid var(--saffron-gold, #D97706);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  padding: 16px 20px;
  z-index: 1000;
  display: none;
  animation: popUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cart-bar__popover.open {
  display: block;
}

@keyframes popUp {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cart-popover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #F8FAFC;
}

.cart-popover__list {
  max-height: 240px;
  overflow-y: auto;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-popover__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #F1F5F9;
}

.cart-popover__item-name {
  font-weight: 600;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-popover__item-price {
  color: #F59E0B;
  font-weight: 700;
}

.cart-popover__item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popover-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popover-delete-btn {
  background: #EF4444;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s ease;
}

.popover-delete-btn:hover {
  background: #DC2626;
}

/* ============================================================
   DELIVERY ADDRESS & GPS AUTO-DETECT BUTTON STYLING
   ============================================================ */
.gps-btn {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #FFFFFF !important;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}

.gps-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.gps-status {
  font-size: 0.82rem;
  font-style: italic;
  color: #10B981;
}

/* ============================================================
   MOBILE RESPONSIVENESS & AUTO-ZOOM ELIMINATION FIX
   ============================================================ */

/* Enforce 16px font-size on all form fields on mobile to prevent iOS Safari & Android Chrome auto-zooming */
@media (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  input[type="time"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Eliminate horizontal scroll overflow and enable smooth touch manipulations */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-tap-highlight-color: transparent;
}

button, a, select, input, label {
  touch-action: manipulation;
}

/* Modal Panel and Popover bounds optimization */
.cart-modal__panel {
  width: min(94vw, 540px) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
}

.cart-bar__popover {
  left: 16px !important;
  right: 16px !important;
  width: auto !important;
  max-width: min(94vw, 480px) !important;
}

/* ============================================================
   ADMIN DASHBOARD SYSTEM (3 Overview Tabs + Charts + Sidebar)
   ============================================================ */
.admin-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  background: #F8FAFC;
  overflow-x: hidden;
}

.admin-sidebar {
  width: 250px;
  background: var(--text-dark, #0F172A);
  color: #F8FAFC;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  border-right: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 100;
}

.admin-sidebar__header {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.admin-sidebar__brand h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin: 0;
}

.admin-sidebar__brand span {
  font-size: 0.78rem;
  color: var(--saffron-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-sidebar__nav {
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.admin-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #94A3B8;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.admin-nav__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

.admin-nav__item.active {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.2) 0%, rgba(217, 119, 6, 0.08) 100%);
  color: var(--saffron-bright, #F59E0B);
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: inset 3px 0 0 var(--saffron-gold);
}

.admin-sidebar__footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.82rem;
  color: #64748B;
}

.admin-main {
  flex: 1;
  min-width: 0;
  padding: 24px 32px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* Order Type Badges */
.badge-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-delivery {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}

.badge-takeaway {
  background: #F5F3FF;
  color: #6D28D9;
  border: 1px solid #DDD6FE;
}

.badge-dinein {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

/* Admin Table Pagination Bar */
.admin-pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  font-size: 0.88rem;
}

.admin-pagination-btn {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-pagination-btn:hover:not(:disabled) {
  border-color: var(--saffron-gold);
  color: var(--saffron-gold);
  background: #FFF8EE;
}

.admin-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-header__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
}

.admin-header__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-search-input {
  padding: 10px 16px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.9rem;
  width: 280px;
  outline: none;
  transition: all 0.2s ease;
}

.admin-search-input:focus {
  border-color: var(--saffron-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* Analytics Summary Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease;
}

.admin-stat-card:hover {
  transform: translateY(-2px);
}

.admin-stat__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-stat__value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

.admin-stat__change {
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Chart Container */
.admin-chart-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  margin-bottom: 32px;
}

.admin-chart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-chart__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Orders Table */
.admin-table-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.admin-table__header {
  padding: 20px 24px;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF8EE;
  width: 100%;
  box-sizing: border-box;
}

.admin-table-container {
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

.admin-orders-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.84rem;
}

.admin-orders-table th {
  background: #F8FAFC;
  color: var(--text-dark);
  font-weight: 700;
  padding: 10px 10px;
  border-bottom: 2px solid #E2E8F0;
  white-space: nowrap;
}

.admin-orders-table td {
  padding: 10px 10px;
  border-bottom: 1px solid #E2E8F0;
  vertical-align: middle;
}

.admin-orders-table th:nth-child(1) { width: 10%; white-space: nowrap; }
.admin-orders-table th:nth-child(2) { width: 10%; }
.admin-orders-table th:nth-child(3) { width: 14%; }
.admin-orders-table th:nth-child(4) { width: 11%; }
.admin-orders-table th:nth-child(5) { width: 12%; }
.admin-orders-table th:nth-child(6) { width: 21%; }
.admin-orders-table th:nth-child(7) { width: 7%; }
.admin-orders-table th:nth-child(8) { width: 9%; }
.admin-orders-table th:nth-child(9) { width: 16%; }

.admin-orders-table tr:hover {
  background: #FFFBF5;
}

/* Status Chips */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-pending {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.status-confirmed {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.status-cancelled {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.status-awaiting {
  background: #FFEDD5;
  color: #C2410C;
  border: 1px solid #FDBA74;
}

.btn-back-modal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #CBD5E1;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-back-modal:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* Table Item Expand Popover */
.items-popover-btn {
  background: #FFF8EE;
  border: 1px solid var(--saffron-border);
  color: var(--saffron-gold);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.items-popover-btn:hover {
  background: var(--saffron-gold);
  color: #FFFFFF;
}

.items-detail-box {
  display: none;
  background: #FFFBEB;
  border: 1px solid var(--saffron-border);
  border-radius: 8px;
  padding: 10px;
  margin-top: 6px;
  font-size: 0.82rem;
}

.items-detail-box.show {
  display: block;
}

@media (max-width: 900px) {
  .admin-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .admin-main {
    padding: 20px 16px;
  }
}

/* Multi-Filter Controls & Top-Selling Widget */
.admin-select-filter {
  padding: 10px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #FFFFFF;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-select-filter:focus {
  border-color: var(--saffron-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.admin-analytics-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .admin-analytics-row {
    grid-template-columns: 1fr;
  }
}

.admin-top-selling-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.top-dish-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #F8FAFC;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  font-size: 0.85rem;
}

.top-dish-item:nth-child(1) {
  background: #FFF8EE;
  border-color: var(--saffron-border);
}

.badge-regular {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-left: 6px;
}

/* Printable Thermal Kitchen Ticket Styles */
@media print {
  body * {
    visibility: hidden;
  }
  #printableTicket, #printableTicket * {
    visibility: visible;
  }
  #printableTicket {
    position: absolute;
    left: 0;
    top: 0;
    width: 80mm;
    padding: 10px;
    font-family: monospace, sans-serif;
    font-size: 12px;
    color: #000;
    background: #FFF;
  }
}





