@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ========================================
   Design Tokens – Semantic colour system
   Supports both light and dark theme via
   data-theme attribute on <html>
   ======================================== */

:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Accent colours (shared) */
  --orange-400: #3ccefb;
  --orange-500: #16b1f9;
  --orange-600: #0c91ea;
  --red-500: #4494ef;
  --red-600: #2699dc;
  --whatsapp: #25D366;
  --whatsapp-hover: #20bd5a;

  /* Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.75rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  --max-w: 80rem;
  --nav-h: 4.5rem;
  --transition: 0.25s ease;
}

/* ---------- DARK THEME (default) ---------- */
[data-theme="dark"],
:root {
  --bg-body: #09090b;
  --bg-surface: #18181b;
  --bg-surface-alt: rgba(24, 24, 27, 0.5);
  --bg-card: #18181b;
  --bg-card-hover: #1c1c1f;
  --bg-elevated: #27272a;
  --bg-input: #09090b;
  --bg-nav: rgba(9, 9, 11, 0.92);

  --border-default: #27272a;
  --border-subtle: rgba(39, 39, 42, 0.5);
  --border-muted: #18181b;

  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-placeholder: #52525b;
  --text-inverse: #09090b;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 10px 25px -5px rgba(22, 177, 249, 0.3);
  --selection-bg: rgba(22, 177, 249, 0.3);
  --scrollbar-track: #09090b;
  --scrollbar-thumb: #27272a;
}

/* ---------- LIGHT THEME ---------- */
[data-theme="light"] {
  --bg-body: #f8f8fa;
  --bg-surface: #ffffff;
  --bg-surface-alt: rgba(245, 245, 247, 0.7);
  --bg-card: #ffffff;
  --bg-card-hover: #f4f4f5;
  --bg-elevated: #e4e4e7;
  --bg-input: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.92);

  --border-default: #e4e4e7;
  --border-subtle: rgba(228, 228, 231, 0.6);
  --border-muted: #f4f4f5;

  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --text-placeholder: #a1a1aa;
  --text-inverse: #fafafa;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 10px 25px -5px rgba(22, 177, 249, 0.2);
  --selection-bg: rgba(22, 177, 249, 0.2);
  --scrollbar-track: #f4f4f5;
  --scrollbar-thumb: #d4d4d8;
}

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

html {
  scroll-behavior: smooth;
  /* Prevent iOS tap highlight */
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

::selection {
  background: var(--selection-bg);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-500);
}

/* ========================================
   Utilities
   ======================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-gradient:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-gradient:active {
  transform: translateY(0) scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-outline:hover {
  background: var(--bg-elevated);
}

/* ========================================
   NAVBAR – Professional & Properly Aligned
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: var(--bg-nav);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-default);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
  gap: 1rem;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.navbar-brand .brand-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--orange-500);
  display: flex;
  align-items: center;
}

.navbar-brand .brand-icon svg {
  width: 100%;
  height: 100%;
}

.navbar-brand .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Desktop navigation links */
.nav-center {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-center {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-surface-alt);
}

.nav-link.active {
  color: var(--orange-500);
  background: rgba(22, 177, 249, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 2px;
  background: var(--orange-500);
  border-radius: 1px;
}

/* Desktop right actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
}

/* Theme toggle */
.theme-toggle {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.theme-toggle:hover {
  color: var(--text-primary);
  background: var(--bg-surface-alt);
}

.theme-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Cart button */
.nav-cart-btn {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-cart-btn:hover {
  color: var(--orange-500);
  background: rgba(22, 177, 249, 0.08);
}

.nav-cart-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-cart-btn .badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--red-500);
  border-radius: var(--radius-full);
  transform: translate(30%, -30%);
  line-height: 1;
}

.nav-cart-btn .badge.hidden {
  display: none;
}

.nav-order-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Mobile actions */
.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-mobile-actions {
    display: none;
  }
}

.hamburger {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.hamburger:hover {
  color: var(--text-primary);
  background: var(--bg-surface-alt);
}

.hamburger svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* Mobile menu dropdown */
.mobile-menu {
  display: none;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-default);
  padding: 0.75rem 1.25rem 1rem;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: var(--bg-surface-alt);
  color: var(--text-primary);
}

.mobile-menu a.active {
  background: rgba(22, 177, 249, 0.08);
  color: var(--orange-500);
}

.mobile-menu .mobile-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero {
    padding: 8rem 0 5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 0 7rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

[data-theme="light"] .hero-bg img {
  opacity: 0.5;
}

.hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-body), rgba(9, 9, 11, .7) 50%, transparent);
}

[data-theme="light"] .hero-bg .hero-overlay {
  background: linear-gradient(to top, var(--bg-body), rgba(248, 248, 250, .8) 50%, rgba(248, 248, 250, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 44rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  background: rgba(22, 177, 249, 0.1);
  color: var(--orange-500);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(22, 177, 249, 0.2);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-buttons .btn-gradient {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.hero-buttons .btn-outline {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-gradient,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

.hero-buttons .btn-gradient svg {
  transition: transform var(--transition);
}

.hero-buttons .btn-gradient:hover svg {
  transform: translateX(4px);
}

/* ========================================
   Features Section
   ======================================== */
.features {
  padding: 4rem 0;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  background: var(--bg-surface-alt);
  transition: background-color 0.35s ease;
}

@media (min-width: 768px) {
  .features {
    padding: 5rem 0;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: rgba(22, 177, 249, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(22, 177, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange-500);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========================================
   Featured Dishes
   ======================================== */
.featured-dishes {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .featured-dishes {
    padding: 5rem 0;
  }
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
}

@media (max-width: 480px) {
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.featured-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.featured-header p {
  color: var(--text-secondary);
  max-width: 28rem;
  font-size: 0.95rem;
}

.featured-header .view-menu-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-500);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
  flex-shrink: 0;
}

.featured-header .view-menu-link:hover {
  color: var(--orange-400);
}

@media (min-width: 768px) {
  .featured-header .view-menu-link {
    display: flex;
  }
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ---- Dish Card (shared between home & menu) ---- */
.dish-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-default);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.dish-card:hover {
  border-color: rgba(22, 177, 249, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.dish-card .dish-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .dish-card .dish-img {
    height: 14rem;
  }
}

@media (min-width: 1024px) {
  .dish-card .dish-img {
    height: 15rem;
  }
}

.dish-card .dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-img img {
  transform: scale(1.05);
}

.dish-card .dish-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.4rem;
}

.dish-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dish-badge.bestseller {
  background: var(--orange-500);
  margin-left: 2px;
}

.dish-badge.spicy {
  background: rgba(239, 68, 68, 0.9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.dish-card .dish-info {
  padding: 1.25rem;
}

.dish-card .dish-info .dish-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.375rem;
  gap: 0.5rem;
}

.dish-card .dish-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.dish-card .dish-info .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-500);
  flex-shrink: 0;
}

.dish-card .dish-info .description {
  color: var(--text-secondary);
  font-size: 0.825rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.dish-card .order-btn,
.add-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
  padding: 0.7rem;
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
}

.dish-card .order-btn:hover,
.add-cart-btn:hover {
  background: var(--orange-500);
  color: #fff;
}

.add-cart-btn:active {
  transform: scale(0.97);
}

.add-cart-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.view-menu-mobile {
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .view-menu-mobile {
    display: none;
  }
}

.view-menu-mobile a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-500);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  padding: 4rem 0;
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-muted);
  transition: background-color 0.35s ease;
}

@media (min-width: 768px) {
  .testimonials {
    padding: 5rem 0;
  }
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials .section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.testimonials .section-header p {
  color: var(--text-secondary);
  max-width: 28rem;
  margin: 0 auto;
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.testimonial-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-default);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  border-color: rgba(22, 177, 249, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--orange-500);
  color: var(--orange-500);
}

.testimonial-card .quote {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h4 {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========================================
   Menu Page
   ======================================== */
.menu-page {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .menu-page {
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 5rem;
  }
}

.menu-page .page-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .menu-page .page-header {
    margin-bottom: 2.5rem;
  }
}

.menu-page .page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.menu-page .page-header p {
  color: var(--text-secondary);
  max-width: 28rem;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* Category filter buttons */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .category-filters {
    gap: 0.625rem;
    margin-bottom: 2.5rem;
  }
}

.category-btn {
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.825rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  transition: all var(--transition);
  white-space: nowrap;
}

@media (min-width: 640px) {
  .category-btn {
    padding: 0.5rem 1.35rem;
    font-size: 0.875rem;
  }
}

.category-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border-default);
}

.category-btn.active {
  background: var(--orange-500);
  color: #fff;
  border-color: var(--orange-500);
  box-shadow: 0 4px 14px -3px rgba(22, 177, 249, 0.35);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ========================================
   About Page
   ======================================== */
.about-page {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-page {
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 5rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-text h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.about-text h1 span {
  color: var(--orange-500);
}

.about-text .story-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-text .mission-box {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-card);
}

.about-text .mission-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-text .mission-box p {
  color: var(--text-secondary);
  font-size: 0.925rem;
}

.about-image {
  position: relative;
}

.about-image .image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, var(--orange-500), var(--red-500));
  border-radius: var(--radius-3xl);
  transform: rotate(3deg);
  opacity: 0.2;
  filter: blur(16px);
}

.about-image img {
  position: relative;
  border-radius: var(--radius-3xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-default);
  object-fit: cover;
  width: 100%;
  height: 20rem;
}

@media (min-width: 640px) {
  .about-image img {
    height: 28rem;
  }
}

@media (min-width: 1024px) {
  .about-image img {
    height: 34rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    gap: 3rem;
    margin-top: 6rem;
  }
}

.stats-grid h4 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange-500);
  margin-bottom: 0.5rem;
}

.stats-grid p {
  color: var(--text-primary);
  font-weight: 500;
  font-size: clamp(0.75rem, 1.5vw, 1.125rem);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-page {
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 5rem;
  }
}

.contact-page .page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-page .page-header {
    margin-bottom: 3.5rem;
  }
}

.contact-page .page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.contact-page .page-header p {
  color: var(--text-secondary);
  max-width: 28rem;
  margin: 0 auto;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .contact-info-card {
    padding: 2rem;
  }
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(22, 177, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange-500);
}

.contact-row h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.9rem;
}

.contact-row p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.map-placeholder {
  height: 12rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 1.5rem;
  background: var(--bg-surface-alt);
  font-size: 0.9rem;
}

.map-placeholder svg {
  width: 2rem;
  height: 2rem;
}

/* Contact form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-placeholder);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(22, 177, 249, 0.15);
}

.form-group textarea {
  resize: none;
  min-height: 5.5rem;
}

.submit-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--orange-500);
  color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}

.submit-btn:hover {
  background: var(--orange-600);
  box-shadow: var(--shadow-glow);
}

.whatsapp-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-default);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}

.whatsapp-btn:hover {
  background: var(--whatsapp-hover);
}

.whatsapp-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg-body);
  border-top: 1px solid var(--border-muted);
  padding: 3rem 0 1.5rem;
  transition: background-color 0.35s ease;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: auto;
  }
}

.footer-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand .brand-link svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--orange-500);
}

.footer-brand .brand-link span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.footer-brand .brand-desc {
  color: var(--text-secondary);
  font-size: 0.825rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-links a:hover {
  color: var(--orange-500);
  background: rgba(22, 177, 249, 0.08);
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-section h3 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-section li a {
  color: var(--text-secondary);
  font-size: 0.825rem;
  transition: color var(--transition);
}

.footer-section li a:hover {
  color: var(--orange-500);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--orange-500);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item span {
  color: var(--text-secondary);
  font-size: 0.825rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.875rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: var(--text-primary);
  font-size: 0.825rem;
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
  /* prevent overflow */
}

.newsletter-form input:focus {
  border-color: var(--orange-500);
}

.newsletter-form input::placeholder {
  color: var(--text-placeholder);
}

.newsletter-form button {
  padding: 0.5rem 0.875rem;
  background: var(--orange-500);
  color: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.825rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--orange-600);
}

.footer-bottom {
  border-top: 1px solid var(--border-muted);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ========================================
   Cart Drawer
   ======================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 24rem;
  background: var(--bg-body);
  border-left: 1px solid var(--border-default);
  z-index: 70;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
    background-color 0.35s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-default);
}

.cart-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-header h2 svg {
  color: var(--orange-500);
  width: 1.2rem;
  height: 1.2rem;
}

.cart-close {
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.cart-close:hover {
  color: var(--text-primary);
  background: var(--bg-surface-alt);
}

.cart-close svg {
  width: 1.2rem;
  height: 1.2rem;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 0.75rem;
}

.cart-empty svg {
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0.15;
}

.cart-empty p {
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.cart-item:last-child {
  margin-bottom: 0;
}

.cart-item-img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h3 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-details .item-price {
  color: var(--orange-500);
  font-weight: 600;
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.quantity-btn {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-default);
  transition: all var(--transition);
}

.quantity-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.quantity-btn svg {
  width: 0.85rem;
  height: 0.85rem;
}

.quantity-num {
  color: var(--text-primary);
  font-weight: 600;
  width: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.cart-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-default);
  background: var(--bg-body);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-subtotal span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cart-subtotal strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 0.875rem;
  text-align: center;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}

.checkout-btn:hover {
  box-shadow: var(--shadow-glow);
}

.checkout-btn:active {
  transform: scale(0.98);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-item-animate {
  animation: fadeIn 0.3s ease forwards;
}

/* ========================================
   Enquire Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-surface);
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: all var(--transition);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-card);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--bg-surface-alt);
  border-radius: 50%;
  transition: all var(--transition);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ========================================
   Extra small screen fixes ( < 380px)
   ======================================== */
@media (max-width: 380px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 6.5rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1.25rem 1rem;
  }

  .category-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.775rem;
  }

  .stats-grid {
    gap: 0.5rem;
  }

  .stats-grid h4 {
    font-size: 1.5rem;
  }

  .stats-grid p {
    font-size: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .navbar-brand .brand-name {
    font-size: 1.1rem;
  }
}