/* ============================================================
   BIG WAY — Haute Gastronomie & Fast-Casual Luxe
   Color Architecture:
   - Page Background & Cards: Strictly Neutral Charcoal Noir (#0a0b0e, #12141a, #181a22)
   - Purple Rule: Purple is ONLY used with neutral backgrounds (Brand elements, active tabs, primary buttons)
   - Green & Yellow Rule: Green & Yellow complement each other (Prices in Gold, Badges & WhatsApp in Emerald)
   - Zero color-to-color gradients (Clean, solid luxury finishes)
   ============================================================ */

:root {
  /* Neutral Dark Obsidian Foundation (Zero Purple in Backgrounds) */
  --bg-page: #0a0b0e;
  --bg-surface: #12141a;
  --bg-card: #181a22;
  --bg-card-solid: #181a22;
  --bg-elevated: #1e212b;
  --border-neutral: rgba(255, 255, 255, 0.08);
  --border-neutral-hover: rgba(255, 255, 255, 0.22);

  /* Solid Purple Accent (Used only on Neutral Backgrounds) */
  --purple: #7c3aed;
  --purple-hover: #6d28d9;
  --purple-light: #a78bfa;
  --purple-border: #7c3aed;
  --purple-bg-subtle: rgba(124, 58, 237, 0.12);

  /* Solid Warm Gold / Yellow (Prices, Star Ratings, Luxury Accents) */
  --gold: #f59e0b;
  --gold-soft: #fbbf24;
  --gold-dark: #d97706;
  --gold-border: #f59e0b;
  --gold-bg-subtle: rgba(245, 158, 11, 0.08);

  /* Solid Botanical Emerald Green (Status, WhatsApp, Veg Badges) */
  --green: #10b981;
  --green-hover: #059669;
  --green-soft: #34d399;
  --green-border: #10b981;
  --green-bg-subtle: rgba(16, 185, 129, 0.08);

  /* Typography & Silk Surfaces */
  --silk-white: #ffffff;
  --silk-ivory: #f8fafc;
  --silk-muted: #cbd5e1;
  --silk-dim: #94a3b8;
  --paper: #f8f6f0;
  --paper-2: #ede8dc;
  --paper-text: #0f172a;
  --paper-dim: #475569;

  /* Fonts */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-italic: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometry & Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  --shadow-luxe: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 1px 1px rgba(255, 255, 255, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-page);
}

body {
  background: var(--bg-page);
  color: var(--silk-ivory);
  font-family: var(--font-sans);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background: var(--purple);
  color: #fff;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preload-seal {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid var(--border-neutral);
  padding: 3px;
  background: var(--bg-surface);
  box-shadow: var(--shadow-luxe);
}
.preload-bar {
  width: 190px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.preload-fill {
  height: 100%;
  width: 0%;
  background: var(--purple);
  transition: width 0.15s ease-out;
}
.preload-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silk-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Scroll Progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 350;
  background: var(--purple);
  width: 0%;
}

/* Page Transition Fade */
#page-fade {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-page);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
#page-fade.active {
  opacity: 1;
  pointer-events: all;
}

/* Custom Cursor */
html.custom-cursor, html.custom-cursor * { cursor: none !important; }
@media (hover: none), (pointer: coarse) {
  html.custom-cursor, html.custom-cursor * { cursor: auto !important; }
}
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 950;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--silk-white);
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-neutral-hover);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
}
.cursor-ring.big {
  width: 56px;
  height: 56px;
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.08);
  backdrop-filter: blur(2px);
}

/* ============================================================
   HAUTE NAVIGATION & HEADER (Neutral Charcoal)
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: all 0.35s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.95) 0%, rgba(10, 11, 14, 0) 100%);
}
header.scrolled {
  background: rgba(18, 20, 26, 0.96);
  border-bottom: 1px solid var(--border-neutral);
  padding: 12px 0;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}
header.on-paper {
  background: rgba(248, 246, 240, 0.96);
  color: var(--paper-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--silk-ivory);
}
.logo-seal {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-neutral-hover);
  padding: 2px;
  background: var(--bg-surface);
  transition: transform 0.4s ease;
}
.logo:hover .logo-seal {
  transform: rotate(12deg) scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--silk-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  transform: translateY(-1px);
}
header.on-paper .nav-links a:hover, header.on-paper .nav-links a.active {
  color: var(--paper-text);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--purple);
}

/* 3-Language Toggle */
.lang-toggle {
  display: flex;
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--bg-surface);
}
.lang-toggle button {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 11px;
  letter-spacing: 0.08em;
  color: var(--silk-dim);
  transition: all 0.2s ease;
}
.lang-toggle button:hover {
  color: #fff;
}
.lang-toggle button.active {
  background: var(--purple);
  color: #fff;
  font-weight: 700;
}

.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--purple);
  color: #fff;
  border: 1px solid var(--purple);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--purple-hover);
  border-color: var(--purple-hover);
  transform: translateY(-2px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
}
.nav-burger span {
  height: 2px;
  background: var(--silk-ivory);
  width: 100%;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--silk-muted);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--purple-light);
}
.mobile-menu .close-x {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 26px;
  color: var(--silk-dim);
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   BUTTON SYSTEM (Solid Colors, Zero Mixed Gradients)
   ============================================================ */
.btn-purple {
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--purple);
  transition: all 0.25s ease;
}
.btn-purple:hover {
  background: var(--purple-hover);
  border-color: var(--purple-hover);
  transform: translateY(-2px);
}

.btn-glow {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  transition: all 0.25s ease;
}
.btn-glow:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-frost {
  background: var(--bg-surface);
  color: var(--silk-ivory);
  border: 1px solid var(--border-neutral);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}
.btn-frost:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--bg-surface);
  color: #fff;
  border: 1px solid var(--border-neutral);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-solid:hover {
  border-color: var(--border-neutral-hover);
  transform: translateY(-2px);
}
.btn-solid.purple {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.btn-solid.purple:hover {
  background: var(--purple-hover);
  border-color: var(--purple-hover);
}
.btn-solid.green {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn-solid.green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.btn-line {
  border: 1px solid var(--border-neutral);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silk-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-line:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HERO SECTIONS WITH SQUARED FULL LOGO EMBLEM
   ============================================================ */
.food-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg-page);
}
.food-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.food-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.20) contrast(1.1);
}
.food-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 45%, rgba(18, 20, 26, 0.5) 0%, var(--bg-page) 85%),
              linear-gradient(180deg, rgba(10, 11, 14, 0.7) 0%, transparent 40%, var(--bg-page) 100%);
}

.food-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .food-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.food-hero-content {
  max-width: 680px;
}
.hero-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge-row .txt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.food-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--silk-ivory);
}
.food-hero h1 span, .food-hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--gold);
}

.tasty-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
  color: var(--silk-muted);
  margin-bottom: 34px;
  max-width: 600px;
}
.food-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* SQUARED FULL LOGO EMBLEM (Neutral Frame) */
.hero-emblem-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-card-frame {
  position: relative;
  width: min(380px, 90vw);
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-neutral-hover);
  box-shadow: var(--shadow-luxe);
  transition: transform 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.emblem-card-frame:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
}
.emblem-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
}
.emblem-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 20, 26, 0.95);
  border: 1px solid var(--border-neutral-hover);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--silk-ivory);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Interior Page Hero */
.page-hero {
  padding: 130px 0 40px;
  background: var(--bg-page);
}
.page-hero .label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
  display: inline-block;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero p {
  max-width: 640px;
  font-size: 15px;
  color: var(--silk-muted);
  line-height: 1.75;
}

/* Hallmarks */
.hallmark {
  border-top: 1px solid var(--border-neutral);
  border-bottom: 1px solid var(--border-neutral);
  background: var(--bg-surface);
}
.hallmark .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px;
  flex-wrap: wrap;
  gap: 18px;
}
.hallmark .item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silk-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hallmark .item b {
  color: var(--silk-ivory);
  font-weight: 700;
  font-size: 15px;
}
.hallmark .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Global Sections */
section {
  padding: 80px 0;
  position: relative;
  flex-shrink: 0;
  background: var(--bg-page);
}
.on-paper {
  background: var(--paper);
  color: var(--paper-text);
}
.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.on-paper .section-num {
  color: var(--paper-dim);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-rule {
  width: 40px;
  height: 2px;
  background: var(--purple);
  border: none;
  margin-bottom: 22px;
}
.on-paper .section-rule {
  background: rgba(0, 0, 0, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HOUSE SPECIALS SPOTLIGHT (Dedicated Styling)
   ============================================================ */
.specials-spotlight-box {
  background: var(--bg-surface);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-luxe);
}
.specials-spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.specials-badge-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg-subtle);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.special-card-highlight {
  border: 1.5px solid var(--gold) !important;
}
.special-card-highlight .catalog-card-price {
  color: var(--gold);
}

/* CART BADGE COUNTER ON DISH CARDS & ROWS */
.card-cart-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* ============================================================
   SHOWCASE GRID & FOOD CARDS
   ============================================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

.food-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-luxe);
}
.food-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple);
}

.food-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-surface);
}
.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.food-card:hover .food-card-img img {
  transform: scale(1.06);
}
.food-card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.food-card-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(18, 20, 26, 0.92);
  border: 1px solid var(--border-neutral);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.food-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.food-card-body h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--silk-ivory);
}
.food-card-body p {
  font-size: 13px;
  color: var(--silk-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.food-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-neutral);
  padding-top: 14px;
}
.food-card-serves {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silk-dim);
  text-transform: uppercase;
}
.add-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.add-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ============================================================
   GALLERY PAGE (Filterable Luxury Mosaic Grid & Lightbox)
   ============================================================ */
.gallery-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  color: var(--silk-muted);
  transition: all 0.25s;
}
.gallery-tab:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
}
.gallery-tab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  cursor: pointer;
  box-shadow: var(--shadow-luxe);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,11,14,0.95) 0%, rgba(10,11,14,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--silk-ivory);
  margin-bottom: 4px;
}
.gallery-item-desc {
  font-size: 12px;
  color: var(--silk-muted);
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(10, 11, 14, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  padding: 24px;
}
#lightbox.open { opacity: 1; visibility: visible; }
.lb-frame {
  width: min(92vw, 900px);
  background: var(--bg-card-solid);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-neutral-hover);
  box-shadow: var(--shadow-luxe);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lb-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: #000;
  overflow: hidden;
}
.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lb-footer {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-neutral);
}
.lb-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--silk-ivory);
}
.lb-desc {
  font-size: 13px;
  color: var(--silk-muted);
  margin-top: 2px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: var(--silk-ivory);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  background: rgba(18, 20, 26, 0.85);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  border-color: #fff;
  color: #fff;
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { top: 50%; left: 16px; transform: translateY(-50%); }
.lb-next { top: 50%; right: 16px; transform: translateY(-50%); }

/* ============================================================
   LOCATION & VISIT PAGE (Action Cards & Live Status)
   ============================================================ */
.status-pill-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg-subtle);
  border: 1px solid var(--green);
  color: var(--green-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.status-pill-closed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #f87171;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.action-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
@media (max-width: 860px) {
  .action-card-grid { grid-template-columns: 1fr; }
}

.action-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-luxe);
}
.action-card-header {
  margin-bottom: 16px;
}
.action-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silk-dim);
  margin-bottom: 6px;
}
.action-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--silk-ivory);
}
.action-card-text {
  font-size: 14px;
  color: var(--silk-muted);
  line-height: 1.6;
}
.action-card-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.map-embed-card {
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-luxe);
  margin: 30px 0;
  background: var(--bg-surface);
}
.map-embed-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.qr-concierge-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 30px;
}
.qr-visual-box {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--silk-white);
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-visual-box svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   ABOUT PAGE (Heritage, Standards & Timeline)
   ============================================================ */
.phil-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}
@media (max-width: 860px) {
  .phil-card-grid { grid-template-columns: 1fr; }
}
.phil-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-luxe);
}
.phil-card-icon {
  font-size: 28px;
  color: var(--purple-light);
}
.phil-card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--silk-ivory);
}
.phil-card-text {
  font-size: 14px;
  color: var(--silk-muted);
  line-height: 1.7;
}

.timeline-box {
  border-left: 2px solid var(--border-neutral);
  padding-left: 28px;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--silk-ivory);
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 14px;
  color: var(--silk-muted);
}

/* ============================================================
   MENU CATALOG, CARDS & LIST VIEW
   ============================================================ */
.menu-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 16px;
}
.menu-thematic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  margin: 16px 0 24px;
}
@media (max-width: 1024px) {
  .menu-thematic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .menu-thematic-grid { grid-template-columns: 1fr; }
}

.thematic-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  padding: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.thematic-col.active-group {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
}
.thematic-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--silk-ivory);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 8px 10px;
  border-bottom: 1px solid var(--border-neutral);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  user-select: none;
}
.thematic-col-title:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.thematic-col-title.active {
  background: var(--purple);
  color: #fff;
  border-bottom-color: var(--purple);
}
.thematic-col-title .select-all-badge {
  font-size: 9px;
  background: rgba(255,255,255,0.12);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.thematic-tab-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--silk-muted);
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.thematic-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-neutral);
}
.thematic-tab-btn.active {
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  border-color: var(--purple);
}
.thematic-tab-btn.special-tab {
  color: var(--gold);
}
.thematic-tab-btn.special-tab.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.menu-search input {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  color: var(--silk-ivory);
  font-size: 13px;
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
}
.menu-search input:focus {
  border-color: var(--purple);
}

.dietary-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.taste-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  color: var(--silk-muted);
  transition: all 0.2s;
}
.taste-chip:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
}
.taste-chip.active {
  background: var(--bg-elevated);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
}

.view-toggle {
  display: flex;
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.view-toggle button {
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silk-muted);
  background: var(--bg-surface);
  transition: all 0.2s;
}
.view-toggle button.active {
  background: var(--purple);
  color: #fff;
}

.menu-catalog {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 24px;
}
.menu-cat-section {
  scroll-margin-top: 130px;
}
.menu-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-neutral);
  padding-bottom: 12px;
}
.menu-cat-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--silk-ivory);
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silk-muted);
  font-weight: 700;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

.catalog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s;
  box-shadow: var(--shadow-luxe);
  position: relative;
}
.catalog-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
}

.catalog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-surface);
  cursor: pointer;
}
.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.catalog-card:hover .catalog-card-img img {
  transform: scale(1.06);
}
.catalog-card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(18, 20, 26, 0.92);
  border: 1px solid var(--border-neutral);
  color: var(--silk-ivory);
  white-space: nowrap;
  flex-shrink: 0;
}
.tag-chef {
  border-color: var(--gold);
  color: var(--gold);
}
.tag-popular {
  border-color: var(--silk-muted);
  color: #fff;
}
.tag-veg {
  border-color: var(--green);
  color: var(--green);
}
.tag-spicy {
  border-color: #ef4444;
  color: #f87171;
}

.catalog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.catalog-card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--silk-ivory);
  cursor: pointer;
  transition: color 0.2s;
}
.catalog-card-title:hover {
  color: var(--purple-light);
}
.catalog-card-desc {
  font-size: 13px;
  color: var(--silk-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.catalog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-neutral);
  padding-top: 14px;
  gap: 10px;
}
.catalog-card-price {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
}
.catalog-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.catalog-customize-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--purple);
  color: #fff;
  background: var(--purple);
  transition: all 0.2s;
  white-space: nowrap;
}
.catalog-customize-btn:hover {
  background: var(--purple-hover);
  border-color: var(--purple-hover);
}
.catalog-quick-add {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-neutral);
  background: var(--bg-surface);
  color: var(--silk-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
}
.catalog-quick-add:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

/* ============================================================
   CATEGORIZED LIST VIEW (COMPACTED ON MOBILE)
   ============================================================ */
.menu-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 24px;
}
.list-cat-group {
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card-solid);
}
.list-cat-group-header {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-neutral);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-cat-group-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--silk-ivory);
}

.dish-list-item {
  display: grid;
  grid-template-columns: 56px 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-neutral);
  transition: background 0.2s;
}
.dish-list-item:last-child { border-bottom: none; }
.dish-list-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.dish-list-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-neutral);
}
.dish-list-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--silk-ivory);
}
.dish-list-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--silk-dim);
  margin-top: 2px;
}
.dish-list-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.dish-list-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 640px) {
  .dish-list-item {
    grid-template-columns: 44px 1fr auto auto;
    gap: 10px;
    padding: 10px 14px;
  }
  .dish-list-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
  }
  .dish-list-name {
    font-size: 14px;
    line-height: 1.2;
  }
  .dish-list-name small {
    display: none;
  }
  .dish-list-price {
    font-size: 13px;
  }
  .catalog-customize-btn {
    display: none;
  }
}

/* ============================================================
   DIRECT CUSTOMIZATION POPUP MODAL
   ============================================================ */
#quickCustomModal {
  position: fixed;
  inset: 0;
  z-index: 750;
  background: rgba(10, 11, 14, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#quickCustomModal.open {
  opacity: 1;
  visibility: visible;
}
.quick-modal-card {
  width: min(620px, 96vw);
  max-height: 88vh;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-neutral-hover);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxe);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
#quickCustomModal.open .quick-modal-card {
  transform: translateY(0);
}

@media (max-width: 640px) {
  #quickCustomModal {
    padding: 0;
    align-items: flex-end;
  }
  .quick-modal-card {
    width: 100vw;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    transform: translateY(100%);
  }
  #quickCustomModal.open .quick-modal-card {
    transform: translateY(0);
  }
}

.quick-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-neutral);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0, 0, 0, 0.25);
}
.quick-modal-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--silk-ivory);
}
.quick-modal-sub {
  font-size: 13px;
  color: var(--silk-muted);
  margin-top: 4px;
}
.quick-modal-close {
  font-size: 22px;
  color: var(--silk-dim);
  cursor: pointer;
  padding: 4px;
}
.quick-modal-close:hover { color: #fff; }

.quick-modal-body {
  padding: 22px 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silk-ivory);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.modal-section-title span.badge-limit {
  color: var(--silk-dim);
  font-weight: 400;
}

.modal-options-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.modal-opt-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--silk-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.modal-opt-pill:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
}
.modal-opt-pill.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-weight: 700;
}
.modal-opt-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.modal-checkboxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 580px) {
  .modal-checkboxes-grid { grid-template-columns: 1fr; }
}

.modal-check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.modal-check-card:hover { border-color: var(--border-neutral-hover); }
.modal-check-card.checked {
  background: var(--bg-elevated);
  border-color: var(--purple);
}
.modal-check-card input { display: none; }
.modal-check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  flex-shrink: 0;
}
.modal-check-card.checked .modal-check-box {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-weight: 700;
}
.modal-check-thumb {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-neutral);
  flex-shrink: 0;
}
.modal-check-lbl {
  flex: 1;
  font-size: 12px;
  color: var(--silk-ivory);
  line-height: 1.3;
}
.modal-check-price {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.modal-note-input {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--silk-ivory);
  font-size: 12px;
  outline: none;
  width: 100%;
}
.modal-note-input:focus {
  border-color: var(--purple);
}

.quick-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-neutral);
  background: var(--bg-page);
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.modal-qty-ctrl button {
  width: 26px;
  height: 26px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silk-muted);
}
.modal-qty-ctrl button:hover { color: #fff; }
.modal-qty-ctrl span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  min-width: 18px;
  text-align: center;
}

/* ============================================================
   CART DRAWER (Neutral Foundation)
   ============================================================ */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 14, 0.85);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px);
}
#cart-overlay.open {
  opacity: 1;
  visibility: visible;
}
#cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 94vw);
  background: var(--bg-surface);
  z-index: 801;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-neutral);
  box-shadow: -15px 0 50px rgba(0,0,0,0.8);
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-neutral);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}
.cart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-neutral);
}
.cart-row .name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
}
.cart-row .price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
}
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-ctrl button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-neutral);
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silk-muted);
  transition: all 0.2s;
}
.qty-ctrl button:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
}
.cart-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--silk-muted);
  font-size: 14px;
}
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border-neutral);
  background: var(--bg-page);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
}
.cart-total-row span:last-child {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
}

/* Floating Actions */
.float-actions {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 450;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 0.25s ease;
  border: 1px solid var(--border-neutral);
}
.fab:hover { transform: scale(1.08); }
.fab-wa {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.fab-top {
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  color: var(--silk-ivory);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.fab-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-cart {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  color: var(--gold);
  font-size: 16px;
}
.fab-cart .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 90px;
  right: 26px;
  z-index: 600;
  background: var(--bg-card-solid);
  border: 1px solid var(--green);
  color: var(--silk-ivory);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-luxe);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   FORMS & CONCIERGE (Reservations & Catering)
   ============================================================ */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-luxe);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
}
.form-card label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silk-ivory);
  margin-bottom: 8px;
}
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--silk-ivory);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  border-color: var(--purple);
}
.form-card textarea { min-height: 100px; resize: vertical; }

.party-size-picker {
  display: flex;
  gap: 10px;
}
.party-size-picker button {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--silk-muted);
  transition: all 0.2s;
}
.party-size-picker button:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
}
.party-size-picker button.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.seating-zone-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 580px) {
  .seating-zone-picker { grid-template-columns: 1fr; }
}
.seating-zone-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--silk-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.seating-zone-btn:hover { border-color: var(--border-neutral-hover); color: #fff; }
.seating-zone-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.wm-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--silk-muted);
}
.wm-note img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.catering-types {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.catering-types button {
  padding: 9px 18px;
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--silk-muted);
  background: var(--bg-surface);
  transition: all 0.2s;
}
.catering-types button:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
}
.catering-types button.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

/* Reviews & FAQ Accordion */
.review-carousel {
  position: relative;
  margin-top: 32px;
  min-height: 180px;
}
.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.review-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.review-slide .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-slide p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  max-width: 740px;
  margin-bottom: 16px;
  color: var(--paper-text);
}
.review-slide .name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--paper-dim);
  text-transform: uppercase;
}

/* ============================================================
   ADMIN DASHBOARD (Multi-Image, Categories CRUD & Contacts)
   ============================================================ */
.admin-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--bg-page);
}
.admin-gate input {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  color: var(--silk-ivory);
  font-size: 16px;
  width: 300px;
  text-align: center;
  font-family: var(--font-mono);
  outline: none;
}
.admin-gate input:focus {
  border-color: var(--purple);
}

.admin-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg-page);
}
.admin-sidebar {
  width: 270px;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-neutral);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
}
.admin-nav button {
  text-align: left;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--silk-muted);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-nav button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.admin-nav button.active {
  background: var(--purple);
  color: #fff;
  font-weight: 700;
}

.admin-main {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
  max-width: 1240px;
}
.admin-view { display: none; }
.admin-view.active { display: block; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
@media (max-width: 900px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-shell { flex-direction: column; }
  .admin-sidebar { width: 100%; }
}
.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  padding: 22px;
}
.stat-card .n {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--silk-ivory);
  margin-bottom: 4px;
}
.stat-card .l {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silk-dim);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.data-table th {
  background: rgba(0, 0, 0, 0.4);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silk-dim);
  text-align: left;
  border-bottom: 1px solid var(--border-neutral);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-neutral);
  font-size: 13px;
}
.dt-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-neutral);
}
.dt-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 14px;
}
.dt-cat-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silk-muted);
}
.dt-actions { display: flex; gap: 8px; }
.dt-actions button {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-neutral);
  color: var(--silk-muted);
  transition: all 0.2s;
}
.dt-actions button:hover { border-color: #fff; color: #fff; }
.dt-actions button.danger:hover { border-color: #ef4444; color: #ef4444; }

.admin-switches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 680px) {
  .admin-switches-grid { grid-template-columns: 1fr; }
}

.admin-switch-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.admin-switch-card:hover {
  border-color: var(--border-neutral-hover);
  background: var(--bg-card);
}
.admin-switch-card:has(input:checked),
.admin-switch-card.checked {
  background: rgba(139, 92, 246, 0.12);
  border-color: var(--purple);
}
.admin-switch-card input { display: none; }
.admin-switch-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: transparent;
  background: var(--bg-card);
  transition: all 0.2s ease;
}
.admin-switch-card input:checked ~ .admin-switch-box,
.admin-switch-card.checked .admin-switch-box {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* MULTI-IMAGE THUMB LIST */
.img-thumb-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.img-thumb-item {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-neutral);
}
.img-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-thumb-del {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(239, 68, 68, 0.85);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
}

#itemModal, #catModal {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(10, 11, 14, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  padding: 20px;
}
#itemModal.open, #catModal.open { opacity: 1; visibility: visible; }

.modal-card {
  width: min(680px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-neutral-hover);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-luxe);
}
.modal-card.modal-card-lg {
  width: min(960px, 96vw);
}

/* OPTION BUILDER DYNAMIC STYLES */
.opt-builder-wrap {
  margin-top: 24px;
  border-top: 1px solid var(--border-neutral);
  padding-top: 20px;
}
.opt-builder-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.opt-presets-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.opt-preset-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-neutral);
  background: var(--bg-surface);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.2s;
}
.opt-preset-btn:hover {
  background: var(--bg-card);
  border-color: var(--gold);
}
.opt-groups-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.opt-group-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 16px;
  position: relative;
}
.opt-group-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.opt-group-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .opt-group-controls { grid-template-columns: 1fr; }
}
.opt-choices-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.opt-choice-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.2);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
}
.opt-choice-thumb {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--border-neutral);
  flex-shrink: 0;
  background: var(--bg-surface);
}
.opt-choice-upload-btn {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: 1px dashed var(--border-neutral);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--silk-dim);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
.opt-choice-upload-btn:hover {
  border-color: var(--purple);
  color: #fff;
  background: rgba(139, 92, 246, 0.12);
}
.opt-img-remove {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}
.opt-btn-del {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.2s;
}
.opt-btn-del:hover {
  background: rgba(239, 68, 68, 0.15);
}
.modal-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid var(--border-neutral);
  padding-top: 16px;
  position: sticky;
  bottom: -32px;
  background: var(--bg-card-solid);
  z-index: 10;
  padding-bottom: 8px;
}
.img-upload {
  border: 1px dashed var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.25s;
}
.img-upload:hover { border-color: var(--border-neutral-hover); }
.img-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.img-upload img { max-height: 120px; margin: 0 auto 10px; border-radius: 6px; }
.img-upload .hint { font-size: 12px; color: var(--silk-dim); }

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 700px) { .admin-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silk-ivory);
}
.field input, .field textarea, .field select {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--silk-ivory);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--purple);
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.save-msg {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.3s;
}
.save-msg.show { opacity: 1; }

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-topbar h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
}
.admin-topbar .sub {
  font-size: 13px;
  color: var(--silk-muted);
  margin-top: 4px;
}
.toolbar-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.search-wrap { flex: 1; min-width: 240px; }
.search-wrap input, .toolbar-row select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--silk-ivory);
  font-size: 13px;
  outline: none;
}
.search-wrap input:focus, .toolbar-row select:focus {
  border-color: var(--purple);
}

/* ============================================================
   FOOTER (Neutral Surface)
   ============================================================ */
footer {
  margin-top: auto;
  padding: 60px 0 36px;
  border-top: 1px solid var(--border-neutral);
  background: var(--bg-surface);
  flex-shrink: 0;
}
footer::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--border-neutral-hover);
  margin: 0 auto 30px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.footer-links a { color: var(--silk-muted); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silk-dim);
}
.footer-spacer {
  height: 70px;
  flex-shrink: 0;
}

/* Global links & typography */
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   SPECIALS CATEGORY MARQUEE — Infinite Auto-Scroll
   ============================================================ */
.specials-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  padding: 10px 0;
}
.specials-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}
.specials-marquee:hover .specials-marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Rich Specials Category Card */
.special-cat-card {
  flex-shrink: 0;
  width: 310px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.special-cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.special-cat-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.special-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.special-cat-card:hover .special-cat-img-wrap img {
  transform: scale(1.08);
}
.special-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(18, 20, 26, 0.85);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.special-cat-price-pill {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(18, 20, 26, 0.9);
  border: 1px solid var(--border-neutral-hover);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--silk-ivory);
  backdrop-filter: blur(8px);
}
.special-cat-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.special-cat-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--silk-ivory);
  margin-bottom: 6px;
}
.special-cat-desc {
  font-size: 12.5px;
  color: var(--silk-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.special-cat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border-neutral);
}
.special-cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silk-dim);
}
.special-cat-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   ADMIN DOCK & MODERN WORKSPACE
   ============================================================ */
.admin-shell-v2 {
  min-height: 100vh;
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
}
.admin-top-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-neutral);
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-brand .logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-tag-pill {
  background: rgba(181, 148, 86, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Modern Floating Admin Navigation Dock */
.admin-dock-container {
  background: rgba(18, 20, 26, 0.85);
  border-bottom: 1px solid var(--border-neutral);
  padding: 10px 28px;
  position: sticky;
  top: 61px;
  z-index: 90;
  backdrop-filter: blur(16px);
}
.admin-dock-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1240px;
  margin: 0 auto;
}
.admin-dock-nav::-webkit-scrollbar { display: none; }
.admin-dock-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--silk-muted);
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}
.admin-dock-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: var(--border-neutral-hover);
}
.admin-dock-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}
.admin-dock-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(0,0,0,0.3);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  color: inherit;
}

.admin-main-v2 {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px 80px;
  flex: 1;
}

/* ============================================================
   RESTAURANT RESERVATION & CATERING (COZY & FAST-CASUAL)
   ============================================================ */
.cozy-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.cozy-info-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cozy-info-tile .icon {
  font-size: 24px;
}
.cozy-info-tile h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--silk-ivory);
}
.cozy-info-tile p {
  font-size: 13px;
  color: var(--silk-muted);
  line-height: 1.5;
}

/* Option Chips Picker for Tables / Party Size / Catering Packs */
.pill-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill-selector-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--silk-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill-selector-btn:hover {
  border-color: var(--border-neutral-hover);
  color: #fff;
}
.pill-selector-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-weight: 700;
}

/* Catering Pack Checkable Cards */
.catering-pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.catering-pack-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.catering-pack-item:hover {
  border-color: var(--border-neutral-hover);
}
.catering-pack-item.selected {
  border-color: var(--gold);
  background: rgba(181, 148, 86, 0.08);
}
.catering-pack-item h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--silk-ivory);
  margin-bottom: 4px;
}
.catering-pack-item p {
  font-size: 12px;
  color: var(--silk-muted);
  line-height: 1.45;
  margin-bottom: 8px;
}
.catering-pack-item .pack-serves {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 700;
}

/* FOOD CARDS (Showcase Grid — Signatures on Home) */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

.food-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.food-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-neutral-hover);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.food-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-card:hover .food-card-img img {
  transform: scale(1.06);
}
.food-card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}
.tag-pill {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}
.tag-pill.tag-chef {
  background: rgba(18, 20, 26, 0.8);
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.1);
}
.food-card-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(18, 20, 26, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--silk-ivory);
  backdrop-filter: blur(8px);
}
.food-card-body {
  padding: 16px 18px 18px;
}
.food-card-body h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--silk-ivory);
  margin-bottom: 6px;
}
.food-card-body p {
  font-size: 13px;
  color: var(--silk-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.food-card-serves {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silk-dim);
}
.food-card .add-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.food-card .add-btn:hover {
  color: #fff;
}

