:root {
    --maroon: #3D0C0C;
    --maroon-light: #5a1515;
    --orange: #E07B1A;
    --orange-light: #f5943a;
    --cream: #FFF8F0;
    --warm-white: #FFFDF9;
    --text-dark: #1a0a00;
    --text-mid: #4a2a10;
    --text-light: #8a6040;
    --border: rgba(224,123,26,0.2);
    --shadow: 0 8px 40px rgba(61,12,12,0.12);
    --shadow-lg: 0 20px 60px rgba(61,12,12,0.18);
    --brand-logo-width: 320px;
    --brand-logo-height: 104px;
    --brand-logo-width-mobile: 220px;
    --brand-logo-height-mobile: 76px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5% 0 10px;
    height: 80px;
    background: rgba(255,253,249,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224,123,26,0.14);
    box-shadow: 0 2px 20px rgba(61,12,12,0.06);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--maroon);
    text-decoration: none;
    margin-left: 0;
  }
  .nav-logo span { color: var(--orange); }
  .nav-logo-icon {
    width: var(--brand-logo-width); height: var(--brand-logo-height);
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
  }
  .nav-logo-icon img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .brand-logo {
    width: var(--brand-logo-width);
    height: var(--brand-logo-height);
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--maroon) !important; transform: translateY(-1px); }
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer; padding: 5px;
  }
  .hamburger span {
    display: block; width: 25px; height: 2px;
    background: var(--maroon); border-radius: 2px;
    transition: all 0.3s;
  }
  #nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(26, 10, 8, 0.44);
    backdrop-filter: blur(4px) saturate(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }
  #nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ---- PAGE SECTIONS ---- */
  .page { display: none; padding-top: 80px; min-height: 100vh; }
  .page.active { display: block; animation: fadeIn 0.4s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  /* ---- HERO ---- */
  .hero {
    background: var(--maroon);
    position: relative; overflow: hidden;
    padding: 6rem 5% 5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
    min-height: 90vh;
  }
  .hero::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(224,123,26,0.25) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: 20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(224,123,26,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-content { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-block;
    background: rgba(224,123,26,0.2);
    color: var(--orange-light);
    border: 1px solid rgba(224,123,26,0.4);
    padding: 0.3rem 1rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s ease 0.1s both;
  }
  .hero h1 {
    font-size: 40px;
    color: white; line-height: 1.1;
    margin-bottom: 1.2rem;
    animation: fadeSlideUp 0.6s ease 0.2s both;
  }
  .hero h1 span { color: var(--orange); }
  .hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem; line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.6s ease 0.3s both;
  }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeSlideUp 0.6s ease 0.4s both;
  }
  .btn-primary {
    background: var(--orange);
    color: white; border: none;
    padding: 0.85rem 2rem; border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(224,123,26,0.4);
  }
  .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,123,26,0.45); }
  .btn-outline {
    background: transparent;
    color: white; border: 2px solid rgba(255,255,255,0.4);
    padding: 0.85rem 2rem; border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.25s;
  }
  .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
  .hero-visual {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
    animation: fadeSlideUp 0.6s ease 0.3s both;
  }
  .hero-card-stack {
    position: relative; width: 520px; height: 360px;
  }
  .meal-float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    color: white;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .meal-float-card .icon { font-size: 1.8rem; }
  .meal-float-card strong { display: block; font-size: 0.95rem; font-family: 'Fredoka', sans-serif; }
  .meal-float-card span { font-size: 0.78rem; opacity: 0.7; }
  .hero-qr-wrap {
    position: absolute; top: 26px; left: 272px;
    width: 232px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 18px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
    animation: floatYSoft 4.2s ease-in-out infinite;
  }
  .hero-bento-emoji {
    position: absolute;
    top: 320px;
    left: 336px;
    font-size: 5.4rem;
    line-height: 1;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.28));
    animation: floatY 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
  }
  .hero-qr {
    width: 100%; height: auto;
    border-radius: 12px;
    display: block;
    background: transparent;
    padding: 0;
    mix-blend-mode: normal;
  }
  .hero-qr-label {
    margin-top: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
  .card-1,
  .card-2,
  .card-3 {
    left: 0;
    width: 250px;
  }
  .card-1 { top: 24px; animation: floatY 3s ease-in-out infinite; }
  .card-2 { top: 136px; animation: floatY 3s ease-in-out infinite 1s; }
  .card-3 { top: 248px; animation: floatY 3s ease-in-out infinite 2s; }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  @keyframes floatYSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .card-1 { top: 24px; left: 0; }
  .card-2 { top: 136px; left: 0; }
  .card-3 { top: 248px; left: 0; }
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ---- STATS BAR ---- */
  .stats-bar {
    background: var(--orange);
    padding: 1.5rem 5%;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem;
  }
  .stat-item { text-align: center; color: white; }
  .stat-item strong { display: block; font-size: 1.8rem; font-family: 'Fredoka', sans-serif; }
  .stat-item span { font-size: 0.85rem; opacity: 0.85; }

  /* ---- SECTION COMMON ---- */
  .section { padding: 5rem 5%; }
  #services .section,
  #pricing .section,
  #contact .section {
    padding: 0.6rem 4% 2rem;
  }
  .section-alt { background: var(--cream); }
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--maroon); margin-bottom: 0.8rem; }
  .section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    background: rgba(224,123,26,0.12);
    color: var(--orange);
    padding: 0.25rem 0.9rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  /* ---- SERVICES GRID ---- */
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
  }
  .service-icon {
    font-size: 3rem; margin-bottom: 1rem;
    display: block;
  }
  .service-card h3 { color: var(--maroon); font-size: 1.2rem; margin-bottom: 0.5rem; }
  .service-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

  /* ---- WHY CHOOSE US ---- */
  .why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .why-card {
    display: flex; gap: 1rem; align-items: flex-start;
    background: white; border-radius: 16px; padding: 1.5rem;
    box-shadow: var(--shadow);
  }
  .why-icon {
    background: var(--maroon);
    color: white; border-radius: 12px;
    width: 50px; height: 50px; min-width: 50px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }
  .why-card h3 { color: var(--maroon); margin-bottom: 0.3rem; }
  .why-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

  /* ---- PRICING CARDS ---- */
  .pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s;
  }
  .pricing-card.featured {
    background: var(--maroon);
    color: white;
    border-color: var(--orange);
    transform: scale(1.03);
  }
  .pricing-card:not(.featured):hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 0.3rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700;
    font-family: 'Fredoka', sans-serif;
  }
  .plan-name { font-size: 1.4rem; margin-bottom: 0.3rem; }
  .pricing-card.featured .plan-name { color: white; }
  .plan-name:not(.featured .plan-name) { color: var(--maroon); }
  .plan-desc { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .pricing-card.featured .plan-desc { color: rgba(255,255,255,0.7); }
  .plan-desc:not(.featured .plan-desc) { color: var(--text-light); }
  .plan-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem; font-weight: 700; margin-bottom: 0.2rem;
  }
  .pricing-card.featured .plan-price { color: var(--orange-light); }
  .plan-price:not(.featured .plan-price) { color: var(--maroon); }
  .plan-period { font-size: 0.82rem; margin-bottom: 1.5rem; }
  .pricing-card.featured .plan-period { color: rgba(255,255,255,0.6); }
  .plan-features { list-style: none; margin-bottom: 2rem; }
  .plan-features li {
    padding: 0.5rem 0;
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .pricing-card.featured .plan-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
  .plan-features li .check {
    color: var(--orange); font-weight: 700;
  }
  .pricing-card.featured .plan-features li .check { color: var(--orange-light); }
  .btn-plan {
    width: 100%; padding: 0.9rem;
    border-radius: 50px; border: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s;
  }
  .btn-plan-primary { background: var(--orange); color: white; }
  .btn-plan-primary:hover { background: var(--orange-light); }
  .btn-plan-outline { background: transparent; color: var(--maroon); border: 2px solid var(--maroon); }
  .btn-plan-outline:hover { background: var(--maroon); color: white; }
  .btn-plan-white { background: white; color: var(--maroon); }
  .btn-plan-white:hover { background: var(--cream); }

  /* ---- MENU ITEMS ---- */
  .menu-tabs {
    display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap;
  }
  .menu-tab {
    padding: 0.6rem 1.5rem; border-radius: 50px;
    border: 2px solid var(--border);
    background: white; color: var(--text-mid);
    font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
  }
  .menu-tab.active, .menu-tab:hover {
    background: var(--maroon); color: white; border-color: var(--maroon);
  }
  .menu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
  }
  .menu-item {
    background: white; border-radius: 16px; padding: 1.2rem;
    box-shadow: var(--shadow); display: flex; gap: 1rem; align-items: center;
    transition: transform 0.2s;
  }
  .menu-item:hover { transform: translateY(-3px); }
  .menu-item-emoji { font-size: 2.2rem; }
  .menu-item h4 { font-size: 0.95rem; color: var(--maroon); margin-bottom: 0.2rem; }
  .menu-item p { font-size: 0.78rem; color: var(--text-light); }
  .veg-tag {
    display: inline-block; padding: 0.15rem 0.5rem; border-radius: 4px;
    font-size: 0.68rem; font-weight: 700; margin-top: 0.3rem;
  }
  .veg { background: #e8f5e9; color: #2e7d32; }
  .non-veg { background: #fce4ec; color: #c62828; }

  /* ---- CTA BAND ---- */
  .cta-band {
    background: var(--orange);
    padding: 4rem 5%;
    text-align: center;
  }
  .cta-band h2 { font-size: 2.5rem; color: white; margin-bottom: 0.8rem; }
  .cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
  .cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ---- CONTACT ---- */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
  }
  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-info-card {
    background: var(--maroon); color: white;
    border-radius: 16px; padding: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .contact-info-icon { font-size: 1.8rem; }
  .contact-info-card strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 1rem; }
  .contact-info-card span { font-size: 0.85rem; opacity: 0.75; }
  .wa-btn {
    display: flex; align-items: center; gap: 0.8rem;
    background: #25D366; color: white;
    padding: 1rem 1.5rem; border-radius: 999px;
    text-decoration: none; font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 600;
    transition: all 0.25s;
    white-space: normal;
    text-wrap: balance;
    line-height: 1.3;
  }
  .wa-btn span { flex-shrink: 0; }
  .wa-btn:hover { background: #128C7E; transform: translateY(-2px); }
  .contact-form { background: white; border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow); }
  .contact-form h3 { color: var(--maroon); margin-bottom: 1.5rem; font-size: 1.5rem; }

  @media (max-width: 1100px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .contact-form {
      padding: 2rem 1.4rem;
    }
    .wa-btn {
      display: inline-flex;
      max-width: min(92vw, 520px);
      width: auto;
      margin: 0 auto;
      white-space: normal;
      text-wrap: balance;
      justify-content: center;
      text-align: center;
      padding: 0.95rem 1.1rem;
      border-radius: 16px;
    }
  }

  @media (max-width: 820px) {
    .wa-btn {
      max-width: calc(100vw - 2rem);
      padding: 0.88rem 1rem;
      border-radius: 14px;
      line-height: 1.45;
    }
  }
  .form-error {
    background: linear-gradient(180deg, #fff8f5 0%, #fff1ec 100%);
    border: 1px solid #f3c3b8;
    border-left: 5px solid #d9482b;
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    margin-bottom: 1rem;
  }
  .form-error-legend {
    display: inline-block;
    background: #d9482b;
    color: #fff;
    border-radius: 999px;
    padding: 0.12rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
  }
  .form-error-text {
    display: block;
    color: #7a1f12;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
  }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0.4rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
    transition: border-color 0.2s; outline: none;
    background: var(--cream);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--orange);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit {
    width: 100%; padding: 1rem;
    background: var(--maroon); color: white;
    border: none; border-radius: 50px;
    font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s;
  }
  .form-submit:hover { background: var(--orange); }
  .form-alert-popup {
    position: fixed;
    left: 50%;
    top: 22px;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1200;
    min-width: 240px;
    max-width: min(80vw, 420px);
    background: rgba(61, 12, 12, 0.42);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 5px solid var(--orange);
    border-radius: 3px;
    padding: 0.95rem 0.9rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .form-alert-popup.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .form-alert-text {
    color: #fff7ee;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
  }

  /* ---- ABOUT ---- */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-visual {
    background: var(--maroon);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 180px; height: 180px;
    background: rgba(224,123,26,0.2); border-radius: 50%;
  }
  .about-big-emoji { font-size: 6rem; display: block; margin-bottom: 1rem; position: relative; z-index: 1; }
  .about-visual h3 { color: white; font-size: 1.8rem; position: relative; z-index: 1; }
  .about-visual p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; margin-top: 0.5rem; }
  .about-content h2 { font-size: 2.2rem; color: var(--maroon); margin-bottom: 1rem; }
  .about-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.2rem; }
  .about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
  .about-value {
    display: flex; align-items: center; gap: 0.8rem;
    background: var(--cream); border-radius: 12px; padding: 0.9rem 1.2rem;
    border-left: 4px solid var(--orange);
  }
  .about-value span { font-weight: 600; color: var(--maroon); font-size: 0.95rem; }

  /* ---- FOOTER ---- */
  footer {
    background: #1f1410;
    color: white;
    padding: 3rem 5% 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-logo {
    width: var(--brand-logo-width);
    height: var(--brand-logo-height);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.62)) drop-shadow(0 0 20px rgba(255,255,255,0.34));
  }
  .footer-brand p { color: rgba(226,232,240,0.88); margin-top: 0.8rem; font-size: 0.9rem; line-height: 1.7; }
  footer h4 { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; margin-bottom: 1rem; color: #fbbf24; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a { color: rgba(226,232,240,0.9); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-links a:hover { color: #fbbf24; }
  .footer-bottom {
    border-top: 1px solid rgba(148,163,184,0.32);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(203,213,225,0.8);
  }


  /* ---- REGISTRATION BANNER ---- */
  .reg-banner {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex; align-items: center;
  }
  .reg-banner-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--brand-logo-width);
    height: var(--brand-logo-height);
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
    opacity: 0.35;
  }
  .reg-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      105deg,
      rgba(61,12,12,0.82) 0%,
      rgba(61,12,12,0.65) 38%,
      rgba(61,12,12,0.15) 65%,
      transparent 100%
    );
  }
  .reg-banner-content {
    position: relative; z-index: 2;
    padding: 3rem 5%;
    max-width: 580px;
  }
  .reg-banner-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(224,123,26,0.25);
    border: 1px solid rgba(224,123,26,0.5);
    color: var(--orange-light);
    padding: 0.3rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
  }
  .reg-banner-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white; line-height: 1.15;
    margin-bottom: 0.9rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }
  .reg-banner-content h2 span { color: var(--orange-light); }
  .reg-banner-content p {
    color: rgba(255,255,255,0.78);
    font-size: 0.98rem; line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 460px;
  }
  .reg-banner-btns {
    display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center;
  }
  .btn-register {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: #25D366;
    color: white !important;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: all 0.25s;
    border: none; cursor: pointer;
  }
  .btn-register:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  }
  .btn-register-secondary {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: transparent;
    color: white !important;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.45);
    transition: all 0.25s;
    cursor: pointer;
  }
  .btn-register-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
  }
  .reg-trust-chips {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-top: 1.4rem;
  }
  .reg-trust-chip {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  }

  /* ---- MOBILE ---- */
  @media (max-width: 900px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.9rem; }
    .nav-cta { padding: 0.46rem 1rem; }
  }

  @media (max-width: 820px) {
    #nav-overlay { display: block; }
    nav { padding: 0 10px; }
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 0.6rem;
      position: absolute;
      top: 74px;
      left: 10px;
      right: 10px;
      background: linear-gradient(160deg, #3d0c0c 0%, #541616 65%, #7a2814 100%);
      padding: 0.95rem;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 18px 36px rgba(25,6,6,0.38);
      transform: translateY(-8px) scale(0.98);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.24s ease;
    }
    .nav-links.open {
      display: flex;
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      width: 100%;
      color: #fff7f0;
      padding: 0.72rem 0.95rem;
      border-radius: 12px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      font-size: 0.94rem;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .nav-links a:hover {
      color: #fff7f0;
      background: rgba(255,255,255,0.16);
      border-color: rgba(251,191,36,0.6);
      transform: translateX(3px);
    }
    .nav-links .nav-cta {
      background: linear-gradient(135deg, #f59e0b 0%, #e07b1a 100%);
      color: white !important;
      border: 1px solid rgba(255,255,255,0.2);
      text-align: center;
      box-shadow: 0 8px 18px rgba(224,123,26,0.38);
    }
    .hamburger { display: flex; }
    .hamburger span { transition: transform 0.26s ease, opacity 0.2s ease, background 0.2s ease; }
    #navbar.menu-open .hamburger span { background: var(--orange); }
    #navbar.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #navbar.menu-open .hamburger span:nth-child(2) { opacity: 0; }
    #navbar.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { grid-template-columns: 1fr; text-align: center; padding: 4rem 5% 3rem; min-height: auto; }
    .hero-visual {
      display: flex;
      margin-top: 1rem;
    }
    .hero-card-stack {
      width: min(94vw, 380px);
      height: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-areas:
        "l1 l2 l3"
        "qr qr qr"
        "bento bento bento";
      gap: 0.55rem;
      align-items: stretch;
    }
    .hero-qr-wrap {
      grid-area: qr;
      position: relative;
      top: auto;
      left: auto;
      width: min(78vw, 240px);
      margin: 0.15rem auto 0;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.3);
    }
    .meal-float-card {
      position: static;
      width: 100%;
      max-width: none;
      margin: 0;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      box-shadow: 0 6px 16px rgba(0,0,0,0.14);
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 0.55rem 0.4rem;
      border-radius: 14px;
      animation: none;
    }
    .meal-float-card .icon { font-size: 1.1rem; }
    .meal-float-card strong { font-size: 0.72rem; line-height: 1.2; }
    .meal-float-card span { font-size: 0.62rem; line-height: 1.2; }
    .card-1 span,
    .card-3 span { white-space: nowrap; }
    .card-1 { grid-area: l1; }
    .card-2 { grid-area: l2; }
    .card-3 { grid-area: l3; }
    .card-1, .card-2, .card-3 {
      top: auto;
      left: auto;
      width: auto;
    }
    .hero-bento-emoji {
      grid-area: bento;
      display: block;
      position: static;
      font-size: 3.2rem;
      margin: 0.35rem auto 0;
      filter: drop-shadow(0 8px 16px rgba(0,0,0,0.22));
      animation: none;
    }
    .hero-btns { justify-content: center; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .stats-bar { gap: 1.5rem; padding: 1.5rem 5%; }
    .reg-banner { min-height: 440px; }
    .reg-banner-img { width: var(--brand-logo-width-mobile); height: var(--brand-logo-height-mobile); }
    .reg-banner-overlay { background: linear-gradient(180deg, rgba(61,12,12,0.9) 0%, rgba(61,12,12,0.8) 60%, rgba(61,12,12,0.55) 100%); }
    .reg-banner-content { padding: 2.5rem 5%; }
    .reg-banner-btns { flex-direction: column; }
    .btn-register, .btn-register-secondary { justify-content: center; text-align: center; }
    .nav-logo-icon { width: var(--brand-logo-width-mobile); height: var(--brand-logo-height-mobile); }
    .nav-logo-icon img { width: 100%; height: 100%; }
    .brand-logo { width: var(--brand-logo-width-mobile); height: var(--brand-logo-height-mobile); }
    .footer-logo { width: var(--brand-logo-width-mobile); height: var(--brand-logo-height-mobile); }
    .nav-logo { margin-left: 0; }
  }


  /* ---- ADD-ON ROWS ---- */
  .addon-row {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .addon-name {
    flex: 1; font-size: 0.87rem; font-weight: 600; color: var(--text-dark);
    display: flex; flex-direction: column; gap: 1px;
  }
  .addon-sub { font-size: 0.72rem; font-weight: 400; color: var(--text-light); }
  .addon-badge {
    display: inline-block; background: var(--orange); color: white;
    font-size: 0.62rem; font-weight: 700; padding: 1px 6px;
    border-radius: 50px; width: fit-content;
  }
  .addon-price {
    font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--maroon); min-width: 36px; text-align: right;
  }
  .addon-btn {
    background: var(--maroon); color: white; border: none;
    padding: 0.3rem 0.7rem; border-radius: 50px;
    font-family: 'Fredoka', sans-serif; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s; white-space: nowrap;
  }
  .addon-btn:hover { background: var(--orange); }


  /* ---- PLAN CATEGORY VISUAL HEADERS ---- */
  .plan-category-wrap {
    margin-bottom: 2rem;
  }
  .plan-category-header {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 200px;
  }
  .plan-category-header img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.4s ease;
  }
  .plan-category-wrap:hover .plan-category-header img {
    transform: scale(1.04);
  }
  .plan-category-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      rgba(61,12,12,0.72) 0%,
      rgba(61,12,12,0.38) 50%,
      rgba(0,0,0,0.12) 100%
    );
  }
  .plan-category-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.5rem;
    display: flex; align-items: flex-end; justify-content: space-between;
  }
  .plan-category-label-left {}
  .plan-category-label-left h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: white; line-height: 1;
    margin-bottom: 0.2rem;
  }
  .plan-category-label-left p {
    font-size: 0.8rem; color: rgba(255,255,255,0.75);
    font-weight: 500;
  }
  .plan-category-price-chips {
    display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  }
  .plan-category-chip {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 0.2rem 0.7rem;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    white-space: nowrap;
  }
  .plan-category-chip.highlight {
    background: var(--orange);
    border-color: var(--orange);
  }
  .plan-category-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .plan-category-cards .pricing-card {
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 2px solid var(--border);
  }
  .plan-category-cards .pricing-card:first-child {
    border-right: 1px solid var(--border);
  }
  .plan-category-cards .pricing-card.featured {
    transform: none;
    border-radius: 0;
    border-left: 1px solid rgba(224,123,26,0.3);
  }
  @media (max-width: 640px) {
    .plan-category-cards { grid-template-columns: 1fr; }
    .plan-category-cards .pricing-card:first-child { border-right: none; border-bottom: 1px solid var(--border); }
    .plan-category-header { height: 160px; }
  }


  /* ---- COMPACT PLAN CATEGORY ROW ---- */
  .tier-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .tier-cat {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  .tier-cat:hover { border-color: var(--orange); transform: translateY(-3px); }
  .tier-cat-img {
    position: relative;
    height: 140px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .tier-cat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 0.4s;
  }
  .tier-cat:hover .tier-cat-img img { transform: scale(1.06); }
  .tier-cat-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(61,12,12,0.65) 100%);
  }
  .tier-cat-img-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.6rem 0.8rem;
    display: flex; align-items: flex-end; justify-content: space-between;
  }
  .tier-cat-img-label h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: white; line-height: 1;
  }
  .tier-cat-img-label p {
    font-size: 0.68rem; color: rgba(255,255,255,0.8);
    margin-top: 2px; line-height: 1.3;
  }
  .tier-cat-badge {
    background: var(--orange);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    padding: 0.18rem 0.55rem; border-radius: 50px;
    white-space: nowrap; flex-shrink: 0;
  }
  .tier-desc-pill {
    display: inline-block;
    max-width: min(92vw, 840px);
    background: var(--orange);
    color: white;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    line-height: 1.45;
    white-space: normal;
    text-wrap: balance;
  }
  /* Plans inside each cat — stacked vertically, compact */
  .tier-cat-plans { flex: 1; display: flex; flex-direction: column; }
  .tier-plan-card {
    flex: 1;
    background: white;
    padding: 1rem 1rem 0.9rem;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0.3rem;
  }
  .tier-plan-card.nv-card {
    background: var(--maroon);
    border-top: 1px solid rgba(224,123,26,0.35);
  }
  .tier-plan-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    color: var(--maroon);
  }
  .nv-card .tier-plan-name { color: var(--orange-light); }
  .tier-plan-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--maroon); line-height: 1;
  }
  .nv-card .tier-plan-price { color: var(--orange-light); }
  .tier-plan-period {
    font-size: 0.7rem; color: var(--text-light); line-height: 1.3;
  }
  .nv-card .tier-plan-period { color: rgba(255,255,255,0.55); }
  .tier-plan-features {
    list-style: none; margin: 0.3rem 0 0.5rem;
    display: flex; flex-direction: column; gap: 2px;
  }
  .tier-plan-features li {
    font-size: 0.72rem; color: var(--text-mid);
    display: flex; gap: 0.35rem; align-items: flex-start;
    line-height: 1.4;
  }
  .nv-card .tier-plan-features li { color: rgba(255,255,255,0.8); }
  .tier-plan-features li .ck { color: var(--orange); font-weight:700; flex-shrink:0; }
  .nv-card .tier-plan-features li .ck { color: var(--orange-light); }
  .tier-plan-btn {
    width: 100%; padding: 0.55rem 0.5rem;
    border-radius: 50px; border: 2px solid var(--maroon);
    font-family: 'Fredoka', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer; background: transparent; color: var(--maroon);
    transition: all 0.2s; margin-top: auto;
  }
  .tier-plan-btn:hover { background: var(--maroon); color: white; }
  .nv-card .tier-plan-btn {
    border-color: var(--orange-light); color: white; background: rgba(255,255,255,0.1);
  }
  .nv-card .tier-plan-btn:hover { background: var(--orange); border-color: var(--orange); }
  .most-popular-strip {
    background: var(--orange);
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    color: white; padding: 3px 0; letter-spacing: 0.05em;
  }
  @media (max-width: 768px) {
    .tier-row { grid-template-columns: 1fr; }
    .tier-cat-img { height: 130px; }
    .tier-desc-pill {
      max-width: calc(100vw - 2rem);
      padding: 0.52rem 0.9rem;
      border-radius: 14px;
      font-size: 0.8rem;
      line-height: 1.5;
    }
    .pricing-addon-grid { grid-template-columns: 1fr !important; }
    .bulk-orders-grid { grid-template-columns: 1fr !important; }
    .bulk-orders-mini-grid { grid-template-columns: 1fr 1fr !important; }
    #pricing { overflow-x: clip; }
  }

  @media (max-width: 480px) {
    .bulk-orders-mini-grid { grid-template-columns: 1fr !important; }
  }

  @media (max-width: 768px) {
    .plan-compare-wrap { overflow: visible !important; }
    .plan-compare-table {
      width: 100% !important;
      min-width: 0 !important;
      border-collapse: separate !important;
      border-spacing: 0 0.6rem;
      font-size: 0.8rem !important;
    }
    .plan-compare-table thead {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .plan-compare-table tbody tr {
      display: block;
      background: #fff !important;
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 0.15rem 0.3rem;
    }
    .plan-compare-table tbody td {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 0.9rem;
      text-align: right !important;
      padding: 0.48rem 0.55rem !important;
      border-bottom: 1px dashed rgba(61, 12, 12, 0.14);
      white-space: normal;
    }
    .plan-compare-table tbody td:last-child { border-bottom: none; }
    .plan-compare-table tbody td::before {
      content: attr(data-label);
      font-weight: 700;
      color: var(--maroon);
      text-align: left;
      flex: 0 0 46%;
    }
  }



  /* ── HOW IT WORKS PAGE ───────────────────────────────── */
  .hiw-timeline { display:flex; flex-direction:column; gap:0; margin-bottom:3rem; }

  .hiw-step {
    display:grid;
    grid-template-columns: 48px 2px 1fr;
    gap:0 1.2rem;
    padding-bottom:2.5rem;
  }
  .hiw-step:last-child { padding-bottom:0; }

  .hiw-step-num {
    width:48px; height:48px; min-width:48px;
    border-radius:50%;
    background:var(--maroon);
    color:white;
    font-family:'Fredoka',sans-serif;
    font-size:1.3rem; font-weight:700;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 16px rgba(61,12,12,0.3);
    position:relative; z-index:1;
    flex-shrink:0;
  }
  .hiw-num-orange { background:var(--orange); box-shadow:0 4px 16px rgba(224,123,26,0.35); }

  .hiw-step-line {
    width:2px;
    background:linear-gradient(to bottom, var(--maroon), rgba(61,12,12,0.15));
    margin:0 auto;
    min-height:100%;
  }
  .hiw-line-last { background:transparent; }

  .hiw-step-content { padding-top:8px; padding-bottom:1rem; }

  .hiw-step-tag {
    font-size:0.72rem; font-weight:700;
    text-transform:uppercase; letter-spacing:0.1em;
    color:var(--maroon); margin-bottom:0.3rem;
  }
  .hiw-tag-orange { color:var(--orange); }

  .hiw-step-title {
    font-family:'Fredoka',sans-serif;
    font-size:1.5rem; font-weight:700;
    color:var(--maroon); margin-bottom:0.6rem; line-height:1.15;
  }
  .hiw-step-desc {
    color:var(--text-mid); font-size:0.9rem; line-height:1.7;
    margin-bottom:1rem; max-width:660px;
  }

  .hiw-step-chips {
    display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1rem;
  }
  .hiw-step-chips span {
    background:var(--cream);
    border:1px solid var(--border);
    border-radius:50px;
    padding:0.25rem 0.8rem;
    font-size:0.78rem; font-weight:600; color:var(--text-mid);
  }

  .hiw-cta-btn {
    display:inline-flex; align-items:center; gap:0.5rem;
    background:var(--maroon); color:white; border:none;
    padding:0.7rem 1.5rem; border-radius:50px;
    font-family:'Fredoka',sans-serif; font-size:0.95rem; font-weight:600;
    cursor:pointer; text-decoration:none;
    transition:all 0.22s;
    box-shadow:0 4px 16px rgba(61,12,12,0.25);
  }
  .hiw-cta-btn:hover { background:var(--orange); transform:translateY(-2px); }
  .hiw-cta-green { background:#25D366; box-shadow:0 4px 16px rgba(37,211,102,0.35); }
  .hiw-cta-green:hover { background:#1ebe5d; }

  /* ── MEAL VISUAL CARD ── */
  .hiw-meal-visual {
    display:grid; grid-template-columns:180px 1fr;
    gap:1rem;
    background:var(--cream);
    border-radius:16px;
    overflow:hidden;
    margin-bottom:1rem;
    border:1px solid var(--border);
  }
  .hiw-meal-img-wrap { position:relative; }
  .hiw-meal-img {
    width:100%; height:100%; min-height:150px;
    background-size:cover; background-position:center 35%;
    /* images set via JS from already-loaded DOM elements */
  }
  .hiw-meal-img-label {
    position:absolute; bottom:0; left:0; right:0;
    background:linear-gradient(to top, rgba(61,12,12,0.75), transparent);
    color:white; font-size:0.68rem; font-weight:600;
    padding:0.5rem 0.6rem; line-height:1.3;
  }
  .hiw-meal-details { padding:1rem 1rem 1rem 0; }

  /* Mini plan grid */
  .hiw-meal-plans-row {
    display:flex; flex-wrap:wrap; gap:0.4rem; margin-bottom:0.7rem;
  }
  .hiw-mini-plan {
    display:flex; flex-direction:column; align-items:center;
    background:white; border:1.5px solid var(--border);
    border-radius:10px; padding:0.5rem 0.6rem; min-width:80px;
    transition:border-color 0.2s;
  }
  .hiw-mini-plan:hover { border-color:var(--orange); }
  .hiw-mini-featured { border-color:var(--orange); background:rgba(224,123,26,0.06); }
  .hiw-mini-emoji { font-size:1.1rem; line-height:1; }
  .hiw-mini-name { font-size:0.68rem; font-weight:700; color:var(--maroon); margin-top:2px; text-align:center; }
  .hiw-mini-price { font-family:'Fredoka',sans-serif; font-size:1rem; font-weight:700; color:var(--maroon); }
  .hiw-mini-desc { font-size:0.62rem; color:var(--text-light); text-align:center; line-height:1.3; margin-top:1px; }

  /* Delivery slots */
  .hiw-delivery-slots { display:flex; gap:0.6rem; flex-wrap:wrap; margin-bottom:0.7rem; }
  .hiw-slot {
    display:flex; align-items:center; gap:0.5rem;
    background:white; border:1px solid var(--border); border-radius:10px;
    padding:0.5rem 0.7rem;
  }
  .hiw-slot-icon { font-size:1.2rem; }
  .hiw-slot-info { display:flex; flex-direction:column; }
  .hiw-slot-info strong { font-size:0.8rem; color:var(--maroon); }
  .hiw-slot-info span { font-size:0.7rem; color:var(--text-light); }

  /* Value pills */
  .hiw-value-pills { display:flex; gap:0.6rem; flex-wrap:wrap; margin-bottom:0.7rem; }
  .hiw-vpill {
    display:flex; flex-direction:column; align-items:center;
    background:white; border:1px solid var(--border); border-radius:10px;
    padding:0.55rem 0.8rem; min-width:70px;
  }
  .hiw-vpill-val { font-family:'Fredoka',sans-serif; font-size:1.1rem; font-weight:700; color:var(--maroon); }
  .hiw-vpill-lbl { font-size:0.62rem; color:var(--text-light); text-align:center; line-height:1.3; margin-top:1px; }

  .hiw-meal-note {
    font-size:0.75rem; color:var(--text-light);
    background:white; border-radius:8px;
    padding:0.5rem 0.7rem; line-height:1.5;
    border:1px solid var(--border);
  }

  /* ── DELIVERY INFO BLOCK ── */
  .hiw-delivery-block {
    background:var(--cream); border-radius:24px;
    padding:2.5rem; margin-bottom:2rem;
  }
  .hiw-delivery-block h3 {
    font-family:'Fredoka',sans-serif; font-size:1.6rem;
    color:var(--maroon); margin-bottom:1.5rem; text-align:center;
  }
  .hiw-delivery-grid {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:1.2rem;
  }
  .hiw-dcard {
    background:white; border-radius:14px;
    padding:1.3rem; box-shadow:var(--shadow);
    border-left:3px solid var(--orange);
  }
  .hiw-dcard-icon { font-size:1.8rem; margin-bottom:0.5rem; }
  .hiw-dcard h4 { font-family:'Fredoka',sans-serif; color:var(--maroon); font-size:1rem; margin-bottom:0.3rem; }
  .hiw-dcard p { font-size:0.82rem; color:var(--text-light); line-height:1.6; }

  /* ── BOTTOM CTA ── */
  .hiw-bottom-cta {
    background:var(--maroon); border-radius:24px;
    padding:3rem 2rem; text-align:center; color:white;
  }
  .hiw-bottom-cta h3 { font-family:'Fredoka',sans-serif; font-size:2rem; margin-bottom:0.5rem; }
  .hiw-bottom-cta p { color:rgba(255,255,255,0.75); font-size:1rem; }

  /* Mobile */
  @media (max-width:640px) {
    .hiw-step { grid-template-columns:36px 2px 1fr; gap:0 0.8rem; }
    .hiw-step-num { width:36px; height:36px; font-size:1rem; }
    .hiw-step-title { font-size:1.2rem; }
    .hiw-meal-visual { grid-template-columns:1fr; }
    .hiw-meal-img { min-height:160px; }
  }

/* ── STICKY FAB ───────────────────────────────────────────── */
#addons-fab {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: var(--maroon);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 8px 32px rgba(61,12,12,0.45), 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.2s;
  max-width: 320px;
  text-align: left;
}
#addons-fab.fab-theme-dark {
  background: rgba(61, 12, 12, 0.93);
  color: #fffaf4;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(61,12,12,0.42), 0 2px 8px rgba(0,0,0,0.22);
}
#addons-fab.fab-theme-dark .fab-sub { color: rgba(255,255,255,0.74); }
#addons-fab.fab-theme-dark .fab-arrow { opacity: 0.82; }

#addons-fab.fab-theme-light {
  background: rgba(255, 249, 242, 0.9);
  color: var(--maroon);
  border: 1px solid rgba(61, 12, 12, 0.2);
  box-shadow: 0 10px 34px rgba(61,12,12,0.2), 0 2px 10px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}
#addons-fab.fab-theme-light .fab-sub { color: rgba(61, 12, 12, 0.72); }
#addons-fab.fab-theme-light .fab-arrow { opacity: 0.72; }

#addons-fab:hover {
  background: var(--orange);
  color: #fffaf4;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(224,123,26,0.45);
}
#addons-fab:hover .fab-sub { color: rgba(255,255,255,0.8); }
#addons-fab .fab-icon { font-size: 1.4rem; flex-shrink: 0; }
#addons-fab .fab-text { display: flex; flex-direction: column; gap: 1px; }
#addons-fab .fab-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  line-height: 1.1; white-space: nowrap;
}
#addons-fab .fab-sub {
  font-size: 0.68rem; color: rgba(255,255,255,0.7);
  line-height: 1.2; white-space: nowrap;
}
#addons-fab .fab-arrow {
  font-size: 1.4rem; font-weight: 700;
  opacity: 0.8; flex-shrink: 0;
  transition: transform 0.2s;
}
#addons-fab:hover .fab-arrow { transform: translateX(3px); }


/* pulse ring animation on load */
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(224,123,26,0.5), 0 8px 32px rgba(61,12,12,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(224,123,26,0), 0 8px 32px rgba(61,12,12,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(224,123,26,0), 0 8px 32px rgba(61,12,12,0.4); }
}
#addons-fab.pulse { animation: fabPulse 1.8s ease-out 3; }

/* ── BACKDROP ─────────────────────────────────────────────── */
#addons-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 950;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
}
#addons-backdrop.visible { opacity: 1; }

/* ── DRAWER ───────────────────────────────────────────────── */
#addons-drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 960;
  background: var(--warm-white, #FFFDF9);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 60px rgba(61,12,12,0.25);
  padding: 0 0 env(safe-area-inset-bottom, 0);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
#addons-drawer.open { transform: translateY(0); }

.drawer-handle-bar {
  width: 40px; height: 4px;
  background: #D0C8C0; border-radius: 2px;
  margin: 12px auto 0;
}

/* ── DRAWER HEADER ───────────────────────────────────────── */
.drawer-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.2rem 1.4rem 0.6rem;
  gap: 1rem;
}
.drawer-header-eyebrow {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange); margin-bottom: 3px;
}
.drawer-header-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--maroon); margin: 0 0 4px;
}
.drawer-header-sub {
  font-size: 0.8rem; color: var(--text-light);
  line-height: 1.5; margin: 0;
}
.drawer-close {
  background: var(--cream); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 0.9rem; color: var(--text-mid);
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.drawer-close:hover { background: var(--maroon); color: white; }

/* ── CUT-OFF CHIPS ───────────────────────────────────────── */
.drawer-cutoffs {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 1.4rem 1rem;
}
.drawer-cutoffs span {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.72rem; color: var(--text-mid); font-weight: 600;
}

/* ── ADDON CARDS IN DRAWER ───────────────────────────────── */
.drawer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 1.4rem 1rem;
}
.dac {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dac:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(224,123,26,0.15); }
.dac-emoji { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.dac-info { flex: 1; min-width: 0; }
.dac-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: var(--maroon); line-height: 1.2;
}
.dac-desc { font-size: 0.68rem; color: var(--text-light); line-height: 1.3; margin-top: 1px; }
.dac-badge {
  display: inline-block;
  background: var(--orange); color: white;
  font-size: 0.58rem; font-weight: 700;
  padding: 1px 5px; border-radius: 50px;
  margin-top: 3px;
}
.dac-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.dac-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--maroon);
}
.dac-btn {
  background: var(--maroon); color: white;
  border: none; border-radius: 50px;
  padding: 4px 12px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.dac-btn:hover { background: var(--orange); }

/* ── VIEW ALL CTA ────────────────────────────────────────── */
.drawer-view-all {
  display: block; width: calc(100% - 2.8rem);
  margin: 0 1.4rem 1.4rem;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--maroon), var(--dark-red, #5a1515));
  color: white; border: none; border-radius: 14px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(61,12,12,0.25);
}
.drawer-view-all:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── MOBILE ADJUSTMENTS ──────────────────────────────────── */
@media (max-width: 480px) {
  .drawer-cards { grid-template-columns: 1fr; }
  #addons-fab .fab-sub { display: none; }
  #addons-fab { padding: 11px 16px 11px 14px; }
}
/* Push page content above FAB so it's never covered */
footer { padding-bottom: calc(2rem + 80px); }

  /* ── HOW IT WORKS PAGE ───────────────────────────────── */
  .hiw-timeline { display:flex; flex-direction:column; gap:0; margin-bottom:3rem; }

  .hiw-step {
    display:grid;
    grid-template-columns: 48px 2px 1fr;
    gap:0 1.2rem;
    padding-bottom:2.5rem;
  }
  .hiw-step:last-child { padding-bottom:0; }

  .hiw-step-num {
    width:48px; height:48px; min-width:48px;
    border-radius:50%;
    background:var(--maroon);
    color:white;
    font-family:'Fredoka',sans-serif;
    font-size:1.3rem; font-weight:700;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 16px rgba(61,12,12,0.3);
    position:relative; z-index:1;
    flex-shrink:0;
  }
  .hiw-num-orange { background:var(--orange); box-shadow:0 4px 16px rgba(224,123,26,0.35); }

  .hiw-step-line {
    width:2px;
    background:linear-gradient(to bottom, var(--maroon), rgba(61,12,12,0.15));
    margin:0 auto;
    min-height:100%;
  }
  .hiw-line-last { background:transparent; }

  .hiw-step-content { padding-top:8px; padding-bottom:1rem; }

  .hiw-step-tag {
    font-size:0.72rem; font-weight:700;
    text-transform:uppercase; letter-spacing:0.1em;
    color:var(--maroon); margin-bottom:0.3rem;
  }
  .hiw-tag-orange { color:var(--orange); }

  .hiw-step-title {
    font-family:'Fredoka',sans-serif;
    font-size:1.5rem; font-weight:700;
    color:var(--maroon); margin-bottom:0.6rem; line-height:1.15;
  }
  .hiw-step-desc {
    color:var(--text-mid); font-size:0.9rem; line-height:1.7;
    margin-bottom:1rem; max-width:660px;
  }

  .hiw-step-chips {
    display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1rem;
  }
  .hiw-step-chips span {
    background:var(--cream);
    border:1px solid var(--border);
    border-radius:50px;
    padding:0.25rem 0.8rem;
    font-size:0.78rem; font-weight:600; color:var(--text-mid);
  }

  .hiw-cta-btn {
    display:inline-flex; align-items:center; gap:0.5rem;
    background:var(--maroon); color:white; border:none;
    padding:0.7rem 1.5rem; border-radius:50px;
    font-family:'Fredoka',sans-serif; font-size:0.95rem; font-weight:600;
    cursor:pointer; text-decoration:none;
    transition:all 0.22s;
    box-shadow:0 4px 16px rgba(61,12,12,0.25);
  }
  .hiw-cta-btn:hover { background:var(--orange); transform:translateY(-2px); }
  .hiw-cta-green { background:#25D366; box-shadow:0 4px 16px rgba(37,211,102,0.35); }
  .hiw-cta-green:hover { background:#1ebe5d; }

  /* ── MEAL VISUAL CARD ── */
  .hiw-meal-visual {
    display:grid; grid-template-columns:180px 1fr;
    gap:1rem;
    background:var(--cream);
    border-radius:16px;
    overflow:hidden;
    margin-bottom:1rem;
    border:1px solid var(--border);
  }
  .hiw-meal-img-wrap { position:relative; }
  .hiw-meal-img {
    width:100%; height:100%; min-height:150px;
    background-size:cover; background-position:center 35%;
    /* images set via JS from already-loaded DOM elements */
  }
  .hiw-meal-img-label {
    position:absolute; bottom:0; left:0; right:0;
    background:linear-gradient(to top, rgba(61,12,12,0.75), transparent);
    color:white; font-size:0.68rem; font-weight:600;
    padding:0.5rem 0.6rem; line-height:1.3;
  }
  .hiw-meal-details { padding:1rem 1rem 1rem 0; }

  /* Mini plan grid */
  .hiw-meal-plans-row {
    display:flex; flex-wrap:wrap; gap:0.4rem; margin-bottom:0.7rem;
  }
  .hiw-mini-plan {
    display:flex; flex-direction:column; align-items:center;
    background:white; border:1.5px solid var(--border);
    border-radius:10px; padding:0.5rem 0.6rem; min-width:80px;
    transition:border-color 0.2s;
  }
  .hiw-mini-plan:hover { border-color:var(--orange); }
  .hiw-mini-featured { border-color:var(--orange); background:rgba(224,123,26,0.06); }
  .hiw-mini-emoji { font-size:1.1rem; line-height:1; }
  .hiw-mini-name { font-size:0.68rem; font-weight:700; color:var(--maroon); margin-top:2px; text-align:center; }
  .hiw-mini-price { font-family:'Fredoka',sans-serif; font-size:1rem; font-weight:700; color:var(--maroon); }
  .hiw-mini-desc { font-size:0.62rem; color:var(--text-light); text-align:center; line-height:1.3; margin-top:1px; }

  /* Delivery slots */
  .hiw-delivery-slots { display:flex; gap:0.6rem; flex-wrap:wrap; margin-bottom:0.7rem; }
  .hiw-slot {
    display:flex; align-items:center; gap:0.5rem;
    background:white; border:1px solid var(--border); border-radius:10px;
    padding:0.5rem 0.7rem;
  }
  .hiw-slot-icon { font-size:1.2rem; }
  .hiw-slot-info { display:flex; flex-direction:column; }
  .hiw-slot-info strong { font-size:0.8rem; color:var(--maroon); }
  .hiw-slot-info span { font-size:0.7rem; color:var(--text-light); }

  /* Value pills */
  .hiw-value-pills { display:flex; gap:0.6rem; flex-wrap:wrap; margin-bottom:0.7rem; }
  .hiw-vpill {
    display:flex; flex-direction:column; align-items:center;
    background:white; border:1px solid var(--border); border-radius:10px;
    padding:0.55rem 0.8rem; min-width:70px;
  }
  .hiw-vpill-val { font-family:'Fredoka',sans-serif; font-size:1.1rem; font-weight:700; color:var(--maroon); }
  .hiw-vpill-lbl { font-size:0.62rem; color:var(--text-light); text-align:center; line-height:1.3; margin-top:1px; }

  .hiw-meal-note {
    font-size:0.75rem; color:var(--text-light);
    background:white; border-radius:8px;
    padding:0.5rem 0.7rem; line-height:1.5;
    border:1px solid var(--border);
  }

  /* ── DELIVERY INFO BLOCK ── */
  .hiw-delivery-block {
    background:var(--cream); border-radius:24px;
    padding:2.5rem; margin-bottom:2rem;
  }
  .hiw-delivery-block h3 {
    font-family:'Fredoka',sans-serif; font-size:1.6rem;
    color:var(--maroon); margin-bottom:1.5rem; text-align:center;
  }
  .hiw-delivery-grid {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:1.2rem;
  }
  .hiw-dcard {
    background:white; border-radius:14px;
    padding:1.3rem; box-shadow:var(--shadow);
    border-left:3px solid var(--orange);
  }
  .hiw-dcard-icon { font-size:1.8rem; margin-bottom:0.5rem; }
  .hiw-dcard h4 { font-family:'Fredoka',sans-serif; color:var(--maroon); font-size:1rem; margin-bottom:0.3rem; }
  .hiw-dcard p { font-size:0.82rem; color:var(--text-light); line-height:1.6; }

  /* ── BOTTOM CTA ── */
  .hiw-bottom-cta {
    background:var(--maroon); border-radius:24px;
    padding:3rem 2rem; text-align:center; color:white;
  }
  .hiw-bottom-cta h3 { font-family:'Fredoka',sans-serif; font-size:2rem; margin-bottom:0.5rem; }
  .hiw-bottom-cta p { color:rgba(255,255,255,0.75); font-size:1rem; }

  /* Mobile */
  @media (max-width:640px) {
    .hiw-step { grid-template-columns:36px 2px 1fr; gap:0 0.8rem; }
    .hiw-step-num { width:36px; height:36px; font-size:1rem; }
    .hiw-step-title { font-size:1.2rem; }
    .hiw-meal-visual { grid-template-columns:1fr; }
    .hiw-meal-img { min-height:160px; }
  }
