:root {
  --font: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #132236;
  --muted: #5b6f83;
  --sauce: #dc2626;
  --cheese: #facc15;
  --crust: #b45309;
  --shop: #0f766e;
  --sky: #b9edff;
  --rose: #fb7185;
  --progress: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #7c2d12;
  color: var(--ink);
  font-family: var(--font);
}

button {
  font: inherit;
  touch-action: manipulation;
}

.shop-app {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 11%, rgba(255, 255, 255, .86), transparent 14%),
    linear-gradient(180deg, #a7f3ff 0%, #dff7ff 34%, #fff7ed 58%, #fdba74 82%, #7c2d12 100%);
  isolation: isolate;
  user-select: none;
}

.asset-loader,
.game-overlay {
  position: absolute;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(124, 45, 18, .34), rgba(15, 118, 110, .56)),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.36), transparent 36%);
  backdrop-filter: blur(10px);
}

.shop-app.is-loading .asset-loader,
.game-overlay.is-visible {
  display: flex;
}

.rotate-overlay {
  position: absolute;
  inset: 0;
  z-index: 85;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,.86), transparent 22%),
    linear-gradient(145deg, rgba(124,45,18,.93), rgba(220,38,38,.9) 48%, rgba(15,118,110,.92));
  backdrop-filter: blur(12px);
}

.rotate-card {
  width: min(430px, 100%);
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 28px 76px rgba(87,35,12,.34);
  color: var(--ink);
  text-align: center;
}

.rotate-card::before {
  content: "";
  width: 82px;
  height: 54px;
  display: block;
  margin: 0 auto 14px;
  border: 8px solid #0f766e;
  border-radius: 16px;
  background:
    radial-gradient(circle at 74% 50%, #facc15 0 7px, transparent 8px),
    linear-gradient(90deg, #fff7ed, #fed7aa);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.72), 0 14px 28px rgba(15,118,110,.18);
  transform: rotate(90deg);
  animation: rotateCue 1.45s ease-in-out infinite;
}

.rotate-card strong {
  display: block;
  font-size: clamp(24px, 8vw, 36px);
  line-height: 1.05;
}

.rotate-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.asset-loader {
  z-index: 90;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.9), transparent 18%),
    radial-gradient(circle at 80% 24%, rgba(250,204,21,.42), transparent 24%),
    linear-gradient(135deg, #7c2d12 0%, #dc2626 45%, #0f766e 100%);
}

.loader-card,
.overlay-card {
  width: min(690px, 100%);
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 28px 86px rgba(87, 35, 12, .32);
  padding: clamp(20px, 5vw, 34px);
  text-align: center;
}

.brand-loader {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,237,.94));
}

.brand-loader::before {
  content: "";
  position: absolute;
  inset: -45% -18% auto;
  height: 140px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  transform: rotate(-8deg) translateX(-55%);
  animation: loaderSweep 2.2s ease-in-out infinite;
  pointer-events: none;
}

.loader-eyebrow,
.overlay-kicker,
.game-kicker,
.hud-item span,
.customer-label,
.track-label {
  color: #0f766e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.loader-eyebrow {
  margin: 0 0 12px;
}

.loader-brand {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: visible;
  white-space: nowrap;
  font-size: clamp(28px, 10vw, 58px);
  font-weight: 950;
  line-height: 1.04;
}

.loader-brand span {
  flex: 0 0 auto;
  display: inline-block;
  background: linear-gradient(135deg, #102033 0%, #0f766e 52%, #dc2626 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateX(-28px) translateY(8px) rotate(-5deg);
  animation: brandLetterIn .68s cubic-bezier(.18, .86, .25, 1.18) forwards;
  animation-delay: calc(var(--i) * .075s);
}

.loader-card p,
.overlay-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.loader-bar {
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #fde6c8;
}

.loader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e, #facc15, #dc2626);
  transition: width .25s ease;
}

.game-topbar {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 40px rgba(87, 35, 12, .16);
  backdrop-filter: blur(14px);
}

.game-title {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.game-title strong {
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(16px, 2.8vw, 23px);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hud {
  display: flex;
  gap: 8px;
}

.hud-item {
  min-width: 64px;
  padding: 7px 9px;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  text-align: center;
}

.hud-item strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.05;
}

.timer-hud {
  display: none;
}

.shop-app.is-timed .timer-hud {
  display: block;
}

.stage-wrap {
  position: absolute;
  inset: 0 0 116px;
  padding: 100px 18px 12px;
}

.stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 40%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.26), transparent 18%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.28),
    0 20px 52px rgba(87,35,12,.18);
}

.shop-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-backdrop span {
  position: absolute;
  pointer-events: none;
}

.shop-backdrop::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shop-backdrop::before {
  left: 5%;
  right: 5%;
  top: 11%;
  bottom: 10%;
  border: 1px solid rgba(124,45,18,.16);
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 24%, rgba(255,255,255,.16) 72%, transparent),
    linear-gradient(180deg, #fff7ed 0 64%, #fed7aa 65% 100%);
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.22),
    0 28px 54px rgba(87,35,12,.16);
}

.awning {
  left: 6%;
  right: 6%;
  top: 8%;
  height: 66px;
  border: 6px solid #7c2d12;
  border-radius: 24px 24px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 54%),
    repeating-linear-gradient(90deg, #dc2626 0 54px, #fff7ed 54px 108px);
  box-shadow: 0 16px 26px rgba(87,35,12,.18);
}

.sign {
  inset: 16% auto auto 50%;
  width: 148px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 6px solid #7c2d12;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 28%, rgba(255,255,255,.52), transparent 18%),
    linear-gradient(180deg, #fef08a, #facc15);
  color: #7c2d12;
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(87,35,12,.18);
  transform: translateX(-50%) rotate(-1deg);
}

.window {
  left: 10%;
  top: 31%;
  width: 128px;
  height: 96px;
  border: 8px solid #7c2d12;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.72), transparent 20%),
    linear-gradient(90deg, transparent 47%, rgba(124,45,18,.35) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(124,45,18,.35) 48% 52%, transparent 53%),
    linear-gradient(180deg, #dff7ff, #93c5fd);
  box-shadow: inset 0 -10px 0 rgba(15,118,110,.18), 0 12px 22px rgba(87,35,12,.12);
}

.window-two {
  left: auto;
  right: 8%;
}

.counter {
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 30%;
  border: 6px solid rgba(124,45,18,.48);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), transparent 32%),
    repeating-linear-gradient(90deg, rgba(124,45,18,.22) 0 20px, rgba(255,255,255,.18) 20px 40px),
    linear-gradient(180deg, #fb923c, #9a3412);
  box-shadow: inset 0 16px 0 rgba(255,247,237,.38);
}

.oven {
  right: 11%;
  bottom: 11%;
  width: 140px;
  height: 82px;
  border: 8px solid #7c2d12;
  border-radius: 26px 26px 10px 10px;
  background:
    radial-gradient(circle at 50% 72%, #facc15 0 20%, #dc2626 42%, #431407 43%),
    linear-gradient(180deg, #fed7aa, #fb923c);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.16), 0 12px 18px rgba(87,35,12,.16);
}

.coin {
  left: 22%;
  top: 68%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 0 4px rgba(255,255,255,.28), 0 10px 18px rgba(87,35,12,.18);
  animation: floatCoin 2.5s ease-in-out infinite;
}

.coin-two {
  left: 72%;
  top: 64%;
  animation-delay: .8s;
}

.heart-bar {
  position: absolute;
  top: 12px;
  right: max(12px, env(safe-area-inset-right));
  z-index: 25;
  display: flex;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 26px rgba(87,35,12,.14);
  backdrop-filter: blur(12px);
}

.heart {
  color: #f43f5e;
  font-size: 18px;
  line-height: 1;
  transition: opacity .25s ease, transform .25s ease;
}

.heart.is-lost {
  opacity: .24;
  transform: scale(.72);
  filter: grayscale(1);
}

.race-track {
  position: absolute;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: 12px;
  z-index: 22;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 28px rgba(87,35,12,.14);
  backdrop-filter: blur(12px);
}

.track-line {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: rgba(16,32,51,.12);
}

.track-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--progress) * 1%);
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e, #facc15, #dc2626);
  transition: width .45s ease;
}

.scooter {
  position: absolute;
  left: calc(var(--progress) * 1%);
  top: 50%;
  width: 46px;
  height: 30px;
  transform: translate(-50%, -50%);
  transition: left .45s ease;
}

.scooter::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 30px;
  height: 14px;
  border-radius: 12px 12px 8px 8px;
  background: #dc2626;
  box-shadow: inset 0 0 0 3px #fff7ed;
}

.scooter::after,
.scooter i {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border: 3px solid #132236;
  border-radius: 50%;
  background: #facc15;
}

.scooter::after {
  left: 6px;
}

.scooter i {
  right: 4px;
}

.play-layout {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(130px, .62fr) minmax(280px, 1.38fr);
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  padding: 22px 22px 58px 22px;
}

.chef-side {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.shop-people {
  position: relative;
  width: min(320px, 100%);
  height: clamp(250px, 34vw, 342px);
}

.chef-side::before {
  content: "";
  position: absolute;
  width: min(310px, 34vw);
  height: 76px;
  bottom: 13%;
  left: 50%;
  border: 6px solid rgba(124,45,18,.42);
  border-radius: 24px 24px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), transparent),
    repeating-linear-gradient(90deg, #f97316 0 24px, #fdba74 24px 48px);
  box-shadow: 0 18px 26px rgba(87,35,12,.18);
  transform: translateX(-50%);
}

.chef-bot {
  position: absolute;
  left: 3%;
  bottom: 8%;
  z-index: 4;
  width: clamp(132px, 18vw, 190px);
  height: clamp(170px, 23vw, 252px);
  filter: drop-shadow(0 18px 18px rgba(87,35,12,.18));
}

.chef-bot.is-happy {
  animation: chefHappy .72s ease;
}

.chef-bot.is-wrong {
  animation: chefWrong .42s ease;
}

.chef-hat {
  position: absolute;
  left: 22%;
  right: 22%;
  top: 0;
  height: 24%;
  border: 5px solid #132236;
  border-radius: 28px 28px 14px 14px;
  background:
    radial-gradient(circle at 20% 30%, #fff 0 20px, transparent 21px),
    radial-gradient(circle at 52% 12%, #fff 0 24px, transparent 25px),
    radial-gradient(circle at 82% 32%, #fff 0 20px, transparent 21px),
    #f8fafc;
}

.chef-ear {
  position: absolute;
  top: 24%;
  width: 30px;
  height: 34px;
  background: #f97316;
  border: 5px solid #132236;
  transform: rotate(45deg);
}

.chef-ear-left {
  left: 22%;
}

.chef-ear-right {
  right: 22%;
}

.chef-face {
  position: absolute;
  left: 20%;
  right: 20%;
  top: 25%;
  height: 35%;
  border: 6px solid #132236;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 38%, #38bdf8 0 7px, transparent 8px),
    radial-gradient(circle at 70% 38%, #38bdf8 0 7px, transparent 8px),
    linear-gradient(180deg, #fff7ed, #fed7aa);
}

.chef-face i {
  position: absolute;
  top: 37%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #132236;
}

.chef-face i:first-child {
  left: 29%;
}

.chef-face i:nth-child(2) {
  right: 29%;
}

.chef-face b {
  position: absolute;
  left: 40%;
  right: 40%;
  bottom: 24%;
  height: 10px;
  border-bottom: 5px solid #dc2626;
  border-radius: 0 0 999px 999px;
}

.chef-body {
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 0;
  height: 45%;
  border: 6px solid #132236;
  border-radius: 26px 26px 14px 14px;
  background:
    radial-gradient(circle at 50% 34%, #facc15 0 18px, transparent 19px),
    linear-gradient(180deg, #e0f2fe, #0f766e);
}

.chef-arm {
  position: absolute;
  top: 61%;
  width: 54px;
  height: 16px;
  border: 5px solid #132236;
  border-radius: 999px;
  background: #e0f2fe;
  transform-origin: 12px 50%;
}

.chef-arm-left {
  left: 12%;
  transform: rotate(38deg);
}

.chef-arm-right {
  right: 4%;
  z-index: 8;
  transform: rotate(-12deg);
}

.chef-side.is-serving .chef-arm-right {
  animation: chefServeArm .72s ease;
}

.handoff-pizza {
  position: absolute;
  left: 42%;
  top: 50%;
  z-index: 9;
  width: 52px;
  height: 52px;
  opacity: 0;
  pointer-events: none;
}

.handoff-pizza span {
  display: block;
  width: 52px;
  height: 52px;
  border: 5px solid #7c2d12;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, #b91c1c 0 4px, transparent 5px),
    radial-gradient(circle at 63% 58%, #15803d 0 4px, transparent 5px),
    conic-gradient(#facc15 0 25%, #fde68a 25% 50%, #facc15 50% 75%, #fde68a 75%);
  box-shadow: 0 10px 20px rgba(87,35,12,.22);
}

.chef-side.is-serving .handoff-pizza {
  animation: handoffPizza .92s cubic-bezier(.2,.7,.2,1) forwards;
}

.customer {
  position: absolute;
  right: 5%;
  bottom: 9%;
  z-index: 5;
  width: 92px;
  height: 156px;
  filter: drop-shadow(0 16px 16px rgba(87,35,12,.18));
  transform-origin: 50% 100%;
}

.customer-head {
  position: absolute;
  left: 17px;
  top: 0;
  width: 58px;
  height: 58px;
  border: 5px solid #132236;
  border-radius: 50%;
  background: #fed7aa;
  overflow: hidden;
}

.customer-hair {
  position: absolute;
  left: 14px;
  top: -4px;
  z-index: 2;
  width: 64px;
  height: 30px;
  border-radius: 28px 28px 12px 12px;
  background: #7c2d12;
}

.customer-face {
  position: absolute;
  left: 11px;
  top: 18px;
  width: 34px;
  height: 16px;
  background:
    radial-gradient(circle at 7px 7px, #132236 0 3.5px, transparent 4.5px),
    radial-gradient(circle at 27px 7px, #132236 0 3.5px, transparent 4.5px);
}

.customer-smile {
  position: absolute;
  left: 17px;
  top: 35px;
  width: 24px;
  height: 14px;
  border-bottom: 5px solid #132236;
  border-radius: 0 0 999px 999px;
}

.customer-body {
  position: absolute;
  left: 22px;
  top: 54px;
  width: 48px;
  height: 62px;
  border: 5px solid #132236;
  border-radius: 20px 20px 14px 14px;
  background: linear-gradient(180deg, #fb7185, #e11d48);
}

.customer-arm {
  position: absolute;
  top: 70px;
  width: 34px;
  height: 13px;
  border: 4px solid #132236;
  border-radius: 999px;
  background: #fed7aa;
}

.customer-arm-left {
  left: 2px;
  transform: rotate(34deg);
}

.customer-arm-right {
  right: 2px;
  transform: rotate(-34deg);
}

.customer-leg {
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 45px;
  border: 4px solid #132236;
  border-radius: 999px;
  background: #0f766e;
  transform-origin: 50% 0;
}

.customer-leg-left {
  left: 28px;
}

.customer-leg-right {
  right: 27px;
}

.customer-pizza-box {
  position: absolute;
  left: 24px;
  top: 78px;
  z-index: 3;
  width: 52px;
  height: 30px;
  border: 4px solid #7c2d12;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(124,45,18,.22) 48% 52%, transparent 53%),
    #fff7ed;
  opacity: 0;
  transform: translateY(6px) rotate(-6deg);
}

.customer.is-happy .customer-pizza-box {
  opacity: 1;
}

.customer.is-happy {
  animation: customerHappy .7s ease;
}

.customer.is-walking {
  animation: customerWalkAway 1.25s ease-in forwards;
}

.customer.is-walking .customer-leg-left {
  animation: walkLegLeft .35s ease-in-out infinite alternate;
}

.customer.is-walking .customer-leg-right {
  animation: walkLegRight .35s ease-in-out infinite alternate;
}

.customer.is-sad .customer-smile {
  top: 42px;
  border-bottom: 0;
  border-top: 5px solid #132236;
  border-radius: 999px 999px 0 0;
}

.customer.is-sad .customer-head {
  background: #fecaca;
}

.dropped-box {
  position: absolute;
  left: 48%;
  bottom: 12%;
  z-index: 8;
  width: 64px;
  height: 42px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-34px) rotate(-12deg);
}

.dropped-box span {
  display: block;
  width: 64px;
  height: 42px;
  border: 5px solid #7c2d12;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 56%, #dc2626 0 5px, transparent 6px),
    radial-gradient(circle at 58% 42%, #15803d 0 4px, transparent 5px),
    linear-gradient(135deg, #fff7ed 0 48%, #fed7aa 49% 100%);
  box-shadow: 0 12px 18px rgba(87,35,12,.2);
}

.chef-side.is-dropped .dropped-box {
  animation: droppedBox .72s ease-out forwards;
}

.order-card {
  min-width: 0;
  max-width: 760px;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: clamp(12px, 2.6vw, 18px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 26px 70px rgba(87,35,12,.22);
  text-align: center;
}

.speech-bubble {
  position: relative;
  width: min(560px, 100%);
  padding: 9px 12px;
  border: 3px solid rgba(19,34,54,.12);
  border-radius: 16px;
  background: #fff7ed;
}

.speech-bubble strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: clamp(18px, 3.2vw, 28px);
  line-height: 1.12;
}

.pizza-zone {
  width: 100%;
  min-height: clamp(136px, 28svh, 182px);
  display: grid;
  place-items: center;
}

.pizza-board {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.pizza-row,
.pizza-compare {
  width: min(620px, 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pizza-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 170px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 0 0 1px rgba(19,34,54,.1);
  font-weight: 950;
}

.pizza-svg {
  width: min(180px, 42vw, 32svh);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 18px 22px rgba(87,35,12,.18));
}

.pizza-shadow {
  fill: rgba(87,35,12,.2);
}

.pizza-plate {
  fill: #f8fafc;
  stroke: rgba(19,34,54,.18);
  stroke-width: 5;
}

.pizza-crust {
  fill: #b45309;
}

.pizza-sauce {
  fill: #dc2626;
}

.pizza-slice {
  fill: #fde68a;
  stroke: #7c2d12;
  stroke-width: 2.4;
  cursor: pointer;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.pizza-slice.is-topped {
  fill: #facc15;
  filter: drop-shadow(0 0 8px rgba(250,204,21,.75));
}

.pizza-slice.is-selectable:hover {
  filter: brightness(1.05);
}

.topping {
  pointer-events: none;
}

.topping-pepperoni circle {
  fill: #b91c1c;
  stroke: #7f1d1d;
  stroke-width: 1.5;
}

.topping-pepperoni .shine {
  fill: rgba(255,255,255,.45);
  stroke: none;
}

.topping-veggie path {
  fill: none;
  stroke: #16a34a;
  stroke-width: 5;
  stroke-linecap: round;
}

.topping-veggie .olive {
  fill: #334155;
  stroke: #15803d;
  stroke-width: 2;
}

.topping-veggie .olive-hole {
  fill: #fde68a;
  stroke: none;
}

.topping-veggie .pepper {
  fill: #22c55e;
  stroke: #166534;
  stroke-width: 1.5;
}

.topping-cheese path,
.topping-cheese circle {
  fill: #fff7ad;
  stroke: #f59e0b;
  stroke-width: 1.4;
}

.topping-cheese .melt {
  fill: #fde68a;
}

.pizza-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

#promptText {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 3.4vw, 32px);
  line-height: 1.08;
}

#detailText {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 800;
  line-height: 1.3;
}

.shop-app[data-layout="make"] .order-card,
.shop-app[data-mode="race"] .order-card,
.shop-app.is-timed .order-card,
.shop-app[data-layout="compare"] .order-card,
.shop-app[data-layout="equivalent"] .order-card {
  gap: 7px;
  padding: clamp(10px, 2.2vw, 16px);
}

.shop-app[data-layout="make"] .speech-bubble,
.shop-app[data-mode="race"] .speech-bubble,
.shop-app.is-timed .speech-bubble,
.shop-app[data-layout="compare"] .speech-bubble,
.shop-app[data-layout="equivalent"] .speech-bubble {
  padding: 8px 11px;
}

.shop-app[data-layout="make"] .speech-bubble strong,
.shop-app[data-mode="race"] .speech-bubble strong,
.shop-app.is-timed .speech-bubble strong,
.shop-app[data-layout="compare"] .speech-bubble strong,
.shop-app[data-layout="equivalent"] .speech-bubble strong {
  font-size: clamp(17px, 3vw, 26px);
  line-height: 1.14;
}

.shop-app[data-layout="make"] .pizza-zone,
.shop-app[data-mode="race"] .pizza-zone,
.shop-app.is-timed .pizza-zone,
.shop-app[data-layout="compare"] .pizza-zone,
.shop-app[data-layout="equivalent"] .pizza-zone {
  min-height: clamp(126px, 25svh, 166px);
}

.shop-app[data-layout="make"] .pizza-svg,
.shop-app[data-mode="race"] .pizza-svg,
.shop-app.is-timed .pizza-svg {
  width: min(168px, 38vw, 29svh);
}

.shop-app[data-layout="compare"] .pizza-svg {
  width: min(154px, 28vw, 27svh);
}

.shop-app[data-layout="equivalent"] .pizza-svg {
  width: min(164px, 32vw, 28svh);
}

.shop-app[data-layout="make"] #promptText,
.shop-app[data-mode="race"] #promptText,
.shop-app.is-timed #promptText,
.shop-app[data-layout="compare"] #promptText,
.shop-app[data-layout="equivalent"] #promptText {
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.08;
}

.shop-app[data-layout="make"] #detailText,
.shop-app[data-mode="race"] #detailText,
.shop-app.is-timed #detailText,
.shop-app[data-layout="compare"] #detailText,
.shop-app[data-layout="equivalent"] #detailText {
  min-height: 18px;
  font-size: clamp(12px, 1.8vw, 15px);
  line-height: 1.3;
}

.answer-dock {
  position: absolute;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 32;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(87,35,12,.22);
  backdrop-filter: blur(14px);
}

.answer-dock.is-make {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.answer-button,
.shop-action {
  min-height: 62px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff7ed);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(19,34,54,.1), 0 8px 0 rgba(19,34,54,.16);
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 950;
  line-height: 1.08;
  padding: 8px 10px;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.answer-button small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.answer-button:active,
.shop-action:active {
  transform: translateY(4px);
  box-shadow: inset 0 0 0 1px rgba(19,34,54,.1), 0 4px 0 rgba(19,34,54,.16);
}

.answer-button.correct,
.shop-action.primary {
  background: linear-gradient(180deg, #dcfce7, #86efac);
}

.answer-button.wrong {
  background: linear-gradient(180deg, #fee2e2, #fca5a5);
}

.shop-action.primary {
  color: #064e3b;
}

.shop-action.secondary {
  background: linear-gradient(180deg, #fff, #e0f2fe);
}

.feedback {
  position: absolute;
  left: 50%;
  top: 18%;
  z-index: 40;
  min-width: 150px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(19,34,54,.9);
  color: #fff;
  box-shadow: 0 18px 44px rgba(87,35,12,.22);
  font-size: clamp(19px, 4vw, 32px);
  font-weight: 950;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px) scale(.9);
}

.feedback.show {
  animation: feedback .85s ease;
}

.overlay-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.05;
}

.shop-mark {
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #dc2626, #facc15);
  box-shadow: 0 14px 30px rgba(87,35,12,.16);
}

.shop-mark span {
  width: 52px;
  height: 52px;
  border: 5px solid #7c2d12;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 36%, #b91c1c 0 5px, transparent 6px),
    radial-gradient(circle at 64% 48%, #b91c1c 0 5px, transparent 6px),
    conic-gradient(#facc15 0 25%, #fde68a 25% 50%, #facc15 50% 75%, #fde68a 75%);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.mode-card {
  min-height: 144px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff7ed);
  color: var(--ink);
  box-shadow: inset 0 -5px 0 rgba(19,34,54,.08), 0 14px 26px rgba(87,35,12,.12);
  cursor: pointer;
}

.mode-card.boss {
  background: linear-gradient(180deg, #fff, #fee2e2);
}

.mode-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dc2626, #f97316);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.mode-card strong {
  font-size: 16px;
  line-height: 1.1;
}

.mode-card span:last-child {
  width: min(150px, 100%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
}

.overlay-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.action-button {
  min-width: 132px;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--shop);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
}

.action-button.secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(19,34,54,.13);
}

@keyframes brandLetterIn {
  0% { opacity: 0; transform: translateX(-28px) translateY(8px) rotate(-5deg); }
  68% { opacity: 1; transform: translateX(3px) translateY(0) rotate(1deg); }
  100% { opacity: 1; transform: translateX(0) translateY(0) rotate(0); }
}

@keyframes loaderSweep {
  0%, 18% { transform: rotate(-8deg) translateX(-62%); }
  62%, 100% { transform: rotate(-8deg) translateX(62%); }
}

@keyframes rotateCue {
  0%, 100% { transform: rotate(90deg); }
  48% { transform: rotate(0deg); }
}

@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(12deg); }
}

@keyframes chefHappy {
  0%, 100% { transform: translateY(0) rotate(0); }
  44% { transform: translateY(-18px) rotate(-4deg); }
  72% { transform: translateY(-6px) rotate(3deg); }
}

@keyframes chefWrong {
  20% { transform: translateX(-8px) rotate(-4deg); }
  50% { transform: translateX(8px) rotate(4deg); }
  75% { transform: translateX(-4px) rotate(-2deg); }
}

@keyframes chefServeArm {
  0%, 100% { transform: rotate(-12deg); }
  48% { transform: rotate(-34deg) translateX(8px); }
}

@keyframes handoffPizza {
  0% { opacity: 0; transform: translate(-18px, 18px) scale(.7) rotate(-16deg); }
  18% { opacity: 1; }
  72% { opacity: 1; transform: translate(58px, 2px) scale(1) rotate(8deg); }
  100% { opacity: 0; transform: translate(86px, -4px) scale(.8) rotate(10deg); }
}

@keyframes customerHappy {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-10px) scale(1.04); }
}

@keyframes customerWalkAway {
  0% { transform: translateX(0) translateY(0); opacity: 1; }
  28% { transform: translateX(8px) translateY(-7px); opacity: 1; }
  100% { transform: translateX(220px) translateY(-2px); opacity: 0; }
}

@keyframes walkLegLeft {
  from { transform: rotate(20deg); }
  to { transform: rotate(-18deg); }
}

@keyframes walkLegRight {
  from { transform: rotate(-18deg); }
  to { transform: rotate(20deg); }
}

@keyframes droppedBox {
  0% { opacity: 0; transform: translateY(-38px) rotate(-18deg) scale(.8); }
  22% { opacity: 1; }
  62% { opacity: 1; transform: translateY(8px) rotate(10deg) scale(1); }
  100% { opacity: 1; transform: translateY(0) rotate(-4deg) scale(1); }
}

@keyframes feedback {
  0% { opacity: 0; transform: translate(-50%, 12px) scale(.9); }
  18%, 72% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -14px) scale(.95); }
}

@media (max-width: 900px) {
  .mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mode-card.boss {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .shop-app {
    min-height: 0;
  }

  .stage-wrap {
    inset-bottom: 116px;
    padding: 88px 10px 8px;
  }

  .play-layout {
    grid-template-columns: minmax(116px, .62fr) minmax(246px, 1.38fr);
    align-content: center;
    gap: 8px;
    padding: 10px 8px 54px;
  }

  .shop-people {
    width: min(250px, 100%);
    height: 242px;
    transform: scale(.82);
    transform-origin: center bottom;
  }

  .chef-side::before {
    width: min(242px, 34vw);
    height: 58px;
    bottom: 15%;
  }

  .order-card {
    gap: 6px;
    padding: 10px 8px;
  }

  .speech-bubble {
    padding: 7px 9px;
  }

  .speech-bubble strong {
    font-size: clamp(16px, 3vw, 22px);
  }

  .pizza-zone {
    min-height: 136px;
  }

  .pizza-svg {
    width: min(148px, 36vw, 28svh);
  }

  .pizza-card {
    min-width: 120px;
    padding: 7px;
  }

  #promptText {
    font-size: clamp(17px, 3.2vw, 24px);
  }

  #detailText {
    min-height: 16px;
    font-size: 12px;
    line-height: 1.22;
  }

  .heart-bar {
    top: 8px;
    right: 8px;
    padding: 5px 7px;
  }

  .heart {
    font-size: 15px;
  }

  .race-track {
    bottom: 8px;
    gap: 7px;
  }

  .track-label {
    display: none;
  }

  .answer-dock,
  .answer-dock.is-make {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 9px;
  }

  .answer-button,
  .shop-action {
    min-height: 54px;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .shop-app:not(.is-loading) .rotate-overlay {
    display: flex;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .shop-app {
    min-height: 0;
  }

  .game-topbar {
    top: max(8px, env(safe-area-inset-top));
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    min-height: 50px;
    padding: 6px 8px;
  }

  .game-kicker {
    display: none;
  }

  .hud-item {
    min-width: 54px;
    padding: 5px 6px;
  }

  .hud-item span {
    font-size: 9px;
  }

  .hud-item strong {
    font-size: 14px;
  }

  .stage-wrap {
    inset: 0 0 82px;
    padding: 64px 8px 6px;
  }

  .play-layout {
    grid-template-columns: minmax(96px, .52fr) minmax(220px, 1.48fr);
    gap: 8px;
    padding: 8px 8px 44px;
  }

  .shop-people {
    width: min(274px, 100%);
    height: 224px;
    transform: scale(.78);
    transform-origin: center bottom;
  }

  .chef-side::before {
    width: min(248px, 28vw);
    height: 52px;
    bottom: 13%;
  }

  .order-card {
    gap: 6px;
    padding: 10px;
  }

  .speech-bubble {
    padding: 8px 10px;
  }

  .speech-bubble strong {
    font-size: clamp(18px, 3vw, 24px);
  }

  .pizza-zone {
    min-height: 104px;
  }

  .pizza-svg {
    width: min(116px, 18vw, 27svh);
  }

  .pizza-card {
    min-width: 118px;
    padding: 7px;
  }

  #promptText {
    font-size: clamp(18px, 3vw, 24px);
  }

  #detailText {
    display: none;
  }

  .heart-bar {
    top: 6px;
    right: 6px;
  }

  .race-track {
    bottom: 6px;
    gap: 6px;
  }

  .answer-dock,
  .answer-dock.is-make {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .answer-button,
  .shop-action {
    min-height: 44px;
    padding: 6px 8px;
    font-size: clamp(15px, 2.6vw, 20px);
  }

  .shop-app[data-layout="make"] .order-card,
  .shop-app[data-mode="race"] .order-card,
  .shop-app.is-timed .order-card,
  .shop-app[data-layout="compare"] .order-card,
  .shop-app[data-layout="equivalent"] .order-card {
    gap: 5px;
    padding: 8px;
  }

  .shop-app[data-layout="make"] .speech-bubble,
  .shop-app[data-mode="race"] .speech-bubble,
  .shop-app.is-timed .speech-bubble,
  .shop-app[data-layout="compare"] .speech-bubble,
  .shop-app[data-layout="equivalent"] .speech-bubble {
    padding: 6px 8px;
  }

  .shop-app[data-layout="make"] .speech-bubble strong,
  .shop-app[data-mode="race"] .speech-bubble strong,
  .shop-app.is-timed .speech-bubble strong,
  .shop-app[data-layout="compare"] .speech-bubble strong,
  .shop-app[data-layout="equivalent"] .speech-bubble strong {
    font-size: clamp(16px, 2.5vw, 20px);
  }

  .shop-app[data-layout="make"] .pizza-zone,
  .shop-app[data-mode="race"] .pizza-zone,
  .shop-app.is-timed .pizza-zone,
  .shop-app[data-layout="compare"] .pizza-zone,
  .shop-app[data-layout="equivalent"] .pizza-zone {
    min-height: 104px;
  }

  .shop-app[data-layout="compare"] .pizza-compare {
    gap: 7px;
  }

  .shop-app[data-layout="make"] .pizza-svg,
  .shop-app[data-mode="race"] .pizza-svg,
  .shop-app.is-timed .pizza-svg,
  .shop-app[data-layout="compare"] .pizza-svg,
  .shop-app[data-layout="equivalent"] .pizza-svg {
    width: min(112px, 18vw);
  }

  .shop-app[data-layout="make"] #promptText,
  .shop-app[data-mode="race"] #promptText,
  .shop-app.is-timed #promptText,
  .shop-app[data-layout="compare"] #promptText,
  .shop-app[data-layout="equivalent"] #promptText {
    font-size: clamp(16px, 2.5vw, 20px);
  }

  .shop-app[data-layout="make"] #detailText,
  .shop-app[data-mode="race"] #detailText,
  .shop-app.is-timed #detailText,
  .shop-app[data-layout="compare"] #detailText,
  .shop-app[data-layout="equivalent"] #detailText {
    display: none;
  }
}

@media (max-width: 430px) and (orientation: portrait) {
  .loader-card,
  .overlay-card {
    padding-inline: 12px;
  }

  .loader-brand {
    font-size: clamp(24px, 9.6vw, 34px);
  }

  .game-topbar {
    min-height: 62px;
    gap: 7px;
  }

  .hud {
    gap: 5px;
  }

  .hud-item {
    min-width: 52px;
    padding: 6px 6px;
  }

  .hud-item span {
    font-size: 9px;
  }

  .hud-item strong {
    font-size: 14px;
  }

  .pizza-compare {
    gap: 8px;
  }

  .pizza-svg {
    width: min(148px, 44vw);
  }

  .pizza-card {
    min-width: 126px;
  }

  .mode-grid {
    grid-template-columns: 1fr;
  }

  .mode-card.boss {
    grid-column: auto;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .game-overlay {
    align-items: stretch !important;
    justify-content: center !important;
    padding: 2px max(42px, env(safe-area-inset-right)) 2px max(2px, env(safe-area-inset-left)) !important;
    overflow: hidden !important;
  }

  .game-overlay.is-visible {
    display: flex !important;
  }

  .overlay-card {
    align-self: stretch !important;
    width: min(760px, calc(100vw - 48px)) !important;
    max-height: calc(100dvh - 4px) !important;
    overflow-y: auto !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
  }

  .menu-card {
    display: grid !important;
    align-content: start !important;
    gap: 8px !important;
  }

  .overlay-kicker {
    margin: 0 0 2px !important;
    font-size: 9px !important;
  }

  .overlay-card h2 {
    margin: 0 !important;
    font-size: clamp(26px, 9vh, 42px) !important;
    line-height: .95 !important;
  }

  .menu-card > p {
    display: none !important;
  }

  .mode-grid,
  .mode-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr)) !important;
    gap: 6px !important;
  }

  .mode-card,
  .mode-card.boss,
  .big-card {
    grid-column: auto !important;
    min-height: 86px !important;
    padding: 7px 6px !important;
    border-radius: 10px !important;
  }

  .mode-icon {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto 4px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
  }

  .mode-card strong {
    font-size: clamp(13px, 3.8vh, 17px) !important;
    line-height: 1.08 !important;
  }

  .mode-card span:last-child {
    margin-top: 2px !important;
    font-size: 10px !important;
    line-height: 1.12 !important;
  }

  .overlay-actions {
    margin-top: 8px !important;
    gap: 8px !important;
  }

  .action-button,
  .shop-action {
    min-height: 36px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
  }
}

/* Short landscape: keep the prompt above the delivery track instead of under it. */
@media (max-height: 520px) and (orientation: landscape) {
  .stage-wrap {
    inset: 0 0 80px !important;
    padding: 58px 8px 6px !important;
  }

  .play-layout {
    align-items: stretch !important;
    padding: 6px 8px 58px !important;
  }

  .order-card {
    align-self: stretch !important;
    grid-template-rows: auto auto minmax(0, 1fr) !important;
    align-content: start !important;
    gap: 4px !important;
    overflow: hidden !important;
    padding: 7px 8px !important;
  }

  .speech-bubble {
    order: 1 !important;
    padding: 5px 8px !important;
  }

  .speech-bubble strong {
    font-size: clamp(15px, 2.35vw, 19px) !important;
    line-height: 1.05 !important;
  }

  #promptText {
    order: 2 !important;
    align-self: start !important;
    font-size: clamp(15px, 2.3vw, 19px) !important;
    line-height: 1.08 !important;
    margin: 0 !important;
  }

  .pizza-zone {
    order: 3 !important;
    min-height: 0 !important;
    align-self: stretch !important;
    place-items: start center !important;
    overflow: hidden !important;
  }

  .shop-app[data-layout="make"] .pizza-zone,
  .shop-app[data-mode="race"] .pizza-zone,
  .shop-app.is-timed .pizza-zone,
  .shop-app[data-layout="compare"] .pizza-zone,
  .shop-app[data-layout="equivalent"] .pizza-zone {
    min-height: 0 !important;
  }

  .shop-app[data-layout="make"] #promptText,
  .shop-app[data-mode="race"] #promptText,
  .shop-app.is-timed #promptText,
  .shop-app[data-layout="compare"] #promptText,
  .shop-app[data-layout="equivalent"] #promptText {
    font-size: clamp(15px, 2.3vw, 19px) !important;
    line-height: 1.08 !important;
  }

  .pizza-svg,
  .shop-app[data-layout="make"] .pizza-svg,
  .shop-app[data-mode="race"] .pizza-svg,
  .shop-app.is-timed .pizza-svg,
  .shop-app[data-layout="compare"] .pizza-svg,
  .shop-app[data-layout="equivalent"] .pizza-svg {
    width: min(108px, 16vw, 25svh) !important;
  }

  .pizza-card {
    min-width: 108px !important;
    padding: 5px !important;
  }

  .pizza-label {
    font-size: 11px !important;
  }

  .race-track {
    bottom: 4px !important;
    padding: 5px 8px !important;
    gap: 7px !important;
  }

  .track-line {
    height: 10px !important;
  }

  .scooter {
    width: 38px !important;
    height: 25px !important;
  }

  #progressValue {
    font-size: 18px !important;
  }
}
