/* ============================================================
   INDIE'S KITCHEN FEAST — Brand Theme
   Colors: Golden Yellow #F5B800, Black #111111, Red #CC2200
   Aesthetic: Bold · Warm · Indian Street Food Energy
   ============================================================ */

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

/* ============================================================
   DESIGN TOKENS — NEW BRAND PALETTE
   ============================================================ */
:root {
  /* ── Brand Core ── */
  --gold:           #F5B800;
  --gold-light:     #FFD84D;
  --gold-deep:      #C48F00;
  --gold-glow:      rgba(245, 184, 0, 0.22);
  --gold-soft:      rgba(245, 184, 0, 0.10);

  --red:            #CC2200;
  --red-light:      #FF3A1A;
  --red-deep:       #991A00;
  --red-glow:       rgba(204, 34, 0, 0.18);

  --black:          #0E0C0A;
  --ink:            #1A1714;
  --charcoal:       #111111;

  --cream:          #FFF9EC;
  --cream-2:        #FFF3D0;
  --ivory:          #FFFDF7;
  --warm-white:     #FEFCF5;

  --sand:           #E8C96A;
  --sand-light:     #F5E199;

  /* ── Functional ── */
  --text-1:   #0E0C0A;
  --text-2:   #2E2A24;
  --text-3:   #6B5E48;
  --text-4:   #A89070;

  --border:   rgba(245, 184, 0, 0.20);
  --border-2: rgba(245, 184, 0, 0.40);

  --shadow-sm: 0 2px 8px  rgba(14,12,10,0.07);
  --shadow-md: 0 8px 30px rgba(14,12,10,0.12);
  --shadow-lg: 0 20px 60px rgba(14,12,10,0.16);
  --shadow-xl: 0 40px 100px rgba(14,12,10,0.22);

  /* ── Previously used aliases (kept for compatibility) ── */
  --saffron:       var(--gold);
  --saffron-light: var(--gold-light);
  --saffron-deep:  var(--gold-deep);
  --saffron-glow:  var(--gold-glow);
  --spice:         var(--red);
  --spice-light:   var(--red-light);
  --bark:          #5A3A1A;

  /* ── Typography ── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* ── Spacing ── */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Noise grain overlay ── */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(255, 249, 236, 0.82);
  border-bottom: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.header-inner {
  padding: 14px 32px;
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(255, 249, 236, 0.97);
  box-shadow: 0 4px 24px rgba(245,184,0,0.15);
}

/* ── LOGO — fork + chef hat text mark ── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-decoration: none;
}

/* Fork + hat icon rendered in CSS */
.logo-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.logo-icon .fork-hat {
  font-size: 22px;
  line-height: 1;
}

.brand-main {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
  /* Gold → deep gold gradient, matching logo text */
  background: linear-gradient(135deg, #F5B800 0%, #C48F00 60%, #F5B800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* "Kitchen Feast." in black with red accent dot */
.brand-main .accent-red {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-3);
  text-transform: uppercase;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-4);
  letter-spacing: 0.5px;
  margin-top: 3px;
  padding-top: 3px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: linear-gradient(90deg, var(--black), #1E1400, var(--black));
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px;
  text-align: center;
  font-size: 13px;
}

.promo-bar span {
  background: var(--gold);
  color: var(--black);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
}

.promo-bar a {
  color: var(--gold-light);
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

/* PRIMARY — gold button */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 6px 20px rgba(245,184,0,0.40);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(245,184,0,0.55);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

/* DARK — black button */
.btn-dark {
  background: var(--black);
  color: var(--gold-light);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gold);
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: var(--ink);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

/* GHOST */
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-2);
  color: var(--text-2);
}
.btn-ghost:hover {
  background: var(--cream-2);
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* RED CTA — eye-catching */
.btn-red {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: #fff;
  box-shadow: 0 6px 20px rgba(204,34,0,0.35);
  border: none;
}
.btn-red:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(204,34,0,0.50);
}

.btn-danger {
  background: rgba(204,34,0,0.1);
  color: var(--red);
  border: 1px solid rgba(204,34,0,0.25);
}
.btn-danger:hover { background: var(--red); color: white; }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 12px; }

.btn:disabled {
  opacity: 0.45; cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Ripple */
.btn { position: relative; overflow: hidden; }
.btn span.ripple {
  position: absolute; border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255,255,255,0.5);
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px;
  margin: 48px auto;
}

/* ============================================================
   PILL / BADGE
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}

.pill-gold {
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.35);
  color: var(--gold-deep);
}

.pill-red {
  background: rgba(204,34,0,0.10);
  border: 1px solid rgba(204,34,0,0.25);
  color: var(--red);
}

.pill-green {
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.25);
  color: #0d9668;
}

/* ============================================================
   CARD BASE
   ============================================================ */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-hover {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   TOAST
   ============================================================ */
.cart-toast {
  position: fixed; top: 24px; right: 24px;
  background: var(--black);
  color: var(--gold-light);
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 99999;
  border-left: 4px solid var(--gold);
  transform: translateY(-20px) scale(0.9);
}
.cart-toast.show {
  opacity: 1; transform: translateY(0) scale(1);
}

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(14,12,10,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 8000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }

.premium-modal {
  background: var(--warm-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 460px; max-width: 94vw;
  box-shadow: var(--shadow-xl);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.show .premium-modal {
  transform: translateY(0) scale(1);
}
.premium-modal h2 {
  font-family: var(--font-display);
  font-size: 22px; color: var(--text-1);
  margin-bottom: 24px;
}
.premium-modal input,
.premium-modal textarea {
  width: 100%; padding: 12px 15px;
  background: var(--cream);
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-md);
  font-size: 14px; color: var(--text-1);
  margin-bottom: 12px; transition: all 0.2s;
}
.premium-modal input:focus,
.premium-modal textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.12);
  background: var(--ivory);
}
.premium-modal textarea { min-height: 90px; resize: vertical; }
.premium-modal .grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 12px;
}
.premium-modal .grid-2 input { margin-bottom: 0; }
.premium-modal label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-2);
  margin: 10px 0; cursor: pointer;
}
#formError {
  color: var(--red); font-size: 13px;
  margin-top: 10px; min-height: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 60px 0 32px;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand-main {
  font-size: 28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand .brand-sub { color: rgba(255,255,255,0.35); }

.footer-brand p {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.40); margin-top: 14px;
}
.contact-row { font-size: 13px; color: rgba(255,255,255,0.40); margin-top: 8px; }

.footer-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.50);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  font-size: 12px; color: rgba(255,255,255,0.28);
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(245,184,0,0.08);
  border: 1px solid rgba(245,184,0,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--gold);
  cursor: pointer; transition: all 0.2s; font-weight: 700;
}
.social-btn:hover {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page { background: var(--ivory); padding: 64px 0 100px; }

.menu-page-header {
  text-align: center;
  padding: 80px 24px 56px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.menu-page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(245,184,0,0.10), transparent);
}
.menu-page-header .page-eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 16px; position: relative;
}
.menu-page-header h1 {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700;
  color: var(--text-1); line-height: 1.1;
  margin-bottom: 14px; position: relative;
}
.menu-page-header h1 em { font-style: italic; color: var(--red); }
.menu-page-header p {
  font-size: 16px; color: var(--text-3);
  max-width: 480px; margin: 0 auto; position: relative;
}
.menu-category-label {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600; color: var(--text-1);
  margin: 56px 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.menu-category-label::before {
  content: "";
  width: 4px; height: 28px;
  background: linear-gradient(180deg, var(--gold), var(--red));
  border-radius: 2px; flex-shrink: 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.menu-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,184,0,0.40);
}
.menu-card img {
  width: 100%; height: 170px;
  object-fit: cover; transition: transform 0.5s ease;
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card-body { padding: 16px; }
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: var(--text-1); margin-bottom: 4px;
}
.menu-card-body p { font-size: 12px; color: var(--text-3); line-height: 1.5; }

/* Menu popup */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(14,12,10,0.75);
  backdrop-filter: blur(8px);
  display: none; justify-content: center; align-items: center;
  z-index: 9000;
}
.menu-overlay.show { display: flex; }
.menu-popup {
  background: var(--warm-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 36px; max-width: 420px; width: 92%;
  position: relative; box-shadow: var(--shadow-xl);
  animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes popIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.menu-popup h2 {
  font-family: var(--font-display);
  font-size: 22px; color: var(--text-1); margin-bottom: 12px;
}
.menu-popup p {
  font-size: 14px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 20px;
}
.close-popup {
  position: absolute; top: 16px; right: 18px;
  font-size: 24px; color: var(--text-4);
  cursor: pointer; transition: color 0.2s; line-height: 1;
}
.close-popup:hover { color: var(--red); }
.popup-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.popup-badges span {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
  background: rgba(245,184,0,0.10);
  border: 1px solid rgba(245,184,0,0.25);
  color: var(--gold-deep);
}
.menu-continue { margin-top: 72px; text-align: center; padding-top: 48px; border-top: 1px solid var(--border); }
.menu-continue p { font-size: 14px; color: var(--text-3); margin-bottom: 20px; }

/* ============================================================
   PLANS PAGE
   ============================================================ */
.plans-page { background: var(--ivory); min-height: 100vh; padding-bottom: 100px; }

.plans-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.plans-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(245,184,0,0.10), transparent);
}
.plans-hero::after {
  content: "🍴";
  position: absolute;
  font-size: 200px;
  opacity: 0.035;
  top: -20px; right: 5%;
  pointer-events: none;
}
.plans-hero .page-eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 16px; position: relative;
}
.plans-hero h1 {
  font-family: var(--font-display);
  font-size: 50px; font-weight: 700; line-height: 1.1;
  color: var(--text-1); margin-bottom: 14px; position: relative;
}
.plans-hero h1 em { font-style: italic; color: var(--red); }
.plans-hero p {
  font-size: 16px; color: var(--text-3);
  max-width: 460px; margin: 0 auto; position: relative;
}
.plans-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; padding: 56px 0;
}
.image-plan-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
}
.image-plan-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.image-plan-card:hover::before { opacity: 1; }
.image-plan-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(245,184,0,0.18), var(--shadow-lg);
  border-color: rgba(245,184,0,0.45);
}
.image-plan-card img {
  width: 100%;
  height: auto !important;
  object-fit: unset !important;
  border-radius: 16px 16px 0 0;
  display: block;
}
.plan-content { padding: 24px 22px; }
.plan-content h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text-1); margin-bottom: 6px;
}
.starting-price {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--gold-deep);
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.30);
  padding: 4px 12px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.quantity-control {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 14px 0;
}
.quantity-control button {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--cream); border: 1.5px solid var(--border-2);
  font-size: 18px; font-weight: 700; color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.quantity-control button:hover {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.quantity-control span {
  font-size: 18px; font-weight: 700;
  color: var(--text-1); min-width: 24px; text-align: center;
}
.duration-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.duration-buttons button {
  flex: 1; min-width: 80px;
  padding: 9px 12px; border-radius: var(--radius-full);
  border: 1.5px solid var(--border-2);
  background: transparent;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: all 0.2s;
}
.duration-buttons button:hover {
  border-color: var(--gold); color: var(--gold-deep);
  background: rgba(245,184,0,0.07);
}
.duration-buttons button.selected {
  background: var(--gold); border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(245,184,0,0.35);
}

/* Trial options */
.trial-options {
  display: none;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.trial-options.visible { display: block; }
.trial-options button {
  width: 100%; margin-bottom: 8px; padding: 10px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-2);
  background: transparent;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: all 0.2s;
}
.trial-options button:hover {
  border-color: var(--gold); color: var(--gold-deep);
  background: rgba(245,184,0,0.07);
}
.trial-options button.selected {
  background: var(--gold); border-color: var(--gold); color: var(--black);
}
.premium-addon {
  margin-top: 14px; padding: 14px;
  background: var(--cream); border-radius: var(--radius-md);
  border: 1px solid var(--border-2);
  animation: fadeIn 0.3s ease;
}
.premium-addon label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--gold-deep); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.premium-addon select, .breakfast-list select {
  width: 100%; padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-2);
  background: var(--warm-white);
  font-size: 13px; color: var(--text-1);
  margin-top: 4px; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C48F00'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.premium-addon select:focus, .breakfast-list select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,184,0,0.10);
}
.breakfast-list { margin-top: 10px; }
.add-plan-btn {
  width: 100%; margin-top: 16px; padding: 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 18px rgba(245,184,0,0.30);
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  border: none;
}
.add-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,184,0,0.50);
}
.plans-main-continue { text-align: center; padding: 0 24px 80px; }
#plansContinueBtn {
  padding: 16px 48px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(245,184,0,0.35);
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  border: none;
}
#plansContinueBtn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(245,184,0,0.55);
}
#plansContinueBtn:disabled {
  background: #e8e0cc; color: var(--text-4); box-shadow: none;
}

/* Selector sub-buttons */
.selector-buttons { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.selector-buttons button {
  padding: 8px 12px; border: 1px solid var(--border);
  background: transparent; border-radius: 8px;
  cursor: pointer; font-size: 13px; text-align: left; transition: all 0.2s;
}
.selector-buttons button:hover { border-color: var(--gold); background: rgba(245,184,0,0.06); }
.selector-buttons button.selected {
  background: var(--gold-deep); color: white; border-color: var(--gold-deep);
}
.weekly-days-selector label,
.monthly-meals-selector label {
  font-size: 12px; font-weight: 600; color: var(--text-3);
  display: block; margin-top: 12px;
}

/* ============================================================
   CUSTOM MEAL MODAL
   ============================================================ */
.custom-modal {
  position: fixed; inset: 0;
  background: rgba(14,12,10,0.78);
  backdrop-filter: blur(8px);
  display: none; justify-content: center; align-items: center;
  z-index: 9000;
}
.custom-box {
  background: var(--warm-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 36px; width: 520px; max-width: 94vw;
  max-height: 88vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.custom-box h2 {
  font-family: var(--font-display);
  font-size: 24px; color: var(--text-1); margin-bottom: 20px;
}
.custom-box::-webkit-scrollbar { width: 4px; }
.custom-box::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }
.meal-duration { margin-bottom: 18px; }
.meal-duration label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--text-3); letter-spacing: 0.5px; margin-bottom: 8px; text-transform: uppercase;
}
#mealDuration {
  width: 100%; padding: 10px 14px;
  border-radius: var(--radius-md); border: 1.5px solid var(--border-2);
  background: var(--cream); font-size: 14px; color: var(--text-1);
}
#mealDuration:focus { border-color: var(--gold); }
.meal-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; border-radius: var(--radius-md);
  background: var(--cream); margin-bottom: 8px;
  border: 1px solid var(--border); transition: border-color 0.2s;
}
.meal-row:hover { border-color: var(--border-2); }
.meal-row > span:first-child { font-size: 13px; font-weight: 500; color: var(--text-2); }
.meal-qty-ctrl { display: flex; align-items: center; gap: 10px; }
.meal-qty-ctrl button {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--warm-white); border: 1px solid var(--border-2);
  font-size: 15px; font-weight: 700; color: var(--text-2);
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.meal-qty-ctrl button:hover {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.meal-qty-ctrl span { font-size: 15px; font-weight: 700; min-width: 20px; text-align: center; color: var(--text-1); }
.addon-title {
  font-size: 13px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.5px; margin: 18px 0 10px;
}
.addon-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: var(--cream);
  border-radius: var(--radius-md); border: 1px solid var(--border); margin-bottom: 8px;
}
.addon-row > span:first-child { font-size: 13px; font-weight: 500; color: var(--text-2); }
.addon-controls { display: flex; align-items: center; gap: 10px; }
.addon-controls button {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--warm-white); border: 1px solid var(--border-2);
  font-size: 16px; font-weight: 700; color: var(--text-2);
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.addon-controls button:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.addon-controls span { font-weight: 700; color: var(--text-1); min-width: 16px; text-align: center; }
.addon-price { font-size: 12px; font-weight: 700; color: var(--gold-deep); }
.price-summary {
  margin-top: 18px; background: var(--cream);
  border-radius: var(--radius-md); border: 1px solid var(--border-2); padding: 16px;
}
.price-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); padding: 5px 0; }
.price-row.final {
  font-size: 16px; font-weight: 700; color: var(--text-1);
  padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--border-2);
}
.custom-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.confirm-meal-btn {
  padding: 13px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 18px rgba(245,184,0,0.30); transition: all 0.25s; border: none;
}
.confirm-meal-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,184,0,0.45); }
.cancel-meal-btn {
  padding: 12px; border-radius: var(--radius-full);
  background: transparent; border: 1.5px solid var(--border-2);
  color: var(--text-3); font-size: 14px; font-weight: 600; transition: all 0.2s;
}
.cancel-meal-btn:hover { background: var(--cream); color: var(--text-2); }

/* ============================================================
   AREAS PAGE
   ============================================================ */
.areas-hero {
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  border-bottom: 2px solid var(--gold);
  padding: 64px 32px 56px;
  position: relative; overflow: hidden;
}
.areas-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(245,184,0,0.08), transparent);
}
.areas-hero-content { position: relative; max-width: 1200px; margin: 0 auto; }
.areas-hero-content h1 {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700; color: var(--text-1); margin-bottom: 8px;
}
.areas-hero-content p { font-size: 15px; color: var(--text-3); }
.areas-page { padding: 48px 0 100px; }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.areas-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-sm);
}
.areas-card h2 {
  font-family: var(--font-display); font-size: 22px; color: var(--text-1); margin-bottom: 6px;
}
.areas-card > p { font-size: 13px; color: var(--text-3); margin-bottom: 22px; }
.address-input { display: flex; gap: 10px; margin-bottom: 14px; }
.address-input input {
  flex: 1; padding: 12px 16px; background: var(--cream);
  border: 1.5px solid var(--border-2); border-radius: var(--radius-md);
  font-size: 14px; color: var(--text-1); transition: all 0.2s;
}
.address-input input:focus {
  border-color: var(--gold); background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.10);
}
.address-input button {
  padding: 12px 20px; border-radius: var(--radius-md);
  background: var(--black); color: var(--gold-light);
  font-size: 13px; font-weight: 700; transition: all 0.2s; white-space: nowrap;
}
.address-input button:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }
.delivery-status { font-size: 13px; font-weight: 600; min-height: 18px; margin-bottom: 20px; }
.delivery-areas { margin: 24px 0; }
.delivery-areas h3 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-3); margin-bottom: 12px;
}
.delivery-areas ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.delivery-areas ul li {
  padding: 6px 14px; background: var(--cream);
  border: 1px solid var(--border-2); border-radius: var(--radius-full);
  font-size: 12px; font-weight: 500; color: var(--text-2);
}
.map-container {
  height: 300px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border); margin: 20px 0;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }
#continueBtn { width: 100%; margin-top: 8px; }

/* Cart Summary */
.selected-plan-box { max-width: 1200px; margin: 32px auto; padding: 0 24px; }
.selected-plan-box .summary-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm);
}
.selected-plan-box .summary-card h3 {
  font-family: var(--font-display); font-size: 18px; color: var(--text-1); margin-bottom: 16px;
}
.cart-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-2);
}
.cart-row:last-child { border-bottom: none; }
.divider { height: 1px; background: var(--border); margin: 16px 0; }
.row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 14px; color: var(--text-2);
}
.row.total {
  font-size: 16px; font-weight: 700; color: var(--text-1);
  padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--border-2);
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-premium {
  background: var(--ivory); min-height: 100vh; padding: 48px 24px 100px;
}
.checkout-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.checkout-summary { position: sticky; top: 100px; }
.checkout-summary h2 {
  font-family: var(--font-display); font-size: 22px; color: var(--text-1); margin-bottom: 20px;
}
.summary-card, .premium-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); margin-top: 0;
}
.summary-card .row { border-bottom: 1px solid var(--border); padding: 12px 0; }
.summary-card .row:last-child { border-bottom: none; }
.row.column { flex-direction: column; align-items: flex-start; gap: 10px; }
.row.column .label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-3);
}
.plan-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.plan-tag {
  display: inline-block; padding: 6px 14px;
  background: rgba(245,184,0,0.10); border: 1px solid rgba(245,184,0,0.28);
  border-radius: var(--radius-full); font-size: 12px; font-weight: 600; color: var(--gold-deep);
}
.placeholder { font-size: 13px; color: var(--text-4); font-style: italic; }
.summary-card .total {
  font-size: 18px; font-weight: 700; color: var(--text-1);
  border-top: 2px solid var(--border-2) !important; padding-top: 16px !important;
}
.summary-card .total strong { font-size: 22px; color: var(--gold-deep); }
.secure-note { margin-top: 16px; font-size: 12px; color: var(--text-4); text-align: center; }
.checkout-right { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.checkout-box {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 26px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s;
}
.checkout-box:hover { box-shadow: var(--shadow-md); }
.checkout-box h3 {
  font-family: var(--font-display); font-size: 17px; color: var(--text-1); margin-bottom: 16px;
}
.input-row { display: flex; gap: 10px; }
.input-row input {
  flex: 1; padding: 12px 14px; background: var(--cream);
  border: 1.5px solid var(--border-2); border-radius: var(--radius-md);
  font-size: 13px; color: var(--text-1); transition: all 0.2s;
}
.input-row input:focus {
  border-color: var(--gold); background: var(--ivory); box-shadow: 0 0 0 3px rgba(245,184,0,0.10);
}
.input-row button {
  padding: 12px 18px; border-radius: var(--radius-md);
  background: var(--black); color: var(--gold-light);
  font-size: 13px; font-weight: 700; transition: all 0.2s; white-space: nowrap; border: none;
}
.input-row button:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }
#referralMessage, #couponMessage { font-size: 13px; min-height: 18px; margin-top: 8px; }
#referralOffers { margin-top: 14px; }
#referralOffers > p {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-3); margin-bottom: 10px;
}
.offer-card {
  padding: 12px 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: var(--cream);
  margin-bottom: 8px; cursor: pointer; font-size: 14px; font-weight: 500;
  color: var(--text-2); transition: all 0.2s;
}
.offer-card:hover { border-color: var(--gold); background: rgba(245,184,0,0.06); color: var(--text-1); }
.offer-card.selected {
  border-color: var(--gold); background: rgba(245,184,0,0.12);
  color: var(--gold-deep); font-weight: 600;
}
.checkout-btn {
  width: 100%; margin-top: 18px; padding: 15px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(245,184,0,0.35); transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  letter-spacing: 0.3px; border: none;
}
.checkout-btn:hover {
  transform: translateY(-2px); box-shadow: 0 14px 36px rgba(245,184,0,0.55);
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream), var(--cream-2));
  opacity: 1 !important;
}
.success-card {
  max-width: 460px; width: 100%;
  background: #ffffff; border: 1px solid rgba(245,184,0,0.25);
  border-radius: 24px; padding: 40px;
  box-shadow: 0 20px 60px rgba(245,184,0,0.15), var(--shadow-lg);
  text-align: center;
}
.success-card h1 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700; color: var(--text-1); margin-bottom: 8px;
}
.success-card p { color: var(--text-2); }
.success-card .line { color: var(--text-2); }
.success-icon {
  font-size: 52px; margin-bottom: 18px;
  animation: bounceIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.1s both;
}
@keyframes bounceIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-card .subtitle {
  font-size: 14px; color: var(--text-3); line-height: 1.6; margin-bottom: 28px;
}
.success-details {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; margin-bottom: 20px; text-align: left;
}
.success-details .line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 13px; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.success-details .line:last-child { border-bottom: none; padding-bottom: 0; }
.success-details .line:first-child { padding-top: 0; }
.success-details .line strong { color: var(--text-1); font-weight: 600; }
.success-total {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-lg); padding: 18px;
  font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 24px;
}
.success-total span { font-size: 24px; }
.success-checklist {
  list-style: none; text-align: left; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; margin-bottom: 28px;
}
.success-checklist li {
  font-size: 13px; color: var(--text-2); padding: 7px 0; padding-left: 22px;
  position: relative; border-bottom: 1px solid var(--border);
}
.success-checklist li:last-child { border-bottom: none; padding-bottom: 0; }
.success-checklist li:first-child { padding-top: 0; }
.success-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.success-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   ADMIN LOGIN PAGE
   ============================================================ */
.admin-login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--black); position: relative; overflow: hidden; padding: 24px;
}
.admin-login-page::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 20%, rgba(245,184,0,0.07), transparent),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(204,34,0,0.05), transparent);
}
.admin-login-card {
  position: relative; z-index: 1; width: 400px; max-width: 94vw;
  background: rgba(255,252,245,0.04); border: 1px solid rgba(255,252,245,0.10);
  border-radius: var(--radius-xl); padding: 48px 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 50px 100px rgba(0,0,0,0.70), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: fadeUp 0.7s cubic-bezier(0.34,1.2,0.64,1) forwards;
}
.admin-brand { text-align: center; margin-bottom: 36px; }
.admin-brand .name {
  font-family: var(--font-display); font-size: 40px; font-weight: 900;
  letter-spacing: 5px; color: var(--gold-light); line-height: 1; display: block;
}
.admin-brand .sub {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,252,245,0.28); display: block; margin-top: 4px;
}
.admin-brand .badge {
  display: inline-block; margin-top: 14px; padding: 5px 16px;
  background: rgba(245,184,0,0.10); border: 1px solid rgba(245,184,0,0.28);
  border-radius: var(--radius-full); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.admin-login-card h2 {
  font-family: var(--font-display); font-size: 20px; color: rgba(255,252,245,0.90); margin-bottom: 4px;
}
.admin-login-card > p { font-size: 13px; color: rgba(255,252,245,0.38); margin-bottom: 28px; }
.admin-field { position: relative; margin-bottom: 14px; }
.admin-field input {
  width: 100%; padding: 13px 16px 13px 44px;
  background: rgba(255,252,245,0.05); border: 1px solid rgba(255,252,245,0.10);
  border-radius: var(--radius-md); font-size: 14px; color: rgba(255,252,245,0.90); transition: all 0.25s;
}
.admin-field input::placeholder { color: rgba(255,252,245,0.22); }
.admin-field input:focus {
  border-color: rgba(245,184,0,0.55); background: rgba(245,184,0,0.05);
  box-shadow: 0 0 0 4px rgba(245,184,0,0.08);
}
.admin-field-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 16px; pointer-events: none; opacity: 0.5;
}
.admin-login-btn {
  width: 100%; margin-top: 8px; padding: 14px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
  box-shadow: 0 8px 28px rgba(245,184,0,0.30);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); position: relative; overflow: hidden; border: none;
}
.admin-login-btn::after {
  content: ""; position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%; background: rgba(255,255,255,0.20);
  transform: skewX(-20deg); transition: left 0.5s;
}
.admin-login-btn:hover::after { left: 130%; }
.admin-login-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(245,184,0,0.45); }
.admin-login-error { margin-top: 12px; color: #fca5a5; font-size: 13px; text-align: center; min-height: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero-bg {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,184,0,0.18), transparent);
  top: -100px; right: -100px; z-index: 0;
}
.hero-wrapper {
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 0;
  background: white; border-radius: 24px;
  padding: 60px; box-shadow: var(--shadow-lg); margin-top: 40px;
  position: relative; z-index: 2;
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1.1; margin: 18px 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-left p {
  font-size: 16px; color: var(--text-3);
  max-width: 480px; margin-bottom: 24px;
  animation: fadeUp 1s ease forwards;
}
.hero-buttons { display: flex; gap: 12px; animation: fadeUp 1.2s ease forwards; }
.hero-right {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-right img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-xl);
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-right img.active { opacity: 1; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }

/* ============================================================
   FOOD GRID
   ============================================================ */
.food-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 30px; }
.food-card { text-align: center; padding: 16px; }
.food-card img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 10px; transition: transform 0.3s;
}
.food-card:hover img { transform: scale(1.05); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { margin: 80px auto; }
.steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 40px;
  text-align: center; background: white; border-radius: 24px;
  padding: 50px; box-shadow: var(--shadow-md);
}
.step { padding: 20px; border-radius: 16px; transition: all 0.3s ease; }
.step:hover { transform: translateY(-6px); background: var(--cream); }
.step span {
  display: inline-block; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-weight: 800; line-height: 40px; margin-bottom: 10px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { margin: 80px auto; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 30px;
  background: white; border-radius: 24px; padding: 40px; box-shadow: var(--shadow-md);
}
.testimonial {
  padding: 20px; border-left: 3px solid var(--gold);
  background: var(--cream); border-radius: 12px;
}

/* ============================================================
   MISC
   ============================================================ */
.section-box { max-width: 1200px; margin: 60px auto; padding: 0 20px; }

.terms-highlight {
  margin-top: 20px; padding: 14px 16px; border-radius: 12px;
  background: rgba(245,184,0,0.08); border-left: 4px solid var(--gold);
  font-size: 13px; line-height: 1.6;
}
.terms-highlight h4 { margin-bottom: 8px; font-size: 14px; color: var(--gold-deep); }
.terms-highlight p { margin: 4px 0; color: var(--text-2); }

/* Plan info box */
.plan-info-box {
  margin: 12px 0 10px; background: var(--cream);
  border: 1px solid var(--border-2); border-radius: 14px;
  overflow: hidden; font-size: 12px;
}
.plan-includes {
  padding: 10px 14px; background: rgba(245,184,0,0.08);
  font-size: 11px; font-weight: 700; color: var(--gold-deep);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.plan-includes span {
  font-weight: 400; color: var(--text-2); text-transform: none;
  letter-spacing: 0; font-size: 12px;
}

/* Input field */
.input-field {
  width: 100%; padding: 13px 16px;
  background: var(--warm-white); border: 1.5px solid var(--border-2);
  border-radius: var(--radius-md); font-size: 14px; color: var(--text-1); transition: all 0.2s;
}
.input-field::placeholder { color: var(--text-4); }
.input-field:focus {
  border-color: var(--gold); background: var(--ivory);
  box-shadow: 0 0 0 4px rgba(245,184,0,0.10);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.fade-up { opacity: 1; transform: translateY(20px); transition: all 0.6s ease; }
.fade-up.show { opacity: 1; transform: translateY(0); }

/* Page transitions */
body { opacity: 1; transition: opacity 0.5s ease; }
body.loaded { opacity: 1; }
a:hover { opacity: 0.8; }
img:hover { filter: brightness(1.05); }

/* Loader */
#loader {
  position: fixed; inset: 0; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 999999; transition: opacity 0.6s ease;
}
.loader-box { text-align: center; }
.loader-logo {
  font-family: var(--font-display); font-size: 42px;
  letter-spacing: 6px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.loader-bar { width: 120px; height: 4px; background: var(--border); overflow: hidden; border-radius: 10px; }
.loader-bar::after {
  content: ""; display: block; width: 40%; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  animation: loading 1s infinite;
}
@keyframes loading { 0% { transform: translateX(-100%); } 100% { transform: translateX(300%); } }

/* Global modal */
#globalModal { z-index: 9999; }
#ikfWaitingPopup {
  display: none; position: fixed !important; top: 0 !important;
  left: 0 !important; z-index: 2147483647 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .areas-layout { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .checkout-wrapper { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .trust-grid, .food-grid, .steps, .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }
  .brand-main   { font-size: 26px; letter-spacing: 3px; }
  .brand-tagline { font-size: 10px; }
  .menu-page-header h1 { font-size: 36px; }
  .plans-hero h1 { font-size: 36px; }
  .areas-hero-content h1 { font-size: 32px; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .plans-image-grid { grid-template-columns: 1fr; padding: 32px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .custom-box { padding: 24px 20px; }
  .premium-modal { padding: 28px 22px; }
  .checkout-premium { padding: 32px 16px 80px; }
  .areas-hero { padding: 44px 24px 36px; }
}
@media (max-width: 500px) {
  .btn-lg { padding: 14px 28px; }
  .duration-buttons { flex-wrap: wrap; }
  .duration-buttons button { flex: none; width: calc(50% - 4px); }
  .trust-grid, .food-grid, .steps, .testimonial-grid { grid-template-columns: 1fr; }
}