/* ============================================
   DRABEN' TACO — Main Stylesheet
   Design system: Foody
   Mobile-first
   ============================================ */

/* ---- Design tokens (Foody) ---- */
:root {
  /* Brand */
  --color-primary:      #E63329;
  --color-primary-dark: #C22318;
  --color-accent:       #F59E42;
  --color-yellow:       #FFD23F;

  /* Superfici */
  --color-bg:           #FBEEDF;
  --color-bg-soft:      #FDF6EC;
  --color-surface:      #FFFFFF;

  /* Dish card modifiers (carousel salse) */
  --dish-pink:   #E88C8C;
  --dish-orange: #F0913A;
  --dish-green:  #7CC24E;
  --dish-purple: #8A7BE0;

  /* Testo */
  --color-text:       #2B2118;
  --color-text-muted: #7A6F63;

  /* Effetti */
  --shadow-card:    0 10px 30px rgba(43, 33, 24, 0.08);
  --shadow-card-lg: 0 20px 50px rgba(43, 33, 24, 0.14);
  --radius-card: 20px;
  --radius-xl:   40px;
  --radius-pill: 999px;

  /* Font */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Poppins', system-ui, -apple-system, sans-serif;

  --section-pad-y:        96px;
  --section-pad-y-mobile: 56px;
  --container-max: 1200px;
  --header-h:      72px;
  --transition:    0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
input, textarea { font-family: inherit; }

/* ---- Typography ---- */
/* Only hero H1 uses serif via .hero-title; all other headings stay sans. */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}
h2 { font-size: clamp(1.9rem, 5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); }
p  { line-height: 1.7; }

.txt-red    { color: var(--color-primary); }
.txt-orange { color: var(--color-accent); }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.section-intro {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 12px;
}

.h2-underline { position: relative; padding-bottom: 18px; }
.h2-underline::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 60px; height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
}
.h2-underline.center::after { left: 50%; transform: translateX(-50%); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section {
  padding: var(--section-pad-y-mobile) 0;
}
@media (min-width: 900px) {
  .section { padding: var(--section-pad-y) 0; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; }

.btn-secondary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-secondary:hover { background: #d9821f; border-color: #d9821f; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(43,33,24,.3);
}
.btn-outline:hover { border-color: var(--color-text); background: rgba(43,33,24,.05); }

.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn-outline-dark:hover { background: var(--color-text); color: var(--color-bg); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.btn-icon-circle:hover { background: var(--color-primary); transform: scale(1.06); }

/* ---- Tags ---- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.tag--halal            { background: #e8f5e9; color: #2e7d32; }
.tag--vegetariano      { background: #f3e5f5; color: #6a1b9a; }
.tag--piccante         { background: #fbe9e7; color: #b71c1c; }
.tag--best-seller      { background: #fff3e0; color: #b3540e; }
.tag--personalizzabile { background: #e3f2fd; color: #1565c0; }
.tag--vegano           { background: #f1f8e9; color: #33691e; }
.tag--hero             { background: var(--color-yellow); color: var(--color-text); }

/* ---- Utilities ---- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }


/* ============================================
   NAVBAR
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  height: var(--header-h);
  border-bottom: 1px solid rgba(43,33,24,.06);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(43,33,24,.1); }

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: background var(--transition);
}
.logo:hover .logo-mark { background: var(--color-primary-dark); }
.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.main-nav a:hover { color: var(--color-text); background: rgba(43,33,24,.07); }
.main-nav a.is-active { color: var(--color-primary); font-weight: 600; }

.nav-cta-desktop { flex-shrink: 0; }
.nav-cta-desktop .btn { padding: 11px 24px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  flex-shrink: 0;
  padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-overlay.is-open { transform: translateX(0); }

.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.mobile-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(43,33,24,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: var(--color-text);
  background: none;
  cursor: pointer;
}

.mobile-overlay nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-overlay nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-card);
  transition: background var(--transition);
}
.mobile-overlay nav a:hover { background: rgba(43,33,24,.06); }
.mob-cta-wrap { margin-top: 8px; }
.mob-cta-wrap .btn { width: 100%; justify-content: center; font-size: 1rem; }

/* Mobile sticky bottom bar */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--color-primary);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 20px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(230,51,41,.25);
}
.sticky-bar a {
  color: #fff; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.sticky-sep { color: rgba(255,255,255,.4); }


/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,66,.18) 0%, transparent 68%);
  top: -140px; right: -60px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,51,41,.09) 0%, transparent 68%);
  bottom: 80px; left: -60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-play-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Right visual column */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-food {
  position: relative;
  width: clamp(240px, 42vw, 400px);
  flex-shrink: 0;
}

.hero-bowl-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

/* Clip ring: box-shadow ring + drop shadow in one, avoids overflow:hidden clipping the ring */
.hero-bowl-clip {
  width: 100%; height: 100%;
  border-radius: 50%; overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(245, 158, 66, 0.70),
    0 20px 50px rgba(43, 33, 24, 0.14);
  position: relative;
}

/* Carousel slides inside the circle */
.hero-food-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.65s ease;
  will-change: opacity;
}
.hero-food-slide.is-active {
  opacity: 1;
  animation: hero-float 4s ease-in-out infinite;
}
.hero-food-slide.is-leaving { opacity: 0; }

.hero-badge-halal {
  position: absolute;
  top: 4px; right: -12px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  z-index: 3;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.hero-pips {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 20px;
}
.hero-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(43,33,24,.18);
  transition: background var(--transition), width 0.3s ease;
  border: none; cursor: pointer; padding: 0;
}
.hero-pip.is-active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

.hero-product-name {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 8px;
  transition: opacity 0.28s ease;
  min-height: 18px;
}
.hero-product-name.is-fading { opacity: 0; }

/* Floating white card: delivery info */
.hero-float-card {
  position: absolute;
  bottom: -10px; left: -52px;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  box-shadow: var(--shadow-card-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 4;
  min-width: 210px;
}
.hero-float-row {
  display: flex; align-items: center; gap: 12px;
}
.hero-float-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.hero-float-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero-float-text strong { font-size: 0.82rem; font-weight: 700; color: var(--color-text); }
.hero-float-text span   { font-size: 0.74rem; color: var(--color-text-muted); }

/* Decorative crescent behind float card */
.hero-crescent {
  position: absolute;
  bottom: -40px; left: -60px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.15;
  pointer-events: none;
}


/* ============================================
   DISH CARD CAROUSEL — SALSE
   ============================================ */
.section-sauces {
  padding: var(--section-pad-y-mobile) 0;
}
@media (min-width: 900px) { .section-sauces { padding: var(--section-pad-y) 0; } }

.sauces-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}
.sauces-header h2 { margin-top: 4px; }

/* Side arrows — positioned outside the white box */
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--color-text);
  cursor: pointer; border: none;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.carousel-arrow:hover { background: var(--color-primary); color: #fff; transform: translateY(-50%) scale(1.08); }
#sauces-prev { left: -22px; }
#sauces-next { right: -22px; }

/* White outer container */
.sauces-carousel-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 80px 40px 40px; /* top padding = space for overflowing photo circles */
  box-shadow: var(--shadow-card);
  position: relative;
}

/* Track wrapper: clips the horizontal sliding without clipping the overflowing photo tops */
.sauces-track-wrap {
  overflow-x: clip; /* clips only horizontal; overflow-y stays visible */
  overflow-y: visible;
}

/* The sliding flex strip */
.sauces-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  /* transition set by JS when animating */
}

/* Dish card */
.dish-card {
  flex: 0 0 220px;
  min-width: 0;
  min-height: 240px;
  border-radius: var(--radius-card);
  padding: 0 16px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  user-select: none;
}
.dish-card--pink   { background: var(--dish-pink); }
.dish-card--orange { background: var(--dish-orange); }
.dish-card--green  { background: var(--dish-green); }
.dish-card--purple { background: var(--dish-purple); }

/* Photo circle — overflows above the card, sits inside the 80px top padding of the wrap */
.dish-card-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: -80px; /* pulls up into the 80px top padding */
  margin-bottom: 16px;
}
.dish-card-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.dish-emoji { font-size: 3.2rem; line-height: 1; }

.dish-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.25; }

.dish-footer { width: 100%; }
.dish-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.dish-price { font-size: 1.1rem; font-weight: 800; color: #fff; }
.dish-price-row { justify-content: center; } /* single item: center the price */

.dish-order-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.dish-order-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.8rem; font-weight: 700; line-height: 1;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.dish-order-btn:hover { opacity: 0.88; transform: scale(1.04); }
.dish-card--pink   .dish-order-btn { color: var(--dish-pink); }
.dish-card--orange .dish-order-btn { color: var(--dish-orange); }
.dish-card--green  .dish-order-btn { color: var(--dish-green); }
.dish-card--purple .dish-order-btn { color: var(--dish-purple); }

.dish-rating { font-size: 0.8rem; color: rgba(255,255,255,.85); font-weight: 600; white-space: nowrap; }

.sauces-note {
  text-align: center; margin-top: 28px;
  font-size: 0.88rem; color: var(--color-text-muted);
}
.sauces-note a { color: var(--color-primary); font-weight: 600; }


/* ============================================
   OUR CATEGORIES
   ============================================ */
.section-categories {
  padding: var(--section-pad-y-mobile) 0;
}
@media (min-width: 900px) { .section-categories { padding: var(--section-pad-y) 0; } }

.categories-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left collage */
.cat-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 460px;
}
.cat-promo-card {
  background: var(--color-yellow);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  position: relative; overflow: hidden;
  grid-column: 1; grid-row: 1 / 3;
}
.cat-promo-card::before {
  content: '🌯';
  position: absolute; top: 16px; right: 16px;
  font-size: 3.5rem; opacity: 0.35;
}
.cat-promo-tag {
  display: inline-block;
  background: var(--color-primary); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  width: fit-content; text-transform: uppercase;
}
.cat-promo-card h3 { font-size: 1.55rem; font-weight: 800; color: var(--color-text); line-height: 1.15; }
.cat-promo-card p  { font-size: 0.85rem; color: var(--color-text-muted); }

.cat-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden; position: relative;
  grid-column: 2;
}
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-img-wrap:nth-child(2) { grid-row: 1; }
.cat-img-wrap:nth-child(3) { grid-row: 2; }

.cat-img-overlay {
  position: absolute; inset: 0;
  background: rgba(43,33,24,.55);
  display: flex; align-items: center; justify-content: center;
}
.cat-img-overlay span {
  color: #fff; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.6);
  padding: 8px 16px; border-radius: var(--radius-pill);
}

/* Right: category list */
.cat-list { display: flex; flex-direction: column; }
.cat-list h2 { margin-top: 6px; margin-bottom: 32px; line-height: 1.15; }
.cat-items { display: flex; flex-direction: column; gap: 28px; }
.cat-item { display: flex; align-items: flex-start; gap: 20px; }

.cat-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; flex-shrink: 0; line-height: 1;
}
.cat-icon--orange { background: rgba(245,158,66,.2); }
.cat-icon--yellow { background: rgba(255,210,63,.3); }
.cat-icon--blue   { background: rgba(100,170,255,.18); }
.cat-icon--green  { background: rgba(124,194,78,.2); }
.cat-icon--pink   { background: rgba(232,140,140,.2); }

.cat-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.cat-info p  { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }


/* ============================================
   GET STARTED — COMPONI IL TACOS
   ============================================ */
.section-getstarter {
  padding: var(--section-pad-y-mobile) 0;
  background: var(--color-bg-soft);
}
@media (min-width: 900px) { .section-getstarter { padding: var(--section-pad-y) 0; } }

.getstart-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.getstart-content h2 { margin-top: 6px; margin-bottom: 16px; }

.getstart-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.getstart-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
}
.getstart-card-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 10px; }
.getstart-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.getstart-card p  { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.55; }

.getstart-price { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 20px; }
.getstart-price strong { color: var(--color-primary); font-size: 1.1rem; }

/* Right: yellow blob */
.getstart-visual {
  position: relative;
  display: flex;
  align-items: center; justify-content: center;
  min-height: 380px;
}
.getstart-blob {
  width: clamp(240px, 38vw, 370px);
  height: clamp(240px, 38vw, 370px);
  border-radius: 50%;
  background: var(--color-yellow);
  overflow: hidden; flex-shrink: 0;
  position: relative;
}
.getstart-blob img { width: 110%; height: 110%; object-fit: cover; margin: -5%; }

.getstart-sticker {
  position: absolute;
  bottom: 16px; right: 0;
  background: var(--color-primary); color: #fff;
  border-radius: var(--radius-card);
  padding: 14px 18px; text-align: center;
  box-shadow: var(--shadow-card-lg);
  display: flex; flex-direction: column; gap: 2px; line-height: 1.2;
}
.getstart-sticker span   { font-size: 1.6rem; }
.getstart-sticker strong { font-size: 0.88rem; font-weight: 800; }
.getstart-sticker small  { font-size: 0.72rem; opacity: 0.85; }


/* ============================================
   TOP FOODS
   ============================================ */
.section-topfoods {
  padding: var(--section-pad-y-mobile) 0;
}
@media (min-width: 900px) { .section-topfoods { padding: var(--section-pad-y) 0; } }

.topfoods-title {
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: clamp(2rem, 6vw, 2.5rem);
  margin-bottom: 52px;
  margin-top: 8px;
}

.topfoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.topfood-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.topfood-item:hover { transform: scale(1.05); }

.topfood-img {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(43,33,24,.12);
  background: var(--color-bg-soft);
  flex-shrink: 0;
}
.topfood-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.topfood-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.topfood-item p  { font-size: 0.82rem; color: var(--color-text-muted); }


/* ============================================
   MENU SECTION
   ============================================ */
.section-menu {
  padding: var(--section-pad-y-mobile) 0;
  background: var(--color-bg-soft);
}
@media (min-width: 900px) { .section-menu { padding: var(--section-pad-y) 0; } }

.menu-section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 8px;
}
.section-menu h2 { margin-bottom: 8px; }

/* Tabs */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0;
}
.menu-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600;
  background: rgba(43,33,24,.07);
  color: var(--color-text-muted);
  border: 2px solid transparent;
  cursor: pointer; min-height: 44px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.menu-tab:hover { background: rgba(43,33,24,.12); color: var(--color-text); }
.menu-tab.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Layout: grid + sticky sidebar */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.product-grid.grid-mini {
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}

/* Product card */
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); }
.product-card:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.product-card.is-selected { border-color: var(--color-primary); }

.card-img {
  position: relative; aspect-ratio: 4/3;
  background: var(--color-bg); overflow: hidden;
}
.card-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img-placeholder {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--color-bg), var(--color-bg-soft));
}
.card-ribbon {
  position: absolute; top: 10px; right: 10px;
  background: var(--color-primary); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.card-name { font-size: 0.92rem; font-weight: 700; line-height: 1.3; }
.card-desc { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.5; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid rgba(43,33,24,.07);
}
.card-price { font-size: 0.95rem; font-weight: 800; color: var(--color-primary); }
.card-arrow { font-size: 0.78rem; font-weight: 600; color: var(--color-accent); }

/* Mini card */
.card-mini { flex-direction: row; align-items: center; }
.card-img-mini { width: 72px; height: 72px; flex-shrink: 0; overflow: hidden; border-radius: 14px; background: var(--color-bg); }
.card-img-mini img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-mini .card-body { padding: 12px; gap: 3px; }
.card-mini .card-name { font-size: 0.85rem; }
.card-mini .card-desc { font-size: 0.74rem; }
.card-mini .card-footer { border-top: none; padding-top: 2px; }

/* Detail panel */
.product-detail {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.detail-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 40px 24px; text-align: center;
}
.detail-empty-icon { font-size: 2.5rem; }
.detail-empty p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

.detail-inner { display: flex; flex-direction: column; }
.detail-img {
  position: relative; aspect-ratio: 4/3;
  background: var(--color-bg); overflow: hidden;
}
.detail-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-img-placeholder {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--color-bg), var(--color-bg-soft));
}
.detail-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.detail-name { font-size: 1.1rem; font-weight: 700; line-height: 1.25; }
.detail-desc { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }
.detail-price { font-size: 1.4rem; font-weight: 800; color: var(--color-primary); }
.detail-note { font-size: 0.8rem; color: var(--color-text-muted); font-style: italic; }
.detail-section h4 {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 4px;
}
.detail-section p { font-size: 0.82rem; }
.detail-order-btn { margin-top: 4px; align-self: flex-start; }


/* ============================================
   DELIVERY CTA
   ============================================ */
.section-delivery {
  padding: var(--section-pad-y-mobile) 0;
  background: var(--color-primary);
  position: relative; overflow: hidden;
}
.section-delivery::before {
  content: '';
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.06); top: -150px; right: -80px;
  pointer-events: none;
}
.section-delivery::after {
  content: '';
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.04); bottom: -80px; left: -60px;
  pointer-events: none;
}
@media (min-width: 900px) { .section-delivery { padding: var(--section-pad-y) 0; } }

.delivery-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.delivery-content .eyebrow { color: rgba(255,255,255,.7); }
.delivery-content h2 { color: #fff; font-size: clamp(1.8rem, 5vw, 2.4rem); margin-top: 6px; margin-bottom: 14px; line-height: 1.15; }
.delivery-content p  { color: rgba(255,255,255,.8); font-size: 0.95rem; line-height: 1.7; max-width: 420px; margin-bottom: 28px; }

.delivery-platforms { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.delivery-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  color: #fff; text-decoration: none; font-weight: 600;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.delivery-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); transform: translateX(4px); color: #fff; }
.platform-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.platform-name { font-size: 1rem; font-weight: 700; }

.delivery-visual {
  display: flex; align-items: center; justify-content: center;
}
.delivery-emoji-wrap {
  font-size: 8rem; line-height: 1;
  animation: hero-float 3s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.2));
}


/* ============================================
   LOCATIONS
   ============================================ */
.section-locations {
  padding: var(--section-pad-y-mobile) 0;
}
@media (min-width: 900px) { .section-locations { padding: var(--section-pad-y) 0; } }

.section-locations .section-header { text-align: center; margin-bottom: 48px; }
.section-locations h2 { margin-top: 6px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-bottom: 32px;
}
.location-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.location-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-card-lg); }
.location-num {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700;
  color: var(--color-accent); opacity: 0.22; line-height: 1;
  position: absolute; top: 20px; right: 28px;
}
.location-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.location-detail { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 8px; line-height: 1.5; }
.location-detail a { color: var(--color-primary); font-weight: 500; }
.location-detail a:hover { text-decoration: underline; }

.location-hours {
  margin-top: 20px; border-top: 1px solid rgba(43,33,24,.08); padding-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.82rem; padding: 4px 0;
}
.hours-day { font-weight: 600; min-width: 100px; }
.hours-row.is-closed { opacity: 0.5; }

.map-wrap { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
#restaurant-map { height: 340px; }

.map-pin {
  width: 38px; height: 50px;
  background: var(--color-primary);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  border: 2px solid #fff; box-shadow: 0 4px 14px rgba(230,51,41,.35);
  display: flex; align-items: center; justify-content: center;
}
.map-pin span { transform: rotate(45deg); color: #fff; font-size: 0.72rem; font-weight: 800; }
.map-popup { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-sans); font-size: 0.82rem; }
.map-popup strong { font-weight: 700; color: var(--color-text); }
.map-popup span { color: var(--color-text-muted); }
.map-popup-tel { color: var(--color-primary); font-weight: 600; margin-top: 4px; }


/* ============================================
   SOCIAL
   ============================================ */
.section-social {
  padding: var(--section-pad-y-mobile) 0;
  background: var(--color-text); text-align: center;
}
@media (min-width: 900px) { .section-social { padding: var(--section-pad-y) 0; } }

.section-social .eyebrow { color: var(--color-accent); }
.section-social h2 { color: #fff; margin-top: 6px; margin-bottom: 12px; }
.section-social > .container > p { color: rgba(255,255,255,.65); font-size: 0.95rem; max-width: 440px; margin: 0 auto 32px; }

.social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.2);
  color: #fff; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; min-height: 52px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.social-icon { font-size: 1.3rem; line-height: 1; }


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-soft);
  border-top: 1px solid rgba(43,33,24,.07);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(43,33,24,.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-logo .logo-mark { width: 36px; height: 36px; font-size: 0.9rem; }
.footer-logo-text { font-weight: 800; font-size: 1.05rem; color: var(--color-primary); }
.footer-desc {
  font-size: 0.85rem; color: var(--color-text-muted);
  line-height: 1.7; max-width: 230px; margin-bottom: 20px;
}
.footer-social-row { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(43,33,24,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--color-text); text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-social-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--color-text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--color-text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--color-text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--color-primary); }


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .hero-float-card { left: -24px; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }

  /* Nav */
  .main-nav, .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 40px; padding-bottom: 48px;
    gap: 32px;
  }
  .hero-subtitle { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-food { width: clamp(220px, 60vw, 300px); }
  .hero-float-card { display: none; }
  .hero-badge-halal { right: 0; top: -6px; }
  .hero-crescent { display: none; }

  /* Sauces carousel */
  .sauces-carousel-wrap { padding: 64px 16px 28px; border-radius: var(--radius-card); }
  .dish-card { flex: 0 0 72vw; max-width: 260px; }
  .carousel-arrow { display: none; } /* touch swipe handles it */

  /* Categories */
  .categories-inner { grid-template-columns: 1fr; gap: 40px; }
  .cat-collage { height: 340px; }

  /* Get Started */
  .getstart-inner { grid-template-columns: 1fr; gap: 36px; }
  .getstart-visual { min-height: auto; }

  /* Top Foods */
  .topfoods-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .topfood-img { width: 140px; height: 140px; }

  /* Menu */
  .menu-layout { grid-template-columns: 1fr; }
  .product-detail { position: static; order: -1; }

  /* Delivery */
  .delivery-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .delivery-content p { margin-inline: auto; }
  .delivery-platforms { margin-inline: auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .topfoods-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .topfood-img { width: 120px; height: 120px; }
  .getstart-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; }
  .cat-collage { height: 280px; }

  /* Show sticky bar */
  .sticky-bar { display: flex; }
  body { padding-bottom: 62px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2.2rem; }
}
