/* ==========================================================
   MABAPU FOODS™ — Indian Royal Theme Design System
   ========================================================== */

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

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Royal Dark Palette */
  --royal-dark:       #1A1A2E;
  --royal-deep:       #16213E;
  --royal-navy:       #0F3460;
  --royal-midnight:   #0D1117;

  /* Gold & Saffron */
  --royal-gold:       #D4A853;
  --royal-gold-light: #E8C87A;
  --royal-gold-dark:  #B8912E;
  --royal-saffron:    #FF6B35;
  --royal-saffron-light: #FF8C5A;
  --royal-saffron-dark:  #E5551F;

  /* Warm Neutrals */
  --royal-cream:      #FFF8F0;
  --royal-ivory:      #FEFCF3;
  --royal-parchment:  #F5ECD7;
  --royal-sand:       #E8D5B5;

  /* Accents */
  --royal-emerald:    #2D6A4F;
  --royal-emerald-light: #40916C;
  --royal-maroon:     #8B0000;
  --royal-ruby:       #E63946;

  /* Grays */
  --gray-50:  #FAFAFA;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Glass */
  --glass-bg:     rgba(26,26,46,0.85);
  --glass-bg-light: rgba(255,255,255,0.08);
  --glass-border: rgba(212,168,83,0.2);
  --glass-border-light: rgba(255,255,255,0.12);

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 20px rgba(212,168,83,0.25);
  --shadow-saffron: 0 4px 20px rgba(255,107,53,0.3);

  /* Radii */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition:      0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index Scale */
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  500;
  --z-modal:    1000;
  --z-toast:    1100;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--royal-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal-saffron); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--royal-gold); }
button { font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--royal-dark);
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }
p  { color: var(--gray-600); line-height: 1.7; }

.text-gold { color: var(--royal-gold) !important; }
.text-saffron { color: var(--royal-saffron) !important; }
.text-emerald { color: var(--royal-emerald) !important; }
.text-cream { color: var(--royal-cream) !important; }
.text-dark { color: var(--royal-dark) !important; }
.text-muted { color: var(--gray-400) !important; }
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.font-heading { font-family: var(--font-heading); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--royal-dark); color: var(--royal-cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--royal-cream); }
.section-dark p { color: rgba(255,248,240,0.7); }
.section-cream { background: var(--royal-cream); }
.section-ivory { background: var(--royal-ivory); }

/* Flex & Grid Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ── Ornamental Dividers ───────────────────────────────────── */
.royal-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 32px;
}
.royal-divider::before,
.royal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}
.royal-divider__icon {
  color: var(--royal-gold);
  font-size: 18px;
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--royal-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}
.section-header__title {
  margin-bottom: 4px;
}
.section-header__subtitle {
  color: var(--gray-500);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}
.section-header--left { text-align: left; }
.section-header--left .section-header__subtitle { margin: 0; }

/* Gold Line Divider */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-gold), var(--royal-saffron));
  border-radius: 2px;
  margin: 8px auto 0;
}
.section-header--left .gold-line { margin-left: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--royal-saffron), var(--royal-saffron-dark));
  color: #fff;
  border-color: var(--royal-saffron);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--royal-saffron-light), var(--royal-saffron));
  transform: translateY(-2px);
  box-shadow: var(--shadow-saffron);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-dark));
  color: var(--royal-dark);
  border-color: var(--royal-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--royal-gold-light), var(--royal-gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--royal-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--royal-gold);
  border-color: var(--royal-gold);
}
.btn-secondary:hover {
  background: var(--royal-gold);
  color: var(--royal-dark);
}

.btn-outline-saffron {
  background: transparent;
  color: var(--royal-saffron);
  border-color: var(--royal-saffron);
}
.btn-outline-saffron:hover {
  background: var(--royal-saffron);
  color: #fff;
}

.btn-dark {
  background: var(--royal-dark);
  color: var(--royal-cream);
  border-color: var(--royal-dark);
}
.btn-dark:hover {
  background: var(--royal-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--royal-cream);
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.btn-emerald {
  background: linear-gradient(135deg, var(--royal-emerald), var(--royal-emerald-light));
  color: #fff;
  border-color: var(--royal-emerald);
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(45,106,79,0.3);
  color: #fff;
}

.btn-danger {
  background: var(--royal-ruby);
  color: #fff;
  border-color: var(--royal-ruby);
}
.btn-danger:hover {
  background: #C62828;
  color: #fff;
}

.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 48px; font-size: 17px; border-radius: var(--radius-md); font-weight: 700; }
.btn-block { width: 100%; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--radius-full); }
.btn-icon.btn-sm { width: 32px; height: 32px; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-body { padding: 20px; }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.card:hover .card-img { transform: scale(1.03); }

/* Glass Card */
.card-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Royal Card (dark bg) */
.card-royal {
  background: var(--royal-deep);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius-lg);
  color: var(--royal-cream);
}
.card-royal:hover {
  border-color: var(--royal-gold);
  box-shadow: var(--shadow-gold);
}

/* ── Recipe Card ───────────────────────────────────────────── */
.recipe-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
}
.recipe-card:hover {
  color: inherit;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--royal-gold);
}
.recipe-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.recipe-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.recipe-card:hover .recipe-card__img {
  transform: scale(1.06);
}
.recipe-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26,26,46,0.7), transparent);
  pointer-events: none;
}
.recipe-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--royal-gold);
  color: var(--royal-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.recipe-card__time {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}
.recipe-card__body { padding: 16px; }
.recipe-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  line-height: 1.35;
}
.recipe-card__chef {
  font-size: 13px;
  color: var(--royal-emerald);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.recipe-card__chef-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--royal-gold);
}
.recipe-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
}
.recipe-card__rating {
  color: var(--royal-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* ── Product Card ──────────────────────────────────────────── */
.product-card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--royal-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-card__body { padding: 16px; }
.product-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--royal-dark);
  margin-bottom: 4px;
}
.product-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--royal-saffron);
  font-family: var(--font-heading);
}
.product-card__weight {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold     { background: rgba(212,168,83,0.15); color: var(--royal-gold-dark); }
.badge-saffron  { background: rgba(255,107,53,0.12); color: var(--royal-saffron-dark); }
.badge-emerald  { background: rgba(45,106,79,0.12); color: var(--royal-emerald); }
.badge-ruby     { background: rgba(230,57,70,0.12); color: var(--royal-ruby); }
.badge-navy     { background: rgba(15,52,96,0.12); color: var(--royal-navy); }
.badge-gray     { background: var(--gray-100); color: var(--gray-600); }

/* Status Badges */
.badge-active    { background: #ECFDF5; color: #065F46; }
.badge-inactive  { background: #FEF2F2; color: #991B1B; }
.badge-pending   { background: #FFFBEB; color: #92400E; }
.badge-approved  { background: #ECFDF5; color: #065F46; }
.badge-rejected  { background: #FEF2F2; color: #991B1B; }
.badge-draft     { background: var(--gray-100); color: var(--gray-500); }
.badge-placed    { background: #EFF6FF; color: #1E40AF; }
.badge-confirmed { background: #ECFDF5; color: #065F46; }
.badge-shipped   { background: #FFF7ED; color: #92400E; }
.badge-delivered { background: #ECFDF5; color: #065F46; }
.badge-cancelled { background: #FEF2F2; color: #991B1B; }
.badge-affiliate  { background: #EFF6FF; color: #1D4ED8; }
.badge-self-shipped { background: #ECFDF5; color: #166534; }

/* Coin Badge */
.coin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border: 1px solid var(--royal-gold);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--royal-gold-dark);
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar-royal {
  background: var(--royal-dark);
  border-bottom: 1px solid rgba(212,168,83,0.12);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  padding: 0;
  transition: all var(--transition);
}
.navbar-royal.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 0;
}
.navbar-royal__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.navbar-royal__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.navbar-royal__logo img {
  height: 38px;
  width: auto;
  border-radius: var(--radius-xs);
}
.navbar-royal__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--royal-gold);
  font-weight: 800;
}
.navbar-royal__search {
  flex: 1;
  max-width: 420px;
}
.navbar-royal__search input {
  width: 100%;
  padding: 10px 20px;
  border: 1.5px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-full);
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
  font-family: var(--font-body);
  background: rgba(255,255,255,0.06);
  color: var(--royal-cream);
}
.navbar-royal__search input::placeholder { color: rgba(255,248,240,0.4); }
.navbar-royal__search input:focus {
  border-color: var(--royal-gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.1);
}
.navbar-royal__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-royal__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,248,240,0.7);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none !important;
  white-space: nowrap;
}
.navbar-royal__link:hover {
  background: rgba(212,168,83,0.1);
  color: var(--royal-gold);
}
.navbar-royal__link--active {
  color: var(--royal-gold);
  background: rgba(212,168,83,0.1);
}
.navbar-royal__link--admin {
  color: var(--royal-gold) !important;
  font-weight: 700;
  border: 1px solid rgba(212,168,83,0.3);
  background: rgba(212,168,83,0.08);
}
.navbar-royal__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--royal-cream);
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.navbar-royal__hamburger:hover {
  background: rgba(212,168,83,0.15);
  border-color: var(--royal-gold);
}

/* Mobile Nav Slide */
.navbar-royal__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--royal-dark);
  border-left: 1px solid rgba(212,168,83,0.15);
  z-index: var(--z-modal);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transition: right var(--transition);
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
}
.navbar-royal__mobile-menu.open { right: 0; }
.navbar-royal__mobile-menu .navbar-royal__link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-modal) - 1);
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { display: block; }

/* ── Mobile Bottom Navigation ──────────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--royal-dark);
  border-top: 1px solid rgba(212,168,83,0.15);
  z-index: var(--z-sticky);
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: rgba(255,248,240,0.5);
  font-size: 10px;
  font-weight: 700;
  transition: all var(--transition-fast);
  flex: 1;
  height: 100%;
  position: relative;
  letter-spacing: 0.3px;
}
.mobile-bottom-nav__icon {
  font-size: 20px;
  margin-bottom: 2px;
  transition: transform var(--transition-spring);
}
.mobile-bottom-nav__item:hover .mobile-bottom-nav__icon,
.mobile-bottom-nav__item.active .mobile-bottom-nav__icon {
  transform: translateY(-3px) scale(1.1);
}
.mobile-bottom-nav__item.active {
  color: var(--royal-gold);
}
.mobile-bottom-nav__item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--royal-gold);
  border-radius: 0 0 4px 4px;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero-royal {
  background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal-deep) 40%, var(--royal-navy) 100%);
  color: var(--royal-cream);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-royal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212,168,83,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,107,53,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212,168,83,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-royal__content { position: relative; z-index: 1; }
.hero-royal h1 {
  color: var(--royal-cream);
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}
.hero-royal h1 span { color: var(--royal-gold); }
.hero-royal p {
  color: rgba(255,248,240,0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-royal__search {
  max-width: 560px;
  margin: 36px auto 0;
}
.hero-royal__search form {
  display: flex;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid rgba(212,168,83,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}
.hero-royal__search input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  font-size: 15px;
  outline: none;
  font-family: var(--font-body);
  background: transparent;
  color: var(--royal-cream);
}
.hero-royal__search input::placeholder { color: rgba(255,248,240,0.45); }
.hero-royal__search button {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-dark));
  color: var(--royal-dark);
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}
.hero-royal__search button:hover {
  background: linear-gradient(135deg, var(--royal-gold-light), var(--royal-gold));
}
.hero-royal__stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-royal__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--royal-gold);
  font-family: var(--font-heading);
}
.hero-royal__stat-label {
  font-size: 13px;
  color: rgba(255,248,240,0.5);
}

/* ── Section Headings (legacy compat) ──────────────────────── */
.section-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 4px;
  color: var(--royal-dark);
}
.section-dark .section-title { color: var(--royal-cream); }
.section-subtitle { color: var(--gray-400); margin-bottom: 8px; font-size: 14px; }
.section-divider {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-gold), var(--royal-saffron));
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ── Recipe Grid (legacy compat) ───────────────────────────── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-required::after {
  content: ' *';
  color: var(--royal-ruby);
}
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--royal-dark);
  background: #fff;
  transition: all var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.12);
}
.form-control::placeholder { color: var(--gray-400); }
.form-group { margin-bottom: 20px; }
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--royal-ruby); margin-top: 4px; }

/* Dark form variant */
.form-control-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,168,83,0.2);
  color: var(--royal-cream);
}
.form-control-dark::placeholder { color: rgba(255,248,240,0.4); }
.form-control-dark:focus {
  border-color: var(--royal-gold);
  background: rgba(255,255,255,0.1);
}

/* Checkbox / Toggle */
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--royal-gold);
  cursor: pointer;
}

/* ── Tables ────────────────────────────────────────────────── */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: #fff;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--royal-cream); }

/* ── Stat Cards ────────────────────────────────────────────── */
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.stat-card--gold::before   { background: linear-gradient(90deg, var(--royal-gold), var(--royal-gold-light)); }
.stat-card--saffron::before { background: linear-gradient(90deg, var(--royal-saffron), var(--royal-saffron-light)); }
.stat-card--emerald::before { background: linear-gradient(90deg, var(--royal-emerald), var(--royal-emerald-light)); }
.stat-card--navy::before    { background: linear-gradient(90deg, var(--royal-navy), #1A5276); }
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stat-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.stat-card__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--royal-dark);
  line-height: 1;
  font-family: var(--font-heading);
}
.stat-card__label {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.alert-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert-error   { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }
.alert-info    { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--royal-gold); }
.breadcrumb__sep { color: var(--gray-300); }

/* ── Order Timeline ────────────────────────────────────────── */
.order-timeline { list-style: none; padding: 0; position: relative; }
.order-timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.order-timeline__item {
  display: flex;
  gap: 16px;
  padding: 0 0 24px 0;
  position: relative;
  align-items: flex-start;
}
.order-timeline__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  z-index: 1;
  transition: all var(--transition);
}
.order-timeline__dot--active {
  background: var(--royal-emerald);
  color: #fff;
}
.order-timeline__dot--current {
  background: var(--royal-gold);
  color: var(--royal-dark);
  box-shadow: 0 0 0 4px rgba(212,168,83,0.2);
}
.order-timeline__content { flex: 1; padding-top: 4px; }
.order-timeline__title { font-size: 14px; font-weight: 600; color: var(--royal-dark); }
.order-timeline__time { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ── Video Embed ───────────────────────────────────────────── */
.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--royal-dark);
  margin: 24px 0;
  box-shadow: var(--shadow-lg);
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Ad Slot ───────────────────────────────────────────────── */
.ad-slot { text-align: center; margin: 24px 0; }
.ad-slot__label {
  font-size: 9px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.ad-slot img { max-width: 100%; border-radius: var(--radius-md); }

/* ── Loading Spinner ───────────────────────────────────────── */
.loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(212,168,83,0.2);
  border-top-color: var(--royal-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Footer ────────────────────────────────────────────────── */
.footer-royal {
  background: var(--royal-midnight);
  color: rgba(255,248,240,0.6);
  padding: 64px 0 0;
  position: relative;
}
.footer-royal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), var(--royal-saffron), var(--royal-gold), transparent);
}
.footer-royal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}
.footer-royal h4 {
  color: var(--royal-gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-royal a {
  color: rgba(255,248,240,0.5);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  transition: all var(--transition-fast);
}
.footer-royal a:hover {
  color: var(--royal-gold);
  padding-left: 4px;
}
.footer-royal__brand p {
  color: rgba(255,248,240,0.4);
  font-size: 13px;
  line-height: 1.6;
}
.footer-royal__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-royal__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold);
  font-size: 14px;
  margin: 0;
  transition: all var(--transition-fast);
}
.footer-royal__social a:hover {
  background: var(--royal-gold);
  color: var(--royal-dark);
  padding-left: 0;
}
.footer-royal__newsletter input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,168,83,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--royal-cream);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
  margin-bottom: 8px;
}
.footer-royal__newsletter input::placeholder { color: rgba(255,248,240,0.3); }
.footer-royal__newsletter input:focus { border-color: var(--royal-gold); }
.footer-royal__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,248,240,0.35);
}

/* ── Auth Page (Login, Register, OTP) ──────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--royal-dark), var(--royal-deep), var(--royal-navy));
  padding: 24px;
  position: relative;
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(212,168,83,0.08), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,107,53,0.05), transparent 50%);
  pointer-events: none;
}
.auth-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 64px rgba(0,0,0,0.3);
}
.auth-card__logo {
  text-align: center;
  margin-bottom: 32px;
}
.auth-card__logo img { height: 48px; margin: 0 auto 12px; border-radius: var(--radius-sm); }
.auth-card__logo h2 {
  color: var(--royal-gold);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.auth-card__logo p { color: rgba(255,248,240,0.5); font-size: 14px; }
.auth-card .form-label { color: rgba(255,248,240,0.7); }
.auth-card .form-control {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,168,83,0.2);
  color: var(--royal-cream);
}
.auth-card .form-control::placeholder { color: rgba(255,248,240,0.35); }
.auth-card .form-control:focus {
  border-color: var(--royal-gold);
  background: rgba(255,255,255,0.1);
}

/* ── Info/Timing Cards (Recipe Detail) ─────────────────────── */
.info-card {
  background: var(--royal-cream);
  border: 1px solid var(--royal-sand);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  min-width: 80px;
  transition: all var(--transition-fast);
}
.info-card:hover {
  border-color: var(--royal-gold);
  transform: translateY(-2px);
}
.info-card__value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--royal-saffron);
}
.info-card__label {
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* ── Reaction Bar ──────────────────────────────────────────── */
.reaction-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--royal-cream);
  border: 1px solid var(--royal-sand);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
}
.reaction-bar__title {
  font-size: 12px;
  color: var(--royal-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reaction-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--royal-sand);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  font-family: var(--font-body);
}
.reaction-btn:hover {
  border-color: var(--royal-gold);
  background: rgba(212,168,83,0.08);
  transform: scale(1.05);
}
.reaction-btn.active {
  border-color: var(--royal-gold);
  background: rgba(212,168,83,0.12);
  color: var(--royal-gold-dark);
}
.reaction-btn-disabled {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  cursor: not-allowed;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  font-family: var(--font-body);
  opacity: 0.6;
  pointer-events: none;
}
.reaction-count {
  font-size: 11px;
  background: var(--royal-sand);
  color: var(--gray-700);
  border-radius: 10px;
  padding: 1px 7px;
  font-weight: 700;
}
.reaction-btn.active .reaction-count {
  background: var(--royal-gold);
  color: #fff;
}

/* ── Premium Lock Overlay ──────────────────────────────────── */
.premium-lock-overlay {
  background: rgba(255,255,255,0.96);
  border: 2px solid var(--royal-gold);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 48px 36px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
}
.premium-lock-overlay__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
  font-size: 36px;
}

/* ── Cooking Mode Overlay ──────────────────────────────────── */
.cooking-mode-trigger {
  background: linear-gradient(135deg, var(--royal-cream), #fff);
  border: 1.5px solid var(--royal-gold);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}
.cooking-mode-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,83,0.3);
}

/* ── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}
.pagination a:hover {
  background: var(--royal-gold);
  color: var(--royal-dark);
  border-color: var(--royal-gold);
}
.pagination .active {
  background: var(--royal-gold);
  color: var(--royal-dark);
  border-color: var(--royal-gold);
  font-weight: 700;
}
.pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .hero-royal { padding: 72px 0 60px; }
}

@media (max-width: 768px) {
  .navbar-royal__search { display: none; }
  .navbar-royal__links { display: none; }
  .navbar-royal__hamburger { display: flex; }
  .navbar-royal__mobile-menu { display: flex; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 74px; }

  .section { padding: 48px 0; }
  .hero-royal { padding: 56px 0 48px; }
  .hero-royal h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

  .footer-royal__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .auth-card { padding: 32px 24px; }
  .stat-card { padding: 18px; }
}

@media (max-width: 480px) {
  .recipe-grid { grid-template-columns: 1fr; }
  .hero-royal__stats { gap: 24px; }
  .hero-royal__search form { flex-direction: column; border-radius: var(--radius-lg); }
  .hero-royal__search input { border-radius: var(--radius-sm); }
  .hero-royal__search button { border-radius: var(--radius-sm); }
  .footer-royal__grid { grid-template-columns: 1fr; }
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(212,168,83,0); }
}

.animate-fade-in { animation: fadeInUp 0.5s ease both; }
.animate-fade-in-delay-1 { animation: fadeInUp 0.5s ease 0.1s both; }
.animate-fade-in-delay-2 { animation: fadeInUp 0.5s ease 0.2s both; }
.animate-fade-in-delay-3 { animation: fadeInUp 0.5s ease 0.3s both; }
.animate-scale { animation: scaleIn 0.4s ease both; }
.animate-pulse-gold { animation: pulse-gold 2s ease infinite; }

/* ── Utility ───────────────────────────────────────────────── */
.bg-cream    { background: var(--royal-cream); }
.bg-ivory    { background: var(--royal-ivory); }
.bg-dark     { background: var(--royal-dark); }
.bg-deep     { background: var(--royal-deep); }
.rounded-lg  { border-radius: var(--radius-lg); }
.rounded-xl  { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }
.overflow-hidden { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.truncate-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-top { position: sticky; top: 80px; }
.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .navbar-royal, .footer-royal, .mobile-bottom-nav, .ad-slot,
  .reaction-bar, .cooking-mode-trigger, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .container { max-width: 100%; }
}

/* ── Dual Layout Utilities ─────────────────────────────────── */
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
  .desktop-only { display: block !important; }
}
@media (max-width: 767px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}
