:root {
  color-scheme: dark;
  --bg: #0f1020;
  --panel: #1a1b28;
  --panel-2: #212233;
  --line: #2f3148;
  --accent: #6842ff;
  --accent-hi: #8c6dff;
  --text: #fff;
  --muted: #aaadbe;
  --secondary: #2a2b3d;
  --good: #3fd67a;
  --gold: #ffc930;
  --pink: #ff5a8a;
  font-family:
    "Nunito",
    ui-rounded,
    "SF Pro Rounded",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  min-width: 0;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}
body {
  padding: 8px 12px 12px;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  font-weight: 700;
}
[hidden] {
  display: none !important;
}
button {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 3px solid #b9a6ff;
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.ico {
  width: 22px;
  height: 22px;
  flex: none;
}
.ico.big {
  width: 38px;
  height: 38px;
}

.mm {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

/* ---------------- HUD ---------------- */
.mm-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.mm-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.mm-logo {
  width: 36px;
  height: 36px;
  flex: none;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.35));
}
.mm-brand h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2px;
  white-space: nowrap;
  background: linear-gradient(180deg, #fff 30%, #d8ccff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mm-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  padding: 0 11px 0 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a2b40, #1d1e2e);
  border: 1px solid #34365a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 3px 0 rgba(0, 0, 0, 0.3);
  font-weight: 900;
  font-size: 16px;
  min-width: 0;
  white-space: nowrap;
}
.chip strong {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.chip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
button.chip {
  cursor: pointer;
}
.chip-plus {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: -5px;
  border-radius: 50%;
  background: var(--good);
  color: #073b1b;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}
.chip.bump {
  animation: bump 0.35s ease-out;
}
@keyframes bump {
  40% {
    transform: scale(1.18);
  }
}
.chip-level {
  padding-left: 4px;
  gap: 6px;
}
.lvl-badge {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #b8a4ff, #6842ff 60%, #3b1bb3);
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 0 0 2px rgba(255, 255, 255, 0.15);
  font-weight: 900;
  font-size: 15px;
}
.xpbar {
  width: 54px;
  height: 10px;
  border-radius: 99px;
  background: #121322;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6);
}
.xpbar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(180deg, #7ff0a8, #22b863);
  transition: width 0.4s ease-out;
}
.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid #34365a;
  background: linear-gradient(180deg, #2f3048, #1f2031);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  padding: 0;
}
.icon-btn .ico {
  width: 22px;
  height: 22px;
}
.icon-btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}
.gift-btn .dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff3b5c;
  box-shadow: 0 0 0 2px var(--bg);
}
.gift-btn.ready {
  animation: wiggle 2.2s ease-in-out infinite;
}
@keyframes wiggle {
  0%,
  70%,
  100% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-12deg) scale(1.08);
  }
  85% {
    transform: rotate(12deg) scale(1.08);
  }
}

/* ---------------- layout ---------------- */
.mm-main {
  display: grid;
  grid-template-columns: minmax(0, 400px) auto;
  grid-template-areas:
    "room board"
    "task board"
    "orders board"
    "info board";
  grid-template-rows: auto auto auto 1fr;
  justify-content: center;
  gap: 10px 14px;
  min-width: 0;
}
.mm-room {
  grid-area: room;
}
.task-btn {
  grid-area: task;
}
.mm-orders-wrap {
  grid-area: orders;
  min-width: 0;
}
.mm-info {
  grid-area: info;
  align-self: start;
}
.mm-board {
  grid-area: board;
  min-width: 0;
}
.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ---------------- room ---------------- */
.mm-room {
  padding: 6px;
  width: min(100%, calc((100vh - 468px) * 16 / 9 + 12px));
  min-width: min(100%, 260px);
  justify-self: center;
}
.room-frame {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #2a2230;
}
#room {
  display: block;
  width: 100%;
  height: 100%;
}
.room-label {
  position: absolute;
  left: 8px;
  top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 16, 32, 0.72);
  backdrop-filter: blur(4px);
  font-size: 13px;
}
.room-label strong {
  font-weight: 900;
}
.room-label span {
  color: #ffe38a;
  font-weight: 900;
}
.room-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(15, 16, 32, 0.7);
  overflow: hidden;
}
.room-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ffd93b, #ff8a3d);
  border-radius: 99px;
  transition: width 0.8s cubic-bezier(0.2, 0.9, 0.2, 1.2);
}

.task-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "kicker cost"
    "name cost";
  align-items: center;
  text-align: left;
  gap: 0 10px;
  min-height: 52px;
  padding: 6px 8px 6px 16px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #3a3b55, #2a2b3d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 0 #17182a;
  cursor: pointer;
  transition:
    transform 0.12s,
    box-shadow 0.12s;
}
.task-btn .task-kicker {
  grid-area: kicker;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 900;
}
.task-btn .task-name {
  grid-area: name;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.15;
}
.task-btn .task-cost {
  grid-area: cost;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  font-weight: 900;
  font-size: 17px;
}
.task-btn.ready {
  background: linear-gradient(180deg, #8d6dff, #6842ff 55%, #5530e6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 0 #3a1ca8,
    0 0 22px rgba(104, 66, 255, 0.55);
  animation: glow 1.6s ease-in-out infinite;
}
.task-btn.ready .task-kicker {
  color: #ffe38a;
}
.task-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #17182a;
}
.task-btn.done {
  cursor: default;
}
@keyframes glow {
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      0 4px 0 #3a1ca8,
      0 0 34px rgba(140, 109, 255, 0.85);
  }
}

/* ---------------- orders ---------------- */
.mm-orders {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.order {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 8px 8px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff9ee, #f3e3c6);
  color: #3b2a1c;
  box-shadow:
    inset 0 -3px 0 rgba(120, 80, 30, 0.18),
    0 4px 0 rgba(0, 0, 0, 0.35);
  min-width: 0;
}
.order.enter {
  animation: order-in 0.45s cubic-bezier(0.2, 0.9, 0.25, 1.3);
}
@keyframes order-in {
  from {
    transform: translateY(12px) scale(0.85);
    opacity: 0;
  }
}
.order.nudge {
  animation: shake 0.35s;
}
.order-who {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.avatar {
  width: 26px;
  height: 26px;
  flex: none;
}
.order-who span {
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-items {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.oi {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(120, 80, 30, 0.1);
}
.oi img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.oi.have {
  background: rgba(63, 214, 122, 0.22);
}
.oi.have::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--good)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 8.5 2.6 2.5L12 5.5' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 13px no-repeat;
  box-shadow: 0 0 0 2px #fff9ee;
}
.order-reward {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}
.order-reward span {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.order-reward .ico {
  width: 16px;
  height: 16px;
}
.deliver {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  background: #e2d3b6;
  color: #8b7556;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}
.deliver.ready {
  background: linear-gradient(180deg, #6ff3a0, #27c265);
  color: #053a1a;
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.18),
    0 0 14px rgba(63, 214, 122, 0.6);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.05);
  }
}

/* ---------------- info + storage ---------------- */
.mm-info {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon text actions"
    "storage storage storage";
  align-items: center;
  gap: 6px 10px;
  padding: 8px 10px;
}
.info-icon {
  grid-area: icon;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 40%, #fff7e6, #ecd7b1);
  display: grid;
  place-items: center;
}
.info-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.info-text {
  grid-area: text;
  display: grid;
  gap: 1px;
  min-width: 0;
}
.info-text strong {
  font-weight: 900;
  font-size: 15px;
}
.info-text span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.info-chain {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.info-chain img,
.info-chain i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  object-fit: contain;
  opacity: 0.45;
}
.info-chain i {
  display: grid;
  place-items: center;
  background: #2a2b3d;
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
}
.info-chain .cur {
  opacity: 1;
  background: rgba(255, 201, 48, 0.25);
  outline: 2px solid var(--gold);
}
.info-chain img.seen {
  opacity: 1;
}
.info-actions {
  grid-area: actions;
  display: flex;
  gap: 6px;
}
.storage {
  grid-area: storage;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px dashed #3a3c5c;
}
.storage::before {
  content: "Storage";
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-right: 2px;
}
.slot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 2px dashed #4a4c70;
  background: #16172a;
  cursor: pointer;
}
.slot.full {
  border-style: solid;
  border-color: #6a5a3a;
  background: radial-gradient(circle at 50% 40%, #fff7e6, #ecd7b1);
}
.slot.hot {
  border-color: var(--good);
  box-shadow: 0 0 12px rgba(63, 214, 122, 0.6);
}
.slot img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.slot.add {
  color: var(--muted);
  font-size: 20px;
  font-weight: 900;
  border-color: #34365a;
}

/* ---------------- buttons ---------------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition:
    transform 0.12s,
    box-shadow 0.12s;
  white-space: nowrap;
}
.pill.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}
.pill.big {
  min-height: 58px;
  padding: 0 44px;
  font-size: 22px;
}
.pill-primary {
  background: linear-gradient(180deg, #8d6dff, #6842ff 55%, #5530e6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 0 #3a1ca8;
}
.pill-sec {
  background: linear-gradient(180deg, #34354c, #2a2b3d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 0 #17182a;
}
.pill-ghost {
  background: transparent;
  color: var(--muted);
}
.pill:active:not(:disabled) {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #17182a;
}
.pill:disabled {
  opacity: 0.45;
  cursor: default;
}
.pill.warn {
  background: linear-gradient(180deg, #ff7a8f, #e8364f);
  box-shadow: 0 4px 0 #8c1426;
}

/* ---------------- board ---------------- */
.board-wrap {
  position: relative;
  border-radius: 22px;
  padding: 8px;
  background: linear-gradient(180deg, #7a4e2c, #5a3519);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.18),
    inset 0 -4px 0 rgba(0, 0, 0, 0.25),
    0 10px 24px rgba(0, 0, 0, 0.45);
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  touch-action: none;
}
#board {
  display: block;
  border-radius: 14px;
  touch-action: none;
  cursor: pointer;
}
#board:focus-visible {
  outline: 3px solid #b9a6ff;
  outline-offset: 3px;
}
.board-wrap.shake {
  animation: shake 0.32s;
}
@keyframes shake {
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(2px);
  }
}
.board-wrap.thump {
  animation: thump 0.22s;
}
@keyframes thump {
  30% {
    transform: translateY(3px) scale(0.995);
  }
}
.hint-bubble {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  max-width: calc(100% - 24px);
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #2a1f4d;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hand {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  pointer-events: none;
  z-index: 30;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.45));
  transform-origin: 30% 10%;
}
.hand svg {
  width: 100%;
  height: 100%;
}

/* ---------------- toast ---------------- */
.toast {
  position: fixed;
  left: 50%;
  top: 64px;
  z-index: 40;
  transform: translate(-50%, -20px);
  opacity: 0;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8d6dff, #6842ff);
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.35s cubic-bezier(0.2, 0.9, 0.25, 1.3);
  white-space: nowrap;
  max-width: calc(100vw - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast.bad {
  background: linear-gradient(180deg, #ff7a8f, #e8364f);
}
.fly {
  position: fixed;
  z-index: 45;
  width: 26px;
  height: 26px;
  pointer-events: none;
}

/* ---------------- overlays ---------------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(10, 10, 24, 0.72);
  backdrop-filter: blur(3px);
}
.overlay[hidden] {
  display: none;
}
.overlay-card {
  position: relative;
  width: min(380px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 26px 22px 20px;
  border-radius: 26px;
  text-align: center;
  background: linear-gradient(180deg, #2b2c44, #1a1b28);
  border: 1px solid #3a3c5c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  animation: card-in 0.45s cubic-bezier(0.2, 0.9, 0.25, 1.25);
  overflow: hidden;
}
@keyframes card-in {
  from {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }
}
.overlay-card h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 35%, #ffd98a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.overlay-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}
.overlay-card .overlay-sub {
  color: #ffe38a;
  font-weight: 900;
}
.overlay-logo {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.3));
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  50% {
    transform: translateY(-6px) rotate(-3deg);
  }
}
.celebrate .burst {
  position: absolute;
  inset: -40%;
  z-index: -1;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 217, 59, 0.14) 0 12deg,
    transparent 12deg 24deg
  );
  animation: spin 14s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.over-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.over-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  font-weight: 900;
}
.shop {
  gap: 8px;
}
.shop-row {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  text-align: left;
}
.shop-row div {
  display: grid;
}
.shop-row span {
  color: var(--muted);
  font-size: 13px;
}

/* ---------------- responsive ---------------- */
@media (min-width: 720px) {
  .info-text span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 719px) {
  .mm-room {
    width: 100%;
  }
  body {
    padding: 6px 8px 12px;
  }
  .mm-main {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "orders"
      "board"
      "info"
      "task"
      "room";
    grid-template-rows: none;
  }
  .mm-brand h1 {
    display: none;
  }
  .xpbar {
    width: 34px;
  }
}
@media (max-width: 420px) {
  .mm-hud {
    gap: 4px;
  }
  .mm-logo {
    display: none;
  }
  .mm-chips {
    flex: 1;
    gap: 4px;
    justify-content: space-between;
  }
  .chip {
    padding: 0 8px 0 5px;
    font-size: 14px;
    gap: 3px;
    height: 36px;
  }
  .chip small {
    display: none;
  }
  .chip .ico {
    width: 18px;
    height: 18px;
  }
  .lvl-badge {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .xpbar {
    display: none;
  }
  .chip-plus {
    width: 16px;
    height: 16px;
    font-size: 13px;
  }
  .icon-btn {
    width: 40px;
    height: 40px;
  }
  .order {
    padding: 6px 5px;
  }
  .oi {
    width: 40px;
    height: 40px;
  }
  .oi img {
    width: 34px;
    height: 34px;
  }
  .order-items .oi:nth-child(2) {
    margin-left: -6px;
  }
}
@media (max-width: 350px) {
  .chip {
    padding: 0 6px 0 4px;
  }
  #sound-btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
