/* =========================================================
   CHOPNACHOP — MAIN STYLESHEET
   Goal: clean structure + maintain same UI outcome
   ========================================================= */

/* =========================
   1) THEME TOKENS / GLOBALS
   ========================= */
:root{
  --bg: #f7f2ee;
  --ink: #2b1b12;
  --muted: #6b5a51;

  --brand: #e46a1a;
  --brand-dark: #c9550f;

  --card: rgba(255,255,255,.62);
  --border: rgba(43,27,18,.12);

  --shadow-soft: 0 12px 30px rgba(0,0,0,.10);
  --shadow-strong: 0 24px 70px rgba(0,0,0,.55);

  --radius: 16px;
  --max: 1120px;

  --ease: cubic-bezier(.2,.8,.2,1);
}

html { scroll-behavior: smooth; }

/* Reset + base */
*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 20% 10%, #fff 0%, var(--bg) 55%, #efe7e2 100%);
}

a{ color: inherit; text-decoration:none; }
img{ max-width: 100%; display:block; }

.container{
  width: min(var(--max), 92%);
  margin: 0 auto;
}

/* =========================
   2) REUSABLE UI ELEMENTS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 800;
  user-select:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--brand);
  border-color: rgba(0,0,0,.08);
  color:#fff;
}
.btn-primary:hover{ background: var(--brand-dark); }

.btn-ghost{
  background: rgba(255,255,255,.55);
}
.btn-ghost:hover{ background: rgba(255,255,255,.80); }

.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  display:inline-grid;
  place-items:center;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(255,255,255,.92); }

/* =========================
   3) HEADER
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(255,255,255,.90), rgba(255,255,255,.66));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
}

/* Brand */
.brand{
  display:inline-flex;
  align-items:center;
  flex: 0 0 auto;
}

.brand-logo{
  width: 170px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.10));
}

/* Desktop nav */
.nav-desktop{
  display:flex;
  gap: 26px;
  align-items:center;
}

.nav-link{
  font-weight: 650;
  color: var(--muted);
  position: relative;
  padding: 10px 4px;
}
.nav-link:hover{ color: var(--ink); }

.nav-link.is-active{ color: var(--ink); }
.nav-link.is-active::after{
  content:"";
  position:absolute;
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 2px;
  background: rgba(228,106,26,.55);
  border-radius: 999px;
}

/* Actions */
.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.cart-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  background: var(--brand);
  color:#fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(228,106,26,.25);
  border: 1px solid rgba(0,0,0,.08);
}
.cart-btn:hover{ background: var(--brand-dark); }

.cart-icon{
  display:inline-grid;
  place-items:center;
  color:#fff;
}

/* Hamburger button */
.nav-toggle{ display:none; }

.hamburger{
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 999px;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}
.hamburger::before{ top:-6px; }
.hamburger::after{ top: 6px; }

/* Close X icon (base) */
.close-x{
  width: 20px;
  height: 20px;
  position: relative;
}
.close-x::before,
.close-x::after{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transform-origin: center;
  border-radius: 999px;
}
.close-x::before{ transform: translate(-50%,-50%) rotate(45deg); }
.close-x::after{ transform: translate(-50%,-50%) rotate(-45deg); }

/* =========================
   4) HERO
   ========================= */
.hero{
  padding: 24px 0 34px;
  background:
    radial-gradient(900px 340px at 78% 40%, rgba(228,106,26,.13), transparent 58%),
    radial-gradient(900px 340px at 18% 30%, rgba(0,0,0,.06), transparent 60%);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
}

/* Copy */
.hero-kicker{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 750;
}

.hero-title{
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.6px;
}
.hero-title .accent{
  display:block;
  color: #5a2e1f;
}

.hero-subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 48ch;
}

.hero-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 18px;
}

/* Feature cards */
.hero-features{
  margin-top: 10px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
}

.feature-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(228,106,26,.12);
  color: #7a3d1f;
  flex: 0 0 auto;
}

.feature-text strong{
  display:block;
  font-size: 13px;
  margin-bottom: 2px;
}
.feature-text span{
  display:block;
  font-size: 12px;
  color: var(--muted);
}

/* Media */
.hero-media{ position: relative; }

.hero-frame{
  position: relative;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(43,27,18,.14);
  box-shadow: 0 18px 38px rgba(0,0,0,.10);
  overflow: hidden;
}

.hero-frame::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(500px 240px at 70% 40%, rgba(228,106,26,.18), transparent 60%),
    radial-gradient(420px 240px at 30% 20%, rgba(0,0,0,.08), transparent 60%);
  transform: rotate(-6deg);
  z-index: 0;
}

.hero-image{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

/* Badge */
.hero-badge{
  position:absolute;
  right: 18px;
  bottom: 18px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: #1f5f3a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 6px;
  border: 8px solid rgba(255,255,255,.70);
  box-shadow: 0 18px 32px rgba(0,0,0,.22);
}
.badge-big{
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}
.badge-small{
  font-size: 13px;
  font-weight: 850;
  line-height: 1.05;
}

/* =========================
   5) MOBILE MENU (RITAKTRADE STYLE)
   ========================= */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.mobile-menu[hidden]{ display:none !important; }

/* Solid fullscreen overlay (no bleed-through) */
.mobile-overlay{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: #2b1b12;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  overflow: hidden;

  opacity: 0;
  transition: opacity .18s ease;
}

/* Soft glow layer (still solid) */
.mobile-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 420px at 20% 10%, rgba(228,106,26,.22), transparent 60%),
    radial-gradient(700px 500px at 80% 90%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}

.mobile-menu.is-open .mobile-overlay{ opacity: 1; }

/* Center sheet/card */
.mobile-sheet{
  position: relative;
  width: min(460px, 96%);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong), 0 0 0 1px rgba(228,106,26,.15);
  padding: 16px;

  transform: translateY(14px) scale(.98);
  transition: transform .22s var(--ease);
}
.mobile-menu.is-open .mobile-sheet{ transform: translateY(0) scale(1); }

/* Sheet top */
.mobile-sheet__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 14px;
}

.mobile-sheet__logo{
  width: 170px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.mobile-close-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.mobile-close-btn:hover{ background: rgba(255,255,255,.14); }

/* Make X white inside mobile sheet */
.mobile-close-btn .close-x::before,
.mobile-close-btn .close-x::after{
  background: rgba(255,255,255,.92);
}

/* Nav pills */
.mobile-sheet__nav{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin: 8px 0 14px;
}

.mobile-pill{
  display:flex;
  align-items:center;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 850;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.mobile-pill:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
}

/* Entry animation */
.mobile-pill{
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp .35s ease forwards;
}
.mobile-pill:nth-child(1){ animation-delay: .05s; }
.mobile-pill:nth-child(2){ animation-delay: .10s; }
.mobile-pill:nth-child(3){ animation-delay: .15s; }
.mobile-pill:nth-child(4){ animation-delay: .20s; }

@keyframes fadeUp{
  to{ opacity: 1; transform: translateY(0); }
}

/* CTA pill */
.mobile-cta-pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--brand);
  color:#fff;
  font-weight: 950;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 34px rgba(228,106,26,.25);
}

.cta-left{
  display:flex;
  align-items:center;
  gap: 10px;
}

.cta-icon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
}

.mobile-sheet__note{
  margin: 12px 4px 2px;
  font-size: 12.5px;
  color: rgba(255,255,255,.68);
}

/* Prevent scroll when menu is open */
body.menu-open{ overflow: hidden; }

/* =========================
   6) ACCESSIBILITY / MOTION
   ========================= */
@media (prefers-reduced-motion: reduce){
  .mobile-overlay,
  .mobile-sheet{ transition: none !important; }

  .mobile-pill{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   7) RESPONSIVE BREAKPOINTS
   ========================= */

/* Tablet and down */
@media (max-width: 920px){
  .hero-inner{ grid-template-columns: 1fr; }

  /* Your current mobile layout: image first */
  .hero-media{ order: -1; }
  .hero-copy{ order: 0; }
}

/* Switch to mobile header */
@media (max-width: 820px){
  .nav-desktop{ display:none; }
  .nav-toggle{ display:inline-grid; }
  .brand-logo{ width: 180px; height: 56px; }
}

/* Phones */
@media (max-width: 560px){
  /* Header */
  .header-inner{
    padding: 10px 0;
    gap: 8px;
  }

  .brand{ max-width: 55%; }
  .brand-logo{ width: 165px; height: 50px; }

  .header-actions{ gap: 8px; }

  .cart-btn{
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .cart-icon svg{
    width: 16px;
    height: 16px;
  }

  .icon-btn{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  /* Hero */
  .hero{ padding: 16px 0 24px; }
  .hero-inner{ gap: 18px; }

  .hero-title{ font-size: 34px; }
  .hero-subtitle{ font-size: 15px; }

  .hero-features{ grid-template-columns: 1fr; }

  .hero-image{ height: 260px; }

  .hero-badge{
    width: 92px;
    height: 92px;
    right: 12px;
    bottom: 12px;
    border-width: 6px;
  }
  .badge-big{ font-size: 34px; }
  .badge-small{ font-size: 12px; }
}


/* =========================================================
   SECTION 2 — POPULAR DISHES (PREMIUM)
   - Desktop spacing rebalanced
   - Mobile keeps tighter spacing
   - Buttons align perfectly (flex body + margin-top:auto)
   - Mobile shows 2 cards per row
   - Subtle animations (hover lift, soft reveal, button sheen)
   ========================================================= */

/* ====== Section wrapper ====== */
.popular{
  padding: 28px 0 36px;
  background:
    radial-gradient(900px 340px at 50% 0%, rgba(0,0,0,.05), transparent 65%),
    linear-gradient(to bottom, rgba(255,255,255,.28), transparent 35%);
}

/* ====== Header ====== */
.popular__head{
  text-align: center;
  margin-bottom: 16px;
}

.popular__title{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  color: #4b2a1b;
  letter-spacing: -.2px;
  text-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.popular__subtitle{
  margin: 6px 0 0;
  color: rgba(43,27,18,.65);
  font-weight: 750;
  font-size: 13px;
}

/* ====== Grid ====== */
.popular__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
}

/* =========================================================
   POPULAR DISHES — ORDER NOW BUTTON (Consistent Style)
   ========================================================= */

.popular-btn{
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);

  background: var(--brand);
  color: #fff;

  font-weight: 950;
  font-size: 14px;
  letter-spacing: .2px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  cursor: pointer;
  transition: 
    transform .15s ease,
    background .15s ease,
    box-shadow .15s ease;
}

/* Hover */
.popular-btn:hover{
  background: var(--brand-dark);
  box-shadow: 0 12px 24px rgba(228,106,26,.25);
  transform: translateY(-1px);
}

/* Click effect */
.popular-btn:active{
  transform: translateY(1px);
  box-shadow: none;
}

/* Disabled state (future-proofing) */
.popular-btn:disabled{
  opacity: .6;
  cursor: not-allowed;
}


/* ====== Card ====== */
.dish-card{
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(43,27,18,.12);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;

  /* soft reveal animation */
  opacity: 0;
  transform: translateY(10px);
  animation: dishReveal .5s ease forwards;
}

/* Stagger (up to 8 cards if you add later) */
.dish-card:nth-child(1){ animation-delay: .05s; }
.dish-card:nth-child(2){ animation-delay: .10s; }
.dish-card:nth-child(3){ animation-delay: .15s; }
.dish-card:nth-child(4){ animation-delay: .20s; }
.dish-card:nth-child(5){ animation-delay: .25s; }
.dish-card:nth-child(6){ animation-delay: .30s; }
.dish-card:nth-child(7){ animation-delay: .35s; }
.dish-card:nth-child(8){ animation-delay: .40s; }

@keyframes dishReveal{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover (desktop only) */
@media (hover:hover){
  .dish-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0,0,0,.14);
    border-color: rgba(228,106,26,.22);
  }
}

/* ====== Media ====== */
.dish-card__media{
  padding: 12px 12px 0;
}

.dish-card__media img{
  width: 100%;
  height: 120px;          /* desktop baseline */
  object-fit: cover;
  border-radius: 12px;
  display:block;
  background: rgba(0,0,0,.04);
  box-shadow: 0 12px 22px rgba(0,0,0,.16);
  transition: transform .18s ease;
}

@media (hover:hover){
  .dish-card:hover .dish-card__media img{
    transform: scale(1.02);
  }
}

/* ====== Body (alignment fix) ====== */
.dish-card__body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 16px 16px; /* desktop balanced spacing */
  text-align: center;
}

/* Dish name (2 lines max, equal height so button lines up) */
.dish-card__name{
  margin: 4px 0 4px;
  font-size: 14px;
  font-weight: 950;
  color: #4b2a1b;
  line-height: 1.2;
  letter-spacing: -.1px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: 34px; /* keeps all cards aligned */
}

/* Ready time */
.dish-card__meta{
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(43,27,18,.65);
  font-weight: 700;
}

/* Price */
.dish-card__price{
  margin: 0 0 10px;
  font-weight: 950;
  color: #e46a1a;
  font-size: 14px;
}
.dish-card__price span{
  font-size: 18px;
}

/* Button (anchored to bottom) */
.dish-card__btn{
  margin-top: auto; /* key for perfect alignment */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  background: #1f5f3a;
  color: #fff;
  font-weight: 950;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 12px 18px rgba(31,95,58,.22);
  transition: transform .12s ease, filter .12s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle “sheen” animation on hover (desktop only) */
@media (hover:hover){
  .dish-card__btn::before{
    content:"";
    position:absolute;
    top: -40%;
    left: -60%;
    width: 60%;
    height: 180%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.22),
      transparent
    );
    transform: rotate(18deg);
    opacity: 0;
  }

  .dish-card:hover .dish-card__btn::before{
    opacity: 1;
    animation: btnSheen .7s ease;
  }

  .dish-card__btn:hover{
    filter: brightness(1.03);
  }
}

@keyframes btnSheen{
  from{ left: -60%; }
  to{ left: 120%; }
}

.dish-card__btn:active{
  transform: translateY(1px);
}

/* ====== CTA under grid ====== */
.popular__cta{
  margin-top: 18px;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 8px;
}

.popular__cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand, #e46a1a);
  color: #fff;
  font-weight: 950;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 26px rgba(228,106,26,.22);
  transition: transform .12s ease, background .12s ease;
  min-width: 220px;
  position: relative;
  overflow: hidden;
}

.popular__cta-btn:hover{
  background: var(--brand-dark, #c9550f);
}
.popular__cta-btn:active{
  transform: translateY(1px);
}

/* Soft glow on CTA */
.popular__cta-btn::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 55%);
  transform: rotate(-10deg);
  pointer-events:none;
}

.popular__cta-note{
  margin: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(43,27,18,.62);
  text-align:center;
  max-width: 46ch;
}

/* =========================================================
   Decorative Lines — Popular Dishes
   ========================================================= */

.popular__title{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  color: #4b2a1b;
  letter-spacing: -.2px;
}

/* Lines */
.popular__title::before,
.popular__title::after{
  content: "";
  flex: 1;
  height: 2px;
  max-width: 140px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(75,42,27,.35),
    transparent
  );
  border-radius: 999px;
}

/* =========================================================
   RESPONSIVE
   Desktop: 4 columns
   Medium: 3 columns
   Mobile: 2 columns
   ========================================================= */

@media (max-width: 1024px){
  .popular__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  .popular{
    padding: 22px 0 28px;
  }

  .popular__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* Critical: stop overflow issues in tight columns */
  .dish-card{
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.62);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
  }

  .dish-card__media{
    padding: 10px 10px 0;
  }

  .dish-card__media img{
    height: 112px;
    border-radius: 14px;
  }

  .dish-card__body{
    padding: 10px 12px 12px; /* tighter spacing to keep button aligned */
  }

  .dish-card__name{
    font-size: 13px;
    min-height: 30px;
  }

  .dish-card__meta{
    margin-bottom: 5px;
    font-size: 11.5px;
  }

  .dish-card__price{
    margin-bottom: 8px;
    font-size: 13px;
  }

  .dish-card__price span{
    font-size: 16px;
  }

  .dish-card__btn{
    padding: 9px 10px;
    font-size: 12.5px;
    border-radius: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 380px){
  .popular__grid{ gap: 10px; }
  .dish-card__media img{ height: 104px; }
  .dish-card__name{ font-size: 12.6px; }
  .dish-card__btn{ font-size: 12px; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce){
  .dish-card{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .dish-card__media img,
  .dish-card__btn,
  .popular__cta-btn{
    transition: none !important;
  }
  .dish-card__btn::before{
    display:none !important;
  }
}


/* =========================================================
   MEAL PLANS — SAVE & SCHEDULE
   Premium section + RitakTrade-style modal
   ========================================================= */

/* =========================
   SECTION WRAPPER
   ========================= */
.meal-plans{
  padding: 40px 0 50px;
  background:
    radial-gradient(1000px 400px at 50% 0%, rgba(0,0,0,.05), transparent 60%);
}

.meal-plans__head{
  text-align:center;
  margin-bottom: 22px;
}

.meal-plans__title{
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  color: #4b2a1b;
  letter-spacing: -.3px;
}

/* =========================
   PLAN GRID
   ========================= */
.meal-plans__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.plan-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(43,27,18,.14);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
  display:flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}

@media (hover:hover){
  .plan-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(0,0,0,.16);
  }
}

.plan-card__media img{
  width:100%;
  height:190px;
  object-fit: cover;
  display:block;
}

.plan-card__body{
  padding: 18px;
  text-align:center;
}

.plan-card__name{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
  color:#4b2a1b;
}

.plan-card__btn{
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 900;
  border:none;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease;
}

.plan-card__btn--weekly{
  background:#1f5f3a;
  color:#fff;
}

.plan-card__btn--monthly{
  background:#c9550f;
  color:#fff;
}

.plan-card__btn:hover{
  filter: brightness(1.05);
}

.plan-card__btn:active{
  transform: translateY(1px);
}

/* =========================
   MODAL
   ========================= */
.plan-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.plan-modal[hidden]{
  display:none;
}

.plan-modal__overlay{
  position: fixed;
  inset:0;
  width:100vw;
  height:100dvh;
  background:#2b1b12; /* solid */
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  opacity:0;
  transition: opacity .2s ease;
}

.plan-modal.is-open .plan-modal__overlay{
  opacity:1;
}

/* Sheet */
.plan-modal__sheet{
  width:min(700px, 100%);
  max-height: 92vh;
  overflow-y:auto;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  padding: 22px;
  transform: translateY(20px) scale(.97);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

.plan-modal.is-open .plan-modal__sheet{
  transform: translateY(0) scale(1);
}

/* =========================
   MODAL HEADER
   ========================= */
.plan-modal__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:16px;
}

.plan-modal__kicker{
  margin:0;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.7);
}

.plan-modal__title{
  margin:4px 0 0;
  font-size:20px;
  font-weight:900;
  color:#fff;
}

.plan-modal__close{
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.plan-modal__close .close-x::before,
.plan-modal__close .close-x::after{
  background:#fff;
}


/* ===================== CHECKOUT MODAL ===================== */
.checkout-modal{ position: fixed; inset: 0; z-index: 100001; }
.checkout-modal[hidden]{ display:none !important; }

.checkout-modal__overlay{
  position: fixed;
  inset: 0;
  width:100vw;
  height:100dvh;
  background: #2b1b12;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  opacity: 0;
  transition: opacity .18s ease;
}

.checkout-modal.is-open .checkout-modal__overlay{ opacity: 1; }

.checkout-modal__sheet{
  width: min(1040px, 96%);
  height: min(88dvh, 820px);
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  transform: translateY(14px) scale(.98);
  transition: transform .22s cubic-bezier(.2,.8,.2,1);
  display:flex;
  flex-direction: column;
}

.checkout-modal.is-open .checkout-modal__sheet{ transform: translateY(0) scale(1); }

.checkout-modal__top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.checkout-modal__kicker{ margin:0; font-size: 12.5px; font-weight: 800; color: rgba(255,255,255,.70); }
.checkout-modal__title{ margin:4px 0 0; font-size: 18px; font-weight: 950; color:#fff; }

.checkout-modal__close{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.checkout-modal__close .close-x::before,
.checkout-modal__close .close-x::after{ background: rgba(255,255,255,.92); }

.checkout-body{
  padding: 14px 16px 16px;
  overflow: auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}

.checkout-form{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px;
}

.checkout-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.cfield{ display:flex; flex-direction:column; gap: 6px; }
.cfield--full{ grid-column: span 2; }

.cfield__label{
  font-size: 12px;
  font-weight: 850;
  color: rgba(255,255,255,.80);
}

.cfield__input{
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  outline: none;
}

.cfield__input::placeholder{ color: rgba(255,255,255,.62); }

.cfield__hint{
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

.cfield__textarea{
  height: auto;
  padding: 10px 12px;
  min-height: 84px;
  resize: none;
}

/* Fix dropdown readability */
.cfield__input option,
.cfield__input optgroup{
  background: #1f1a16;
  color: #fff;
}
.cfield__input{ color-scheme: dark; }

.cfield__row{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  align-items: center;
}

.loc-btn{
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  cursor:pointer;
}

.loc-btn:hover{ background: rgba(255,255,255,.12); }

.checkout-actions{
  margin-top: 12px;
  display:flex;
  justify-content: flex-end;
  gap: 10px;
}

.checkout-legal{
  margin: 10px 2px 0;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

.checkout-summary{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px;
  height: fit-content;
}

.checkout-summary__title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 950;
  color: rgba(255,255,255,.95);
}

.checkout-summary__items{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.sum-item{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}

.sum-item strong{ color: rgba(255,255,255,.95); font-size: 13px; }
.sum-item span{ color: rgba(255,255,255,.70); font-weight: 850; font-size: 12.5px; }

.checkout-summary__totals{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 10px;
}

.sum-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  color: rgba(255,255,255,.92);
  font-weight: 950;
}

.sum-note{
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

.checkout-success{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(31,95,58,.16);
  border: 1px solid rgba(31,95,58,.22);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}



/* ===================== CHECKOUT CONFIRMATION SCREEN ===================== */
.checkout-confirm{
  padding: 14px 16px 18px;
}

.checkout-confirm__card{
  max-width: 520px;
  margin: 20px auto 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.30);
  padding: 18px;
  text-align: center;
}

.checkout-confirm__icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(31,95,58,.18);
  border: 1px solid rgba(31,95,58,.24);
  font-size: 28px;
}

.checkout-confirm__title{
  margin: 0 0 6px;
  color: rgba(255,255,255,.95);
  font-weight: 950;
  font-size: 18px;
}

.checkout-confirm__text{
  margin: 0 0 12px;
  color: rgba(255,255,255,.70);
  font-weight: 750;
  line-height: 1.45;
  font-size: 13.5px;
}

.checkout-confirm__meta{
  text-align: left;
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
  font-weight: 750;
  font-size: 13px;
}

.checkout-confirm__actions{
  margin-top: 12px;
  display:flex;
  justify-content: center;
}

.checkout-confirm__note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.60);
}


/* Confirmation success message */
.checkout-confirm__alert{
  margin: 10px auto 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(31,95,58,.18);
  border: 1px solid rgba(31,95,58,.28);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  max-width: 520px;
}

/* Close (X) inside confirmation card */
.checkout-confirm__card{
  position: relative;
}
.checkout-confirm__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.checkout-confirm__close .close-x::before,
.checkout-confirm__close .close-x::after{
  background: rgba(255,255,255,.92);
}

/* Responsive */
@media (max-width: 860px){
  .checkout-body{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .checkout-grid{ grid-template-columns: 1fr; }
  .cfield--full{ grid-column: auto; }
  .cfield__row{ grid-template-columns: 1fr; }
}

/* =========================
   INFO PILLS
   ========================= */
.plan-modal__info{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.plan-pill{
  padding:6px 12px;
  border-radius:999px;
  background:#e46a1a;
  color:#fff;
  font-weight:800;
  font-size:12px;
}

.plan-pill--light{
  background:rgba(255,255,255,.15);
  color:#fff;
}

/* =========================
   FORM
   ========================= */
.plan-form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}

.field{
  display:flex;
  flex-direction:column;
}

.field--full{
  grid-column: span 2;
}

.field__label{
  font-size:12px;
  font-weight:700;
  margin-bottom:4px;
  color:rgba(255,255,255,.8);
}

.field__input{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:13px;
}

.field__input::placeholder{
  color:rgba(255,255,255,.6);
}

.field__textarea{
  resize:none;
}

/* =========================
   SUMMARY
   ========================= */
.plan-form__summary{
  margin-top:18px;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.1);
}

.summary-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:6px;
  font-size:13px;
  color:#fff;
}

.summary-note{
  font-size:12px;
  color:rgba(255,255,255,.7);
  margin-top:6px;
}

/* =========================
   ACTIONS
   ========================= */
.plan-form__actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:18px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px){

  .meal-plans__grid{
    grid-template-columns: 1fr;
  }

  .plan-card__media img{
    height:160px;
  }

  .plan-form__grid{
    grid-template-columns: 1fr;
  }

  .field--full{
    grid-column: auto;
  }
}


/* =========================================================
   FORM DROPDOWN READABILITY FIX (OPTIONS)
   - Fixes white option background making text unreadable
   ========================================================= */
.field__input option,
.field__input optgroup{
  background: #1f1a16;     /* dark readable background */
  color: #ffffff;          /* readable text */
}

/* Some browsers also need this for select menus */
.field__input{
  color-scheme: dark;
}

/* =========================================================
   MEAL SCHEDULE (NEW)
   ========================================================= */
.meal-schedule{
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.meal-schedule__head{
  margin-bottom: 12px;
}

.meal-schedule__title{
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 950;
  color: #fff;
}

.meal-schedule__sub{
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.70);
  line-height: 1.35;
}

.meal-schedule__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

/* Day card */
.day-row{
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.day-row__day{
  font-weight: 950;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.day-row .field__input{
  width: 100%;
}

/* Meal Total Card */
.meal-total{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.meal-total__row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  padding: 4px 0;
}

.meal-total__label{
  color: rgba(255,255,255,.75);
  font-weight: 800;
  font-size: 12.5px;
}

.meal-total__value{
  color: #fff;
  font-weight: 950;
}

.meal-total__note{
  margin: 6px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  line-height: 1.35;
}

/* Responsive inside modal */
@media (max-width: 560px){
  .day-row{
    grid-template-columns: 1fr;
  }
  .day-row__day{
    margin-bottom: 2px;
  }
}


/* =========================================================
   Decorative Lines Beside Section Title
   ========================================================= */

.meal-plans__title{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  color: #4b2a1b;
  letter-spacing: -.3px;
  margin: 0;
}

.meal-plans__title::before,
.meal-plans__title::after{
  content: "";
  flex: 1;
  height: 2px;
  max-width: 140px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(75,42,27,.35),
    transparent
  );
  border-radius: 999px;
}


/* =========================================================
   HOW IT WORKS — Modern Food-Tech
   ========================================================= */

.how{
  padding: 44px 0 54px;
  background:
    radial-gradient(900px 360px at 20% 10%, rgba(228,106,26,.10), transparent 60%),
    radial-gradient(900px 360px at 80% 20%, rgba(31,95,58,.08), transparent 60%);
  border-top: 1px solid rgba(43,27,18,.10);
  border-bottom: 1px solid rgba(43,27,18,.10);
}

/* Head */
.how__head{
  text-align:center;
  margin-bottom: 22px;
}

.how__title{
  margin: 0;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;

  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 950;
  color: #4b2a1b;
  letter-spacing: -.25px;
}

.how__title::before,
.how__title::after{
  content:"";
  flex: 1;
  height: 2px;
  max-width: 140px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(75,42,27,.30),
    transparent
  );
  border-radius: 999px;
}

.how__subtitle{
  margin: 8px 0 0;
  font-size: 13.5px;
  font-weight: 750;
  color: rgba(43,27,18,.65);
}

/* Grid */
.how__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  position: relative;
}

/* Optional subtle connector line behind cards (desktop only) */
@media (min-width: 860px){
  .how__grid::before{
    content:"";
    position:absolute;
    left: 7%;
    right: 7%;
    top: 52px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(43,27,18,.16), transparent);
    border-radius: 999px;
    z-index: 0;
  }
}

/* Card */
.how-card{
  position: relative;
  z-index: 1;

  background: rgba(255,255,255,.60);
  border: 1px solid rgba(43,27,18,.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0,0,0,.08);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;

  /* reveal state */
  opacity: 0;
  transform: translateY(14px);
}

.how-card.is-inview{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease, box-shadow .18s ease, border-color .18s ease;
}

@media (hover:hover){
  .how-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(0,0,0,.12);
    border-color: rgba(228,106,26,.20);
  }
}

/* Icon */
.how-card__icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:grid;
  place-items:center;

  background: rgba(228,106,26,.12);
  border: 1px solid rgba(228,106,26,.18);
  color: #7a3d1f;
  margin: 0 auto 10px;
  box-shadow: 0 14px 22px rgba(0,0,0,.06);

  transition: transform .18s ease;
}

.how-card__icon--accent{
  background: rgba(228,106,26,.14);
  border-color: rgba(228,106,26,.22);
}

.how-card__icon--green{
  background: rgba(31,95,58,.12);
  border-color: rgba(31,95,58,.22);
  color: #1f5f3a;
}

@media (hover:hover){
  .how-card:hover .how-card__icon{
    transform: translateY(-2px);
  }
}

/* Step label */
.how-card__step{
  display:inline-flex;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(43,27,18,.06);
  border: 1px solid rgba(43,27,18,.10);
  font-size: 12px;
  font-weight: 900;
  color: rgba(43,27,18,.72);
  margin: 0 auto 10px;
  width: fit-content;
}

/* Titles + copy */
.how-card__title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 950;
  color: #2b1b12;
  text-align:center;
  letter-spacing: -.2px;
}

.how-card__desc{
  margin: 0;
  font-size: 13.2px;
  line-height: 1.55;
  color: rgba(43,27,18,.68);
  text-align:center;
}

/* Responsive */
@media (max-width: 860px){
  .how__grid{
    grid-template-columns: 1fr;
  }
  .how-card{
    max-width: 520px;
    margin: 0 auto;
  }
}


/* =========================================================
   PROMO SECTION — FRIDAY SURPRISE (Modern Food-Tech)
   ========================================================= */
.promo{
  padding: 34px 0 44px;
  background:
    radial-gradient(900px 360px at 20% 10%, rgba(228,106,26,.10), transparent 60%),
    radial-gradient(900px 360px at 80% 20%, rgba(31,95,58,.08), transparent 60%);
}

.promo-card{
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;

  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(43,27,18,.12);
  box-shadow: 0 20px 44px rgba(0,0,0,.10);
  overflow: hidden;
  position: relative;
}

/* soft glow layer */
.promo-card::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(520px 280px at 25% 25%, rgba(228,106,26,.14), transparent 60%),
    radial-gradient(520px 280px at 85% 80%, rgba(31,95,58,.10), transparent 60%);
  transform: rotate(-6deg);
  pointer-events:none;
}

.promo-card__left{
  position: relative;
  z-index: 1;
  padding: 22px 22px 20px;
}

.promo-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(43,27,18,.06);
  border: 1px solid rgba(43,27,18,.10);
  color: rgba(43,27,18,.75);
  font-weight: 900;
  font-size: 12px;
}

.promo-badge__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand, #e46a1a);
  box-shadow: 0 0 0 4px rgba(228,106,26,.16);
}

.promo-title{
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -.4px;
  color: #2b1b12;
  font-weight: 950;
}

.promo-accent{
  color: #5a2e1f;
}

.promo-subtitle{
  margin: 0 0 14px;
  color: rgba(43,27,18,.68);
  font-weight: 700;
  line-height: 1.55;
  max-width: 62ch;
  font-size: 14px;
}

.promo-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.promo-note{
  margin: 0;
  font-size: 12.2px;
  color: rgba(43,27,18,.60);
  font-weight: 650;
}

/* Right side visual */
.promo-card__right{
  position: relative;
  z-index: 1;
  padding: 18px;
  display: grid;
  place-items: center;
}

.promo-visual{
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(43,27,18,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  text-align: center;
}

.promo-icon{
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(228,106,26,.14);
  border: 1px solid rgba(228,106,26,.20);
  font-size: 28px;
}

.promo-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(31,95,58,.10);
  border: 1px solid rgba(31,95,58,.18);
  color: #1f5f3a;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 12px;
}

.promo-mini{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(43,27,18,.05);
  border: 1px solid rgba(43,27,18,.10);
  margin-top: 10px;
}

.promo-mini--green{
  background: rgba(31,95,58,.10);
  border-color: rgba(31,95,58,.18);
}

.promo-mini__label{
  color: rgba(43,27,18,.60);
  font-weight: 850;
  font-size: 12px;
}

.promo-mini__value{
  color: #2b1b12;
  font-weight: 950;
  font-size: 12.5px;
}

/* Subtle motion */
@media (hover:hover){
  .promo-visual{
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .promo-card:hover .promo-visual{
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(0,0,0,.14);
  }
}

/* Responsive */
@media (max-width: 900px){
  .promo-card{
    grid-template-columns: 1fr;
  }
  .promo-card__right{
    padding-top: 0;
  }
}




/* =========================================================
   MENU MODAL + CART DRAWER (RitakTrade style)
   ========================================================= */

.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ===== MENU MODAL ===== */
.menu-modal{ position: fixed; inset: 0; z-index: 99999; }
.menu-modal[hidden]{ display:none !important; }

.menu-modal__overlay{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: #2b1b12;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  transition: opacity .18s ease;
}

.menu-modal.is-open .menu-modal__overlay{ opacity: 1; }

.menu-modal__sheet{
  width: min(1040px, 96%);
  height: min(86dvh, 760px);
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  transform: translateY(14px) scale(.98);
  transition: transform .22s cubic-bezier(.2,.8,.2,1);
  display:flex;
  flex-direction: column;
}

.menu-modal.is-open .menu-modal__sheet{ transform: translateY(0) scale(1); }

.menu-modal__top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.menu-modal__kicker{ margin:0; font-size: 12.5px; font-weight: 800; color: rgba(255,255,255,.70); }
.menu-modal__title{ margin:4px 0 0; font-size: 18px; font-weight: 950; color: #fff; }

.menu-modal__actions{ display:flex; align-items:center; gap: 10px; }

.menu-cart-btn{
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-weight: 950;
  cursor:pointer;
}

.menu-modal__close{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.menu-modal__close .close-x::before,
.menu-modal__close .close-x::after{ background: rgba(255,255,255,.92); }

/* Tools */
.menu-tools{
  padding: 12px 16px 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
}

.menu-search{
  flex: 1 1 260px;
}
.menu-search input{
  width: 100%;
  height: 44px;
  border-radius: 14px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  outline: none;
}
.menu-search input::placeholder{ color: rgba(255,255,255,.62); }

.menu-chips{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-chip{
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 850;
  cursor:pointer;
}
.menu-chip.is-active{
  background: rgba(228,106,26,.18);
  border-color: rgba(228,106,26,.28);
}

/* Grid area scroll */
.menu-grid{
  padding: 10px 16px 16px;
  overflow: auto;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

/* Menu card */
.menu-item{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  display:flex;
  flex-direction: column;
}

.menu-item__img{
  width: 100%;
  height: 110px;
  object-fit: cover;
  display:block;
  background: rgba(255,255,255,.05);
}

.menu-item__body{
  padding: 10px 10px 12px;
  display:flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.menu-item__name{
  margin:0;
  font-weight: 950;
  color: rgba(255,255,255,.95);
  font-size: 13px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}

.menu-item__meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-weight: 750;
  font-size: 12px;
}

.menu-item__btn{
  margin-top: auto;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: var(--brand);
  color:#fff;
  font-weight: 950;
  cursor:pointer;
}
.menu-item__btn:hover{ background: var(--brand-dark); }

.menu-footnote{
  margin: 0;
  padding: 10px 16px 14px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Responsive grid */
@media (max-width: 980px){
  .menu-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 720px){
  .menu-modal__sheet{ height: 90dvh; }
  .menu-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 380px){
  .menu-grid{ grid-template-columns: 1fr; }
}

/* ===== CART DRAWER ===== */
.cart-drawer{ position: fixed; inset: 0; z-index: 100000; }
.cart-drawer[hidden]{ display:none !important; }

.cart-drawer__overlay{
  position: fixed; inset:0;
  background: rgba(15,10,8,.55);
}

.cart-drawer__panel{
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 92%);
  height: 100dvh;
  background: #fff;
  border-left: 1px solid rgba(0,0,0,.10);
  box-shadow: -18px 0 60px rgba(0,0,0,.28);
  display:flex;
  flex-direction: column;
  padding: 14px;
}

.cart-drawer__top{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.cart-drawer__kicker{ margin:0; font-size: 12px; font-weight: 850; color: rgba(43,27,18,.65); }
.cart-drawer__title{ margin:4px 0 0; font-size: 18px; font-weight: 950; color: #2b1b12; }

.cart-drawer__close{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.cart-items{
  padding: 12px 2px;
  overflow:auto;
  flex: 1;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item{
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
  border-radius: 14px;
  padding: 10px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.cart-item__name{ margin:0; font-weight: 950; color:#2b1b12; font-size: 13.5px; }
.cart-item__price{ margin:4px 0 0; font-weight: 900; color: rgba(228,106,26,.95); font-size: 13px; }

.qty{
  display:flex;
  align-items:center;
  gap: 8px;
}
.qty button{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor:pointer;
  font-weight: 950;
}
.qty span{ min-width: 18px; text-align:center; font-weight: 950; color:#2b1b12; }

.cart-totals{
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 12px;
}

.cart-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-weight: 900;
  color:#2b1b12;
}

.cart-note{
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(43,27,18,.62);
}

.cart-cta{
  margin-top: 12px;
  display:flex;
  gap: 10px;
}


/* =========================================================
   MENU MODAL — MOBILE FIX (cards collapsing)
   Put this at the END of your CSS
   ========================================================= */

/* Ensure scrolling area has enough space */
@media (max-width: 560px){
  .menu-modal__sheet{
    height: 92dvh;
  }

  .menu-tools{
    padding-bottom: 6px;
  }

  /* IMPORTANT: 1 column on small screens so cards have space */
  .menu-grid{
    grid-template-columns: 1fr !important;
    gap: 12px;
    padding: 10px 14px 18px;
  }

  /* Card must not clip its content */
  .menu-item{
    min-width: 0;
    overflow: visible !important; /* stop cutting name/button */
    border-radius: 18px;
  }

  /* Bigger image so card feels real on mobile */
  .menu-item__img{
    height: 150px !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* Body must have breathing room and allow the button */
  .menu-item__body{
    padding: 12px 12px 14px !important;
    gap: 8px !important;
    min-height: 140px; /* ensures button always fits */
  }

  /* Name should be readable */
  .menu-item__name{
    font-size: 14px !important;
    min-height: unset !important;
    -webkit-line-clamp: 2;
  }

  /* Make meta wrap nicely */
  .menu-item__meta{
    font-size: 12px !important;
    flex-wrap: wrap;
  }

  /* Button full width and always visible */
  .menu-item__btn{
    width: 100%;
    height: 44px !important;
    border-radius: 14px !important;
    font-size: 14px;
  }
}

/* Extra tiny phones */
@media (max-width: 380px){
  .menu-item__img{ height: 138px !important; }
  .menu-item__btn{ height: 42px !important; }
}





/* =========================================================
   FOOTER — CHOPNACHOP (MATCHES SITE UI)
   ========================================================= */

.footer{
  position: relative;
  margin-top: 60px;
  padding: 40px 0 0;
  overflow: hidden;

  /* Background image layer */
  background:
    linear-gradient(
      rgba(247,242,238,.92),
      rgba(247,242,238,.92)
    ),
    url("footer-food.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-top: 1px solid rgba(247,242,238,.88);
}

.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 300px at 20% 10%, rgba(228,106,26,.08), transparent 60%),
    radial-gradient(800px 300px at 80% 20%, rgba(31,95,58,.06), transparent 60%);
  pointer-events:none;
}

.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.1fr;
  gap: 22px;
  padding-bottom: 26px;
}

.footer__col{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(43,27,18,.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0,0,0,.08);
}

.footer__brand{
  background:
    radial-gradient(600px 240px at 20% 0%, rgba(228,106,26,.12), transparent 60%),
    rgba(255,255,255,.55);
}

.footer__logo{
  display:inline-flex;
  align-items:center;
}
.footer__logo-img{
  width: 170px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.10));
}

.footer__desc{
  margin: 10px 0 10px;
  color: rgba(43,27,18,.70);
  font-size: 13.5px;
  line-height: 1.55;
}

.footer__badges{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__badge{
  font-size: 12px;
  font-weight: 850;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(43,27,18,.06);
  border: 1px solid rgba(43,27,18,.10);
  color: rgba(43,27,18,.75);
}
.footer__badge--accent{
  background: rgba(228,106,26,.14);
  border-color: rgba(228,106,26,.20);
  color: #7a3d1f;
}

/* Titles */
.footer__title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 950;
  color: #2b1b12;
  letter-spacing: -.2px;
}

/* Links */
.footer__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 750;
  color: rgba(43,27,18,.72);
  transition: transform .12s ease, color .12s ease;
}
.footer__links a::before{
  content:"›";
  color: rgba(228,106,26,.65);
  font-weight: 950;
}
.footer__links a:hover{
  color: #2b1b12;
  transform: translateX(2px);
}

/* Payments */
.footer__payments{
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.pay{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(43,27,18,.75);
  font-weight: 750;
  font-size: 13.5px;
}

.pay__icon{
  width: 42px;
  height: 26px;
  border-radius: 8px;
  display:inline-grid;
  place-items:center;
  font-weight: 950;
  font-size: 12px;
  border: 1px solid rgba(43,27,18,.12);
  background: rgba(255,255,255,.65);
}

.pay__icon--momo{
  background: rgba(228,106,26,.12);
  border-color: rgba(228,106,26,.22);
  color: #7a3d1f;
}

.pay__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display:inline-block;
}
.pay__dot--mtn{ background:#ffcc00; }
.pay__dot--telecel{ background:#e11d2e; }
.pay__dot--airteltigo{ background:#2563eb; }

.pay--cards{
  align-items:center;
  gap: 8px;
}

.card-badge{
  width: 44px;
  height: 26px;
  border-radius: 8px;
  display:inline-grid;
  place-items:center;
  font-weight: 950;
  font-size: 11px;
  color:#fff;
  border: 1px solid rgba(0,0,0,.12);
}
.card-badge--visa{ background:#1a1f71; }
.card-badge--mc{ background:#eb001b; }

/* Social */
.footer__social{
  display:flex;
  gap: 10px;
  margin-bottom: 12px;
}
.social{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(43,27,18,.12);
  background: rgba(255,255,255,.70);
  color: rgba(43,27,18,.85);
  box-shadow: 0 12px 18px rgba(0,0,0,.06);
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.social:hover{
  transform: translateY(-2px);
  background: rgba(228,106,26,.14);
  color: #2b1b12;
}

/* Contact */
.footer__contact p{
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(43,27,18,.70);
}
.footer__contact strong{
  color: rgba(43,27,18,.90);
}

/* Bottom bar */
.footer__bottom{
  border-top: 1px solid rgba(43,27,18,.12);
  background: rgba(255,255,255,.35);
  padding: 14px 0;
}
.footer__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__copy{
  margin: 0;
  font-size: 12.8px;
  color: rgba(43,27,18,.70);
  font-weight: 750;
}
.footer__tagline{
  margin: 0;
  font-size: 12.8px;
  font-weight: 950;
  color: rgba(228,106,26,.95);
}

/* Responsive */
@media (max-width: 980px){
  .footer__inner{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
  .footer__inner{
    grid-template-columns: 1fr;
  }
  .footer__bottom-inner{
    flex-direction: column;
    text-align:center;
  }
}


/* Whatsapp */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  transition: transform .2s ease;
}

.whatsapp-float img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-float:hover{
  transform: scale(1.08);
}

@media (max-width: 768px){
  .whatsapp-float{
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 15px;
  }
}


/* =========================================================
   SERVICE BAR + ORDER STATUS
   ========================================================= */

.service-bar{
  border-top: 1px solid rgba(43,27,18,.08);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
}

.service-bar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.service-bar__left{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
}

.service-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(43,27,18,.06);
  border: 1px solid rgba(43,27,18,.10);
  color: rgba(43,27,18,.78);
  font-size: 12px;
  font-weight: 850;
}

.service-pill--live{
  background: rgba(31,95,58,.12);
  border-color: rgba(31,95,58,.18);
  color: #1f5f3a;
}

.service-pill--closed{
  background: rgba(201,85,15,.14);
  border-color: rgba(201,85,15,.20);
  color: #8d3a0d;
}

.service-bar__reserve{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #1f5f3a;
  color:#fff;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 22px rgba(31,95,58,.18);
  transition: transform .15s ease, filter .15s ease;
}

.service-bar__reserve:hover{
  filter: brightness(1.04);
}

.service-bar__reserve:active{
  transform: translateY(1px);
}

/* Hero service card */
.service-note-card{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(43,27,18,.12);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  max-width: 700px;
}

.service-note-card__title{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 950;
  color: #2b1b12;
}

.service-note-card__text{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(43,27,18,.72);
}

/* Checkout order status */
.order-status-box{
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-status-box--closed{
  background: rgba(201,85,15,.14);
  border-color: rgba(201,85,15,.20);
}

.order-status-box--open{
  background: rgba(31,95,58,.14);
  border-color: rgba(31,95,58,.18);
}

.order-status-box__title{
  margin: 0 0 4px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 950;
}

.order-status-box__text{
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 12.8px;
  line-height: 1.5;
  max-width: 52ch;
}

.order-status-box__reserve{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: #1f5f3a;
  color:#fff;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.10);
  white-space: nowrap;
}

/* Disabled order buttons */
.is-disabled-order{
  opacity: .58 !important;
  pointer-events: none !important;
  filter: grayscale(.08);
}

/* Small responsive */
@media (max-width: 700px){
  .service-bar__inner{
    align-items:flex-start;
  }

  .order-status-box{
    flex-direction: column;
    align-items: stretch;
  }

  .order-status-box__reserve{
    width: 100%;
  }
}

