/* ============================================
   RUSSELL HALL CAFÉ — PREMIUM STYLESHEET
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1209;
  --bg-card: rgba(26, 18, 9, 0.88);
  --bg-glass: rgba(26, 18, 9, 0.55);
  --gold: #e8a825;
  --gold-light: #f4c54a;
  --gold-dark: #c9943a;
  --pink-accent: #e84393;
  --cream: #f5ead6;
  --orange: #f07021;
  --chalk-white: #f0ece4;
  --border-gold: rgba(201, 148, 58, 0.3);
  --border-gold-strong: rgba(201, 148, 58, 0.6);
  --success-green: #27ae60;
  --error-red: #e74c3c;
  --shadow-gold: 0 8px 32px rgba(232, 168, 37, 0.15);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(232, 168, 37, 0.2);
  --nav-height: 72px;
  --bottom-nav-height: 68px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--bg-primary);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, .logo-text { font-family: 'Playfair Display', serif; }
.section-title {
  font-family: 'Satisfy', cursive;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-shadow: 0 2px 20px rgba(232, 168, 37, 0.2);
}
.price { font-family: 'Oswald', sans-serif; color: var(--gold); font-weight: 500; }
.original-price {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 0.85em;
  margin-right: 0.4rem;
  font-weight: normal;
  color: var(--cream);
}


/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem; border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.btn:active::after { opacity: 1; transition: opacity 0s; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d0d; font-weight: 600;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 168, 37, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold); color: var(--gold);
}
.btn-outline:hover {
  background: rgba(232, 168, 37, 0.1);
  box-shadow: 0 0 20px rgba(232, 168, 37, 0.15);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink-accent), #c0392b);
  color: #fff;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--cream); z-index: 2;
}
.rh-logo {
  height: 44px; width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.rh-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 5px rgba(232, 168, 37, 0.6));
}
.logo-text { font-size: 1.05rem; color: var(--gold); letter-spacing: 0.02em; }
.nav-links {
  display: flex; align-items: center; gap: 1.5rem; list-style: none;
}
.nav-links a {
  color: var(--chalk-white); text-decoration: none; font-size: 0.88rem;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; z-index: 2; }
.cart-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(232, 168, 37, 0.3);
}
.cart-btn:hover { transform: scale(1.08); }
.cart-btn.bounce { animation: cartBounce 0.5s ease; }
@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(0.95); }
}
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--pink-accent); color: #fff;
  font-size: 0.7rem; font-family: 'Oswald', sans-serif; font-weight: 600;
  min-width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 8px rgba(232, 67, 147, 0.4);
}
.hamburger {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 1.6rem; cursor: pointer;
  z-index: 2;
}

/* --- HERO --- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}
#particles-canvas {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: kenBurns 16s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.4) 0%,
    rgba(13, 13, 13, 0.7) 50%,
    var(--bg-primary) 100%
  );
}
.hero-content {
  position: relative; z-index: 3; max-width: 820px;
}
.floating-logo {
  width: 100px; height: 100px; margin: 0 auto 2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 37, 0.15), transparent 70%);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 2rem; color: var(--gold);
  animation: floatLogo 6s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(232, 168, 37, 0.2), inset 0 0 30px rgba(232, 168, 37, 0.05);
  cursor: default;
  will-change: transform;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(2deg); }
  50% { transform: translateY(-6px) rotate(0deg); }
  75% { transform: translateY(-14px) rotate(-2deg); }
}
.hero-tags {
  font-family: 'Oswald', sans-serif; color: var(--gold);
  letter-spacing: 0.2em; font-size: 0.8rem; margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 5rem); color: var(--gold);
  text-shadow: 0 0 60px rgba(240, 112, 33, 0.25);
  margin-bottom: 0.5rem; line-height: 1.1;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: var(--cream);
  margin-bottom: 2.5rem; font-style: italic; opacity: 0.9;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.scroll-chevron {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.4rem;
  animation: bounceDown 2.5s ease-in-out infinite; z-index: 3;
  opacity: 0.7; text-decoration: none;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}

/* --- SECTIONS --- */
section {
  padding: 6rem 1.5rem; max-width: 1400px; margin: 0 auto;
  position: relative;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p {
  color: var(--chalk-white); opacity: 0.75;
  max-width: 600px; margin: 0.75rem auto 0; font-size: 1.05rem;
}

/* --- MENU SECTION --- */
.menu-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-gold);
}
.menu-tab {
  padding: 1rem 2.5rem; background: none; border: none;
  color: var(--chalk-white); font-family: 'Oswald', sans-serif;
  font-size: 1rem; letter-spacing: 0.08em; cursor: pointer;
  position: relative; text-transform: uppercase;
  transition: color var(--transition);
}
.menu-tab.active { color: var(--gold); }
.menu-tab.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--gold);
  border-radius: 2px 2px 0 0;
}

/* Category slider */
.category-slider {
  display: flex; gap: 0.75rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: none;
  margin-bottom: 2rem;
}
.category-slider::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem; border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--chalk-white); font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.04em; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cat-chip:hover {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(232, 168, 37, 0.15);
}
.cat-chip.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d0d; border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(232, 168, 37, 0.35);
  font-weight: 600;
}

/* Featured product */
.featured-product {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin-bottom: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s, box-shadow 0.5s;
}
.featured-product:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(232, 168, 37, 0.2);
}
.featured-product::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 168, 37, 0.12),
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: none;
}
.featured-product:hover::after {
  left: 150%;
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 768px) {
  .featured-product { grid-template-columns: 1fr 1fr; }
}
.featured-product-img {
  width: 100%; height: 300px; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s;
}
.featured-product:hover .featured-product-img {
  transform: scale(1.06) rotate(0.5deg);
  filter: brightness(1.05) contrast(1.02);
}
@media (min-width: 768px) {
  .featured-product-img { height: 100%; min-height: 350px; }
}
.featured-product-info {
  padding: 2rem; display: flex; flex-direction: column; justify-content: center;
}
.featured-badge {
  font-family: 'Oswald', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink-accent); margin-bottom: 0.5rem;
}
.featured-product-info h3 {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--gold); margin-bottom: 0.5rem;
}
.featured-product-info p {
  opacity: 0.8; margin-bottom: 1.5rem; line-height: 1.7;
}
.featured-price {
  font-family: 'Oswald', sans-serif; font-size: 1.6rem;
  color: var(--gold); margin-bottom: 1rem;
}

/* ===== Navbar Search Bar Styling ===== */
.nav-search-container {
  flex: 1;
  max-width: 480px;
  margin: 0 1.5rem;
  z-index: 2;
}
.nav-search-container .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.7);
  border: 2px solid var(--border-gold-strong);
  border-radius: 50px;
  padding: 0.15rem 0.6rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(232, 168, 37, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav-search-container .search-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(232, 168, 37, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
  background: rgba(13, 13, 13, 0.9);
  transform: translateY(-1px);
}
.nav-search-container .search-icon {
  font-size: 1.15rem;
  margin-left: 0.8rem;
  color: var(--gold);
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 0 3px rgba(232, 168, 37, 0.3));
}
.nav-search-container #menu-search {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.65rem 0.8rem;
  font-size: 0.95rem;
  font-family: 'Lora', Georgia, serif;
  color: #fff;
  letter-spacing: 0.01em;
}
.nav-search-container #menu-search::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  font-size: 0.9rem;
}
.nav-search-container .search-clear-btn {
  background: transparent;
  border: none;
  outline: none;
  color: var(--gold);
  font-size: 1.1rem;
  padding: 0.35rem;
  margin-right: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.nav-search-container .search-clear-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.nav-search-container .search-clear-btn.hidden {
  display: none !important;
}
/* Mobile: hide navbar search, keep full-width below nav */
@media (max-width: 900px) {
  .nav-search-container {
    display: none;
  }
}
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* Browse chalkboard */
.menu-chalkboard {
  width: 100%;
  margin: 0 auto;
}
.menu-chalkboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .menu-chalkboard-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 0.5rem 1rem 1.5rem;
    margin: 0 -1rem;
    -webkit-overflow-scrolling: touch;
  }
  .menu-chalkboard-grid::-webkit-scrollbar {
    height: 6px;
  }
  .menu-chalkboard-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
  }
  .menu-chalkboard-grid::-webkit-scrollbar-thumb {
    background: rgba(201, 148, 58, 0.4);
    border-radius: 3px;
  }
  .chalk-category {
    flex: 0 0 88%;
    scroll-snap-align: center;
    box-sizing: border-box;
  }
}
.chalk-category {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius); padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(6px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.chalk-category:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.chalk-category::before {
  content: ''; position: absolute; inset: 6px;
  border: 1px dashed rgba(201, 148, 58, 0.15);
  border-radius: calc(var(--radius) - 4px); pointer-events: none;
}
.chalk-cat-title {
  font-family: 'Satisfy', cursive;
  font-size: 1.75rem; margin-bottom: 0.25rem;
}
.chalk-cat-title.breakfast { color: var(--pink-accent); }
.chalk-cat-title.toasties { color: var(--orange); }
.chalk-cat-title.sandwiches { color: #6eb5ff; }
.chalk-cat-title.burgers { color: var(--gold); }
.chalk-cat-title.cocktails { color: var(--pink-accent); }
.chalk-cat-title.drinks { color: #7dcea0; }
.chalk-subtitle {
  font-size: 0.8rem; opacity: 0.65; margin-bottom: 1rem; font-style: italic;
}
.menu-item-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 1rem;
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-info h4 {
  font-family: 'Oswald', sans-serif; font-size: 0.95rem;
  color: var(--chalk-white);
}
.menu-item-info p { font-size: 0.8rem; opacity: 0.7; margin-top: 0.15rem; }
.veg-badge {
  color: #7dcea0; font-size: 0.75rem; margin-left: 0.3rem;
}
.menu-note {
  color: var(--gold); font-size: 0.85rem; margin-top: 1rem; font-style: italic;
}

/* Order cards */
.order-category { margin-bottom: 3rem; }
.order-cat-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-gold);
}
.order-cat-header span { font-size: 1.6rem; }
.order-cat-header h3 {
  font-family: 'Satisfy', cursive; font-size: 2rem; color: var(--gold);
}
.order-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 768px) { .order-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .order-grid { grid-template-columns: repeat(4, 1fr); } }

.order-card, .menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s, border-color 0.4s;
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.order-card.highlight-large, .menu-item-card.highlight-large {
  grid-column: span 2;
  grid-row: span 2;
}
.order-card:hover, .menu-item-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(232, 168, 37, 0.2);
  border-color: var(--gold);
}

.order-card-img-wrap, .menu-item-card-img-wrap {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-primary);
  z-index: 1;
}
/* Vignette Overlay for Menu Cards */
.order-card-img-wrap::after, .menu-item-card-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 40%, rgba(13, 13, 13, 0.8) 100%);
  opacity: 0.9;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.order-card:hover .order-card-img-wrap::after, .menu-item-card:hover .menu-item-card-img-wrap::after {
  opacity: 0.6;
}

/* Shimmer Light Sweep Effect */
.order-card-img-wrap::before, .menu-item-card-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
  pointer-events: none;
}
.order-card:hover .order-card-img-wrap::before, .menu-item-card:hover .menu-item-card-img-wrap::before {
  animation: cardShine 0.75s ease-in-out;
}
@keyframes cardShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.order-card-img, .menu-item-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s;
}
.order-card:hover .order-card-img, .menu-item-card:hover .menu-item-card-img {
  transform: scale(1.1) rotate(1.5deg);
  filter: brightness(1.1);
}

.order-card-fav {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(6px);
  border: none; color: #fff; font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  z-index: 5;
}
.order-card-fav:hover, .order-card-fav.active {
  background: var(--pink-accent);
  transform: scale(1.15);
}

.order-card-body, .menu-item-card-body {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(13,13,13,0.98) 0%, rgba(13,13,13,0.85) 60%, transparent 100%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  transform: translateY(calc(100% - 4.8rem));
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.order-card:hover .order-card-body, .menu-item-card:hover .menu-item-card-body {
  transform: translateY(0);
}

.order-card-body h4, .menu-item-name {
  font-family: 'Oswald', sans-serif; font-size: 1.05rem;
  margin-bottom: 0.3rem; color: var(--chalk-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.order-card-body p, .menu-item-desc {
  font-size: 0.8rem; color: var(--cream); opacity: 0.8;
  line-height: 1.4; margin-bottom: 0.8rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.order-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.btn-add {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d0d; border: none;
  padding: 0.45rem 1rem; border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif; font-size: 0.82rem;
  font-weight: 600; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.03em;
}
.btn-add:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(232, 168, 37, 0.3);
}
.btn-add.pulse { animation: addPulse 0.5s ease; }
@keyframes addPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 168, 37, 0.5); }
  100% { box-shadow: 0 0 0 20px rgba(232, 168, 37, 0); }
}
.qty-stepper { display: flex; align-items: center; gap: 0.4rem; }
.qty-stepper button {
  width: 30px; height: 30px; border-radius: 6px;
  border: 1px solid var(--gold); background: transparent;
  color: var(--gold); cursor: pointer; font-size: 1rem;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.qty-stepper button:hover {
  background: var(--gold); color: #0d0d0d;
}
.qty-stepper span {
  font-family: 'Oswald', sans-serif; min-width: 1.8rem;
  text-align: center; font-size: 0.95rem;
}
.btn-customise {
  background: transparent; border: 1px solid var(--border-gold-strong);
  color: var(--gold); font-size: 0.75rem; padding: 0.35rem 0.6rem;
  border-radius: 6px; cursor: pointer; margin-bottom: 0.5rem; width: 100%;
  transition: all 0.2s; font-family: 'Oswald', sans-serif;
}
.btn-customise:hover {
  background: rgba(232, 168, 37, 0.1);
  border-color: var(--gold);
}

/* Fly-to-cart clone */
.fly-clone {
  position: fixed; z-index: 9999;
  border-radius: 50%; object-fit: cover;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(232, 168, 37, 0.5);
}

/* --- CART SIDEBAR --- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6);
  z-index: 2000; opacity: 0; visibility: hidden;
  transition: opacity 0.35s; backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--bg-secondary);
  border-left: 2px solid var(--gold);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-gold);
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(26, 18, 9, 0.9);
}
.cart-header h2 {
  font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.3rem;
}
.cart-close {
  background: none; border: none; color: var(--cream);
  font-size: 1.6rem; cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.cart-close:hover { color: var(--gold); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty {
  text-align: center; padding: 3rem 1rem; opacity: 0.6; font-size: 1rem;
}
.cart-line {
  display: flex; gap: 0.75rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-line img {
  width: 56px; height: 56px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border-gold);
}
.cart-line-info { flex: 1; }
.cart-line-info h4 {
  font-size: 0.9rem; font-family: 'Oswald', sans-serif; color: var(--chalk-white);
}
.cart-line-info .customs {
  font-size: 0.73rem; color: var(--gold); opacity: 0.85; margin-top: 0.15rem;
}
.cart-line-actions {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem;
}
.cart-remove {
  background: none; border: none; color: var(--pink-accent);
  cursor: pointer; font-size: 0.78rem; transition: opacity 0.2s;
  font-family: 'Oswald', sans-serif;
}
.cart-remove:hover { opacity: 0.7; }
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-gold);
  background: rgba(26, 18, 9, 0.95);
}
.cart-footer .row {
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem; font-size: 0.95rem;
}
.order-type-select {
  display: flex; gap: 0.5rem; margin: 0.75rem 0; flex-wrap: wrap;
}
.order-type-select label {
  flex: 1; min-width: 80px; text-align: center; padding: 0.5rem;
  border: 1px solid var(--border-gold); border-radius: var(--radius-sm);
  cursor: pointer; font-size: 0.78rem; font-family: 'Oswald', sans-serif;
  transition: all var(--transition);
}
.order-type-select input { display: none; }
.order-type-select label:has(input:checked) {
  background: var(--gold); color: #0d0d0d; border-color: var(--gold);
  font-weight: 600;
}

/* --- MODALS --- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; visibility: hidden;
  transition: opacity 0.3s; backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-secondary); border: 1px solid var(--gold);
  border-radius: var(--radius-lg); max-width: 480px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal h3 {
  color: var(--gold); font-family: 'Playfair Display', serif;
  margin-bottom: 1rem; font-size: 1.3rem;
}
.option-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.option-row input[type="checkbox"] {
  accent-color: var(--gold); width: 18px; height: 18px;
}
.option-row label { flex: 1; cursor: pointer; font-size: 0.9rem; }
.modal-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.modal-actions .btn { flex: 1; }

/* --- MULTI-STEP CHECKOUT --- */
.checkout-overlay {
  position: fixed; inset: 0; background: rgba(13, 13, 13, 0.96);
  z-index: 4000; overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s;
  backdrop-filter: blur(10px);
}
.checkout-overlay.open { opacity: 1; visibility: visible; }
.checkout-close {
  position: fixed; top: 1rem; right: 1.5rem;
  background: none; border: none; color: var(--gold);
  font-size: 1.8rem; cursor: pointer; z-index: 4001;
  transition: transform 0.3s;
}
.checkout-close:hover { transform: rotate(90deg); }
.checkout-panel {
  max-width: 640px; margin: 2rem auto; padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.checkout-panel h2 {
  color: var(--gold); font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem; font-size: 1.6rem;
}

/* Step progress */
.checkout-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2rem;
}
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border-gold);
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  color: var(--chalk-white); transition: all 0.4s;
}
.step-dot.active {
  border-color: var(--gold); background: var(--gold); color: #0d0d0d;
  box-shadow: 0 0 20px rgba(232, 168, 37, 0.4);
}
.step-dot.done {
  border-color: var(--success-green); background: var(--success-green);
  color: #fff;
}
.step-line {
  width: 60px; height: 2px; background: var(--border-gold);
  transition: background 0.4s;
}
.step-line.done { background: var(--success-green); }
.step-label {
  font-family: 'Oswald', sans-serif; font-size: 0.7rem;
  color: var(--chalk-white); opacity: 0.6;
  text-align: center; margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.step-label.active { color: var(--gold); opacity: 1; }
.step-group { display: flex; flex-direction: column; align-items: center; }

.checkout-step {
  display: none;
  animation: stepFadeIn 0.4s ease;
}
.checkout-step.active { display: block; }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.checkout-section { margin-bottom: 1.5rem; }
.checkout-section h3 {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.1em; color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 0.5rem; margin-bottom: 1rem;
  text-transform: uppercase;
}
.checkout-item {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; padding: 0.35rem 0;
}
.checkout-totals .total-row {
  font-size: 1.15rem; font-weight: bold; color: var(--gold);
  margin-top: 0.5rem; padding-top: 0.5rem;
  border-top: 1px solid var(--border-gold);
}

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.82rem; margin-bottom: 0.4rem;
  color: var(--chalk-white); font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-gold); border-radius: var(--radius-sm);
  color: var(--cream); font-family: 'Lora', serif; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 168, 37, 0.15);
}

.step-nav {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.step-nav .btn { flex: 1; padding: 0.85rem; }

#card-element {
  padding: 0.85rem 1rem; background: var(--bg-primary);
  border: 1px solid var(--border-gold); border-radius: var(--radius-sm);
  transition: border-color 0.3s;
}
#payment-request-button { margin-bottom: 1rem; }
.coupon-row { display: flex; gap: 0.5rem; }
.coupon-row input { flex: 1; }
.coupon-applied {
  color: var(--success-green); font-size: 0.85rem; margin-top: 0.5rem;
}
.payment-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.payment-tab {
  padding: 0.55rem 1rem; border: 1px solid var(--border-gold);
  background: transparent; color: var(--cream); border-radius: var(--radius-sm);
  cursor: pointer; font-family: 'Oswald', sans-serif; font-size: 0.8rem;
  transition: all var(--transition); letter-spacing: 0.03em;
}
.payment-tab.active {
  background: var(--gold); color: #0d0d0d;
  border-color: var(--gold); font-weight: 600;
}
.service-toggle {
  display: flex; align-items: center; gap: 0.5rem;
  margin: 0.75rem 0; font-size: 0.88rem;
}
.service-toggle input { accent-color: var(--gold); }
.error-msg { color: var(--error-red); font-size: 0.85rem; margin-top: 0.5rem; }

/* Payment simulation */
.payment-processing {
  text-align: center; padding: 3rem 1rem;
}
.payment-spinner {
  width: 60px; height: 60px; border-radius: 50%;
  border: 3px solid var(--border-gold);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.payment-status {
  font-family: 'Oswald', sans-serif; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 0.05em;
}

/* --- CONFIRMATION --- */
.confirm-overlay {
  position: fixed; inset: 0; background: var(--bg-primary);
  z-index: 5000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s;
}
.confirm-overlay.open { opacity: 1; visibility: visible; }
#confetti-canvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}.confirm-box {
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}
#confirm-summary {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 148, 58, 0.15);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: left;
  color: var(--cream);
}
#confirm-summary .checkout-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0;
  color: var(--cream) !important;
  font-family: 'Lora', serif;
  font-size: 0.88rem;
}
#confirm-summary .checkout-item span {
  color: var(--cream) !important;
}
#confirm-summary .checkout-item:last-of-type {
  border-bottom: none;
}
.confirm-floating-logo {
  width: 80px; height: 80px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.2), transparent 70%);
  border: 2px solid var(--success-green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: var(--success-green);
  animation: floatLogo 4s ease-in-out infinite;
}
.checkmark-svg { width: 80px; height: 80px; margin: 0 auto 1.5rem; }
.checkmark-circle { stroke: var(--success-green); stroke-width: 2; fill: none; }
.checkmark-path {
  stroke: var(--success-green); stroke-width: 3; fill: none;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: drawCheck 0.6s 0.4s ease forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.confirm-box h2 {
  color: var(--gold); font-size: 2rem; margin-bottom: 0.5rem;
}
.order-num {
  font-family: 'Oswald', sans-serif; font-size: 1.6rem;
  color: var(--success-green); margin-bottom: 0.5rem;
}
.confirm-btns {
  display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem;
}

/* --- ORDER TRACKING --- */
.tracking-overlay {
  position: fixed; inset: 0; background: rgba(13, 13, 13, 0.96);
  z-index: 5500; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s;
  backdrop-filter: blur(10px);
}
.tracking-overlay.open { opacity: 1; visibility: visible; }
.tracking-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 500px; width: 90%;
  backdrop-filter: blur(10px);
}
.tracking-box h2 {
  color: var(--gold); font-family: 'Playfair Display', serif;
  text-align: center; margin-bottom: 0.5rem;
}
.tracking-order-num {
  text-align: center; font-family: 'Oswald', sans-serif;
  color: var(--success-green); font-size: 1.1rem; margin-bottom: 2rem;
}
.tracking-timeline {
  position: relative; padding-left: 3rem;
}
.tracking-timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--border-gold);
}
.tracking-step {
  position: relative; padding-bottom: 2rem;
  opacity: 0.4; transition: opacity 0.5s;
}
.tracking-step.active, .tracking-step.done { opacity: 1; }
.tracking-step:last-child { padding-bottom: 0; }
.tracking-dot {
  position: absolute; left: -2.45rem; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--border-gold);
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: all 0.5s;
  z-index: 1;
}
.tracking-step.active .tracking-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 20px rgba(232, 168, 37, 0.5);
  animation: pulseGlow 2s ease-in-out infinite;
}
.tracking-step.done .tracking-dot {
  border-color: var(--success-green);
  background: var(--success-green);
  box-shadow: 0 0 12px rgba(39, 174, 96, 0.3);
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 168, 37, 0.3); }
  50% { box-shadow: 0 0 30px rgba(232, 168, 37, 0.6); }
}
.tracking-step h4 {
  font-family: 'Oswald', sans-serif; font-size: 0.95rem;
  color: var(--chalk-white); margin-bottom: 0.2rem;
}
.tracking-step p { font-size: 0.8rem; opacity: 0.7; }
.tracking-step.active h4 { color: var(--gold); }
.tracking-close {
  display: block; margin: 2rem auto 0;
  padding: 0.7rem 2rem;
}

/* --- FEATURES --- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: transform 0.4s, box-shadow 0.4s;
  backdrop-filter: blur(6px);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.feature-card img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.5s;
}
.feature-card:hover img { transform: scale(1.05); }
.feature-card .body { padding: 1.5rem; }
.feature-card h3 {
  color: var(--gold); font-family: 'Satisfy', cursive; font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.feature-card p { opacity: 0.75; font-size: 0.95rem; }

/* --- ABOUT --- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}
.about-content p {
  margin-top: 1rem;
}
.about-video-wrap {
  max-width: 1000px;
  margin: 2.5rem auto 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 25px rgba(201, 148, 58, 0.25);
  transition: transform 0.4s, box-shadow 0.4s;
}
.about-video-wrap:hover {
  transform: scale(1.01);
  box-shadow: 0 0 35px rgba(201, 148, 58, 0.4);
}
.about-video-wrap video {
  width: 100%;
  display: block;
}

/* --- HOURS --- */
.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 500px; margin: 0 auto; text-align: center;
  backdrop-filter: blur(6px);
}
.hours-card h3 { color: var(--gold); margin-bottom: 1.25rem; font-size: 1.3rem; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hours-row:last-of-type { border-bottom: none; }

/* --- AMENITIES --- */
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem; text-align: center;
}
.amenity {
  padding: 1.5rem 1rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-gold);
  transition: transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(6px);
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.amenity .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 168, 37, 0.04);
  border: 1px solid rgba(201, 148, 58, 0.15);
  transition: all 0.3s ease;
}
.amenity:hover .icon {
  background: rgba(232, 168, 37, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(232, 168, 37, 0.2);
  transform: scale(1.05);
}
.amenity .icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.amenity:hover .icon svg {
  transform: rotate(5deg);
}
.amenity strong { font-family: 'Oswald', sans-serif; font-size: 0.85rem; }

/* --- MAP --- */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-gold);
  aspect-ratio: 16 / 9; max-width: 900px; margin: 0 auto;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* --- GALLERY --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.4s; cursor: pointer;
  border: 1px solid var(--border-gold);
}
.gallery-grid img:hover { transform: scale(1.05); }

/* --- NEWSLETTER --- */
.newsletter-form {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  max-width: 500px; margin: 1.5rem auto 0; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 0.85rem 1rem;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm); color: var(--cream);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.newsletter-form input:focus {
  outline: none; border-color: var(--gold);
}

/* --- FOOTER --- */
footer {
  background: var(--bg-secondary); padding: 3.5rem 1.5rem 2rem;
  border-top: 1px solid var(--border-gold); text-align: center;
}
footer .footer-logo {
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; margin-bottom: 1rem;
}
footer p { opacity: 0.6; font-size: 0.88rem; }

/* --- MOBILE BOTTOM NAV --- */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-height);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  z-index: 1500;
  justify-content: space-around; align-items: center;
  padding: 0.3rem 0;
}
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; background: none; border: none;
  color: var(--chalk-white); font-size: 0.65rem;
  font-family: 'Oswald', sans-serif; letter-spacing: 0.04em;
  cursor: pointer; text-decoration: none;
  transition: color 0.2s; position: relative;
  padding: 0.3rem 0.8rem;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-item.active { color: var(--gold); }
.mob-nav-icon { font-size: 1.3rem; }
.mob-nav-item .cart-badge {
  position: absolute; top: -2px; right: 0.2rem;
  min-width: 16px; height: 16px; font-size: 0.6rem;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* --- UTILITIES --- */
.hidden { display: none !important; }
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: rgba(26, 18, 9, 0.97);
    backdrop-filter: blur(16px);
    padding: 2rem 1.5rem; border-left: 1px solid var(--gold);
    z-index: 999; gap: 0.5rem;
    animation: slideInRight 0.3s ease;
  }
  .nav-links.mobile-open a::after { display: none; }
  .hamburger { display: block; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: var(--bottom-nav-height); }

  .cart-btn-mobile {
    display: none; /* hidden since we have bottom nav cart */
  }

  section { padding: 4rem 1rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .checkout-panel { margin: 1rem; padding: 1.5rem; }
  .tracking-box { padding: 1.5rem; width: 95%; }
}

@media (min-width: 901px) {
  .mobile-bottom-nav { display: none !important; }
  .cart-btn-mobile { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
  .floating-logo { width: 80px; height: 80px; font-size: 1.6rem; }
  .checkout-progress { gap: 0; }
  .step-line { width: 30px; }
  .step-dot { width: 30px; height: 30px; font-size: 0.75rem; }
  .order-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* --- LOADING STATE --- */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-secondary) 25%,
    rgba(201, 148, 58, 0.08) 50%,
    var(--bg-secondary) 75%
  );
  background-size: 400% 100%;
  animation: shimmer 1.5s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- TOAST NOTIFICATION --- */
.toast {
  position: fixed; bottom: calc(var(--bottom-nav-height) + 1rem); left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-family: 'Oswald', sans-serif; font-size: 0.88rem;
  color: var(--gold); z-index: 9000;
  opacity: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
.toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

@media (min-width: 901px) {
  .toast { bottom: 2rem; }
}

/* --- USER ACCOUNT DROPDOWN --- */
#nav-auth-item {
  position: relative;
}
.user-dropdown-wrap {
  position: relative;
}
.user-dropdown-btn {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.user-dropdown-menu {
  position: absolute;
  top: 100%; right: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 160px;
  display: none;
  z-index: 1000;
  box-shadow: var(--shadow-dark);
}
.user-dropdown-wrap:hover .user-dropdown-menu,
.user-dropdown-wrap:focus-within .user-dropdown-menu {
  display: block;
}
.user-dropdown-menu li {
  margin: 0 !important;
  display: block !important;
}
.user-dropdown-menu button {
  width: 100%;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: var(--cream);
  text-align: left;
  font-size: 0.88rem;
  transition: background var(--transition);
  cursor: pointer;
}
.user-dropdown-menu button:hover {
  background: rgba(232, 168, 37, 0.1);
  color: var(--gold);
}

/* --- AUTH & DASHBOARD TABS --- */
.auth-tabs, .dashboard-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 1.5rem;
}
.auth-tab-btn, .dash-tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--cream);
  opacity: 0.6;
  padding: 0.75rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.auth-tab-btn.active, .dash-tab-btn.active {
  opacity: 1;
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* --- LISTS & CARDS --- */
.empty-msg {
  text-align: center;
  opacity: 0.5;
  padding: 2rem 0;
  font-style: italic;
  font-size: 0.9rem;
}
.history-item {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.2);
  text-align: left;
}
.history-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-gold);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
}
.history-body p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.history-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(232, 168, 37, 0.1);
  font-size: 0.88rem;
  font-weight: bold;
}
.status-badge {
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: bold;
}
.status-badge.received { background: #34495e; color: #fff; }
.status-badge.preparing { background: #d35400; color: #fff; }
.status-badge.cooking { background: #f39c12; color: #fff; }
.status-badge.ready { background: #27ae60; color: #fff; }
.status-badge.complete { background: #2ecc71; color: #fff; }
.status-badge.pending { background: #7f8c8d; color: #fff; }
.status-badge.confirmed { background: #2980b9; color: #fff; }
.status-badge.cancelled { background: #c0392b; color: #fff; }

/* --- MODERN PAYMENT SELECTION UI --- */
.payment-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .payment-options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.payment-option-card {
  background: rgba(26, 18, 9, 0.45);
  border: 1px solid rgba(201, 148, 58, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.payment-option-card:hover {
  border-color: rgba(232, 168, 37, 0.6);
  transform: translateY(-2px);
  background: rgba(26, 18, 9, 0.65);
}
.payment-option-card.active {
  border-color: var(--gold);
  background: rgba(232, 168, 37, 0.1);
  box-shadow: 0 0 15px rgba(232, 168, 37, 0.15);
}
.payment-option-card .option-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.payment-option-card .option-icon {
  font-size: 1.25rem;
}
.payment-option-card .option-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--cream);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.payment-option-card .option-badge {
  background: rgba(39, 174, 96, 0.2);
  color: #2ecc71;
  font-size: 0.62rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-left: auto;
}
.payment-option-card .option-desc {
  font-size: 0.75rem;
  opacity: 0.7;
  line-height: 1.4;
  margin: 0;
}
.payment-option-card::after {
  content: '✓';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: #0d0d0d;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  border-bottom-left-radius: 8px;
  opacity: 0;
  transform: translate(10px, -10px);
  transition: all 0.3s ease;
}
.payment-option-card.active::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- DELIVERY PARTNER BUTTONS --- */
.delivery-partners-notice {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 148, 58, 0.15);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.delivery-partners-notice p {
  margin: 0;
  font-size: 0.85rem;
}
.delivery-partner-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: center;
}
.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}
.partner-btn.deliveroo {
  background: #00cdbc;
}
.partner-btn.deliveroo:hover {
  background: #00b3a4;
  box-shadow: 0 0 10px rgba(0, 205, 188, 0.3);
}
.partner-btn.ubereats {
  background: #06C167;
}
.partner-btn.ubereats:hover {
  background: #05a859;
  box-shadow: 0 0 10px rgba(6, 193, 103, 0.3);
}
.partner-btn .partner-icon {
  font-size: 0.9rem;
}

/* --- NAVIGATION TEXT BUTTONS --- */
.nav-text-btn {
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color var(--transition);
  padding: 0.5rem 0;
}
.nav-text-btn:hover {
  color: var(--gold);
}

/* --- WALLET WRAPPER FALLBACK --- */
.hidden-wallet {
  display: none !important;
}

/* --- TIP SELECTION BUTTONS --- */
.tip-btn.active {
  background: var(--gold) !important;
  color: #0d0d0d !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(232, 168, 37, 0.2);
}

/* ==========================================================================
   PHASE 12 — PREMIUM NAVBAR & HEADER UI & ACCENT STYLING
   ========================================================================== */

/* Glassmorphism & Shrink-on-Scroll Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.93);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-gold);
  height: 64px; /* Dynamic height shrink */
}


/* Clean Oswald Navigation Typography */
.nav-links a {
  font-family: 'Oswald', sans-serif;
  color: var(--chalk-white);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Unified Action CTAs Spacing on Desktop & Mobile */
@media (min-width: 901px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
  }
  .nav-links li.nav-cta-item:first-of-type {
    margin-left: 1rem;
  }
}
@media (max-width: 900px) {
  .navbar {
    padding: 0 1.5rem;
  }
  .nav-links li.nav-cta-item:first-of-type {
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* --- USER ACCOUNT DROPDOWN --- */
#nav-auth-item {
  position: relative;
}
.user-dropdown-wrap {
  position: relative;
}
.user-dropdown-btn {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(232, 168, 37, 0.05);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.user-dropdown-btn::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 0.25rem;
  opacity: 0.7;
  transition: transform var(--transition);
}
.user-dropdown-wrap:hover .user-dropdown-btn::after {
  transform: rotate(180deg);
}
.user-dropdown-btn:hover {
  background: rgba(232, 168, 37, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(232, 168, 37, 0.25);
}
.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: rgba(26, 18, 9, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow-dark);
}
.user-dropdown-wrap:hover .user-dropdown-menu,
.user-dropdown-wrap:focus-within .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown-menu li {
  margin: 0 !important;
  display: block !important;
}
.user-dropdown-menu button, .user-dropdown-menu a {
  width: 100%;
  padding: 0.65rem 1.25rem;
  background: none;
  border: none;
  color: var(--cream);
  text-align: left;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  cursor: pointer;
}
.user-dropdown-menu button:hover, .user-dropdown-menu a:hover {
  background: rgba(232, 168, 37, 0.1);
  color: var(--gold);
  padding-left: 1.5rem;
}

@media (max-width: 900px) {
  .user-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    transition: none;
  }
  .user-dropdown-wrap:hover .user-dropdown-menu,
  .user-dropdown-wrap:focus-within .user-dropdown-menu {
    display: block;
  }
}

/* Security Trust Badges style */
.security-badge-container span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.8;
}

/* --- SEO TARGET HIGHLIGHT PULSE --- */
.highlight-pulse {
  animation: highlightPulseGlow 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  position: relative;
  z-index: 10;
}

@keyframes highlightPulseGlow {
  0% {
    border-color: var(--gold);
    box-shadow: 0 0 0px rgba(232, 168, 37, 0);
    transform: scale(1);
  }
  15% {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(232, 168, 37, 0.85);
    transform: scale(1.03);
  }
  30% {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(232, 168, 37, 0.4);
    transform: scale(1.01);
  }
  45% {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(232, 168, 37, 0.85);
    transform: scale(1.03);
  }
  100% {
    border-color: rgba(201, 148, 58, 0.3);
    box-shadow: 0 0 0px rgba(232, 168, 37, 0);
    transform: scale(1);
  }
}

/* ========================================================
   CHALKBOARD VIEW TOGGLE & VISUAL MENU CHART STYLES
   ======================================================== */

.chalkboard-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  grid-column: 1 / -1;
  width: 100%;
}
.chalk-toggle-btn {
  background: rgba(26, 18, 9, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--chalk-white);
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.chalk-toggle-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(232, 168, 37, 0.25);
  transform: translateY(-1px);
}
.chalk-toggle-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d0d;
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(232, 168, 37, 0.3);
  font-weight: 600;
}

.menu-chart-container {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  margin: 1rem 0 3rem;
  width: 100%;
}
.menu-chart-frame {
  position: relative;
  max-width: 780px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid #1c120c; /* Wooden look */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--gold-dark), 0 0 25px rgba(232, 168, 37, 0.15);
  background: #000;
  cursor: zoom-in;
  transition: transform 0.1s ease-out, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  transform: translateZ(0);
}
.menu-chart-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(232, 168, 37, 0.4);
  margin: 4px;
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
  z-index: 2;
}
.menu-chart-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}
.menu-chart-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2.5rem 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}
.menu-chart-frame:hover .menu-chart-overlay {
  opacity: 1;
}
.zoom-icon {
  background: rgba(232, 168, 37, 0.9);
  color: #0d0d0d;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Lightbox Modal */
#lightbox-modal {
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(13, 13, 13, 0.95);
  z-index: 3000;
}
#lightbox-modal.open {
  display: flex;
  animation: lightboxFadeIn 0.35s ease forwards;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: lightboxZoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 3005;
}
.lightbox-close:hover {
  color: #fff;
}
.lightbox-img-wrap {
  overflow: auto;
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
.lightbox-img-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lightboxZoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
  .lightbox-close {
    top: -3rem;
    right: 0.5rem;
  }
}

/* Mobile Search Styling */
.mobile-menu-search {
  display: none;
  max-width: 650px;
  width: 100%;
  margin: 1rem auto 2.5rem auto;
  padding: 0 1.5rem;
}
.mobile-menu-search .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.7);
  border: 2px solid var(--border-gold-strong);
  border-radius: 50px;
  padding: 0.15rem 0.6rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(232, 168, 37, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-menu-search .search-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(232, 168, 37, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
  background: rgba(13, 13, 13, 0.9);
  transform: translateY(-1px);
}
.mobile-menu-search .search-icon {
  font-size: 1.15rem;
  margin-left: 0.8rem;
  color: var(--gold);
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 0 3px rgba(232, 168, 37, 0.3));
}
.mobile-menu-search #menu-search-mobile {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.65rem 0.8rem;
  font-size: 0.95rem;
  font-family: 'Lora', Georgia, serif;
  color: #fff;
  letter-spacing: 0.01em;
}
.mobile-menu-search #menu-search-mobile::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  font-size: 0.9rem;
}
.mobile-menu-search .search-clear-btn {
  background: transparent;
  border: none;
  outline: none;
  color: var(--gold);
  font-size: 1.1rem;
  padding: 0.35rem;
  margin-right: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.mobile-menu-search .search-clear-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.mobile-menu-search .search-clear-btn.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .mobile-menu-search {
    display: block;
  }
}

/* ===== LIVE ANIMATIC IMAGE ZOOM BREATHING EFFECT ===== */
.featured-product-img, .order-card-img, .menu-chart-img {
  animation: imageLiveBreathe 24s ease-in-out infinite alternate;
}
@keyframes imageLiveBreathe {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  50% {
    transform: scale(1.03) translate(0.5%, -0.5%) rotate(0.2deg);
  }
  100% {
    transform: scale(1.01) translate(-0.3%, 0.3%) rotate(-0.1deg);
  }
}

/* Maintain hover zoom transitions on top of live breath */
.featured-product:hover .featured-product-img {
  transform: scale(1.07) rotate(0.5deg) !important;
  filter: brightness(1.06) contrast(1.02);
  animation-play-state: paused;
}
.order-card:hover .order-card-img {
  transform: scale(1.09) rotate(1.5deg) !important;
  filter: brightness(1.08);
  animation-play-state: paused;
}
.menu-chart-frame:hover .menu-chart-img {
  animation-play-state: paused;
}

/* Menu Image Placeholder fallback */
.menu-image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  background: #1a1209;
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  box-sizing: border-box;
}
.placeholder-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 8px rgba(232, 168, 37, 0.4));
}
.placeholder-name {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Desktop — 3 columns */
#menu-categories-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Tablet — 2 columns */
@media (max-width: 900px) {
  #menu-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 1 column full width */
@media (max-width: 560px) {
  #menu-categories-grid {
    grid-template-columns: 1fr;
    padding: 0.8rem;
    gap: 0.8rem;
  }
}

/* Live steam animation for hot drinks */
.steam-container {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  width: 60px;
  height: 120px;
  pointer-events: none;
  z-index: 3;
}
.steam-line {
  width: 4px;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  border-radius: 50%;
  animation: steamRise 3.5s infinite ease-in-out;
  filter: blur(4px);
  opacity: 0;
}
.steam-line:nth-child(1) { animation-delay: 0.2s; animation-duration: 3.2s; }
.steam-line:nth-child(2) { animation-delay: 1.2s; animation-duration: 3.8s; }
.steam-line:nth-child(3) { animation-delay: 2.2s; animation-duration: 3.0s; }

@keyframes steamRise {
  0% {
    transform: translateY(40px) scaleX(0.8) skewX(-5deg);
    opacity: 0;
  }
  30% {
    opacity: 0.45;
  }
  60% {
    transform: translateY(-20px) scaleX(1.4) skewX(10deg);
    opacity: 0.25;
  }
  100% {
    transform: translateY(-80px) scaleX(0.6) skewX(-10deg);
    opacity: 0;
  }
}

/* Highlight large cards for Quarter Pounder, Double Quarter & Deals */
@media (min-width: 768px) {
  .highlight-large {
    grid-column: span 2;
  }
}

/* Premium glowing hot deal badge */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 6px;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5), 0 0 8px rgba(231, 76, 60, 0.3);
  text-transform: uppercase;
  animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 4px 18px rgba(231, 76, 60, 0.8), 0 0 12px rgba(231, 76, 60, 0.5);
  }
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}


