/* ============================================================
   HA CAFÉ — style.css
   Dark theme, glowing orange accents
   ============================================================ */

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

:root {
  --orange:       #ff6a00;
  --orange-dim:   #cc5500;
  --orange-glow:  rgba(255, 106, 0, 0.30);
  --orange-faint: rgba(255, 106, 0, 0.10);
  /* Lifted from near-black → warm dark charcoal */
  --bg:           #181614;
  --bg-2:         #1e1b19;
  --bg-3:         #242120;
  --bg-card:      #211e1c;
  --border:       rgba(255, 255, 255, 0.10);
  --border-hot:   rgba(255, 106, 0, 0.30);
  --text:         #f2f0ee;
  --text-muted:   #a09890;
  --text-dim:     #6a6260;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange-dim); border-radius: 3px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}
.btn--glow {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 18px var(--orange-glow), 0 2px 6px rgba(0,0,0,0.5);
}
.btn--glow:hover {
  background: #ff8533;
  box-shadow: 0 0 32px rgba(255,106,0,.6), 0 4px 12px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 14px var(--orange-faint);
}
.btn--lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn--add {
  background: var(--orange-faint);
  color: var(--orange);
  border: 1px solid var(--border-hot);
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 6px;
}
.btn--add:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 14px var(--orange-glow);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}
.section-header { text-align: center; margin-bottom: 48px; }

/* ============================================================
   TAGS
   ============================================================ */
.tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}
.tag--hot { background: rgba(255,106,0,0.15); color: var(--orange); }
.tag--veg { background: rgba(76,175,80,0.15); color: #4caf50; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(24, 22, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--text);
  flex-shrink: 0;
}
.nav__logo span { color: var(--orange); }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.nav__links a:hover { color: var(--orange); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px 32px 20px;
  background: rgba(24, 22, 20, 0.97);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--orange); }
.nav__mobile .btn { margin-top: 16px; width: 100%; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,106,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(180,40,0,0.10) 0%, transparent 50%),
    linear-gradient(to bottom, #181614 0%, #1e1208 50%, #181614 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  padding-bottom: 120px;
}
.hero__tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__tagline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  max-width: 800px;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--orange);
  display: block;
}
.hero__sub {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 130px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero__stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(24,22,20,0.82);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 0;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 48px;
  gap: 2px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}
.hero__stat span:last-child {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 12px 0;
}

/* ============================================================
   CATEGORY TABS
   ============================================================ */
.cats {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 50;
}
/* full-width tab bar, not constrained by container */
.cats .container {
  max-width: none;
  padding: 0;
}
.cats__tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.cats__tabs::-webkit-scrollbar { display: none; }
.cats__tab {
  flex-shrink: 0;
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  opacity: 1;           /* no fade — always fully visible */
}
.cats__tab:hover { color: var(--text); }
.cats__tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding: 80px 0;
  background: var(--bg);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.menu__grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.menu__grid.hidden { display: none; }

/* MENU CARD */
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hot);
  box-shadow: 0 8px 40px rgba(255,106,0,0.12), 0 2px 8px rgba(0,0,0,0.4);
}
.menu-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 12px var(--orange-glow);
}
.menu-card__img-wrap { overflow: hidden; }
.menu-card__img {
  width: 100%;
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.menu-card.featured .menu-card__img { height: 100%; min-height: 240px; }
.menu-card:hover .menu-card__img { transform: scale(1.04); }
.menu-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.15;
}
.menu-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.menu-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOD ART (CSS illustrations)
   ============================================================ */
.food-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}

/* BURGER */
.burger-art { gap: 3px; }
.bun-top {
  width: 68px; height: 22px;
  background: #d4820a;
  border-radius: 50% 50% 10% 10%;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.3);
}
.lettuce {
  width: 72px; height: 8px;
  background: #3d9b3d;
  border-radius: 4px;
  clip-path: polygon(0% 40%, 8% 0%, 16% 40%, 24% 0%, 32% 40%, 40% 0%, 48% 40%, 56% 0%, 64% 40%, 72% 0%, 80% 40%, 88% 0%, 100% 40%, 100% 100%, 0% 100%);
}
.tomato {
  width: 66px; height: 7px;
  background: #c0392b;
  border-radius: 3px;
}
.patty {
  width: 70px; height: 14px;
  background: #3d1a0a;
  border-radius: 6px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4), inset 0 -1px 2px rgba(200,100,0,0.2);
}
.cheese {
  width: 74px; height: 6px;
  background: #f0b429;
  border-radius: 3px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}
.bun-bottom {
  width: 68px; height: 14px;
  background: #d4820a;
  border-radius: 10% 10% 50% 50%;
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.25);
}
.burger-art--sm .bun-top { width: 50px; height: 16px; }
.burger-art--sm .lettuce { width: 54px; }
.burger-art--sm .patty { width: 52px; height: 10px; }
.burger-art--sm .bun-bottom { width: 50px; height: 10px; }

/* PIZZA */
.pizza-art { align-items: center; justify-content: center; }
.pizza-base {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: #c8854a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(180,100,30,0.3), inset 0 0 20px rgba(0,0,0,0.3);
  overflow: hidden;
}
.pizza-base::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #c0392b;
  opacity: 0.7;
}
.pizza-topping {
  position: absolute;
  border-radius: 50%;
  background: #8b1a1a;
  z-index: 2;
}
.t1 { width: 18px; height: 18px; top: 20px; left: 22px; }
.t2 { width: 14px; height: 14px; top: 35px; right: 24px; }
.t3 { width: 16px; height: 16px; bottom: 22px; left: 30px; }
.t4 { width: 12px; height: 12px; bottom: 28px; right: 20px; }
.pizza-art--sm .pizza-base { width: 80px; height: 80px; }
.pizza-art--sm .t1 { width: 13px; height: 13px; top: 15px; left: 16px; }
.pizza-art--sm .t2 { width: 10px; height: 10px; top: 25px; right: 17px; }
.pizza-art--sm .t3 { width: 11px; height: 11px; bottom: 16px; left: 21px; }
.pizza-art--sm .t4 { display: none; }

/* FRIES */
.fries-art { flex-direction: row; gap: 4px; align-items: flex-end; }
.fry {
  width: 8px;
  border-radius: 3px 3px 0 0;
  background: #e8a020;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.3);
}
.fry:nth-child(1) { height: 60px; }
.fry:nth-child(2) { height: 80px; }
.fry:nth-child(3) { height: 72px; }
.fry:nth-child(4) { height: 68px; }
.fry:nth-child(5) { height: 55px; }

/* WRAP */
.wrap-art { align-items: center; justify-content: center; }
.wrap-shell {
  width: 90px; height: 50px;
  background: #d4b06a;
  border-radius: 8px 8px 40px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.4);
}
.wrap-fill {
  width: 70px; height: 10px;
  background: #5a9a3a;
  border-radius: 4px;
  margin-bottom: 4px;
}
.wrap-fill--2 {
  width: 60px; height: 8px;
  background: #c04020;
  margin-bottom: 6px;
}

/* SHAKE */
.shake-art { align-items: center; justify-content: center; }
.shake-cup {
  width: 60px; height: 90px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 6px 6px 10px 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.shake-liquid {
  width: 100%; height: 72px;
  background: #3d1a00;
  border-radius: 0 0 8px 8px;
}
.shake-cream {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 20px;
  background: #f5f0e8;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.shake-art--sm .shake-cup { width: 46px; height: 70px; }
.shake-art--sm .shake-liquid { height: 56px; }
.shake-art--sm .shake-cream { width: 50px; }

/* ============================================================
   FILTER PILLS (menu page category filter)
   ============================================================ */
.filter-bar {
  padding: 52px 0 40px;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;          /* wraps to next line — no overflow ever */
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.22s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.filter-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: inherit;
}
.filter-pill:hover {
  border-color: var(--orange-dim);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,106,0,0.15);
}
.filter-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,106,0,0.4), 0 4px 12px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.filter-pill__emoji {
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.filter-pill__label {
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}
.filter-pill__count {
  background: rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  min-width: 20px;
  text-align: center;
}
.filter-pill:not(.active) .filter-pill__count {
  background: rgba(255,255,255,0.07);
}

/* Active category status bar */
.filter-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--orange-faint);
  border: 1px solid var(--border-hot);
  border-radius: 10px;
  max-width: 360px;
  margin: 0 auto;
}
.filter-status__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.03em;
}
.filter-status__count {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

/* Menu grid spacing on menu page */
.menu { padding: 0 0 80px; }

/* ============================================================
   EXPLORE MENU (home page)
   ============================================================ */
.explore {
  padding: 80px 0 90px;
  background: var(--bg);
}
.explore__intro {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 15px;
}

/* Category card grid */
.explore__cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 72px;
}
.explore__cat {
  display: grid;
  grid-template-columns: 56px 80px 1fr auto;
  align-items: center;
  gap: 0 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 20px 20px 16px;
  text-decoration: none;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.explore__cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--cat-glow, rgba(255,106,0,0.15)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.explore__cat:hover {
  border-color: var(--cat-color, var(--orange));
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--cat-glow, var(--orange-glow));
}
.explore__cat:hover::before { opacity: 1; }
.explore__cat-icon {
  font-size: 1.8rem;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.explore__cat-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  position: relative;
  z-index: 1;
}
.explore__cat-art .food-art { transform: scale(0.85); }
.explore__cat-body {
  position: relative;
  z-index: 1;
}
.explore__cat-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2px;
}
.explore__cat-body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 6px;
}
.explore__cat-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cat-color, var(--orange));
  text-transform: uppercase;
}
.explore__cat-arrow {
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}
.explore__cat:hover .explore__cat-arrow {
  color: var(--cat-color, var(--orange));
  transform: translateX(4px);
}

/* Featured picks */
.explore__featured { margin-bottom: 56px; }
.explore__featured-header { margin-bottom: 28px; }
.explore__featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
}
.explore__featured-title em { font-style: normal; color: var(--orange); }
.explore__picks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pick-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.28s ease;
  opacity: 0;
  transform: translateY(20px);
}
.pick-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.pick-card:hover {
  border-color: var(--border-hot);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,106,0,0.12);
}
.pick-card__img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.pick-card:hover .pick-card__img { transform: scale(1.05); }
.pick-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pick-card__body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--text);
}
.pick-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* CTA row */
.explore__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 48px 0 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.explore__cta p { color: var(--text-muted); font-size: 15px; }

/* Responsive */
@media (max-width: 900px) {
  .explore__picks { grid-template-columns: repeat(2, 1fr); }
  .explore__cats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .explore__picks { grid-template-columns: repeat(2, 1fr); }
  .explore__cat { grid-template-columns: 44px 60px 1fr auto; gap: 0 10px; padding: 14px 14px 14px 12px; }
  .explore__cat-art { height: 44px; }
}

/* ============================================================
   SPECIALS
   ============================================================ */
.specials {
  padding: 100px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.specials__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.specials__desc {
  color: var(--text-muted);
  margin: 20px 0 32px;
  max-width: 380px;
  line-height: 1.75;
}
.specials__cards { display: flex; flex-direction: column; gap: 20px; }
.special-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 160px 1fr;
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.special-card:hover {
  border-color: var(--border-hot);
  box-shadow: 0 4px 32px rgba(255,106,0,0.15);
  transform: translateX(4px);
}
.special-card__glow {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(40px);
  opacity: 0.15;
  top: 50%; left: 80px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.special-card__glow--alt { background: #e53935; }
.special-card__img {
  width: 160px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.special-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.special-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.special-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}
.special-card__body p { font-size: 13px; color: var(--text-muted); flex: 1; }
.special-card__pricing { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
.old-price { font-size: 13px; color: var(--text-dim); text-decoration: line-through; }
.new-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--orange); }
.special-card--alt .special-card__tag { color: #e53935; }
.special-card--alt .new-price { color: #e53935; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--bg);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 380px;
}
.about__img-art {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__overlay-text {
  font-family: var(--font-display);
  font-size: 5rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.08);
  user-select: none;
}
.about__img-accent {
  position: absolute;
  right: -40px;
  bottom: 40px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.about__accent-art { width: 100%; height: 100%; }
.about__stat-float {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 0 32px var(--orange-glow);
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.about__stat-float span:last-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.3;
}
.about__text { display: flex; flex-direction: column; gap: 16px; }
.about__text p { color: var(--text-muted); line-height: 1.8; }
.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.about__pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  transition: border-color var(--transition);
}
.about__pillar:hover { border-color: var(--border-hot); }
.about__pillar-icon { font-size: 1.4rem; margin-bottom: 8px; }
.about__pillar h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.about__pillar p { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* ============================================================
   ORDER CTA
   ============================================================ */
.order-cta {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.order-cta__glow {
  position: absolute;
  width: 500px; height: 300px;
  background: var(--orange);
  filter: blur(120px);
  opacity: 0.07;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.order-cta__inner { display: flex; flex-direction: column; gap: 56px; }
.order-cta__text { text-align: center; }
.order-cta__text p:last-child { color: var(--text-muted); margin-top: 12px; }
.order-cta__options {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
}
.order-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  transition: all var(--transition);
}
.order-option:hover {
  border-color: var(--border-hot);
  transform: translateY(-3px);
}
.order-option--featured {
  border-color: var(--orange-dim);
  background: linear-gradient(160deg, rgba(255,106,0,0.08) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px rgba(255,106,0,0.1);
}
.order-option__icon { font-size: 2rem; margin-bottom: 4px; }
.order-option h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.order-option p { font-size: 13px; color: var(--text-muted); flex: 1; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 0 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand p { color: var(--text-muted); font-size: 13px; margin-top: 12px; max-width: 240px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 12px var(--orange-faint);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text);
}
.footer__col ul li, .footer__col p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}
.footer__col ul li { display: flex; justify-content: space-between; gap: 16px; }
.footer__col ul li span:first-child { color: var(--text-dim); }
.footer__col a { color: var(--text-muted); transition: color var(--transition); }
.footer__col a:hover { color: var(--orange); }
.footer__delivery-note { margin-top: 8px; line-height: 1.8; }
.footer__payments { display: flex; gap: 8px; margin-top: 12px; }
.pay-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.footer__phone { margin-top: 14px; }
.footer__phone-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
}
.footer__phone-link:hover { color: #ff8533; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 12px;
}

/* ============================================================
   CART WIDGET
   ============================================================ */
.cart-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 28px var(--orange-glow), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(100px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition);
  font-weight: 600;
  font-size: 14px;
}
.cart-widget.visible { transform: translateY(0); }
.cart-widget:hover { box-shadow: 0 0 40px rgba(255,106,0,0.6), 0 6px 20px rgba(0,0,0,0.4); }
.cart-widget__icon { font-size: 1.1rem; }
.cart-widget__count {
  background: rgba(0,0,0,0.25);
  border-radius: 50px;
  min-width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .specials__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__img-main { max-width: 100%; aspect-ratio: 16/9; }
  .about__img-accent { display: none; }
  .about__stat-float { top: -20px; right: 20px; }
  .order-cta__options { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links, .nav > .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 14px 20px; gap: 16px; }
  .nav__inner .btn--glow { display: none; }

  .hero__content { padding: 0 20px 100px; }
  .hero__scroll { display: none; }
  .hero__stat-bar { overflow-x: auto; scrollbar-width: none; }
  .hero__stat { padding: 14px 24px; }
  .hero__stat-num { font-size: 1.4rem; }

  .menu-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .menu-card.featured .menu-card__img { min-height: 180px; }

  .special-card { grid-template-columns: 1fr; }
  .special-card__img { width: 100%; height: 140px; }

  .about__pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 2.4rem; }
  .cats__tab { padding: 14px 18px; font-size: 12px; }
  .cart-widget { bottom: 16px; right: 16px; padding: 10px 16px 10px 12px; }
}

/* ============================================================
   HERO FLOATING FOOD
   ============================================================ */
.hero__food {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
/* Individual floating items */
.food-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  filter: drop-shadow(0 8px 32px rgba(255,106,0,0.25));
  opacity: 0.92;
}
/* Each item has its own float keyframe */
@keyframes floatA {
  0%,100% { transform: translateY(0px) rotate(-4deg); }
  50%      { transform: translateY(-22px) rotate(4deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px) rotate(6deg); }
  50%      { transform: translateY(-18px) rotate(-3deg); }
}
@keyframes floatC {
  0%,100% { transform: translateY(-10px) rotate(-2deg); }
  50%      { transform: translateY(12px) rotate(5deg); }
}
@keyframes floatD {
  0%,100% { transform: translateY(0px) rotate(3deg) scale(1); }
  50%      { transform: translateY(-14px) rotate(-5deg) scale(1.04); }
}
@keyframes glowPulse {
  0%,100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.15); }
}

.food-float--1 { top: 12%; right: 18%; animation: floatA 5.5s ease-in-out infinite; }
.food-float--2 { top: 38%; right: 6%;  animation: floatB 6.2s ease-in-out infinite 0.8s; }
.food-float--3 { top: 58%; right: 26%; animation: floatC 5.0s ease-in-out infinite 1.6s; }
.food-float--4 { top: 25%; right: 40%; animation: floatD 7.0s ease-in-out infinite 0.3s; }

/* glow orb behind each item */
.food-float__glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(50px);
  opacity: 0.18;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
}
.food-float--2 .food-float__glow { background: #e53935; }
.food-float--3 .food-float__glow { width: 90px; height: 90px; }

/* BIG burger art for hero */
.burger-art--hero { gap: 5px; transform: scale(1.6); transform-origin: center; }
.burger-art--hero .bun-top  { width: 88px; height: 28px; border-radius: 50% 50% 12px 12px; }
.burger-art--hero .lettuce  { width: 94px; height: 10px; }
.burger-art--hero .tomato   { width: 86px; height: 9px; }
.burger-art--hero .patty    { width: 90px; height: 18px; border-radius: 8px; }
.burger-art--hero .cheese   { width: 96px; height: 8px; }
.burger-art--hero .bun-bottom { width: 88px; height: 18px; border-radius: 10px 10px 50% 50%; }

/* Medium wrap art for hero */
.wrap-art--hero { transform: scale(1.4); transform-origin: center; }
.wrap-art--hero .wrap-shell { width: 110px; height: 62px; border-radius: 10px 10px 50px 50px; }
.wrap-art--hero .wrap-fill  { width: 86px; height: 13px; }
.wrap-art--hero .wrap-fill--2 { width: 74px; height: 10px; }

/* Fade the food section at left edge so it blends into content */
.hero__food::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
  z-index: 2;
}
.hero__food::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24,22,20,0.6) 0%, transparent 20%, transparent 80%, rgba(24,22,20,0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hide on small screens where content needs full width */
@media (max-width: 768px) {
  .hero__food { display: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.55s ease forwards;
}
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

.menu-card, .about__pillar, .order-option, .special-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), box-shadow var(--transition);
}
.menu-card.in-view, .about__pillar.in-view, .order-option.in-view, .special-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* hover override on in-view elements */
.menu-card.in-view:hover { transform: translateY(-4px); }
.order-option.in-view:hover { transform: translateY(-3px); }
.special-card.in-view:hover { transform: translateX(4px); }
