/* ============================================================
   HANAN FUSION — MAIN STYLESHEET
   Dark Luxury Theme | Gold & Red Accents
   ============================================================ */

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

/* ═══════════════════════════════════════════════════════════════
   PAGE PRELOADER
   ═══════════════════════════════════════════════════════════════ */
#page-preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #050505;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), visibility 1s ease, transform 1s cubic-bezier(0.4,0,0.2,1), filter 1s ease;
}
#page-preloader.pl-out {
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: scale(1.08); filter: blur(8px);
}
/* Skip preloader on internal navigation (set via sessionStorage) */
html.no-pl #page-preloader { display: none !important; }

/* Ambient radial glow */
.pl-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%);
  animation: pl-pulse 2.4s ease-in-out infinite;
}
@keyframes pl-pulse {
  0%,100% { transform: scale(0.85); opacity: .5; }
  50%      { transform: scale(1.1);  opacity: 1;  }
}

/* Corner ornaments */
.pl-corner {
  position: absolute; width: 44px; height: 44px;
  opacity: 0; animation: pl-corner-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.pl-corner.tl { top:28px; left:28px; border-top:1px solid rgba(212,175,55,.45); border-left:1px solid rgba(212,175,55,.45); transform: translate(-30px, -30px); }
.pl-corner.tr { top:28px; right:28px; border-top:1px solid rgba(212,175,55,.45); border-right:1px solid rgba(212,175,55,.45); transform: translate(30px, -30px); }
.pl-corner.bl { bottom:28px; left:28px; border-bottom:1px solid rgba(212,175,55,.45); border-left:1px solid rgba(212,175,55,.45); transform: translate(-30px, 30px); }
.pl-corner.br { bottom:28px; right:28px; border-bottom:1px solid rgba(212,175,55,.45); border-right:1px solid rgba(212,175,55,.45); transform: translate(30px, 30px); }

@keyframes pl-corner-in { to { opacity: 1; transform: translate(0, 0); } }

/* Spinning arc ring */
.pl-ring {
  position: relative; width: 108px; height: 108px; margin-bottom: 36px;
}
.pl-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pl-ring-track { fill: none; stroke: rgba(212,175,55,0.1); stroke-width: 1.5; }
.pl-ring-arc {
  fill: none; stroke: url(#plGrad); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 271; stroke-dashoffset: 271;
  animation: pl-arc 1.9s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes pl-arc {
  0%   { stroke-dashoffset: 271; opacity: .4; }
  50%  { stroke-dashoffset:  68; opacity:  1; }
  100% { stroke-dashoffset: 271; opacity: .4; }
}

/* Diamond at ring centre */
.pl-diamond {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%,-50%) rotate(45deg);
  border: 1px solid rgba(212,175,55,.55);
  animation: pl-diamond 3s linear infinite;
}
@keyframes pl-diamond { to { transform: translate(-50%,-50%) rotate(405deg); } }

/* Title text */
.pl-title { text-align: center; overflow: visible; }
.pl-name, .pl-sub {
  display: block; transform: translateY(40px); opacity: 0; filter: blur(8px);
  background: linear-gradient(120deg,#b8960c 0%,#f5e070 40%,#D4AF37 60%,#f5e070 80%,#b8960c 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: pl-slideup 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             pl-shine 2.8s linear 1s infinite;
}
.pl-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem,7vw,5.2rem); font-weight: 700; letter-spacing: 0.25em;
  animation-delay: 0.1s, 1.2s;
}
.pl-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem,2vw,1.25rem); font-weight: 600; letter-spacing: 0.55em;
  animation-delay: 0.3s, 1.4s;
}
@keyframes pl-slideup { to { transform: translateY(0); opacity: 1; filter: blur(0px); } }
@keyframes pl-shine   { to { background-position: 220% center; } }

/* Horizontal divider */
.pl-line {
  width: 0; height: 1px; margin: 16px auto;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.7), transparent);
  animation: pl-line 0.6s ease 0.8s forwards;
}
@keyframes pl-line { to { width: 180px; } }

/* Tagline */
.pl-tag {
  font-family: 'Montserrat', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: transparent; animation: pl-tagin 0.6s ease 1.2s forwards;
}
@keyframes pl-tagin { to { color: rgba(212,175,55,0.5); } }

/* Bottom progress bar */
.pl-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: rgba(212,175,55,0.07); }
.pl-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, transparent, #D4AF37, #f5e070, #D4AF37);
  animation: pl-progress 2.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes pl-progress {
  0%  { width: 0%;  } 60% { width: 72%; }
  88% { width: 90%; } 100%{ width: 100%; }
}
@keyframes pl-fadein { to { opacity: 1; } }


/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --black:      #0F0F0F;
  --black-soft: #151515;
  --black-card: #1A1A1A;
  --black-mid:  #222222;
  --black-light:#2A2A2A;
  --gold:       #D4AF37;
  --gold-light: #F0D060;
  --gold-dark:  #B8961F;
  --red:        #C0392B;
  --red-light:  #E74C3C;
  --white:      #FFFFFF;
  --white-soft: #F5F0E8;
  --gray:       #888888;
  --gray-light: #BBBBBB;
  --glass-bg:   rgba(255,255,255,0.04);
  --glass-border: rgba(212,175,55,0.15);
  --shadow-gold: 0 0 40px rgba(212,175,55,0.15);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.6);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', serif;
  --font-body:    'Poppins', sans-serif;
  --font-accent:  'Montserrat', sans-serif;
  --nav-h:    80px;
  --banner-h: 42px;
}

/* Premium Ivory/Champagne Theme Overrides */
body.light-mode {
  --black:      #FDFBF7; /* Soft Ivory Background */
  --black-soft: #F4EFE6; /* Warm Beige for sections */
  --black-card: #FCF9F2; /* Cream for cards */
  --black-mid:  #EBE3D5; /* Subtle dividers */
  --black-light:#DED5C5; /* Deeper beige */
  --white:      #2A241F; /* Dark Espresso (instead of harsh black text) */
  --white-soft: #4A4138; /* Medium Espresso */
  --gray:       #82786D; /* Warm Gray */
  --gray-light: #5A4F42; /* Darker Warm Gray */
  --glass-bg:   rgba(255,255,255,0.65); /* Frosted white glass */
  --glass-border: rgba(212,175,55,0.35); /* Stronger gold border */
  --shadow-lg:   0 20px 60px rgba(42,36,31,0.08);
  --shadow-card: 0 8px 32px rgba(42,36,31,0.05);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }
::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p  { color: var(--gray-light); font-size: 1rem; font-weight: 300; }

.gold-text  { color: var(--gold); }
.red-text   { color: var(--red-light); }
.white-text { color: var(--white); }

/* ─── Section Layout ────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title { margin-bottom: 20px; }
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle { max-width: 600px; margin: 0 auto 50px; text-align: center; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
}
.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(231,76,60,0.5);
}
.btn-ghost {
  color: var(--white-soft);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg { padding: 18px 44px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

/* ─── Offer Banner ───────────────────────────────────────────── */
.offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--banner-h);
  background: linear-gradient(90deg, #1c1500 0%, #2a1e00 40%, #2a1e00 60%, #1c1500 100%);
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #e8dfc0;
  white-space: nowrap;
  overflow: hidden;
}
.offer-banner strong { color: var(--gold); font-weight: 700; }
.offer-banner a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.offer-banner a:hover { opacity: 0.75; }
.offer-banner-icon { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.offer-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--gray-light);
  font-size: 0.85rem;
  line-height: 1;
  transition: color 0.2s;
}
.offer-close:hover { color: var(--white); }
.offer-banner.hidden {
  display: none;
}
body.banner-hidden .offer-banner { display: none; }
body.banner-hidden .navbar  { top: 0 !important; }

/* ─── Offer Icon Box (Daily Offers section) ──────────────────── */
.offer-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: transform var(--transition);
}
.glass-card:hover .offer-icon-box { transform: scale(1.08); }

/* ─── Page Hero (sub-pages) ───────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(var(--nav-h) + var(--banner-h)) !important;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.35);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.4) 60%, rgba(15,15,15,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 50px 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { opacity: 0.4; }

/* ─── Navigation ─────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: top 0.3s ease, background 0.4s ease, box-shadow 0.4s ease;
  padding: 0 24px;
}
.navbar.scrolled {
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 1;
  min-width: 0;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-logo-tag {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 16px; right: 16px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cart-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--gold);
  transition: all var(--transition);
  font-size: 1.1rem;
}
.nav-cart-btn:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
}
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px; cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Glass Card ─────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ─── Gold Divider ───────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider-icon { color: var(--gold); font-size: 1rem; }

/* ─── Tag / Badge ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-gold  { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.badge-red   { background: rgba(192,57,43,0.15); color: var(--red-light); border: 1px solid rgba(192,57,43,0.3); }
.badge-green { background: rgba(39,174,96,0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.badge-gray  { background: rgba(136,136,136,0.15); color: var(--gray-light); border: 1px solid rgba(136,136,136,0.3); }

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.35);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.4) 60%, rgba(15,15,15,0.6) 100%);
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--nav-h) + var(--banner-h) + 40px);
  padding-bottom: 120px; /* Space for the scroll indicator */
}
.hero-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s ease forwards;
}
.hero-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s ease forwards;
}
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-title .line2 { display: block; }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.9;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s ease forwards;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s ease forwards;
}
.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeInUp 0.8s 1.1s ease forwards;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.4;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounceY 2s ease infinite;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ─── Featured Dishes Carousel ───────────────────────────────── */
.dishes-carousel { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.dish-card {
  flex: 0 0 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  cursor: pointer;
}
.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.dish-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.dish-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.08); }
.dish-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.9) 0%, transparent 60%);
}
.dish-tag {
  position: absolute;
  top: 14px; right: 14px;
}
.dish-body { padding: 22px; }
.dish-name { font-size: 1.2rem; margin-bottom: 8px; }
.dish-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.dish-add-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}
.dish-add-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}
.carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}
.carousel-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--black-light);
  transition: all var(--transition);
  cursor: pointer;
}
.carousel-dot.active { width: 24px; background: var(--gold); }

/* ─── Chef Special ───────────────────────────────────────────── */
.chef-special { background: var(--black-soft); }
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.chef-img-wrap {
  position: relative;
}
.chef-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.chef-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.chef-img-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  background: rgba(15,15,15,0.85);
}
.chef-img-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
}
.chef-img-badge .label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
}
.chef-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  opacity: 0.3;
}
.chef-content .section-label { justify-content: flex-start; }
.chef-content .section-label::before { display: none; }
.chef-signature {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-dark);
  opacity: 0.6;
  margin-top: 24px;
}
.chef-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.chef-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.chef-feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(212,175,55,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.chef-feature-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.chef-feature-desc  { font-size: 0.75rem; color: var(--gray); }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-text { font-size: 0.9rem; line-height: 1.8; color: var(--gray-light); margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.t-name { font-size: 0.9rem; font-weight: 600; }
.t-title { font-size: 0.75rem; color: var(--gray); }

/* ─── Gallery Preview ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(212,175,55,0.0);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(212,175,55,0.15); }
.gallery-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-icon { opacity: 1; transform: scale(1); }

/* ─── Menu Page ──────────────────────────────────────────────── */
.menu-hero {
  height: 420px;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=80');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.menu-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,15,15,0.75);
}
.menu-hero-content { position: relative; z-index: 2; text-align: center; }
.menu-controls {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
}
.menu-search-wrap {
  position: relative;
  max-width: 420px;
}
.menu-search {
  width: 100%;
  padding: 12px 48px 12px 18px;
  border-radius: var(--radius);
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.menu-search:focus { border-color: var(--gold); }
.menu-search-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray);
}
.menu-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.menu-item-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.menu-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.menu-item-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-item-card:hover .menu-item-img img { transform: scale(1.08); }
.menu-item-labels {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
}
.spice-indicator {
  position: absolute;
  bottom: 12px; right: 12px;
  display: flex;
  gap: 3px;
}
.spice-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-light);
  opacity: 0.3;
}
.spice-dot.active { opacity: 1; }
.menu-item-body { padding: 20px; }
.menu-item-name { font-size: 1.05rem; margin-bottom: 6px; }
.menu-item-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.6; margin-bottom: 10px; }
.menu-item-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.menu-item-meta span { display: flex; align-items: center; gap: 5px; }
.menu-item-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-item-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.add-to-cart-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition);
}
.add-to-cart-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── Cart Sidebar ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: -440px;
  width: 440px; height: 100%;
  background: var(--black-card);
  border-left: 1px solid var(--glass-border);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cart-close:hover { color: var(--red-light); border-color: var(--red-light); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--gold); }
.cart-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--black-light);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--black); }
.qty-num { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--glass-border);
  background: var(--black);
}
.cart-total-row {
  display: flex; justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem; color: var(--gray-light);
}
.cart-total-row.grand {
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}
.cart-total-row.grand .amount { color: var(--gold); }
.cart-checkout-btn { width: 100%; margin-top: 16px; }
.cart-empty {
  text-align: center; padding: 60px 20px;
}
.cart-empty-icon { font-size: 4rem; color: var(--gray); margin-bottom: 16px; }

/* ─── Reservation Page ───────────────────────────────────────── */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.reservation-form {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  background: var(--black-mid);
  border: 1px solid var(--glass-border);
  font-size: 0.82rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot:hover, .time-slot.selected {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.time-slot.unavailable {
  opacity: 0.4; cursor: not-allowed;
  text-decoration: line-through;
}
.reservation-info { display: flex; flex-direction: column; gap: 24px; }
.res-info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--black-card);
  border: 1px solid var(--glass-border);
}
.res-info-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 14px; }
.res-info-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.res-info-text { font-size: 0.85rem; color: var(--gray-light); }

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  display: flex; align-items: flex-start; gap: 18px;
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-title { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-card-val  { font-size: 0.95rem; color: var(--white-soft); }
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 450px;
  border: 1px solid var(--glass-border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(0.9); }

/* ─── About Page ─────────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-collage {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--black);
}
.about-img-secondary img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 60px;
}
.award-card {
  text-align: center; padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.award-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.award-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; }
.award-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.award-year { font-size: 0.8rem; color: var(--gray); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.team-img {
  height: 260px; overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-body { padding: 20px; }
.team-name  { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role  { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-social {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--gray-light);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  transition: all var(--transition);
}
.team-social:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ─── Gallery Masonry ────────────────────────────────────────── */
.masonry-grid {
  columns: 4;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item-overlay {
  position: absolute; inset: 0;
  background: rgba(212,175,55,0.0);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.masonry-item:hover .masonry-item-overlay { background: rgba(0,0,0,0.4); }

/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: fixed; top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--red); }

/* ─── Checkout / Order ───────────────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.checkout-steps {
  display: flex; gap: 0;
  margin-bottom: 40px;
}
.step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  padding-bottom: 20px;
}
.step::after {
  content: '';
  position: absolute;
  top: 18px; left: 50%; right: -50%;
  height: 2px;
  background: var(--black-light);
}
.step:last-child::after { display: none; }
.step.active::after, .step.done::after { background: var(--gold); }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--black-light);
  border: 2px solid var(--black-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 8px;
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.step.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step.done .step-num { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--black); }
.step-label { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.step.active .step-label { color: var(--gold); }
.order-summary {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 5vw, 32px);
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.promo-input-wrap { display: flex; gap: 10px; margin-top: 14px; }
.promo-input {
  flex: 1; padding: 12px 16px;
  background: var(--black-mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white); font-size: 0.9rem;
}
.promo-input:focus { border-color: var(--gold); }

/* ─── Admin Dashboard ────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--black-card);
  border-right: 1px solid var(--glass-border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  overflow-y: auto;
}
.admin-logo { padding: 28px 24px; border-bottom: 1px solid var(--glass-border); }
.admin-nav { padding: 20px 12px; flex: 1; }
.admin-nav-section { margin-bottom: 28px; }
.admin-nav-title {
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); padding: 0 12px; margin-bottom: 8px;
}
.admin-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--gray-light);
  transition: all var(--transition);
  cursor: pointer;
  margin-bottom: 2px;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
}
.admin-nav-link .icon { width: 20px; text-align: center; }
.admin-nav-badge {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--red);
  color: white;
  font-size: 0.65rem; font-weight: 700;
}
.admin-main { margin-left: 260px; flex: 1; background: var(--black-soft); min-height: 100vh; }
.admin-topbar {
  height: 70px; background: var(--black-card);
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  position: sticky; top: 0; z-index: 100;
}
.admin-content { padding: 32px; }
.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.stat-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.stat-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.stat-trend { font-size: 0.78rem; font-weight: 600; }
.stat-trend.up { color: #2ecc71; }
.stat-trend.down { color: var(--red-light); }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--gray); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.admin-table th {
  text-align: left; padding: 12px 16px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); border-bottom: 1px solid var(--glass-border);
}
.admin-table td {
  padding: 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--gray-light);
}
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.status-pill {
  display: inline-block;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
}
.status-pending  { background: rgba(212,175,55,0.15); color: var(--gold); }
.status-confirmed{ background: rgba(39,174,96,0.15); color: #2ecc71; }
.status-delivered{ background: rgba(52,152,219,0.15); color: #3498db; }
.status-cancelled{ background: rgba(192,57,43,0.15); color: var(--red-light); }
.chart-wrap {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.mini-chart { height: 200px; display: flex; align-items: flex-end; gap: 8px; padding: 0 8px; }
.chart-bar {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
  min-width: 20px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.chart-bar::after {
  content: attr(data-label);
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 0.65rem; color: var(--gray); white-space: nowrap;
}
.chart-bar:hover { background: linear-gradient(to top, var(--red), var(--red-light)); }

/* ─── Timing Section ─────────────────────────────────────────── */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.timing-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all var(--transition);
}
.timing-card:hover { border-color: var(--gold); }
.timing-day { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.timing-hours { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 8px; }
.timing-status { font-size: 0.78rem; color: #2ecc71; }
.timing-status.closed { color: var(--red-light); }

/* ─── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(192,57,43,0.08) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.newsletter-wrap {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter-form {
  display: flex; gap: 12px; margin-top: 32px;
}
.newsletter-input {
  flex: 1; padding: 16px 22px;
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white); font-size: 0.95rem;
}
.newsletter-input:focus { border-color: var(--gold); outline: none; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.9; margin: 16px 0 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h4 {
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--gray-light);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.footer-bottom .gold-text { color: var(--gold); }

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--black));
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 12px;
  font-size: 0.8rem; color: var(--gray);
}
.breadcrumb a { color: var(--gold); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: var(--gray); }

/* ─── WhatsApp & Floating Buttons ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--transition);
  animation: pulse-green 2s ease infinite;
}
.offer-banner {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 1000;
}
.offer-banner a { color: var(--black); text-decoration: underline; }
.offer-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 1rem; cursor: pointer; opacity: 0.7; padding: 4px;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
@keyframes floatUp {
  0%   { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(-100vh); opacity: 0; }
}
@keyframes sparkle {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Shimmer Loading ────────────────────────────────────────── */
.shimmer {
  background: linear-gradient(90deg, var(--black-card) 25%, var(--black-mid) 50%, var(--black-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ─── Notification Toast ─────────────────────────────────────── */
.toast-container { position: fixed; top: calc(var(--nav-h) + 16px); right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  border-radius: var(--radius);
  background: var(--black-card);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
  min-width: 300px;
  animation: slideInRight 0.3s ease;
}
.toast.success { border-color: #2ecc71; }
.toast.error   { border-color: var(--red-light); }
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}
.toast-icon { font-size: 1.2rem; }
.toast-msg  { font-size: 0.88rem; color: var(--gray-light); }

/* ─── Daily Offer Banner ─────────────────────────────────────── */
.offer-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 10px 24px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1px;
  position: relative;
}
.offer-banner a { color: var(--black); text-decoration: underline; }
.offer-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 1rem; cursor: pointer; opacity: 0.7;
}

/* ─── Dark Mode Toggle ───────────────────────────────────────── */
.mode-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  cursor: pointer;
}
.mode-toggle:hover { background: rgba(212,175,55,0.1); transform: scale(1.1); }

.mode-toggle.spin-anim i {
  animation: modeSpin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modeSpin {
  0% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(0.2) rotate(180deg); opacity: 0; }
  100% { transform: scale(1) rotate(360deg); opacity: 1; }
}

/* ─── Loyalty Rewards ────────────────────────────────────────── */
.loyalty-section {
  background: linear-gradient(135deg, var(--black-soft) 0%, rgba(212,175,55,0.05) 100%);
}
.loyalty-card {
  background: linear-gradient(135deg, var(--black-card), var(--black-mid));
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.loyalty-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
}
.points-display {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

/* Custom Grid Classes */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.loyalty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.rewards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .chef-grid, .about-story-grid { grid-template-columns: 1fr; gap: 50px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .awards-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-cards { grid-template-columns: repeat(2,1fr); }
  .masonry-grid { columns: 3; }
  .reservation-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { padding-bottom: 120px; }
  /* ── Navbar mobile fix ── */
  .navbar { padding: 0 16px; }
  .nav-logo { gap: 2px; }
  .nav-logo-name { font-size: 1.15rem; letter-spacing: 0.5px; white-space: nowrap; }
  .nav-logo-tag { display: none; } /* Hidden on mobile - frees critical space */
  .nav-actions { gap: 6px; }
  .nav-actions .mode-toggle { display: none; } /* Non-essential on mobile */
  .nav-cart-btn { width: 36px; height: 36px; font-size: 0.95rem; }
  .nav-links { display: none; }
  .nav-actions .btn-gold { display: none; }
  .nav-hamburger { display: flex; }
  /* ── Hero mobile fix ── */
  .hero { align-items: flex-start; }
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
el::before { width: 20px; }
  /* ── Offer banner mobile fix ── */
  .offer-banner {
    height: auto;
    min-height: var(--banner-h);
    white-space: normal;
    padding: 8px 40px 8px 16px;
    font-size: 0.72rem;
    text-align: left;
    flex-wrap: wrap;
    gap: 4px;
    line-height: 1.4;
  }
  .offer-cta { display: none !important; } /* Hide | Order Now on mobile cleanly */
  .offer-banner strong { color: inherit !important; } /* Stop gold-on-gold text invisibility */
  /* ── Hero label ── */
  .hero-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    letter-spacing: 1.5px;
    font-size: 0.6rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-top: 36px;
  }
  .hero-stat-value { font-size: 2rem; }
  .hero-stat-label { font-size: 0.65rem; letter-spacing: 1px; }
  .hero-scroll { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .timing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 2; }
  .reservation-form { padding: 28px 20px; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .stats-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .chef-img-badge { right: 10px; }
  .loyalty-grid { grid-template-columns: 1fr; gap: 40px; }
  .offers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-btns { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .masonry-grid { columns: 1; }
  .cart-sidebar { width: 100%; right: -100%; }
  .team-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px 12px; }
  .rewards-grid { grid-template-columns: 1fr; }
  .chef-features { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .menu-filters { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 0.75rem; }
  .payment-grid { grid-template-columns: 1fr; }
}

/* ─── Mobile Nav ─────────────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 1500;
  display: flex; flex-direction: column;
  padding: 80px 30px 60px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 18px 0;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white-soft);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ─── Confetti / Booking Success ─────────────────────────────── */
.booking-success {
  text-align: center; padding: 60px 40px;
  display: none;
}
.booking-success.show { display: block; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(46,204,113,0.15); border: 2px solid #2ecc71;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #2ecc71;
  margin: 0 auto 24px;
  animation: bounceIn 0.6s ease;
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ─── Promo Badge ────────────────────────────────────────────── */
.promo-ribbon {
  position: absolute; top: 14px; left: -6px;
  background: var(--red);
  color: white; font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 0 4px 4px 0;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.promo-ribbon::before {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  border: 3px solid transparent;
  border-top-color: var(--red-light);
  border-right-color: var(--red-light);
}

/* ─── Progress Bar ───────────────────────────────────────────── */
.reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--gold);
  z-index: 2000; transition: width 0.1s ease;
}

/* ─── Cursor Effect ──────────────────────────────────────────── */
.cursor-dot, .cursor-circle {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transition-timing-function: ease-out;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-circle {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(212,175,55,0.4);
  transform: translate(-50%, -50%);
  transition: all 0.15s;
}
@media (hover: none) { .cursor-dot, .cursor-circle { display: none; } }
