@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --cream: #fff6e8;
  --paper: #fffdf8;
  --ink: #1e1d1a;
  --muted: #716d65;
  --orange: #ff6a2a;
  --orange-dark: #e94e0f;
  --yellow: #ffc834;
  --green: #18a56a;
  --pink: #ff7b9c;
  --line: rgba(30, 29, 26, .12);
  --shadow: 0 24px 70px rgba(83, 49, 15, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg { display: block; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.section-pad { padding: 120px max(24px, calc((100vw - 1240px) / 2)); }

.site-header {
  position: fixed; z-index: 100; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 32px), 1240px); height: 72px; padding: 0 14px 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,.68); border-radius: 24px;
  background: rgba(255,253,248,.78); backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(55,34,9,.08);
  transition: .3s ease;
}
.site-header.scrolled { top: 8px; background: rgba(255,253,248,.92); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  color: white; background: var(--orange); border-radius: 13px;
  font: 800 22px/1 "Manrope", sans-serif; transform: rotate(-5deg);
  box-shadow: inset 0 -5px 12px rgba(103,28,0,.18);
}
.brand span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font: 800 17px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; color: #4a463f; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--orange); transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.cart-button {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 12px 0 14px; border-radius: 15px; color: white;
  background: var(--ink); font-weight: 700;
}
.cart-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cart-button b {
  min-width: 24px; height: 24px; padding: 0 6px; display: grid; place-items: center;
  border-radius: 8px; color: var(--ink); background: var(--yellow); font-size: 12px;
}

.hero {
  min-height: 860px; position: relative; display: grid; align-items: center;
  grid-template-columns: .98fr 1.02fr; gap: 20px; padding-top: 150px; overflow: hidden;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--orange-dark);
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow.light { color: #ffe8ca; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin: 22px 0 28px; font: 800 clamp(54px, 6vw, 92px)/.94 "Manrope", sans-serif;
  letter-spacing: -.075em;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-copy > p { max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; }
.primary-btn, .ghost-btn, .add-cart-btn, .checkout-btn {
  border: 0; cursor: pointer; border-radius: 17px; font-weight: 800;
}
.primary-btn {
  min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  color: white; background: var(--orange); box-shadow: 0 12px 25px rgba(255,106,42,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255,106,42,.34); }
.primary-btn span { font-size: 20px; }
.ghost-btn {
  min-height: 54px; padding: 0 20px; background: transparent; border: 1px solid var(--line);
}
.hero-stats { display: flex; gap: 34px; margin-top: 52px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font: 800 22px "Manrope", sans-serif; }
.hero-stats span { color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; perspective: 1100px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one {
  width: 450px; height: 450px; right: -150px; top: 70px;
  background: radial-gradient(circle at 30% 30%, #ffde84, #ff7c42);
  opacity: .55;
}
.hero-orb-two {
  width: 280px; height: 280px; left: -120px; bottom: 10px;
  background: radial-gradient(circle, #a9efbd, #52be80); opacity: .45;
}
.scene {
  width: min(540px, 46vw); aspect-ratio: 1; position: relative;
  transform-style: preserve-3d; transform: rotateX(7deg) rotateY(-8deg);
  transition: transform .2s ease-out;
}
.food-stack {
  position: absolute; left: 50%; top: 48%; width: 76%; height: 64%;
  transform: translate(-50%, -50%); transform-style: preserve-3d;
  animation: floatFood 5s ease-in-out infinite;
}
.food-layer {
  position: absolute; left: 50%; transform: translateX(-50%) rotateX(66deg);
  transform-style: preserve-3d; filter: drop-shadow(0 14px 18px rgba(72,30,6,.18));
}
.bun { width: 74%; height: 34%; background: linear-gradient(#f7b73a, #e48917); }
.top-bun { top: 2%; border-radius: 50% 50% 43% 43%; box-shadow: inset 0 12px 0 rgba(255,230,132,.55); }
.top-bun i {
  position: absolute; width: 8px; height: 4px; border-radius: 50%; background: #fff3c2;
  transform: rotate(20deg); box-shadow: 14px -3px #fff3c2, 28px 4px #fff3c2, 42px -2px #fff3c2;
}
.top-bun i:nth-child(1) { left: 25%; top: 30%; }
.top-bun i:nth-child(2) { left: 48%; top: 18%; transform: rotate(-15deg); }
.top-bun i:nth-child(3) { left: 60%; top: 45%; transform: rotate(55deg); }
.top-bun i:nth-child(4) { left: 35%; top: 57%; transform: rotate(40deg); }
.top-bun i:nth-child(5) { left: 70%; top: 24%; transform: rotate(-35deg); }
.lettuce {
  top: 29%; width: 78%; height: 16%; border-radius: 48%;
  background: radial-gradient(circle at 20% 20%, #71d361, transparent 22%),
              radial-gradient(circle at 55% 10%, #8be676, transparent 25%),
              linear-gradient(#55bd46, #27963c);
  clip-path: polygon(0 35%, 8% 10%, 17% 36%, 28% 5%, 39% 31%, 52% 0, 62% 32%, 75% 4%, 87% 36%, 100% 16%, 96% 78%, 83% 93%, 73% 72%, 59% 100%, 47% 72%, 34% 94%, 19% 70%, 5% 92%);
}
.tomato { top: 40%; width: 68%; height: 12%; border-radius: 50%; background: #ef4338; box-shadow: inset 0 -8px #c82e2c; }
.cheese {
  top: 49%; width: 74%; height: 13%; background: #ffd33d;
  clip-path: polygon(0 0, 100% 0, 92% 75%, 70% 58%, 55% 100%, 37% 58%, 17% 85%);
}
.patty { top: 57%; width: 73%; height: 18%; border-radius: 48%; background: linear-gradient(#7b3d1d, #4c2412); box-shadow: inset 0 8px #975126; }
.sauce { top: 70%; width: 66%; height: 10%; border-radius: 50%; background: #f4e0a2; }
.bottom-bun { top: 75%; height: 22%; border-radius: 42%; box-shadow: inset 0 -10px #d87b13; }
.plate {
  position: absolute; left: 50%; top: 72%; width: 80%; height: 30%; border-radius: 50%;
  transform: translateX(-50%) rotateX(67deg); background: #fff;
  box-shadow: inset 0 -18px 0 #eee9df, 0 35px 65px rgba(70,35,7,.2);
}
.shadow {
  position: absolute; width: 60%; height: 12%; left: 50%; top: 80%; transform: translateX(-50%);
  border-radius: 50%; background: rgba(64,32,7,.18); filter: blur(20px);
}
.price-bubble {
  position: absolute; z-index: 5; right: 4%; top: 15%; width: 116px; height: 116px;
  border-radius: 50%; color: var(--ink); background: var(--yellow);
  display: grid; place-content: center; text-align: center; transform: rotate(8deg);
  box-shadow: 0 18px 30px rgba(153,93,0,.18);
}
.price-bubble span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.price-bubble strong { font: 800 30px "Manrope", "DM Sans", system-ui, sans-serif; }
.floating-card {
  position: absolute; z-index: 6; display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px;
  background: rgba(255,255,255,.72); backdrop-filter: blur(15px);
  box-shadow: 0 18px 40px rgba(63,35,11,.12);
}
.floating-card > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--cream); }
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.card-one { left: 2%; top: 35%; }
.card-two { right: 0; bottom: 17%; }

.ticker { overflow: hidden; padding: 18px 0; color: white; background: var(--ink); transform: rotate(-1.3deg) scale(1.02); }
.ticker-track {
  width: max-content; display: flex; gap: 28px; align-items: center;
  animation: marquee 28s linear infinite; font: 800 13px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: .13em;
}
.ticker-track i { color: var(--yellow); font-style: normal; }

.section-heading { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 46px; }
.section-heading h2 {
  flex-basis: 100%; max-width: 760px; margin: 12px 0 0;
  font: 800 clamp(42px, 5vw, 70px)/1 "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.06em;
}
.section-heading p { margin: 0; color: var(--muted); }
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vendor-card {
  border: 1px solid rgba(35,27,17,.08); border-radius: var(--radius-xl);
  background: rgba(255,253,248,.78); overflow: hidden; box-shadow: 0 18px 50px rgba(56,32,8,.08);
  transform-style: preserve-3d; transition: transform .18s ease, box-shadow .25s ease;
}
.vendor-card:hover { box-shadow: 0 26px 65px rgba(56,32,8,.14); }
.vendor-art { height: 250px; display: grid; place-items: center; overflow: hidden; position: relative; }
.vendor-art::before, .vendor-art::after { content: ""; position: absolute; border-radius: 50%; }
.vendor-art::before { width: 180px; height: 180px; background: rgba(255,255,255,.28); }
.vendor-art::after { width: 110px; height: 110px; border: 2px dashed rgba(255,255,255,.5); animation: spin 12s linear infinite; }
.vendor-art span { position: relative; z-index: 1; font-size: 94px; filter: drop-shadow(0 18px 13px rgba(60,24,4,.19)); transform: translateZ(32px) rotate(-7deg); }
.art-orange { background: linear-gradient(145deg, #ffb558, #ff6e2d); }
.art-pink { background: linear-gradient(145deg, #ffb9c9, #ff658b); }
.art-green { background: linear-gradient(145deg, #9ce7b4, #26a96c); }
.vendor-info { padding: 24px; }
.status-dot { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.status-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(24,165,106,.12); }
.vendor-info h3 { margin: 10px 0 5px; font: 800 25px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.035em; }
.vendor-info p { margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.vendor-info > div { display: flex; justify-content: space-between; color: #4c4943; font-size: 12px; font-weight: 700; }

.menu-section { background: var(--paper); }
.order-mode {
  width: fit-content; display: flex; padding: 5px; gap: 4px; margin-bottom: 26px;
  background: #f1ece3; border-radius: 20px;
}
.mode-btn {
  border: 0; cursor: pointer; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 12px 16px;
  border-radius: 16px; background: transparent; text-align: left; transition: .2s ease;
}
.mode-btn.active { background: white; box-shadow: 0 8px 22px rgba(45,32,18,.1); }
.mode-btn > span { font-size: 22px; }
.mode-btn div { display: flex; flex-direction: column; }
.mode-btn strong { font-size: 13px; }
.mode-btn small { color: var(--muted); font-size: 10px; margin-top: 2px; }
.menu-toolbar { position: sticky; top: 94px; z-index: 20; padding: 12px; margin: 0 -12px 30px; background: rgba(255,253,248,.88); backdrop-filter: blur(14px); }
.search-box {
  height: 56px; display: flex; align-items: center; gap: 12px; padding: 0 18px;
  border: 1px solid var(--line); border-radius: 17px; background: white;
}
.search-box svg { width: 20px; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.category-pills { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0 0; scrollbar-width: none; }
.category-pills::-webkit-scrollbar { display: none; }
.category-pill {
  flex: 0 0 auto; border: 1px solid var(--line); cursor: pointer; padding: 9px 14px;
  border-radius: 999px; background: white; color: #565149; font-size: 12px; font-weight: 700;
}
.category-pill.active { color: white; border-color: var(--ink); background: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.menu-card {
  position: relative; border: 1px solid rgba(35,27,17,.08); border-radius: 26px;
  background: white; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.food-art {
  height: 210px; position: relative; display: grid; place-items: center; overflow: hidden;
  background: var(--art-bg);
}
.food-art::before {
  content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.7); animation: spin 16s linear infinite;
}
.food-art::after {
  content: ""; position: absolute; width: 120px; height: 20px; border-radius: 50%;
  bottom: 28px; background: rgba(59,31,7,.16); filter: blur(12px);
}
.food-emoji { position: relative; z-index: 1; font-size: 92px; transform: rotate(-5deg); filter: drop-shadow(0 16px 12px rgba(67,34,7,.22)); transition: transform .35s ease; }
.menu-card:hover .food-emoji { transform: rotate(4deg) scale(1.08); }
.badge {
  position: absolute; z-index: 3; left: 14px; top: 14px; padding: 7px 10px;
  border-radius: 999px; color: white; background: var(--orange); font-size: 10px; font-weight: 800;
}
.heart-btn {
  position: absolute; z-index: 4; right: 14px; top: 14px; width: 38px; height: 38px;
  border: 0; cursor: pointer; border-radius: 13px; background: rgba(255,255,255,.82); backdrop-filter: blur(8px);
}
.heart-btn.active { color: #ef3d68; }
.menu-card-body { padding: 19px; }
.vendor-label { color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-card h3 { margin: 6px 0 7px; font: 800 20px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.035em; }
.menu-card p { min-height: 42px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { display: flex; flex-direction: column; }
.menu-card-price strong { font: 800 19px "Manrope", "DM Sans", system-ui, sans-serif; }
.menu-card-price small { color: var(--muted); font-size: 10px; }
.add-btn {
  width: 42px; height: 42px; border: 0; cursor: pointer; border-radius: 14px;
  color: white; background: var(--ink); font-size: 24px; line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.add-btn:hover { transform: rotate(8deg) scale(1.06); background: var(--orange); }
.empty-state { padding: 80px 20px; text-align: center; }
.empty-state span { font-size: 48px; }
.empty-state h3 { margin: 14px 0 5px; font: 800 24px "Manrope", "DM Sans", system-ui, sans-serif; }
.empty-state p { color: var(--muted); }
.hidden { display: none !important; }

.parallax-banner {
  min-height: 760px; position: relative; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 70px; align-items: center; padding: 110px max(24px, calc((100vw - 1240px) / 2));
  color: white; background: #1e1d1a;
}
.banner-shape { position: absolute; border-radius: 50%; opacity: .65; filter: blur(2px); }
.shape-a { width: 420px; height: 420px; left: -130px; top: -90px; background: radial-gradient(circle at 35% 35%, #ffdc59, #f05d25); }
.shape-b { width: 340px; height: 340px; right: -120px; bottom: -130px; background: radial-gradient(circle at 35% 35%, #72d7a0, #147b53); }
.banner-copy, .steps { position: relative; z-index: 2; }
.banner-copy h2 { margin: 18px 0 22px; font: 800 clamp(58px, 7vw, 102px)/.92 "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.07em; }
.banner-copy p { max-width: 460px; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.7; }
.steps { display: grid; gap: 14px; }
.step-card {
  padding: 25px; display: flex; align-items: flex-start; gap: 22px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 24px;
  background: rgba(255,255,255,.065); backdrop-filter: blur(13px);
}
.step-card > span { color: var(--yellow); font: 800 13px "Manrope", "DM Sans", system-ui, sans-serif; }
.step-card strong { font: 700 19px "Manrope", "DM Sans", system-ui, sans-serif; }
.step-card p { margin: 6px 0 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.55; }

.about-card {
  padding: 58px; border-radius: var(--radius-xl); background: var(--yellow);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center;
  box-shadow: 0 26px 70px rgba(126,78,0,.17);
}
.about-card h2 { margin: 14px 0 0; font: 800 clamp(40px, 5vw, 68px)/.98 "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.06em; }
.about-card > p { margin-bottom: 0; font-size: 17px; line-height: 1.7; }
.about-tags { grid-column: 1/-1; display: flex; gap: 10px; flex-wrap: wrap; }
.about-tags span { padding: 9px 13px; border: 1px solid rgba(30,29,26,.2); border-radius: 999px; font-size: 12px; font-weight: 700; }

footer {
  padding: 70px max(24px, calc((100vw - 1240px) / 2)) 100px;
  display: grid; grid-template-columns: 1fr auto; gap: 30px; border-top: 1px solid var(--line); background: var(--paper);
}
.footer-brand { margin-bottom: 20px; }
footer p { margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 24px; font-size: 13px; font-weight: 700; }
.disclaimer { grid-column: 1/-1; padding-top: 28px; border-top: 1px solid var(--line); }

.overlay {
  position: fixed; z-index: 180; inset: 0; background: rgba(16,14,12,.48);
  backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.overlay.show { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; z-index: 200; top: 0; right: 0; width: min(480px, 100%); height: 100dvh;
  display: flex; flex-direction: column; padding: 24px; background: var(--paper);
  transform: translateX(105%); transition: transform .32s cubic-bezier(.2,.85,.3,1);
  box-shadow: -30px 0 80px rgba(24,18,12,.16);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cart-header h2 { margin: 5px 0 0; font: 800 34px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.05em; }
.icon-btn {
  width: 42px; height: 42px; border: 1px solid var(--line); cursor: pointer; border-radius: 14px;
  background: white; font-size: 26px; line-height: 1;
}
.cart-mode-summary {
  display: flex; align-items: center; gap: 12px; padding: 13px; border-radius: 17px; background: #f4efe7;
}
.cart-mode-summary > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: white; }
.cart-mode-summary div { display: flex; flex: 1; flex-direction: column; }
.cart-mode-summary strong { font-size: 13px; }
.cart-mode-summary small { color: var(--muted); font-size: 10px; margin-top: 2px; }
.cart-mode-summary button { border: 0; cursor: pointer; background: transparent; color: var(--orange-dark); font-size: 11px; font-weight: 800; }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 2px; }
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item-art { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 18px; background: var(--art-bg); font-size: 35px; }
.cart-item h4 { margin: 0 0 4px; font: 800 14px "Manrope", "DM Sans", system-ui, sans-serif; }
.cart-item p { margin: 0 0 8px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.mini-qty { display: inline-flex; align-items: center; gap: 10px; }
.mini-qty button { width: 26px; height: 26px; border: 1px solid var(--line); cursor: pointer; border-radius: 8px; background: white; }
.mini-qty strong { font-size: 12px; }
.cart-item-price { text-align: right; align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-price strong { font-size: 13px; }
.remove-item { border: 0; cursor: pointer; color: var(--muted); background: transparent; font-size: 17px; }
.cart-empty { flex: 1; display: grid; place-content: center; justify-items: center; text-align: center; padding: 25px; }
.empty-bag { font-size: 64px; filter: grayscale(.2); }
.cart-empty h3 { margin: 16px 0 6px; font: 800 23px "Manrope", "DM Sans", system-ui, sans-serif; }
.cart-empty p { margin-bottom: 22px; color: var(--muted); font-size: 13px; }
.cart-footer { padding-top: 16px; border-top: 1px solid var(--line); }
.promo-row { display: flex; gap: 8px; margin-bottom: 16px; }
.promo-row input { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: 13px; padding: 11px 13px; background: white; outline: none; }
.promo-row button { border: 0; cursor: pointer; padding: 0 15px; border-radius: 13px; background: #ece5da; font-weight: 800; }
.bill { display: grid; gap: 8px; margin-bottom: 15px; }
.bill > div { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
.bill .discount { color: var(--green); }
.bill .total { padding-top: 10px; margin-top: 4px; border-top: 1px dashed var(--line); color: var(--ink); font-size: 16px; }
.bill .total strong { font: 800 20px "Manrope", "DM Sans", system-ui, sans-serif; }
.checkout-btn {
  width: 100%; min-height: 56px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between;
  color: white; background: var(--orange); box-shadow: 0 14px 26px rgba(255,106,42,.25);
}

dialog { border: 0; padding: 0; color: var(--ink); }
dialog::backdrop { background: rgba(17,14,11,.5); backdrop-filter: blur(5px); }
.product-modal {
  width: min(620px, calc(100% - 24px)); max-height: 92dvh; border-radius: 30px; background: var(--paper); overflow: auto;
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; z-index: 10; right: 16px; top: 16px; }
.modal-product-art { height: 250px; display: grid; place-items: center; background: var(--art-bg); font-size: 108px; }
.modal-product-art span { filter: drop-shadow(0 18px 15px rgba(62,31,5,.2)); transform: rotate(-5deg); }
.modal-content { padding: 26px; }
.modal-content h2 { margin: 8px 0 8px; font: 800 32px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.05em; }
.modal-content > p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.modal-price-row { display: flex; justify-content: space-between; align-items: center; margin: 20px 0; }
.modal-price-row strong { font: 800 24px "Manrope", "DM Sans", system-ui, sans-serif; }
.modal-price-row span { font-size: 12px; font-weight: 700; }
.option-group { padding: 18px 0; border-top: 1px solid var(--line); }
.option-heading, .option-group > label:first-child { display: flex; justify-content: space-between; margin-bottom: 12px; }
.option-group small { color: var(--muted); font-weight: 500; }
.addon-option {
  display: flex; align-items: center; gap: 12px; padding: 11px 0; cursor: pointer;
}
.addon-option input { accent-color: var(--orange); width: 17px; height: 17px; }
.addon-option span { flex: 1; font-size: 13px; }
.addon-option strong { font-size: 12px; }
textarea {
  width: 100%; resize: vertical; border: 1px solid var(--line); border-radius: 14px; padding: 12px; outline: none; background: white;
}
.modal-action-row { position: sticky; bottom: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px; padding-top: 12px; background: var(--paper); }
.quantity-control { display: flex; align-items: center; gap: 4px; padding: 4px; border-radius: 15px; background: #eee7dd; }
.quantity-control button { width: 42px; height: 42px; border: 0; cursor: pointer; border-radius: 11px; background: white; font-size: 20px; }
.quantity-control strong { min-width: 24px; text-align: center; }
.add-cart-btn { display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: white; background: var(--ink); }

.checkout-modal {
  width: min(570px, calc(100% - 24px)); max-height: 92dvh; border-radius: 30px; background: var(--paper); overflow: auto;
}
.checkout-modal form { padding: 32px; }
.checkout-head h2 { margin: 7px 0; font: 800 35px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.05em; }
.checkout-head p { color: var(--muted); font-size: 12px; }
.checkout-progress { display: flex; gap: 6px; margin: 22px 0; }
.checkout-progress span { height: 5px; flex: 1; border-radius: 99px; background: #e5ded4; }
.checkout-progress span.active { background: var(--orange); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid label { display: grid; gap: 7px; font-size: 11px; font-weight: 800; }
.form-grid label.full { grid-column: 1/-1; }
.form-grid input, .form-grid select {
  width: 100%; height: 48px; border: 1px solid var(--line); border-radius: 13px; padding: 0 12px; background: white; outline: none;
}
fieldset { border: 0; padding: 0; margin: 24px 0 16px; }
legend { margin-bottom: 10px; font-size: 11px; font-weight: 800; }
.payment-option {
  position: relative; display: flex; align-items: center; gap: 12px; padding: 13px; margin-bottom: 8px;
  border: 1px solid var(--line); border-radius: 15px; cursor: pointer;
}
.payment-option.active { border-color: var(--orange); background: #fff7f0; }
.payment-option input { position: absolute; opacity: 0; }
.payment-option > span { font-size: 24px; }
.payment-option div { flex: 1; display: flex; flex-direction: column; }
.payment-option strong { font-size: 13px; }
.payment-option small { color: var(--muted); font-size: 10px; margin-top: 2px; }
.payment-option i { width: 18px; height: 18px; border: 1px solid #bdb5aa; border-radius: 50%; }
.payment-option.active i { border: 5px solid var(--orange); }
.consent { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 18px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.consent input { accent-color: var(--orange); margin-top: 1px; }

.success-modal {
  width: min(420px, calc(100% - 24px)); padding: 36px; border-radius: 30px; background: var(--paper); text-align: center;
}
.success-icon {
  width: 84px; height: 84px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%;
  color: white; background: var(--green); box-shadow: 0 0 0 12px rgba(24,165,106,.12);
}
.success-icon span { font-size: 40px; }
.success-modal h2 { margin: 8px 0 12px; font: 800 34px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: -.05em; }
.success-modal p { color: var(--muted); font-size: 13px; }
.order-number { display: block; margin: 10px 0 20px; color: var(--orange); font: 800 28px "Manrope", "DM Sans", system-ui, sans-serif; letter-spacing: .05em; }
.eta-box { margin-bottom: 22px; padding: 16px; display: flex; justify-content: space-between; border-radius: 15px; background: #f1ece4; font-size: 12px; }

.toast {
  position: fixed; z-index: 400; left: 50%; bottom: 28px; transform: translate(-50%, 120px);
  max-width: calc(100% - 28px); padding: 12px 16px; border-radius: 14px; color: white; background: var(--ink);
  opacity: 0; transition: .3s ease; font-size: 12px; font-weight: 700; box-shadow: 0 14px 35px rgba(0,0,0,.2);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.mobile-nav { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes floatFood {
  0%,100% { transform: translate(-50%, -50%) translateY(0) rotateZ(-1deg); }
  50% { transform: translate(-50%, -50%) translateY(-14px) rotateZ(1deg); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .section-pad { padding: 95px 24px; }
  .desktop-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 140px; text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { min-height: 570px; }
  .scene { width: min(560px, 80vw); }
  .vendor-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .parallax-banner { grid-template-columns: 1fr; gap: 40px; }
  .about-card { grid-template-columns: 1fr; }
  .about-tags { grid-column: auto; }
}

@media (max-width: 680px) {
  body { padding-bottom: 72px; }
  .site-header { top: 8px; height: 64px; width: calc(100% - 20px); padding-left: 12px; border-radius: 19px; }
  .site-header .brand small, .cart-button span, .cart-button svg { display: none; }
  .cart-button { height: 40px; padding: 0 8px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 11px; }
  .section-pad { padding: 78px 18px; }
  .hero { padding-top: 115px; overflow: hidden; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions > * { width: 100%; }
  .hero-stats { gap: 16px; justify-content: space-between; text-align: left; }
  .hero-stats strong { font-size: 18px; }
  .hero-stats span { font-size: 9px; }
  .hero-visual { min-height: 430px; margin-top: 10px; }
  .scene { width: 115vw; max-width: 530px; }
  .price-bubble { right: 0; top: 8%; width: 92px; height: 92px; }
  .price-bubble strong { font-size: 25px; }
  .floating-card { padding: 10px; }
  .floating-card > span { width: 32px; height: 32px; }
  .card-one { left: 0; top: 33%; }
  .card-two { right: 0; bottom: 10%; }
  .ticker { padding: 14px 0; }
  .section-heading h2 { font-size: 42px; }
  .vendor-grid, .menu-grid { grid-template-columns: 1fr; }
  .vendor-art { height: 215px; }
  .order-mode { width: 100%; }
  .mode-btn { min-width: 0; flex: 1; padding: 10px; }
  .mode-btn small { display: none; }
  .menu-toolbar { top: 78px; }
  .food-art { height: 205px; }
  .parallax-banner { min-height: auto; padding: 82px 18px; }
  .banner-copy h2 { font-size: 64px; }
  .about-card { padding: 30px 24px; gap: 24px; }
  .about-card h2 { font-size: 40px; }
  footer { grid-template-columns: 1fr; padding: 55px 22px 100px; }
  .footer-links { flex-wrap: wrap; }
  .disclaimer { grid-column: auto; }
  .cart-drawer { padding: 18px; }
  .cart-item { grid-template-columns: 62px 1fr auto; }
  .cart-item-art { width: 62px; height: 62px; }
  .product-modal { width: 100%; max-height: 94dvh; margin: auto 0 0; border-radius: 28px 28px 0 0; }
  .modal-product-art { height: 190px; font-size: 88px; }
  .modal-content { padding: 22px 18px; }
  .modal-content h2 { font-size: 28px; }
  .modal-action-row { grid-template-columns: 124px 1fr; }
  .checkout-modal { width: 100%; max-height: 94dvh; margin: auto 0 0; border-radius: 28px 28px 0 0; }
  .checkout-modal form { padding: 26px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .mobile-nav {
    position: fixed; z-index: 150; left: 10px; right: 10px; bottom: max(8px, env(safe-area-inset-bottom));
    height: 64px; padding: 7px 10px; display: grid; grid-template-columns: repeat(4,1fr);
    border: 1px solid rgba(255,255,255,.7); border-radius: 20px; background: rgba(255,253,248,.92);
    backdrop-filter: blur(18px); box-shadow: 0 12px 38px rgba(43,27,8,.15);
  }
  .mobile-nav a, .mobile-nav button {
    position: relative; border: 0; background: transparent; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2px; font-size: 18px;
  }
  .mobile-nav small { color: var(--muted); font-size: 9px; font-weight: 700; }
  .mobile-nav .active span, .mobile-nav .active small { color: var(--orange); }
  .mobile-nav b {
    position: absolute; top: 2px; right: 19%; min-width: 17px; height: 17px; padding: 0 4px;
    display: grid; place-items: center; border-radius: 7px; color: white; background: var(--orange); font-size: 8px;
  }
  .toast { bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* =========================================================
   Mobile layout hardening pass
   ========================================================= */
html {
  width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
body,
main,
section,
header,
footer,
dialog {
  max-width: 100%;
}
body.dialog-open {
  overflow: hidden;
  overscroll-behavior: none;
}
.hero-copy,
.hero-visual,
.section-heading,
.vendor-card,
.menu-card,
.step-card,
.about-card > *,
.cart-item > *,
.modal-content,
.checkout-modal form {
  min-width: 0;
}
h1, h2, h3, h4, p, strong, small, span, label {
  overflow-wrap: break-word;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
.cart-drawer {
  min-height: 0;
  overflow: hidden;
}
.cart-items {
  min-height: 0;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.cart-footer {
  flex: 0 0 auto;
}
.cart-item {
  grid-template-columns: 70px minmax(0, 1fr) auto;
}
.cart-item p {
  overflow-wrap: anywhere;
}
.modal-content,
.checkout-modal form {
  scrollbar-width: thin;
  overscroll-behavior: contain;
}

@media (max-width: 680px) {
  :root {
    --mobile-gutter: 16px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 16px);
    height: 60px;
    padding: 0 8px 0 10px;
    gap: 8px;
  }
  .site-header .brand {
    min-width: 0;
  }
  .site-header .brand strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
  }
  .site-header .brand-mark {
    flex: 0 0 36px;
  }
  .cart-button {
    flex: 0 0 auto;
  }

  .section-pad {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .hero {
    padding-top: calc(102px + env(safe-area-inset-top));
    text-align: left;
  }
  .hero h1 {
    max-width: 100%;
    margin: 18px 0 22px;
    font-size: clamp(42px, 13.5vw, 58px);
    line-height: .98;
    letter-spacing: -.065em;
  }
  .hero-copy > p {
    margin-right: 0;
    margin-left: 0;
    font-size: 14px;
    line-height: 1.6;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .primary-btn,
  .hero-actions .ghost-btn {
    min-height: 52px;
  }
  .hero-stats {
    width: 100%;
    gap: 8px;
  }
  .hero-stats div {
    flex: 1 1 0;
  }
  .hero-stats strong {
    white-space: nowrap;
  }

  .hero-visual {
    width: 100%;
    min-height: 400px;
    margin-top: 4px;
    overflow: visible;
  }
  .scene {
    width: min(440px, 112vw);
    max-width: none;
    transform-origin: 50% 50%;
  }
  .price-bubble {
    right: -2px;
    top: 7%;
    width: 84px;
    height: 84px;
  }
  .price-bubble span {
    font-size: 9px;
  }
  .price-bubble strong {
    font-size: 23px;
  }
  .floating-card {
    max-width: 155px;
    padding: 8px 9px;
    gap: 7px;
    border-radius: 14px;
  }
  .floating-card > span {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .floating-card strong {
    font-size: 11px;
    white-space: nowrap;
  }
  .floating-card small {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9px;
  }
  .card-one {
    left: 0;
    top: 35%;
  }
  .card-two {
    right: 0;
    bottom: 8%;
  }

  .section-heading {
    margin-bottom: 32px;
  }
  .section-heading h2,
  .about-card h2 {
    max-width: 100%;
    font-size: clamp(36px, 11.5vw, 46px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }
  .section-heading p {
    font-size: 14px;
    line-height: 1.55;
  }

  .vendor-card,
  .menu-card,
  .about-card {
    border-radius: 24px;
  }
  .vendor-info,
  .menu-card-body {
    padding: 18px;
  }
  .vendor-info > div {
    gap: 12px;
    flex-wrap: wrap;
  }

  .order-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .mode-btn {
    width: 100%;
    min-width: 0;
    gap: 7px;
    padding: 10px 9px;
  }
  .mode-btn > span {
    flex: 0 0 auto;
    font-size: 19px;
  }
  .mode-btn strong {
    font-size: 12px;
    white-space: nowrap;
  }

  .menu-toolbar {
    top: calc(70px + env(safe-area-inset-top));
    margin-right: calc(var(--mobile-gutter) * -1);
    margin-left: calc(var(--mobile-gutter) * -1);
    padding: 10px var(--mobile-gutter) 11px;
  }
  .search-box {
    height: 50px;
    padding: 0 14px;
  }
  .search-box input,
  .promo-row input,
  .form-grid input,
  .form-grid select,
  textarea {
    font-size: 16px;
  }
  .category-pills {
    margin-right: calc(var(--mobile-gutter) * -1);
    padding-right: var(--mobile-gutter);
  }

  .banner-copy h2 {
    max-width: 100%;
    font-size: clamp(54px, 18vw, 70px);
    line-height: .94;
  }
  .step-card {
    padding: 20px 17px;
    gap: 14px;
  }
  .step-card strong {
    font-size: 16px;
  }

  .about-card {
    padding: 28px 20px;
  }
  .about-card > p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Full-height mobile cart with reachable footer */
  .cart-drawer {
    inset: 0 0 0 auto;
    width: 100dvw;
    height: 100dvh;
    padding: calc(14px + env(safe-area-inset-top)) 14px calc(14px + env(safe-area-inset-bottom));
  }
  .cart-header {
    flex: 0 0 auto;
    margin-bottom: 12px;
  }
  .cart-header h2 {
    font-size: 29px;
  }
  .cart-mode-summary {
    flex: 0 0 auto;
    gap: 9px;
    padding: 10px;
  }
  .cart-mode-summary > span {
    width: 34px;
    height: 34px;
  }
  .cart-items {
    flex: 1 1 auto;
    padding: 8px 0;
  }
  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 11px 0;
  }
  .cart-item-art {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 29px;
  }
  .cart-item h4 {
    font-size: 13px;
    line-height: 1.2;
  }
  .cart-item p {
    display: -webkit-box;
    max-width: 100%;
    margin-bottom: 6px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .mini-qty {
    gap: 7px;
  }
  .mini-qty button {
    width: 28px;
    height: 28px;
  }
  .cart-item-price {
    min-width: 58px;
  }
  .cart-item-price strong {
    font-size: 12px;
    white-space: nowrap;
  }
  .cart-footer {
    max-height: 46dvh;
    padding-top: 11px;
    overflow-y: auto;
  }
  .promo-row {
    margin-bottom: 11px;
  }
  .promo-row input {
    height: 44px;
  }
  .bill {
    gap: 6px;
    margin-bottom: 11px;
  }
  .checkout-btn {
    min-height: 52px;
    gap: 12px;
  }
  .checkout-btn span,
  .checkout-btn strong {
    min-width: 0;
  }
  .checkout-btn strong {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Product popup becomes a controlled bottom sheet */
  .product-modal,
  .checkout-modal {
    width: 100dvw;
    max-width: 100dvw;
    height: min(94dvh, calc(100dvh - env(safe-area-inset-top)));
    max-height: min(94dvh, calc(100dvh - env(safe-area-inset-top)));
    margin: auto 0 0;
    border-radius: 26px 26px 0 0;
    overflow: hidden;
  }
  .product-modal[open] {
    display: flex;
    flex-direction: column;
  }
  .product-modal .modal-close,
  .checkout-modal .modal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    width: 40px;
    height: 40px;
    border-color: rgba(30,29,26,.12);
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 22px rgba(36,24,12,.12);
  }
  .modal-product-art {
    flex: 0 0 170px;
    height: 170px;
    font-size: 76px;
  }
  .modal-content {
    flex: 1 1 auto;
    min-height: 0;
    padding: 20px 16px calc(14px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .modal-content h2 {
    padding-right: 30px;
    font-size: clamp(24px, 8vw, 30px);
    line-height: 1.05;
  }
  .modal-content > p {
    font-size: 13px;
  }
  .modal-price-row {
    gap: 12px;
    margin: 15px 0;
  }
  .modal-price-row strong {
    font-size: 22px;
    white-space: nowrap;
  }
  .modal-price-row span {
    text-align: right;
  }
  .option-heading,
  .option-group > label:first-child {
    gap: 12px;
  }
  .option-group > label:first-child strong,
  .option-heading strong {
    min-width: 0;
  }
  .addon-option {
    min-height: 44px;
  }
  .addon-option span {
    min-width: 0;
  }
  .addon-option strong {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .modal-action-row {
    z-index: 4;
    grid-template-columns: 116px minmax(0, 1fr);
    margin: 0 -16px calc(-14px - env(safe-area-inset-bottom));
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 25px rgba(39,26,12,.07);
  }
  .quantity-control {
    min-width: 0;
  }
  .quantity-control button {
    width: 36px;
    height: 40px;
  }
  .add-cart-btn {
    min-width: 0;
    gap: 8px;
    padding: 0 13px;
    font-size: 12px;
  }
  .add-cart-btn span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .add-cart-btn strong {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Checkout popup scrolls while the submit button remains accessible */
  .checkout-modal[open] {
    display: flex;
    flex-direction: column;
  }
  .checkout-modal form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px 16px calc(16px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .checkout-head {
    padding-right: 42px;
  }
  .checkout-head h2 {
    font-size: 31px;
  }
  .checkout-progress {
    margin: 17px 0;
  }
  .form-grid {
    gap: 11px;
  }
  .form-grid input,
  .form-grid select {
    height: 50px;
  }
  fieldset {
    margin: 19px 0 14px;
  }
  .payment-option {
    min-height: 60px;
    gap: 10px;
  }
  .payment-option div {
    min-width: 0;
  }
  .payment-option small {
    line-height: 1.3;
  }
  .consent span {
    min-width: 0;
  }
  .checkout-modal .checkout-btn {
    position: sticky;
    z-index: 4;
    bottom: calc(-16px - env(safe-area-inset-bottom));
    margin: auto -16px calc(-16px - env(safe-area-inset-bottom));
    width: calc(100% + 32px);
    min-height: calc(62px + env(safe-area-inset-bottom));
    padding: 0 16px env(safe-area-inset-bottom);
    border-radius: 0;
    box-shadow: 0 -10px 25px rgba(39,26,12,.08);
  }

  /* Compact success popup for small phones */
  .success-modal {
    width: calc(100dvw - 24px);
    max-width: 420px;
    max-height: calc(100dvh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: 28px 20px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 24px;
  }
  .success-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
  }
  .success-icon span {
    font-size: 32px;
  }
  .success-modal h2 {
    font-size: 30px;
  }
  .order-number {
    font-size: 24px;
  }
  .eta-box {
    gap: 12px;
    padding: 13px;
  }
  .eta-box strong {
    text-align: right;
  }

  .mobile-nav {
    left: 8px;
    right: 8px;
    bottom: max(7px, env(safe-area-inset-bottom));
    height: 62px;
    padding: 6px 8px;
  }
}

@media (max-width: 380px) {
  .site-header .brand strong {
    max-width: 138px;
  }
  .hero h1 {
    font-size: clamp(40px, 13vw, 50px);
  }
  .hero-visual {
    min-height: 370px;
  }
  .scene {
    width: 118vw;
  }
  .floating-card {
    max-width: 137px;
  }
  .floating-card small {
    max-width: 82px;
  }
  .section-heading h2,
  .about-card h2 {
    font-size: 36px;
  }
  .modal-action-row {
    grid-template-columns: 108px minmax(0, 1fr);
  }
  .add-cart-btn {
    padding: 0 10px;
  }
}

@media (max-width: 340px) {
  .site-header .brand strong {
    max-width: 112px;
  }
  .hero-stats span {
    font-size: 8px;
  }
  .floating-card {
    display: none;
  }
  .price-bubble {
    right: 4px;
  }
  .cart-item {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }
  .cart-item-art {
    width: 48px;
    height: 48px;
  }
  .modal-action-row {
    grid-template-columns: 102px minmax(0, 1fr);
  }
  .add-cart-btn span {
    max-width: 64px;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .product-modal,
  .checkout-modal {
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 18px 18px 0 0;
  }
  .modal-product-art {
    flex-basis: 120px;
    height: 120px;
    font-size: 60px;
  }
  .success-modal {
    padding-top: 20px;
  }
  .success-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  .success-modal h2 {
    margin-bottom: 8px;
  }
  .eta-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 920px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }
  .product-modal,
  .checkout-modal {
    width: min(760px, calc(100dvw - 24px));
    max-width: min(760px, calc(100dvw - 24px));
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    margin: auto;
    border-radius: 22px;
  }
  .product-modal[open] {
    display: grid;
    grid-template-columns: 34% 66%;
  }
  .product-modal .modal-product-art {
    height: 100%;
    min-height: 100%;
  }
  .product-modal .modal-content {
    height: 100%;
  }
}

/* Short mobile landscape safeguards */
@media (max-width: 920px) and (orientation: landscape) {
  .cart-drawer {
    height: 100dvh;
    min-height: 0;
    padding: 9px 12px;
  }
  .cart-header {
    margin-bottom: 6px;
  }
  .cart-header h2 {
    margin-top: 2px;
    font-size: 26px;
  }
  .cart-mode-summary {
    padding: 8px 10px;
  }
  .cart-mode-summary > span {
    width: 32px;
    height: 32px;
  }
  .cart-items {
    min-height: 0;
    padding: 4px 0;
  }
  .cart-item {
    grid-template-columns: 50px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 7px 0;
  }
  .cart-item-art {
    width: 50px;
    height: 50px;
    font-size: 27px;
  }
  .cart-item p {
    margin-bottom: 4px;
  }
  .cart-footer {
    flex: 0 0 auto;
    padding-top: 7px;
  }
  .promo-row {
    margin-bottom: 7px;
  }
  .promo-row input {
    height: 40px;
  }
  .bill {
    gap: 3px;
    margin-bottom: 7px;
  }
  .bill .total {
    padding-top: 5px;
  }
  .cart-footer .checkout-btn {
    min-height: 48px;
  }

  .checkout-modal[open] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .checkout-modal form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 18px 24px 16px;
    overflow-y: auto;
  }
  .checkout-head {
    padding-right: 44px;
  }
  .checkout-head h2 {
    margin-bottom: 3px;
    font-size: 29px;
  }
  .checkout-progress {
    margin: 12px 0;
  }
  .form-grid {
    gap: 9px;
  }
  .form-grid input,
  .form-grid select {
    height: 44px;
  }
  fieldset {
    margin: 14px 0 10px;
  }
  .payment-option {
    padding: 9px 12px;
  }
  .consent {
    margin-bottom: 10px;
  }
  .checkout-modal .checkout-btn {
    position: sticky;
    z-index: 5;
    bottom: -16px;
    flex: 0 0 auto;
    margin: auto -24px -16px;
    width: calc(100% + 48px);
    min-height: 52px;
    padding: 0 24px;
    border-radius: 0;
    box-shadow: 0 -10px 25px rgba(39,26,12,.08);
  }
}


/* Checkout coupon removal and order tracking */
.checkout-coupon {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
  padding: 12px 13px;
  border: 1px solid rgba(24,165,106,.25);
  border-radius: 16px;
  background: rgba(24,165,106,.08);
}
.checkout-coupon-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--green);
  font: 800 18px "Manrope", sans-serif;
}
.checkout-coupon > div:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.checkout-coupon strong { font-size: 13px; }
.checkout-coupon small { margin-top: 3px; color: var(--green); font-size: 10px; font-weight: 700; }
.checkout-coupon button {
  border: 0;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  color: #b4371c;
  background: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 800;
}
.promo-row input[readonly] { color: var(--green); background: rgba(24,165,106,.07); }

.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.success-actions .primary-btn,
.success-actions .ghost-btn { width: 100%; min-height: 52px; }

.orders-section { background: var(--cream); }
.orders-heading { align-items: end; }
.orders-heading > div { min-width: 0; }
.orders-heading h2 { margin-top: 12px; }
.orders-clear {
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 13px;
  color: var(--muted);
  background: rgba(255,255,255,.64);
  font-size: 11px;
  font-weight: 800;
}
.orders-empty {
  min-height: 360px;
  padding: 48px 20px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px dashed rgba(30,29,26,.18);
  border-radius: var(--radius-xl);
  text-align: center;
  background: rgba(255,255,255,.4);
}
.orders-empty-icon { font-size: 58px; }
.orders-empty h3 { margin: 16px 0 6px; font: 800 26px "Manrope", sans-serif; }
.orders-empty p { max-width: 430px; margin-bottom: 22px; color: var(--muted); line-height: 1.6; }
.orders-list { display: grid; gap: 18px; }
.order-card {
  padding: 25px;
  border: 1px solid rgba(30,29,26,.09);
  border-radius: 27px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(56,32,8,.08);
}
.order-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.order-card-title { display: flex; align-items: center; gap: 13px; min-width: 0; }
.order-mode-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--cream);
  font-size: 24px;
}
.order-card-title > div { min-width: 0; }
.order-card h3 { margin: 5px 0 2px; font: 800 22px "Manrope", sans-serif; letter-spacing: -.035em; }
.order-card-title small { color: var(--muted); font-size: 10px; }
.order-status {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: #9d4b00;
  background: rgba(255,200,52,.22);
  font-size: 10px;
  font-weight: 800;
}
.order-status.status-2 { color: #0f7250; background: rgba(24,165,106,.12); }
.order-status.status-3 { color: white; background: var(--green); }
.order-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 27px 0;
  padding: 0;
  list-style: none;
}
.order-timeline li { position: relative; display: grid; justify-items: center; gap: 8px; text-align: center; }
.order-timeline li::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 14px;
  right: 50%;
  width: 100%;
  height: 3px;
  background: #e5ded4;
}
.order-timeline li:first-child::before { display: none; }
.order-timeline li.done::before,
.order-timeline li.active::before { background: var(--green); }
.order-timeline li > span {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid #ded6cb;
  border-radius: 50%;
  color: var(--muted);
  background: var(--paper);
  font-size: 10px;
  font-weight: 800;
}
.order-timeline li.done > span,
.order-timeline li.active > span { border-color: var(--green); color: white; background: var(--green); }
.order-timeline small { max-width: 105px; color: var(--muted); font-size: 10px; line-height: 1.25; }
.order-timeline li.active small { color: var(--ink); font-weight: 800; }
.order-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.order-summary-grid > div { padding: 13px 15px; display: flex; flex-direction: column; gap: 4px; }
.order-summary-grid > div + div { border-left: 1px solid var(--line); }
.order-summary-grid span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.order-summary-grid strong { font-size: 13px; }
.order-location { display: flex; align-items: center; gap: 11px; padding: 14px 0; }
.order-location > span { font-size: 20px; }
.order-location div { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.order-location small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.order-location strong { font-size: 12px; overflow-wrap: anywhere; }
.order-details { border-top: 1px solid var(--line); }
.order-details summary { padding: 14px 0; cursor: pointer; font-size: 12px; font-weight: 800; }
.order-detail-list { display: grid; gap: 9px; padding-bottom: 12px; }
.order-detail-item { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 9px; }
.order-detail-item > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--cream); }
.order-detail-item div { min-width: 0; display: flex; flex-direction: column; }
.order-detail-item strong { font-size: 11px; }
.order-detail-item small { margin-top: 2px; color: var(--muted); font-size: 9px; overflow-wrap: anywhere; }
.order-detail-item b { font-size: 11px; }
.order-coupon-note { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0 14px; color: var(--green); font-size: 11px; }
.advance-status-btn {
  width: 100%;
  min-height: 45px;
  border: 1px solid rgba(255,106,42,.24);
  cursor: pointer;
  border-radius: 13px;
  color: var(--orange-dark);
  background: rgba(255,106,42,.08);
  font-size: 11px;
  font-weight: 800;
}
.order-complete-note { padding: 12px; border-radius: 13px; color: var(--green); background: rgba(24,165,106,.08); text-align: center; font-size: 11px; font-weight: 800; }

@media (min-width: 760px) {
  .orders-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .mobile-nav { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .mobile-nav a,
  .mobile-nav button { min-width: 0; }
  .mobile-nav b { right: 10%; }
  .orders-heading { display: grid; }
  .orders-heading .orders-clear { justify-self: start; }
  .order-card { padding: 18px 15px; border-radius: 22px; }
  .order-card-head { align-items: center; }
  .order-mode-icon { flex-basis: 42px; width: 42px; height: 42px; font-size: 20px; }
  .order-card h3 { font-size: 18px; }
  .order-status { max-width: 120px; padding: 7px 9px; text-align: center; line-height: 1.2; }
  .order-timeline { margin: 23px -2px; }
  .order-timeline small { max-width: 72px; font-size: 8px; }
  .order-summary-grid > div { padding: 11px 9px; }
  .order-summary-grid strong { font-size: 11px; overflow-wrap: anywhere; }
  .checkout-coupon { grid-template-columns: 38px minmax(0, 1fr) auto; gap: 9px; }
  .checkout-coupon-icon { width: 38px; height: 38px; }
  .success-actions { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .mobile-nav small { font-size: 8px; }
  .order-status { max-width: 96px; font-size: 8px; }
  .order-timeline small { max-width: 58px; }
  .order-summary-grid span { font-size: 8px; }
}


/* Separate Orders and Admin pages */
.nav-current { color: var(--orange-dark) !important; }
.nav-current::after { right: 0 !important; }
.header-action {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.dark-action { color: var(--ink); background: var(--yellow); }
.page-main { min-height: 80dvh; }
.page-hero {
  min-height: 520px;
  padding: 160px max(24px, calc((100vw - 1240px) / 2)) 90px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
}
.page-hero h1 {
  max-width: 850px;
  margin: 17px 0 22px;
  font: 800 clamp(52px, 6vw, 88px)/.94 "Manrope", sans-serif;
  letter-spacing: -.07em;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { max-width: 620px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.page-hero-card,
.admin-demo-notice {
  justify-self: end;
  width: min(100%, 390px);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(30,29,26,.09);
  border-radius: 25px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}
.page-hero-card > span,
.admin-demo-notice > span {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  font-size: 27px;
}
.page-hero-card div,
.admin-demo-notice div { display: flex; flex-direction: column; min-width: 0; }
.page-hero-card strong,
.admin-demo-notice strong { font: 800 16px "Manrope", sans-serif; }
.page-hero-card small,
.admin-demo-notice small { margin-top: 5px; color: var(--muted); line-height: 1.45; }
.compact-section { padding-top: 60px; }
.orders-workspace { background: var(--paper); }
.page-toolbar,
.admin-toolbar {
  position: sticky;
  z-index: 20;
  top: 94px;
  margin-bottom: 28px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(30,29,26,.06);
  border-radius: 20px;
  background: rgba(255,253,248,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(55,34,9,.06);
}
.page-search {
  min-width: 0;
  flex: 1;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}
.page-search svg { width: 19px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.page-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; }
.secondary-action {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.order-highlight { outline: 3px solid rgba(255,106,42,.28); box-shadow: 0 24px 70px rgba(255,106,42,.17); }
.tracking-current {
  margin: 20px 0 0;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border-radius: 15px;
  color: #0f7250;
  background: rgba(24,165,106,.09);
}
.tracking-current > span { font-size: 18px; }
.tracking-current div { display: flex; flex-direction: column; }
.tracking-current small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.tracking-current strong { margin-top: 2px; color: var(--ink); font-size: 13px; }
.tracking-current time { color: var(--muted); font-size: 9px; text-align: right; }
.customer-tracking-note {
  padding: 12px;
  border-radius: 13px;
  color: var(--muted);
  background: #f2ede5;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}
.subpage-mobile-nav { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

/* Admin dashboard */
.admin-page { background: #f3eee5; }
.admin-page-hero {
  min-height: 560px;
  color: white;
  background: var(--ink);
}
.admin-page-hero h1 em { color: var(--yellow); }
.admin-page-hero p { color: rgba(255,255,255,.62); }
.admin-demo-notice {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  box-shadow: none;
}
.admin-demo-notice > span { background: var(--orange); }
.admin-demo-notice small { color: rgba(255,255,255,.58); }
.admin-workspace { padding-top: 55px; background: #f3eee5; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.admin-stats article {
  min-width: 0;
  padding: 21px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(30,29,26,.08);
  border-radius: 21px;
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(56,32,8,.06);
}
.admin-stats span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.admin-stats strong { margin: 8px 0 4px; font: 800 clamp(24px, 3vw, 34px) "Manrope", sans-serif; letter-spacing: -.04em; overflow-wrap: anywhere; }
.admin-stats small { color: var(--muted); font-size: 10px; }
.admin-toolbar { background: rgba(243,238,229,.9); }
.admin-search { background: var(--paper); }
.admin-filter-label { min-width: 210px; display: flex; flex-direction: column; gap: 5px; }
.admin-filter-label span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.admin-filter-label select {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0 10px;
  background: var(--paper);
  outline: none;
  font-size: 12px;
  font-weight: 700;
}
.admin-orders-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-order-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(30,29,26,.08);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(56,32,8,.07);
}
.admin-order-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.admin-order-head > div { min-width: 0; }
.admin-order-mode { color: var(--orange-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.admin-order-head h2 { margin: 7px 0 2px; font: 800 22px "Manrope", sans-serif; letter-spacing: -.04em; }
.admin-order-head small { color: var(--muted); font-size: 10px; }
.admin-customer-grid {
  margin: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.admin-customer-grid > div {
  min-width: 0;
  padding: 11px;
  display: flex;
  flex-direction: column;
  border-radius: 13px;
  background: #f3eee5;
}
.admin-customer-grid .admin-location-field { grid-column: 1/-1; }
.admin-customer-grid span,
.admin-order-meta span { color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.admin-customer-grid strong { margin-top: 4px; font-size: 11px; overflow-wrap: anywhere; }
.admin-item-list { margin: 0; padding: 0; display: grid; gap: 7px; list-style: none; }
.admin-item-list li { display: flex; align-items: center; gap: 9px; }
.admin-item-list li > span { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: var(--cream); }
.admin-item-list div { min-width: 0; display: flex; flex-direction: column; }
.admin-item-list strong { font-size: 11px; overflow-wrap: anywhere; }
.admin-item-list small { color: var(--muted); font-size: 9px; }
.admin-more-items { margin: 8px 0 0; color: var(--muted); font-size: 9px; font-weight: 700; }
.admin-order-meta {
  margin: 17px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.admin-order-meta > div { min-width: 0; padding: 10px; display: flex; flex-direction: column; gap: 4px; }
.admin-order-meta > div + div { border-left: 1px solid var(--line); }
.admin-order-meta strong { font-size: 11px; overflow-wrap: anywhere; }
.admin-status-control { display: grid; gap: 7px; }
.admin-status-control > span { font-size: 10px; font-weight: 800; }
.admin-status-control select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255,106,42,.35);
  border-radius: 13px;
  padding: 0 12px;
  color: var(--orange-dark);
  background: rgba(255,106,42,.07);
  outline: none;
  font-weight: 800;
}
.admin-updated { margin: 8px 0 0; color: var(--muted); font-size: 9px; }
.admin-empty {
  min-height: 320px;
  padding: 40px 20px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px dashed rgba(30,29,26,.18);
  border-radius: 28px;
  text-align: center;
  background: rgba(255,255,255,.42);
}
.admin-empty > span { font-size: 50px; }
.admin-empty h2 { margin: 14px 0 6px; font: 800 25px "Manrope", sans-serif; }
.admin-empty p { max-width: 410px; margin-bottom: 20px; color: var(--muted); line-height: 1.55; }
.admin-footer { background: #eae3d8; }

@media (max-width: 980px) {
  .page-hero { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-card,
  .admin-demo-notice { justify-self: start; }
  .admin-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-orders-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header .header-action { min-width: 42px; padding: 0 10px; font-size: 0; }
  .site-header .header-action::before { content: "↗"; font-size: 18px; }
  .admin-header .header-action::before { content: "↻"; }
  .page-hero {
    min-height: auto;
    padding: 122px 18px 62px;
    gap: 26px;
  }
  .page-hero h1 { font-size: clamp(44px, 14vw, 62px); }
  .page-hero p { font-size: 14px; }
  .page-hero-card,
  .admin-demo-notice { width: 100%; padding: 17px; border-radius: 20px; }
  .page-hero-card > span,
  .admin-demo-notice > span { flex-basis: 48px; width: 48px; height: 48px; border-radius: 15px; font-size: 22px; }
  .compact-section { padding-top: 42px; }
  .page-toolbar,
  .admin-toolbar {
    top: 78px;
    margin: 0 -6px 22px;
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 17px;
  }
  .secondary-action { width: 100%; }
  .tracking-current { grid-template-columns: auto minmax(0, 1fr); }
  .tracking-current time { grid-column: 2; text-align: left; }
  .admin-stats { gap: 9px; }
  .admin-stats article { padding: 16px; border-radius: 17px; }
  .admin-stats strong { font-size: 25px; }
  .admin-filter-label { min-width: 0; }
  .admin-order-card { padding: 17px 14px; border-radius: 21px; }
  .admin-order-head { align-items: center; }
  .admin-order-head h2 { font-size: 18px; }
  .admin-customer-grid { grid-template-columns: 1fr; }
  .admin-customer-grid .admin-location-field { grid-column: auto; }
}

@media (max-width: 360px) {
  .page-hero h1 { font-size: 41px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-stats article { padding: 13px; }
  .admin-stats strong { font-size: 21px; }
  .admin-order-head { align-items: flex-start; }
  .admin-order-head .order-status { max-width: 95px; }
}

@media (max-width: 680px) {
  body:not(.subpage) .mobile-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Hidden admin authentication */
.admin-app { min-height: 100dvh; }
.admin-header-actions { display: flex; align-items: center; gap: 8px; }
.admin-logout { color: white; background: rgba(255,255,255,.12); }
.admin-auth-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  min-height: 100dvh;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background:
    radial-gradient(circle at 12% 15%, rgba(255,106,42,.35), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(255,200,52,.22), transparent 30%),
    var(--ink);
}
.admin-auth-card {
  width: min(100%, 430px);
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
.admin-auth-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: var(--orange);
  font: 800 28px/1 "Manrope", sans-serif;
  transform: rotate(-5deg);
}
.admin-auth-card h1 {
  margin: 12px 0 9px;
  font: 800 36px/1 "Manrope", sans-serif;
  letter-spacing: -.055em;
}
.admin-auth-card > p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.admin-auth-card > label {
  display: block;
  margin: 24px 0 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.admin-password-field {
  height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  overflow: hidden;
}
.admin-password-field:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,42,.12); }
.admin-password-field input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
}
.admin-password-field button {
  height: 100%;
  padding: 0 15px;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.admin-auth-error {
  margin: 10px 0 0 !important;
  padding: 10px 12px;
  border-radius: 11px;
  color: #a52a2a !important;
  background: rgba(220,53,69,.09);
  font-weight: 700;
}
.admin-login-button { margin-top: 18px; }
.admin-back-link {
  margin-top: 18px;
  display: block;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 680px) {
  .admin-auth-gate { padding: 16px; }
  .admin-auth-card { padding: 27px 21px; border-radius: 25px; }
  .admin-auth-card h1 { font-size: 31px; }
  .admin-header-actions { gap: 5px; }
  .admin-header-actions .header-action { min-width: 38px; }
  .admin-header-actions .admin-logout { font-size: 0; }
  .admin-header-actions .admin-logout::before { content: "⇥"; font-size: 17px; }
}


/* Cancellation and Grade & Section update */
.order-status.status-cancelled {
  color: #a62121;
  background: rgba(205, 47, 47, .12);
}
.order-card-cancelled {
  border-color: rgba(205, 47, 47, .18);
}
.tracking-current.tracking-cancelled {
  color: #a62121;
  background: rgba(205, 47, 47, .09);
}
.timeline-cancelled {
  opacity: .52;
}
.order-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}
.cancel-order-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(205, 47, 47, .28);
  cursor: pointer;
  border-radius: 13px;
  color: #a62121;
  background: rgba(205, 47, 47, .07);
  font-size: 11px;
  font-weight: 800;
}
.cancel-order-btn:hover {
  background: rgba(205, 47, 47, .12);
}
.cancel-order-btn:disabled {
  cursor: wait;
  opacity: .65;
}
.order-cancelled-note {
  padding: 12px;
  border-radius: 13px;
  color: #a62121;
  background: rgba(205, 47, 47, .09);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

@media (max-width: 680px) {
  .order-card-actions {
    grid-template-columns: 1fr;
  }
  .cancel-order-btn {
    width: 100%;
  }
}

/* =========================================================
   Hero depth + motion enhancement
   Lightweight CSS 3D, responsive and touch-safe
   ========================================================= */
.parallax {
  --parallax-y: 0px;
  translate: 0 var(--parallax-y);
}

.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 7% -10% auto 36%;
  height: 74%;
  background:
    radial-gradient(circle at var(--hero-light-x, 54%) var(--hero-light-y, 42%), rgba(255, 224, 130, .38), transparent 27%),
    radial-gradient(circle at 64% 48%, rgba(255, 107, 42, .11), transparent 52%);
  pointer-events: none;
}

.hero-visual {
  --scene-rx: 7deg;
  --scene-ry: -8deg;
  --pointer-x: 0px;
  --pointer-y: 0px;
  --depth-x: 0px;
  --depth-y: 0px;
  --orbit-x: 0px;
  --orbit-y: 0px;
  isolation: isolate;
  transform-style: preserve-3d;
  contain: layout paint;
}

.hero-depth,
.hero-particles,
.orbit-system {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-depth {
  z-index: 0;
  transform-style: preserve-3d;
  transform: translate3d(var(--depth-x), var(--depth-y), -80px);
  transition: transform .28s ease-out;
}

.hero-aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .75;
  will-change: transform;
}

.aurora-one {
  width: 66%;
  aspect-ratio: 1;
  top: 13%;
  left: 20%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 246, 189, .95), rgba(255, 129, 64, .46) 48%, rgba(255, 106, 42, 0) 72%);
  animation: heroAurora 8s ease-in-out infinite;
}

.aurora-two {
  width: 38%;
  aspect-ratio: 1;
  right: 4%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(108, 222, 151, .54), rgba(69, 181, 113, 0) 70%);
  animation: heroAurora 10s ease-in-out -3s infinite reverse;
}

.hero-grid-plane {
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: 90%;
  height: 49%;
  border-radius: 50%;
  opacity: .42;
  transform: translateX(-50%) rotateX(70deg) translateZ(-95px);
  background-image:
    linear-gradient(rgba(117, 70, 24, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 70, 24, .16) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.7), rgba(255,255,255,0) 67%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  -webkit-mask-image: radial-gradient(ellipse, #000 18%, transparent 70%);
  mask-image: radial-gradient(ellipse, #000 18%, transparent 70%);
  animation: gridBreathe 5.5s ease-in-out infinite;
}

.hero-depth-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 135, 64, .25);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.ring-one {
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(9deg) translateZ(-50px);
  box-shadow: 0 0 0 12px rgba(255,255,255,.12), inset 0 0 34px rgba(255,129,64,.08);
  animation: ringTurn 18s linear infinite;
}

.ring-two {
  width: 55%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateY(68deg) rotateZ(-18deg) translateZ(-20px);
  border-style: dashed;
  animation: ringTurnTwo 15s linear infinite reverse;
}

.hero-particles {
  z-index: 2;
}

.hero-particles i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 200, 52, .13);
  animation: particleDrift 5s ease-in-out infinite;
}

.hero-particles i:nth-child(1) { left: 19%; top: 20%; animation-delay: -.8s; }
.hero-particles i:nth-child(2) { right: 19%; top: 28%; width: 5px; height: 5px; animation-delay: -2.2s; }
.hero-particles i:nth-child(3) { left: 12%; bottom: 27%; background: var(--green); animation-delay: -1.5s; }
.hero-particles i:nth-child(4) { right: 10%; bottom: 24%; width: 6px; height: 6px; animation-delay: -3.3s; }
.hero-particles i:nth-child(5) { left: 38%; top: 10%; width: 4px; height: 4px; background: var(--orange); animation-delay: -4.1s; }
.hero-particles i:nth-child(6) { right: 35%; bottom: 8%; width: 5px; height: 5px; background: var(--pink); animation-delay: -2.7s; }

.orbit-system {
  z-index: 2;
  left: 3%;
  right: 3%;
  top: 4%;
  bottom: 4%;
  transform-style: preserve-3d;
  transform: translate3d(var(--orbit-x), var(--orbit-y), 20px);
  transition: transform .22s ease-out;
}

.food-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(30, 29, 26, .08);
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.orbit-a {
  width: 82%;
  aspect-ratio: 1;
  animation: orbitA 14s linear infinite;
}

.orbit-b {
  width: 68%;
  aspect-ratio: 1;
  animation: orbitB 11s linear infinite reverse;
}

.orbit-c {
  width: 94%;
  aspect-ratio: 1;
  animation: orbitC 17s linear infinite;
}

.orbit-object {
  position: absolute;
  top: -27px;
  left: calc(50% - 27px);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 17px;
  background: rgba(255,255,255,.77);
  box-shadow: 0 16px 34px rgba(74, 38, 7, .15), inset 0 -8px 16px rgba(255, 196, 104, .12);
  backdrop-filter: blur(12px);
  font-size: 27px;
  transform-style: preserve-3d;
}

.orbit-object::before,
.orbit-object::after {
  content: "";
  position: absolute;
  background: rgba(255, 238, 211, .72);
  border: 1px solid rgba(255,255,255,.7);
}

.orbit-object::before {
  top: 7px;
  right: -8px;
  width: 8px;
  height: 39px;
  transform-origin: left;
  transform: rotateY(58deg);
  border-radius: 0 8px 8px 0;
}

.orbit-object::after {
  left: 7px;
  bottom: -8px;
  width: 39px;
  height: 8px;
  transform-origin: top;
  transform: rotateX(-58deg);
  border-radius: 0 0 8px 8px;
}

.orbit-a .orbit-object { animation: counterOrbitA 14s linear infinite, cubeBob 3.2s ease-in-out infinite; }
.orbit-b .orbit-object { animation: counterOrbitB 11s linear infinite reverse, cubeBob 3.6s ease-in-out -1.2s infinite; }
.orbit-c .orbit-object { animation: counterOrbitC 17s linear infinite, cubeBob 4s ease-in-out -2.1s infinite; }

.scene {
  z-index: 4;
  transform: rotateX(var(--scene-rx)) rotateY(var(--scene-ry)) translateZ(0);
  will-change: transform;
}

.scene-halo {
  position: absolute;
  z-index: -1;
  inset: 11%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.8);
  background:
    conic-gradient(from 20deg, rgba(255, 200, 52, .3), rgba(255, 106, 42, .06), rgba(24, 165, 106, .23), rgba(255, 200, 52, .3));
  box-shadow: inset 0 0 52px rgba(255,255,255,.42), 0 0 55px rgba(255, 149, 73, .12);
  transform: translateZ(-40px);
  animation: haloSpin 16s linear infinite;
}

.scene-halo::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: inherit;
  background: rgba(255, 248, 234, .5);
  box-shadow: inset 0 0 40px rgba(255,255,255,.65);
}

.steam-trails {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 18%;
  width: 33%;
  height: 25%;
  transform: translateX(-50%) translateZ(65px);
  pointer-events: none;
}

.steam-trails i {
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 54px;
  border: 4px solid rgba(255,255,255,.62);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: blur(.3px);
  opacity: 0;
  animation: steamRise 3.2s ease-out infinite;
}

.steam-trails i:nth-child(1) { left: 16%; animation-delay: 0s; }
.steam-trails i:nth-child(2) { left: 47%; height: 68px; animation-delay: -1.15s; }
.steam-trails i:nth-child(3) { right: 11%; height: 48px; animation-delay: -2.15s; }

.food-layer {
  translate: 0 -46px;
  opacity: 0;
  animation: ingredientDrop .82s cubic-bezier(.2,.84,.25,1.18) forwards;
}

.top-bun { animation-delay: .54s; }
.lettuce { animation-delay: .45s; }
.tomato { animation-delay: .36s; }
.cheese { animation-delay: .28s; }
.patty { animation-delay: .2s; }
.sauce { animation-delay: .12s; }
.bottom-bun { animation-delay: .04s; }

.plate {
  animation: plateEnter .9s cubic-bezier(.18,.8,.22,1) both;
}

.shadow {
  animation: shadowPulse 5s ease-in-out infinite;
}

.price-bubble {
  animation: priceBob 4.4s ease-in-out infinite;
  transform: rotate(8deg) translateZ(70px);
  will-change: transform;
}

.floating-card {
  transform: translateZ(58px);
  will-change: translate;
}

.card-one { animation: cardDriftOne 5s ease-in-out infinite; }
.card-two { animation: cardDriftTwo 5.8s ease-in-out -1.8s infinite; }

.hero-live-chip {
  position: absolute;
  z-index: 7;
  left: 16%;
  bottom: 9%;
  min-height: 36px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: rgba(30,29,26,.84);
  color: white;
  box-shadow: 0 14px 30px rgba(44, 27, 8, .18);
  backdrop-filter: blur(12px);
  font-size: 10px;
  transform: translateZ(82px) rotate(-3deg);
  animation: liveChipFloat 4.8s ease-in-out -1s infinite;
}

.hero-live-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58dc8f;
  box-shadow: 0 0 0 4px rgba(88,220,143,.16);
  animation: livePulse 1.7s ease-out infinite;
}

.hero-live-chip span { color: rgba(255,255,255,.72); }
.hero-live-chip strong { color: var(--yellow); }

.scene.is-tapped {
  animation: sceneTap .58s cubic-bezier(.18,.86,.25,1.18);
}

@keyframes heroAurora {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(3%, -3%, 0) scale(1.07); }
}
@keyframes gridBreathe {
  0%,100% { opacity: .32; background-position: 0 0, 0 0, 0 0; }
  50% { opacity: .52; background-position: 10px 8px, 10px 8px, 0 0; }
}
@keyframes ringTurn {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(369deg) translateZ(-50px); }
}
@keyframes ringTurnTwo {
  to { transform: translate(-50%, -50%) rotateY(68deg) rotateZ(342deg) translateZ(-20px); }
}
@keyframes particleDrift {
  0%,100% { transform: translate3d(0,0,0) scale(.85); opacity: .35; }
  50% { transform: translate3d(5px,-13px,30px) scale(1.2); opacity: .9; }
}
@keyframes orbitA {
  from { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(0); }
  to { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(360deg); }
}
@keyframes orbitB {
  from { transform: translate(-50%,-50%) rotateY(65deg) rotateZ(0); }
  to { transform: translate(-50%,-50%) rotateY(65deg) rotateZ(360deg); }
}
@keyframes orbitC {
  from { transform: translate(-50%,-50%) rotateX(58deg) rotateY(18deg) rotateZ(0); }
  to { transform: translate(-50%,-50%) rotateX(58deg) rotateY(18deg) rotateZ(360deg); }
}
@keyframes counterOrbitA { to { rotate: -360deg; } }
@keyframes counterOrbitB { to { rotate: -360deg; } }
@keyframes counterOrbitC { to { rotate: -360deg; } }
@keyframes cubeBob {
  0%,100% { translate: 0 0 30px; }
  50% { translate: 0 -8px 48px; }
}
@keyframes haloSpin { to { rotate: 360deg; } }
@keyframes steamRise {
  0% { transform: translate3d(0,14px,0) scale(.72); opacity: 0; }
  25% { opacity: .72; }
  100% { transform: translate3d(8px,-55px,30px) scale(1.35); opacity: 0; }
}
@keyframes ingredientDrop {
  0% { translate: 0 -46px; opacity: 0; }
  70% { translate: 0 5px; opacity: 1; }
  100% { translate: 0 0; opacity: 1; }
}
@keyframes plateEnter {
  from { opacity: 0; scale: .72; translate: 0 32px; }
  to { opacity: 1; scale: 1; translate: 0 0; }
}
@keyframes shadowPulse {
  0%,100% { scale: .92; opacity: .68; }
  50% { scale: 1.05; opacity: .42; }
}
@keyframes priceBob {
  0%,100% { transform: rotate(8deg) translate3d(0,0,70px); }
  50% { transform: rotate(4deg) translate3d(0,-9px,82px); }
}
@keyframes cardDriftOne {
  0%,100% { transform: translate3d(0,0,58px) rotate(-1deg); }
  50% { transform: translate3d(-5px,-10px,72px) rotate(1deg); }
}
@keyframes cardDriftTwo {
  0%,100% { transform: translate3d(0,0,58px) rotate(1deg); }
  50% { transform: translate3d(6px,-8px,76px) rotate(-1deg); }
}
@keyframes liveChipFloat {
  0%,100% { translate: 0 0 82px; }
  50% { translate: 0 -7px 94px; }
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(88,220,143,.48); }
  100% { box-shadow: 0 0 0 8px rgba(88,220,143,0); }
}
@keyframes sceneTap {
  0% { scale: 1; }
  45% { scale: .965; }
  100% { scale: 1; }
}

@media (max-width: 980px) {
  .hero::before {
    inset: 36% -14% 2% -14%;
  }
  .hero-visual {
    width: min(690px, 100%);
    margin-inline: auto;
  }
  .orbit-system {
    left: 6%;
    right: 6%;
  }
}

@media (max-width: 680px) {
  .hero-visual {
    min-height: 430px;
    contain: layout paint;
  }
  .hero-depth {
    inset: 2% -9% 0;
  }
  .hero-grid-plane {
    width: 112%;
    bottom: 1%;
    opacity: .3;
    background-size: 25px 25px, 25px 25px, 100% 100%;
  }
  .ring-one { width: 88%; }
  .ring-two { width: 60%; }
  .orbit-system {
    inset: 3% -2% 1%;
  }
  .orbit-a { width: 86%; }
  .orbit-b { width: 69%; }
  .orbit-c { width: 97%; }
  .orbit-object {
    top: -20px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 20px;
    backdrop-filter: blur(8px);
  }
  .orbit-object::before {
    top: 6px;
    right: -6px;
    width: 6px;
    height: 28px;
  }
  .orbit-object::after {
    left: 6px;
    bottom: -6px;
    width: 28px;
    height: 6px;
  }
  .orbit-c {
    display: none;
  }
  .scene-halo {
    inset: 14%;
  }
  .steam-trails {
    top: 19%;
    width: 28%;
  }
  .hero-live-chip {
    left: 7%;
    bottom: 6%;
    min-height: 31px;
    padding: 0 9px;
    font-size: 9px;
  }
  .hero-particles i:nth-child(2),
  .hero-particles i:nth-child(5) {
    display: none;
  }
  .floating-card,
  .hero-live-chip,
  .price-bubble {
    backdrop-filter: blur(8px);
  }
}

@media (max-width: 380px) {
  .hero-visual {
    min-height: 390px;
  }
  .orbit-b {
    width: 64%;
  }
  .hero-live-chip {
    left: 2%;
    bottom: 3%;
  }
  .scene-halo {
    inset: 16%;
  }
}

@media (max-width: 340px) {
  .orbit-system {
    opacity: .78;
  }
  .orbit-b,
  .hero-live-chip,
  .hero-particles {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-depth,
  .orbit-system {
    transition: none;
  }
  .orbit-object,
  .floating-card,
  .price-bubble,
  .hero-live-chip {
    -webkit-user-select: none;
    user-select: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .food-layer {
    translate: 0 0;
    opacity: 1;
  }
  .scene {
    transform: rotateX(7deg) rotateY(-8deg);
  }
  .hero-depth,
  .orbit-system {
    transform: none;
  }
}
