/* ══════════════════════════════════════
   GREEN PARK RIVER VIEW FAMILY RESTAURANT
   Stitch-Designed Luxury Atmosphere System
   ══════════════════════════════════════ */

/* ── DESIGN TOKENS (Stitch: Green Park River View) ── */
:root {
  --clr-bg: #05140a;
  /* Stitch: surface / background */
  --clr-bg2: #0f1f15;
  /* Stitch: surface-container */
  --clr-bg3: #1e2d23;
  /* Stitch: surface-container-high */
  --clr-green: #132319;
  /* Stitch: surface-container-low */
  --clr-green2: #204f42;
  /* Stitch: secondary-container */
  --clr-green3: #2d6a4f;
  /* brand accent */
  --clr-gold: #c5a059;
  /* Stitch: Antique Gold */
  --clr-gold2: #e8c06a;
  /* lighter gold */
  --clr-gold-lt: #f5dfa0;
  /* cream gold */
  --clr-white: #d4e7d7;
  /* Stitch: on-surface */
  --clr-muted: #c2c8c0;
  /* Stitch: on-surface-variant */
  --clr-border: rgba(197, 160, 89, 0.22);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 40px rgba(197, 160, 89, 0.22);
  /* Atmospheric glow colors */
  --glow-green: rgba(20, 90, 50, 0.45);
  --glow-teal: rgba(10, 61, 49, 0.40);
  --glow-amber: rgba(197, 160, 89, 0.18);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ════════════════════════════════════════════
   GLOBAL BODY — Stitch Forest Atmosphere
   Rich layered gradients, NOT flat black
   ════════════════════════════════════════════ */
body {
  font-family: var(--font-sans);
  min-height: 100vh;
  background-color: #05140a;
  background-image:
    /* Amber candlelight — top right */
    radial-gradient(ellipse 55% 38% at 92% 8%, rgba(197, 160, 89, 0.16) 0%, transparent 60%),
    /* Green forest glow — top left */
    radial-gradient(ellipse 70% 50% at 8% 12%, rgba(20, 100, 55, 0.38) 0%, transparent 58%),
    /* Deep teal pool — center */
    radial-gradient(ellipse 80% 55% at 50% 52%, rgba(10, 61, 49, 0.32) 0%, transparent 65%),
    /* Green warmth — bottom left */
    radial-gradient(ellipse 65% 45% at 5% 88%, rgba(15, 90, 50, 0.30) 0%, transparent 55%),
    /* Amber ember — bottom right */
    radial-gradient(ellipse 50% 40% at 95% 85%, rgba(197, 160, 89, 0.10) 0%, transparent 55%),
    /* Base gradient */
    linear-gradient(165deg, #071a0e 0%, #05140a 30%, #091f11 60%, #07180e 100%);
  background-attachment: fixed;
  color: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  /* Smooth momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

/* ── Mobile: disable fixed background (causes scroll jank on iOS/Android) ── */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* ── Global noise/grain overlay (Stitch spec) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.028'/%3E%3C/svg%3E");
  background-size: 220px;
  background-repeat: repeat;
}

/* ── Animated floating particles (Stitch: amber dust motes) ── */
@keyframes particleDrift {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-10vh) translateX(20px) scale(1.2);
    opacity: 0;
  }
}

@keyframes particleDrift2 {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-10vh) translateX(-15px) scale(0.9);
    opacity: 0;
  }
}

/* Particle layer via body::after */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle 2px at 18% 75%, rgba(197, 160, 89, 0.55) 0%, transparent 100%),
    radial-gradient(circle 1px at 35% 40%, rgba(197, 160, 89, 0.40) 0%, transparent 100%),
    radial-gradient(circle 2px at 62% 88%, rgba(197, 160, 89, 0.50) 0%, transparent 100%),
    radial-gradient(circle 1px at 80% 55%, rgba(197, 160, 89, 0.35) 0%, transparent 100%),
    radial-gradient(circle 2px at 92% 22%, rgba(197, 160, 89, 0.45) 0%, transparent 100%),
    radial-gradient(circle 1px at 48% 65%, rgba(197, 160, 89, 0.30) 0%, transparent 100%),
    radial-gradient(circle 2px at 72% 38%, rgba(197, 160, 89, 0.42) 0%, transparent 100%),
    radial-gradient(circle 1px at 25% 92%, rgba(197, 160, 89, 0.38) 0%, transparent 100%),
    radial-gradient(circle 2px at 55% 18%, rgba(197, 160, 89, 0.48) 0%, transparent 100%),
    radial-gradient(circle 1px at 88% 78%, rgba(197, 160, 89, 0.33) 0%, transparent 100%),
    radial-gradient(circle 2px at 12% 32%, rgba(197, 160, 89, 0.52) 0%, transparent 100%),
    radial-gradient(circle 1px at 40% 52%, rgba(197, 160, 89, 0.28) 0%, transparent 100%);
  animation: particleDrift 18s linear infinite;
  opacity: 0.7;
}

/* All page content must sit above the fixed overlays */
.navbar,
main,
footer,
.hero,
section {
  position: relative;
  z-index: 2;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold2));
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.gold-divider.left {
  margin-left: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  color: #0a0a0a;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-gold2), var(--clr-gold-lt));
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border: none;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
  filter: brightness(1.1);
}

.full-w {
  width: 100%;
  justify-content: center;
}

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 11, 8, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 11, 8, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
  text-decoration: none;
}

.logo-img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transform: translateY(3px);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-gp {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold2);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ── Desktop nav links ── */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding: 0.2rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ── Hamburger (3 bars) — hidden on desktop ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  cursor: pointer;
  z-index: 1001;
  transition: background var(--transition), border-color var(--transition);
}

.hamburger:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.6);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 9, 6, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.5rem 0 1rem;
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Hidden state */
    visibility: hidden;
    opacity: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--clr-gold);
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid var(--clr-gold);
    padding-left: calc(1.75rem - 3px);
  }
}


/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 11, 8, 0.1) 0%,
      rgba(8, 11, 8, 0.2) 50%,
      rgba(8, 11, 8, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.hero-title-sub {
  color: var(--clr-gold2);
  font-style: italic;
}

.hero-title-sm {
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--clr-muted);
  font-style: italic;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--clr-muted);
  font-style: italic;
  margin: 1.2rem 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--clr-muted);
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.scroll-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ══════════ HIGHLIGHTS ══════════ */
.highlights {
  background: linear-gradient(90deg, #0e2418 0%, #122a1a 50%, #0a1e12 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
  position: relative;
}

.highlights::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 200% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.highlights-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: scrollHighlight 40s linear infinite;
}

.highlights-track:hover {
  animation-play-state: paused;
}

@keyframes scrollHighlight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.highlight-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.2rem;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  transition: background var(--transition);
}

.highlight-card:last-child {
  border-right: none;
}

.highlight-card:hover {
  background: rgba(201, 168, 76, 0.08);
}

.hi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.hi-icon svg {
  width: 18px;
  height: 18px;
}

.highlight-card:hover .hi-icon {
  color: var(--clr-gold2);
}

.hi-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
  white-space: nowrap;
}

/* ══════════ FEATURED DISHES ══════════ */
.featured {
  padding: 6rem 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 20, 10, 0.15) 0%, rgba(9, 31, 17, 0.10) 50%, rgba(13, 46, 26, 0.15) 100%),
    url('images/bg_main.png') center/cover no-repeat;
  isolation: isolate;
}

/* ══════════ SPECIAL EVENTS & OFFERS ══════════ */
.events-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(8, 40, 28, 0.18) 0%, rgba(10, 55, 42, 0.10) 50%, rgba(8, 40, 28, 0.18) 100%),
    url('images/bg_teal.png') center/cover no-repeat;
}

.events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(30, 74, 50, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.events-subtitle {
  color: var(--clr-muted);
  font-size: 1rem;
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.events-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0.5rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

.event-card {
  width: 100%;
  max-width: 480px;
  flex: 0 0 480px;
  scroll-snap-align: start;
}

.events-grid::-webkit-scrollbar {
  height: 8px;
}

.events-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.events-grid::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 10px;
}

.event-card {
  background: linear-gradient(160deg, #0b1e12 0%, #0e2418 55%, #091408 100%);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: default;
}

.event-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3) 40%, rgba(201, 168, 76, 0.3) 60%, transparent);
  pointer-events: none;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.35);
}

.event-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-img {
  transform: scale(1.04);
}

.event-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.event-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--clr-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.event-card-body {
  padding: 1.25rem;
}

.event-card-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--clr-gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.event-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.event-card-desc {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

.event-card-offer {
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.06));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--clr-gold-lt);
  font-weight: 500;
}

.events-empty {
  text-align: center;
  padding: 3rem;
  color: var(--clr-muted);
  font-size: 1rem;
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .events-section {
    padding: 4rem 0;
  }

  .events-grid {
    gap: 1rem;
    padding: 0.25rem 0.25rem 0.9rem;
  }

  .event-card {
    width: 100%;
    max-width: 360px;
    flex-basis: 360px;
  }
}

/* Scroll wrapper — active on mobile, transparent on desktop */
.dishes-scroll-wrap {
  position: relative;
}

.dishes-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 10px 0 2rem 0;
  /* Add padding to prevent box-shadow clipping and space for scrollbar */
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-gold) rgba(255, 255, 255, 0.05);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  justify-content: center;
  /* Center by default */
}

@media (max-width: 768px) {
  .dishes-grid {
    justify-content: flex-start;
    /* Start from left on mobile if many */
  }

  .dishes-grid:has(> :only-child) {
    justify-content: center;
    /* Center if only one on mobile */
  }
}

.dishes-grid::-webkit-scrollbar {
  height: 8px;
}

.dishes-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.dishes-grid::-webkit-scrollbar-thumb {
  background: var(--clr-gold);
  border-radius: 10px;
}

/* Scroll hint indicator */
.scroll-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  color: var(--clr-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: hintSlide 1.5s ease infinite;
}

@media (min-width: 768px) {
  .scroll-hint {
    display: none;
  }
}

.scroll-hint svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

@keyframes hintSlide {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

.dish-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, #0a1a10, #0c1f14, #081208);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.dish-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.dish-card:hover::after {
  opacity: 1;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.dish-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dish-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image-wrap img {
  transform: scale(1.08);
}

.dish-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(8, 11, 8, 0.85);
  backdrop-filter: blur(8px);
  color: var(--clr-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--clr-border);
}

.dish-info {
  padding: 1.1rem 1.2rem 1.4rem;
}

.dish-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--clr-gold);
  margin-bottom: 0.4rem;
}

.dish-info p {
  font-size: 0.83rem;
  color: var(--clr-muted);
  margin-bottom: 0.75rem;
}

.dish-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-green3);
  border: 1px solid var(--clr-green3);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
}

/* ══════════ ABOUT ══════════ */
.about {
  padding: 6rem 0;
  position: relative;
  background:
    linear-gradient(145deg, rgba(15, 45, 28, 0.15) 0%, rgba(11, 34, 24, 0.10) 55%, rgba(18, 42, 26, 0.15) 100%),
    url('images/bg_amber.png') center/cover no-repeat;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 88% 35%, rgba(197, 160, 89, 0.14) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.about>* {
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.75rem;
  height: 480px;
  position: relative;
}

.about-img-main,
.about-img-stack {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-img-stack img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.about-img-stack img:hover {
  transform: scale(1.04);
}

.about-content {
  padding: 1rem 0;
}

.about-content p {
  color: var(--clr-muted);
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-content strong {
  color: var(--clr-white);
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ══════════ MENU SECTION ══════════ */
.menu-section {
  padding: 6rem 0;
  position: relative;
  background:
    linear-gradient(175deg, rgba(10, 38, 24, 0.18) 0%, rgba(8, 32, 20, 0.10) 50%, rgba(14, 42, 28, 0.18) 100%),
    url('images/bg_teal.png') top center/cover no-repeat;
}

.menu-section .container {
  max-width: 100%;
  padding-left: clamp(1rem, 3vw, 2.25rem);
  padding-right: clamp(1rem, 3vw, 2.25rem);
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  background-size: 220px;
  pointer-events: none;
  z-index: 0;
}

.menu-section>* {
  position: relative;
  z-index: 1;
}

.menu-scroll-wrap {
  position: relative;
}

.menu-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 2vw, 2rem) 1.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  align-items: flex-start;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-gold) rgba(201, 168, 76, 0.1);
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.menu-grid::-webkit-scrollbar {
  height: 8px;
}

.menu-grid::-webkit-scrollbar-track {
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
}

.menu-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold2));
  border-radius: 10px;
}

.filter-btn {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-muted);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  border-color: transparent;
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.menu-cat-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, #0a1a10 0%, #0c2016 60%, #081208 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.menu-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25), transparent);
}

.menu-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.menu-cat-card.hidden {
  display: none;
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--clr-green), var(--clr-green2));
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cat-icon {
  font-size: 1.3rem;
}

.menu-cat-header h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-gold-lt);
  letter-spacing: 0.02em;
}

.menu-items {
  padding: 0.75rem 0;
}

.menu-items li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition);
}

.menu-items li:last-child {
  border-bottom: none;
}

.menu-items li:hover {
  background: rgba(201, 168, 76, 0.05);
}

.item-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  border: 1.5px solid;
}

.item-dot.veg {
  border-color: #2ecc71;
  background: rgba(46, 204, 113, 0.15);
}

.item-dot.nonveg {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.15);
}

.item-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--clr-white);
}

.item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-gold);
}

/* ══════════ GALLERY ══════════ */
.gallery-section {
  padding: 6rem 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(13, 42, 26, 0.15) 0%, rgba(15, 48, 30, 0.08) 50%, rgba(13, 42, 26, 0.15) 100%),
    url('images/bg_main.png') center bottom/cover no-repeat;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(197, 160, 89, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

/* Freely arranged effect via nth-child spans */
.gallery-item:nth-child(3n+1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4n+2) {
  grid-row: span 1;
}

.gallery-item:nth-child(5n+3) {
  grid-column: span 1;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-overlay span {
  font-size: 0.82rem;
  color: var(--clr-gold2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8, 11, 8, 0.7);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  backdrop-filter: blur(4px);
  text-align: center;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--clr-gold);
  background: none;
  z-index: 1;
  transition: transform var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ══════════ CONTACT ══════════ */
/* ══════════ CONTACT SECTION — Redesigned ══════════ */
.contact-section {
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(4, 11, 6, 0.85) 0%, rgba(5, 15, 8, 0.72) 50%, rgba(4, 11, 6, 0.85) 100%),
    url('images/bg_amber.png') center/cover no-repeat;
}

/* Top gold accent line */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4) 40%, rgba(201, 168, 76, 0.4) 60%, transparent);
  pointer-events: none;
}

/* Giant decorative background word */
.contact-bg-text {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.05);
  letter-spacing: 0.25em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Centered section header */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-header .gold-divider {
  margin: 1rem auto;
}

.contact-subtitle {
  color: var(--clr-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 1rem auto 0;
  line-height: 1.75;
}

/* ── Unified Glass Panel (both sides in one card) ── */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: rgba(4, 14, 7, 0.62);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 168, 76, 0.05) inset;
}

/* Left info half */
.contact-panel-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Gold vertical divider */
.contact-panel-divider {
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(201, 168, 76, 0.3) 15%,
      rgba(201, 168, 76, 0.3) 85%,
      transparent 100%);
}

/* Right form half */
.contact-panel-form {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}

.cpf-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--clr-gold);
  margin-bottom: 0.4rem;
}

.cpf-sub {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Info items — clean minimal list (no boxes) */
.cpi-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.cpi-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.cpi-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 3px;
  width: 1.8rem;
  text-align: center;
  filter: grayscale(0.2);
}

.cpi-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cpi-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.cpi-value {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

.cpi-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}

.cpi-link:hover {
  color: var(--clr-gold);
}

.cpi-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Form — bottom-border-only inputs (modern premium feel) */
#contactForm {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cf-field-grow {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cf-field-grow textarea {
  flex: 1;
  min-height: 110px;
  resize: none;
}

.cf-field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.75);
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 0.7rem 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(201, 168, 76, 0.22);
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-bottom-color: var(--clr-gold);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

#contactForm .btn.full-w {
  margin-top: auto;
}

/* Map */
.map-wrap {
  height: 380px;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  filter: grayscale(0.3) contrast(1.1);
}


.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3) 40%, rgba(201, 168, 76, 0.3) 60%, transparent);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  /* ← both columns same height */
  margin-bottom: 4rem;
}

/* Left column: stack title + cards + buttons top-to-bottom */
.contact-info-col {
  display: flex;
  flex-direction: column;
}

/* Right column: stretch to full height of left */
.contact-form-col {
  display: flex;
  flex-direction: column;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(6, 18, 10, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateX(4px);
}

.cc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card strong {
  display: block;
  color: var(--clr-gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

.contact-card a {
  color: var(--clr-gold);
}

.contact-card a:hover {
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-form-card {
  flex: 1;
  /* ← grow to match left column height */
  display: flex;
  flex-direction: column;
  background: rgba(5, 16, 9, 0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 168, 76, 0.06) inset;
}

/* Form grows to fill card height */
#contactForm {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Message group fills remaining space */
.form-group-message {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group-message textarea {
  flex: 1;
  min-height: 120px;
  resize: none;
}

/* Submit button always at bottom */
#contactForm .btn.full-w {
  margin-top: auto;
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(6, 16, 10, 0.8);
  border: 1.5px solid var(--clr-border);
  border-radius: 8px;
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.map-wrap {
  height: 380px;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  filter: grayscale(0.3) contrast(1.1);
}

/* ══════════ FOOTER ══════════ */
.footer {
  background:
    linear-gradient(180deg, rgba(10, 20, 14, 0.45) 0%, rgba(5, 14, 8, 0.55) 100%),
    url('images/bg_teal.png') bottom center/cover no-repeat;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 58% at 18% 50%, rgba(10, 61, 49, 0.20) 0%, transparent 62%),
    radial-gradient(ellipse 55% 70% at 88% 28%, rgba(197, 160, 89, 0.08) 0%, transparent 58%);
  pointer-events: none;
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-gold2);
}

.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--clr-gold);
  transition: var(--transition);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--clr-gold);
  color: #0a0a0a;
  transform: translateY(-3px);
}

.footer-info h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.2rem;
}

.footer-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-info a {
  font-size: 0.88rem;
  color: var(--clr-muted);
  transition: color var(--transition);
}

.footer-info a:hover {
  color: var(--clr-gold);
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--clr-gold);
}

.footer-map-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  transition: var(--transition);
}

.footer-map-link:hover {
  color: var(--clr-gold2);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0.85rem 1.25rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--clr-muted);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-copyright {
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  opacity: 0.7;
  font-weight: 500;
  color: var(--clr-gold);
}

.credit-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.62rem;
  color: var(--clr-muted);
}

.insta-credit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 3px 10px rgba(188, 24, 136, 0.25);
  margin: 0 3px;
}

.insta-credit-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 20px rgba(188, 24, 136, 0.45);
}

.insta-credit-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}



/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 768px) {

  .highlight-card {
    padding: 0.5rem 0.8rem;
  }

  /* About section: replace image bg with gradient on mobile (image crops badly on narrow screens) */
  .about {
    background:
      linear-gradient(160deg,
        rgba(8, 22, 14, 0.98) 0%,
        rgba(14, 38, 24, 0.97) 30%,
        rgba(20, 48, 28, 0.96) 60%,
        rgba(10, 28, 18, 0.98) 100%),
      radial-gradient(ellipse 80% 60% at 50% 0%,
        rgba(197, 160, 89, 0.12) 0%,
        transparent 65%);
    background-color: #080e0a;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }


  .about-images {
    height: 280px;
  }

  /* Move heading ABOVE images on mobile */
  .about-content {
    order: -1;
  }

  /* ──────────────────────────────────────
     DISHES: Mobile adjustments
  ────────────────────────────────────── */
  .scroll-hint {
    display: flex;
  }

  .dishes-grid {
    gap: 1.25rem;
    padding: 0 1.25rem 1.5rem;
    margin: 0 -1.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
  }

  .dishes-grid::-webkit-scrollbar {
    display: none;
  }

  .dishes-grid .dish-card {
    flex: 0 0 78vw;
    scroll-snap-align: center;
  }

  /* ──────────────────────────────────────
     MENU FILTERS: horizontal pill scroll
  ────────────────────────────────────── */
  .menu-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.5rem 1.25rem 1.5rem;
    gap: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    align-items: center;
  }

  .menu-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    border-radius: 20px;
    /* Organic staggered feel */
  }

  .filter-btn:nth-child(even) {
    transform: translateY(4px);
    border-radius: 18px 24px 18px 24px;
  }

  .filter-btn:nth-child(3n) {
    transform: translateY(-2px);
    border-radius: 24px 18px 24px 18px;
  }


  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  /* Contact panel → vertical stack on mobile */
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel-divider {
    height: 1px;
    width: auto;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201, 168, 76, 0.3) 15%,
        rgba(201, 168, 76, 0.3) 85%,
        transparent 100%);
  }

  .contact-panel-info,
  .contact-panel-form {
    padding: 2rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem;
  }

  /* ──────────────────────────────────────
     MENU GRID: Horizontal Scroll on Mobile
  ────────────────────────────────────── */
  .menu-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for cleaner look */
  }

  .menu-grid::-webkit-scrollbar {
    display: none;
  }

  .menu-cat-card {
    flex: 0 0 88%;
    /* Leaves edge of next card visible */
    max-width: 320px;
    scroll-snap-align: center;
    transform: none !important;
  }

  .menu-cat-card:hover {
    transform: none !important;
    /* Disable hover lift on mobile */
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-stats {
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.75rem;
  }

  /* Staggered organic feel on very small screens */
  .gallery-item:nth-child(4n+1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(5n+2) {
    grid-row: span 2;
  }

  .dishes-grid .dish-card {
    flex: 0 0 82vw;
  }
}

/* ── Scroll fade-in animation ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease both;
}

/* ══════════════════════════════════════════
   PREMIUM ANIMATIONS & ENHANCEMENTS v1.3
   ══════════════════════════════════════════ */

/* Gold shimmer on section titles */
.section-title {
  background: linear-gradient(100deg, var(--clr-white) 30%, var(--clr-gold-lt) 50%, var(--clr-white) 70%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 250% center;
  }
}

/* Button shine sweep on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: translateX(-100%);
}

.btn-primary:hover::after {
  animation: btnShine 0.55s ease forwards;
}

@keyframes btnShine {
  to {
    transform: translateX(100%);
  }
}

/* Icon bounce on highlight card hover */
.highlight-card:hover .hi-icon {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  40% {
    transform: translateY(-10px) scale(1.2);
  }

  70% {
    transform: translateY(-5px) scale(1.1);
  }
}

/* Staggered card entrance */
.card-stagger {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.card-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lazy image fade-in */
.lazy-img {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

/* Stat number glow */
.stat-num {
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  transition: text-shadow 0.3s;
}

.stat-item:hover .stat-num {
  text-shadow: 0 0 35px rgba(240, 192, 64, 0.7);
}

/* Dish card enhanced hover */
.dish-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.25),
    0 0 40px rgba(201, 168, 76, 0.1);
}

/* Gallery scale on hover */
.gallery-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* ── Menu Search Bar ── */
.menu-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.menu-search {
  width: 100%;
  max-width: 520px;
  padding: 0.8rem 1.2rem 0.8rem 3rem;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: 50px;
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.868-3.834zm-5.242 1.156a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1.1rem center;
}

.menu-search:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.menu-search::placeholder {
  color: var(--clr-muted);
}

.menu-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--clr-muted);
  font-style: italic;
  display: none;
  grid-column: 1 / -1;
  font-size: 1rem;
}

/* ── Floating Action Buttons ── */
.fab-stack {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.65rem;
  align-items: center;
  transition: opacity 0.2s ease;
}

/* Hide FAB stack while cart is open (mobile) so it never covers the total */
body.cart-open .fab-stack {
  opacity: 0;
  pointer-events: none;
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.fab:hover {
  transform: scale(1.12) translateY(-3px);
}

.fab svg {
  width: 24px;
  height: 24px;
}

/* Call FAB */
.fab-call {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.45);
}

.fab-call:hover {
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.65);
}

.fab-call svg {
  stroke: #0a0a0a;
  fill: none;
  stroke-width: 2;
}

/* WhatsApp FAB */
.fab-whatsapp {
  background: #25d366;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.fab-whatsapp svg {
  fill: #fff;
}

/* Tooltip for FABs */
.fab-tooltip {
  position: absolute;
  right: 58px;
  background: rgba(8, 11, 8, 0.92);
  color: var(--clr-white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab:hover .fab-tooltip {
  opacity: 1;
}

/* Back-to-Top Button */
.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  color: var(--clr-gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: rgba(201, 168, 76, 0.25);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 480px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════ UNAVAILABLE DISH (Admin Toggle) ══════════ */
.menu-items li.dish-unavailable {
  opacity: 0.35;
  position: relative;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-items li.dish-unavailable .item-name {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  text-decoration-thickness: 1.5px;
}

.menu-items li.dish-unavailable .item-price {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  text-decoration-thickness: 1.5px;
}

/* ══════════ WHATSAPP ORDER CLICK EFFECT ══════════ */
.menu-items li {
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
  margin-right: -10px;
}

.menu-items li:hover:not(.dish-unavailable) {
  background: rgba(201, 168, 76, 0.08);
  /* slight gold fade */
  transform: translateX(4px);
}

/* ══════════ FLOATING CART SYSTEM ══════════ */
.cart-floating-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-lt));
  color: var(--clr-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  cursor: pointer;
  z-index: 99;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cart-floating-btn.hidden {
  display: none;
}

.cart-floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.cart-floating-btn svg {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-bg);
}

.cart-floating-btn.pop .cart-badge {
  animation: popBadge 0.3s ease;
}

@keyframes popBadge {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.cart-panel {
  position: fixed;
  bottom: 90px;
  left: 24px;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: linear-gradient(160deg, #0f1f14 0%, #111b14 60%, #0d1a11 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 168, 76, 0.08);
  z-index: 950;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
  max-height: 85vh;
}

.cart-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cart-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201, 168, 76, 0.03);
  border-radius: 16px 16px 0 0;
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--clr-gold);
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--clr-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.cart-close:hover {
  color: #e74c3c;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 12px 20px;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.2);
  border-radius: 3px;
}

.cart-empty-msg {
  text-align: center;
  color: var(--clr-muted);
  font-size: 0.9rem;
  padding: 20px 0;
  font-style: italic;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.9rem;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--clr-gold);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--clr-gold);
}

.cart-item-qty {
  font-size: 0.9rem;
  color: var(--clr-white);
  min-width: 16px;
  text-align: center;
}

.cart-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 0 16px 16px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.cart-total span {
  color: var(--clr-gold);
  font-size: 1.2rem;
}

.cart-details-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 4px;
}

.cart-input {
  width: 100%;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s;
}

.cart-input:focus {
  border-color: var(--clr-gold);
  background: rgba(255, 255, 255, 0.08);
}

.cart-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cart-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cart-checkout {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--clr-green2), var(--clr-green3));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.3s;
}

.cart-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.4);
}

@media (max-width: 480px) {
  .cart-floating-btn {
    bottom: 20px;
    left: 20px;
  }

  .cart-panel {
    /* Stretch full width so total amount is never behind the right-side FABs */
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    bottom: 90px;
    /* Limit height so the footer (total + button) is always fully visible */
    max-height: calc(100vh - 160px);
  }

  .cart-items {
    /* Allow the items list to scroll within the limited panel height */
    max-height: calc(100vh - 340px);
    min-height: 60px;
  }

  /* Hide the FAB stack while the cart panel is open so it never overlaps */
  .cart-panel.open~.fab-stack,
  body.cart-open .fab-stack {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
}

/* Flying Item Animation */
.flying-cart-item {
  position: fixed;
  z-index: 9999;
  font-size: 1.5rem;
  color: var(--clr-gold);
  pointer-events: none;
}

/* ══════════ OFFERS MODAL ══════════ */
.offers-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.offers-modal.open {
  opacity: 1;
  pointer-events: all;
}

.offers-modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 168, 76, 0.15);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.offers-modal.open .offers-modal-content {
  transform: scale(1) translateY(0);
}

.offers-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: background 0.2s, color 0.2s;
}

.offers-close:hover {
  background: #e74c3c;
  color: #fff;
}

.offers-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
}

.offers-slider::-webkit-scrollbar {
  display: none;
}

.offer-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.offer-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  max-height: 60vh;
  object-fit: contain;
}

.offers-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s, transform 0.3s;
}

.offer-dot.active {
  background: var(--clr-gold);
  transform: scale(1.3);
}


/* ══════════════════════════════════════════════════════
   PREMIUM ANIMATED CATEGORY BAR  (GSAP-powered)
   ══════════════════════════════════════════════════════ */

/* ── Ambient floating orb utility ── */
@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(8px, -12px) scale(1.04);
  }

  66% {
    transform: translate(-6px, 8px) scale(0.97);
  }
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite;
  z-index: 0;
}

.ambient-orb.gold {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
}

.ambient-orb.green {
  background: radial-gradient(circle, rgba(30, 74, 50, 0.35) 0%, transparent 70%);
}

.ambient-orb.teal {
  background: radial-gradient(circle, rgba(16, 90, 68, 0.25) 0%, transparent 70%);
}

/* ── Wrapper: sticky + overflow container ── */
.cat-bar-outer {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: var(--clr-bg3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 12px 0;
  margin-bottom: 1.2rem;
  /* Performance optimizations */
  will-change: transform;
  transform: translateZ(0);
  contain: layout style;
}

/* ── Scrollable track ── */
.cat-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 1.25rem 8px;
  align-items: center;
}

.cat-bar::-webkit-scrollbar {
  display: none;
}

/* ── Edge fade overlays ── */
.cat-fade-l,
.cat-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s;
}

.cat-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg3) 0%, transparent 100%);
}

.cat-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg3) 0%, transparent 100%);
}

/* ── Individual chip card ── */
.cat-chip {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px 9px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.18);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    border-color 0.35s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* animated glass background layer */
.cc-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease;
  pointer-events: none;
}

/* Disable backdrop-filter on mobile — expensive GPU op that causes scroll jank */
@media (max-width: 768px) {
  .cc-bg {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 31, 20, 0.85);
  }
}

/* animated glow ring */
.cc-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* icon */
.cc-icon {
  font-size: 1.15rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* label */
.cc-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-muted);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* active underline pill */
.cc-pill {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold2));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

/* sparkle container */
.cc-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

/* ── HOVER state ── */
.cat-chip:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px) scale(1.04);
}

.cat-chip:hover .cc-bg {
  background: rgba(201, 168, 76, 0.08);
}

.cat-chip:hover .cc-glow {
  opacity: 1;
  box-shadow:
    0 0 18px 3px rgba(212, 175, 55, 0.35),
    0 0 40px 8px rgba(58, 133, 96, 0.15);
}

.cat-chip:hover .cc-icon {
  transform: scale(1.25) translateY(-2px);
}

.cat-chip:hover .cc-label {
  color: var(--clr-gold-lt);
}

/* ── ACTIVE state ── */
.cat-chip.active {
  border-color: var(--clr-gold);
  transform: scale(1.07);
  background: transparent;
}

.cat-chip.active .cc-bg {
  background: linear-gradient(135deg,
      rgba(201, 168, 76, 0.14) 0%,
      rgba(58, 133, 96, 0.10) 100%);
}

.cat-chip.active .cc-glow {
  opacity: 1;
  box-shadow:
    0 0 22px 5px rgba(212, 175, 55, 0.4),
    0 0 60px 12px rgba(58, 133, 96, 0.18),
    inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.cat-chip.active .cc-icon {
  transform: scale(1.2) translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(240, 192, 64, 0.8));
}

.cat-chip.active .cc-label {
  color: var(--clr-gold2);
  font-weight: 700;
}

.cat-chip.active .cc-pill {
  transform: translateX(-50%) scaleX(1);
}

/* ── sparkle dot (injected by JS) ── */
.spark-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--clr-gold2);
}

/* ── menu grid transition when category changes ── */
.menu-cat-card {
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

.menu-cat-card.cat-hidden {
  display: none;
}

.menu-cat-card.cat-entering {
  opacity: 0;
  transform: translateY(24px) scale(0.95);
}

.menu-cat-card.cat-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── background ambient light streaks ── */
.cat-bar-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 80% 50%, rgba(58, 133, 96, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Mobile tweaks ── */
@media (max-width: 768px) {
  .cat-chip {
    padding: 8px 14px 8px 11px;
  }

  .cc-icon {
    font-size: 1rem;
  }

  .cc-label {
    font-size: 0.75rem;
  }

  .cat-bar-outer {
    top: 56px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM ANIMATED CATEGORY BAR  –  GSAP + Glass + Neon Gold
   ═══════════════════════════════════════════════════════════════ */

/* ── Wrapper: sticky strip ── */
.cat-bar-outer {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: linear-gradient(to bottom,
      rgba(8, 11, 8, 0.98) 0%,
      var(--clr-bg3) 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 16px 0;
  margin-bottom: 2.8rem;
  overflow: hidden;
}

/* ambient light streaks in the bar background */
.cat-bar-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 120% at 15% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 45% 120% at 85% 50%, rgba(58, 133, 96, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* moving light sweep animation */
.cat-bar-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.04) 50%,
      transparent 100%);
  animation: catBarSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes catBarSweep {
  0% {
    left: -200px;
  }

  100% {
    left: 100%;
  }
}

/* ── Scrollable track ── */
.cat-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 1.4rem 6px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cat-bar::-webkit-scrollbar {
  display: none;
}

/* ── Edge fade overlays ── */
.cat-fade-l,
.cat-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s;
}

.cat-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg3), transparent);
}

.cat-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg3), transparent);
}

/* ── Individual chip card ── */
.cat-chip {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  cursor: pointer;
  overflow: visible;
  transition:
    border-color 0.35s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  will-change: transform;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.cat-chip:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

/* Glass inner background layer */
.cc-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

/* Outer glow ring (absolutely positioned OUTSIDE chip so overflow:visible works) */
.cc-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border: 1.5px solid transparent;
}

/* Icon */
.cc-icon {
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s;
  will-change: transform;
}

/* Label */
.cc-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  color: rgba(158, 168, 160, 0.9);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

/* Active underline pill */
.cc-pill {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 38%;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold2), #3a8560);
  background-size: 200% 100%;
  animation: pillShimmer 2.5s linear infinite;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 3;
}

@keyframes pillShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Sparkle container */
.cc-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 5;
  border-radius: inherit;
}

/* ── HOVER state ── */
.cat-chip:hover {
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(212, 175, 55, 0.18);
}

.cat-chip:hover .cc-bg {
  background: rgba(201, 168, 76, 0.08);
}

.cat-chip:hover .cc-glow {
  opacity: 1;
  box-shadow:
    0 0 16px 4px rgba(212, 175, 55, 0.3),
    0 0 40px 8px rgba(58, 133, 96, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
}

.cat-chip:hover .cc-icon {
  transform: scale(1.3) translateY(-2px) rotate(-5deg);
}

.cat-chip:hover .cc-label {
  color: var(--clr-gold-lt);
  letter-spacing: 0.07em;
}

/* ── ACTIVE state ── */
.cat-chip.active {
  border-color: var(--clr-gold);
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 6px 30px rgba(212, 175, 55, 0.25),
    0 0 60px rgba(58, 133, 96, 0.12);
}

.cat-chip.active .cc-bg {
  background: linear-gradient(135deg,
      rgba(201, 168, 76, 0.16) 0%,
      rgba(58, 133, 96, 0.10) 100%);
}

.cat-chip.active .cc-glow {
  opacity: 1;
  box-shadow:
    0 0 24px 6px rgba(212, 175, 55, 0.4),
    0 0 70px 14px rgba(58, 133, 96, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.cat-chip.active .cc-icon {
  transform: scale(1.25) translateY(-1px);
  filter: drop-shadow(0 0 8px rgba(240, 192, 64, 0.85));
}

.cat-chip.active .cc-label {
  color: var(--clr-gold2);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.cat-chip.active .cc-pill {
  transform: translateX(-50%) scaleX(1);
}

/* ── Sparkle dot (injected by JS) ── */
.spark-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Menu card enter/exit animations ── */
.menu-cat-card {
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
}

.menu-cat-card.cat-hidden {
  display: none !important;
}

/* ── Mobile tweaks ── */
@media (max-width: 768px) {
  .cat-bar-outer {
    top: 56px;
    padding: 12px 0;
  }

  .cat-chip {
    padding: 8px 15px 8px 11px;
    gap: 6px;
  }

  .cc-icon {
    font-size: 1.05rem;
  }

  .cc-label {
    font-size: 0.74rem;
  }

  .menu-grid {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: none;
    padding: 0 1rem 1.25rem;
  }

  .menu-cat-card {
    flex: 0 0 min(84vw, 380px);
    width: min(84vw, 380px);
    scroll-snap-align: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM MENU ITEMS (LUXURY LIST TILES)
   ═══════════════════════════════════════════════════════════════ */

.menu-cat-card {
  flex: 0 0 clamp(340px, 88vw, 420px);
  width: clamp(340px, 88vw, 420px);
  background: rgba(8, 11, 8, 0.4) !important;
  /* Overriding old green bg if any */
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Ambient glow inside card */
.menu-cat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.menu-cat-header {
  position: relative;
  z-index: 1;
  display: inline-flex;
  background: rgba(8, 11, 8, 0.6) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  border-radius: 50px !important;
  padding: 0.6rem 1.2rem !important;
  margin-bottom: 1.5rem;
  align-items: center;
  gap: 0.5rem;
}

.menu-cat-header h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-gold-lt);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  margin: 0;
}

.menu-items {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Luxury minimal menu tile */
.menu-items li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Subtle divider line with gradient fade */
.menu-items li:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

/* Hover reveals soft highlight sweep */
.menu-items li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.menu-items li:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(201, 168, 76, 0.2);
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.08);
  z-index: 2;
}

.menu-items li:hover::before {
  transform: translateX(100%);
}

.menu-items li:hover:not(:last-child)::after {
  opacity: 0;
  /* Hide divider on hover */
}

/* Veg/non-veg premium indicator */
.item-dot {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9rem;
  flex-shrink: 0;
  background: rgba(8, 18, 10, 0.7);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

.item-dot::after {
  content: '+';
  display: block;
  transform: translateY(-1px);
}

.item-dot.veg {
  border-color: rgba(46, 204, 113, 0.7);
  color: #4ade80;
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.35);
}

.item-dot.veg::after {
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

.item-dot.nonveg {
  border-color: rgba(231, 76, 60, 0.75);
  color: #f87171;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.35);
}

.item-dot.nonveg::after {
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.6);
}

/* Typography hierarchy */
.item-name {
  flex-grow: 1;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  z-index: 1;
  padding-right: 1rem;
}

.menu-items li:hover .item-name {
  color: var(--clr-gold-lt);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.item-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-gold);
  z-index: 1;
  position: relative;
}

.menu-items li:hover .item-price {
  color: var(--clr-gold2);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Dotted leader between name and price */
.item-name::after {
  content: '';
  display: block;
  overflow: hidden;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 2px, transparent 2px, transparent 6px);
  margin-top: 6px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.menu-items li:hover .item-name::after {
  opacity: 1;
  background: repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0, rgba(212, 175, 55, 0.3) 2px, transparent 2px, transparent 6px);
}

/* ══════════ FESTIVAL OFFERS POPUP ══════════ */
.offers-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.offers-modal.open {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: all;
}

.offers-modal-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, rgba(15, 30, 18, 0.97), rgba(8, 18, 10, 0.99));
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(212, 175, 55, 0.06) inset;
  transform: scale(0.82) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.offers-modal.open .offers-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Animated gold shimmer border */
.offers-modal-content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.1) 40%, rgba(212, 175, 55, 0.05) 60%, rgba(212, 175, 55, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: shimmerBorder 3s linear infinite;
  z-index: 1;
}

@keyframes shimmerBorder {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 300% 300%;
  }
}

/* ══ TEMPLATE: COUNTDOWN ══════════════════════════════ */
.tpl-countdown {
  position: relative;
  background: #080b0a;
  overflow: hidden;
}

.tpl-countdown img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.countdown-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.countdown-timer-container {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.countdown-box {
  background: rgba(212, 175, 55, 0.9);
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  min-width: 50px;
}

.cd-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #080b0a;
  line-height: 1;
}

.cd-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: #080b0a;
  margin-top: 2px;
  letter-spacing: 1px;
}

.countdown-sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.9);
  margin: 0 2px;
}

.countdown-caption {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 4;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5e6b8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  padding: 0 20px;
  letter-spacing: 0.04em;
}


/* ══ TEMPLATE: POLAROID ════════════════════════════════ */
.tpl-polaroid {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2219;
  min-height: 340px;
  padding: 28px 20px 20px;
}

.polaroid-wrap {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(.2, .8, .3, 1.2);
  overflow: hidden;
  max-width: 280px;
  width: 100%;
}

.tpl-polaroid:hover .polaroid-wrap {
  transform: rotate(0deg) scale(1.03);
}

.polaroid-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.polaroid-img img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.polaroid-footer {
  background: #fff;
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.polaroid-caption {
  font-family: 'Caveat', 'Dancing Script', cursive, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c1e0f;
  line-height: 1.2;
}

.polaroid-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}

/* ══ TEMPLATE: FLYER ═══════════════════════════════════ */
.tpl-flyer {
  display: flex;
  flex-direction: column;
  background: #1a0a2e;
  overflow: hidden;
  min-height: 340px;
}

.flyer-img {
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}

.flyer-img img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.flyer-slash {
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 0 solid transparent;
  border-right: 500px solid #ff6b35;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.flyer-body {
  background: linear-gradient(135deg, #ff6b35 0%, #f7c59f 100%);
  padding: 18px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.flyer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  width: fit-content;
}

.flyer-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a0a2e;
  line-height: 1.25;
}

.flyer-cta {
  display: inline-block;
  background: #1a0a2e;
  color: #ff6b35;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.flyer-cta:hover {
  background: #fff;
  transform: translateX(3px);
}

/* ══ TEMPLATE: CINEMA POSTER ═══════════════════════════ */
@keyframes filmGrain {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -3%);
  }

  20% {
    transform: translate(3%, 2%);
  }

  30% {
    transform: translate(-1%, 4%);
  }

  40% {
    transform: translate(4%, -1%);
  }

  50% {
    transform: translate(-3%, 3%);
  }

  60% {
    transform: translate(2%, -4%);
  }

  70% {
    transform: translate(-4%, 1%);
  }

  80% {
    transform: translate(1%, -2%);
  }

  90% {
    transform: translate(3%, 4%);
  }
}

@keyframes spotlightPulse {

  0%,
  100% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.30;
  }
}

@keyframes cinemaBrandIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cineShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.tpl-story {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: #05080a;
}

/* Full-bleed background image */
.story-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.6) saturate(1.15);
  transition: transform 6s ease;
}

.tpl-story:hover .story-bg {
  transform: scale(1.04);
}

/* Film grain noise overlay */
.story-vignette {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: filmGrain 0.12s steps(1) infinite;
}

/* Cinematic dark vignette frame */
.story-top {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.15) 28%,
      rgba(0, 0, 0, 0.10) 55%,
      rgba(0, 0, 0, 0.80) 100%),
    radial-gradient(ellipse 70% 55% at 75% 30%,
      rgba(212, 175, 55, 0.18) 0%,
      transparent 65%);
  animation: spotlightPulse 4s ease-in-out infinite;
}

/* Diagonal gold spotlight beam */
.story-bars {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 130%;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.22) 0%,
      rgba(212, 175, 55, 0.06) 40%,
      transparent 70%);
  transform: skewX(-18deg);
  z-index: 3;
  pointer-events: none;
  animation: spotlightPulse 5s ease-in-out infinite reverse;
}

/* Top crown branding strip */
.story-brand {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: cinemaBrandIn 0.7s 0.3s both ease-out;
}

.story-brand::before {
  content: '♛';
  font-size: 0.9rem;
  color: #d4af37;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.8));
}

.story-brand .cinema-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c8a84b, #f5e6a3, #c8a84b, #f5e6a3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cineShimmer 3s linear infinite;
}

.story-brand::after {
  content: '♛';
  font-size: 0.9rem;
  color: #d4af37;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.8));
  transform: scaleX(-1);
  display: inline-block;
}

/* Bottom CTA strip */
.story-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 18px 22px 20px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.65) 70%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.story-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.story-bottom p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5e6b8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.2);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.story-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.story-cta-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.story-cta-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #d4af37, #f5e6a3, #b8972e);
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.story-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.65);
}

/* Ribbon label (dynamic via JS) */

.offers-ribbon {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #b8922a);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
  pointer-events: none;
}

/* Close button */
.offers-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  background: rgba(8, 18, 10, 0.85);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}

.offers-close:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: rotate(90deg) scale(1.1);
}

/* Image slider */
.offers-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 24px;
  padding-top: 44px;
  /* space for ribbon */
}

.offers-slider::-webkit-scrollbar {
  display: none;
}

.offer-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
}

.offer-slide img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 0 0 0 0;
}

/* Gradient overlay at bottom of image */
.offer-slide.tpl-countdown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(8, 18, 10, 0.9), transparent);
  pointer-events: none;
}

/* Dot indicators */
.offers-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 16px;
  background: rgba(8, 18, 10, 0.6);
}

.offer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s, transform 0.3s, width 0.3s;
  cursor: pointer;
}

.offer-dot.active {
  background: var(--clr-gold);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* ── Theme: Royal Crimson ── */
.offers-modal-content.theme-crimson {
  background: linear-gradient(145deg, rgba(35, 6, 6, 0.97), rgba(18, 2, 2, 0.99));
  box-shadow:
    0 0 0 1px rgba(192, 57, 43, 0.35),
    0 32px 80px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(192, 57, 43, 0.08) inset;
}

.offers-modal-content.theme-crimson::before {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.9), rgba(192, 57, 43, 0.1) 40%, rgba(212, 175, 55, 0.05) 60%, rgba(192, 57, 43, 0.7));
}

.offers-modal-content.theme-crimson .offers-ribbon {
  background: linear-gradient(135deg, #c0392b, #922b21);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.45);
}

.offers-modal-content.theme-crimson .offers-close {
  border-color: rgba(192, 57, 43, 0.5);
}

.offers-modal-content.theme-crimson .offers-close:hover {
  background: rgba(192, 57, 43, 0.2);
  border-color: #c0392b;
  color: #e74c3c;
}

.offers-modal-content.theme-crimson .offer-dot.active {
  background: #c0392b;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.6);
}

/* ── Theme: Midnight Azure ── */
.offers-modal-content.theme-azure {
  background: linear-gradient(145deg, rgba(6, 12, 38, 0.97), rgba(3, 6, 22, 0.99));
  box-shadow:
    0 0 0 1px rgba(79, 172, 254, 0.25),
    0 32px 80px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(79, 172, 254, 0.06) inset;
  color: #4facfe;
}

.offers-modal-content.theme-azure .offer-dot.active {
  background: #4facfe;
  box-shadow: 0 0 8px rgba(79, 172, 254, 0.6);
}

@media (max-width: 540px) {
  .offers-modal-content {
    border-radius: 16px;
  }

  .offer-slide img {
    max-height: 280px;
  }
}

/* ── Cart Promo Consent Widget ── */
.cart-consent-box {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}

.cart-consent-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.cart-consent-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cart-consent-opt {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
}

.cart-consent-opt:has(input:checked) {
  border-color: var(--clr-gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--clr-gold);
}

.cart-consent-opt input[type="radio"] {
  accent-color: var(--clr-gold);
  width: 14px;
  height: 14px;
}

/* ── Admin Orders Filter Pills ── */
.orders-filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}

.orders-filter-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.orders-filter-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.orders-filter-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  font-weight: 600;
}

/* ── Multi-step Cart Layout ── */
.cart-step-header {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(0, 0, 0, 0.15);
}

.cart-back-btn {
  background: none;
  border: none;
  color: var(--clr-gold);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.cart-back-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

#cartStep2 .cart-footer {
  border-top: none;
  /* No double border in step 2 */
}

#cartStep1,
#cartStep2 {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  /* Important for flex child scrolling */
}

.cart-items-container {
  overflow: hidden;
}

.cart-details-container {
  overflow-y: auto;
  max-height: 100%;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}