* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #00d3e6;
  font-family: Georgia, "Times New Roman", serif;
}

.app {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 0;
}

.screen {
  display: none;
  width: 100%;
}

.screen.active {
  display: grid;
  place-items: start center;
}

.artboard {
  position: relative;
  width: min(100vw, 1246px);
  margin: 0 auto;
  background: white;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
}

.artboard > img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  border-radius: 10px;
}

.hotspot:hover,
.hotspot:focus-visible {
  outline: 4px solid rgba(255, 230, 0, .95);
  background: rgba(255, 255, 255, .08);
}

.start-ordering {
  left: 30.5%;
  top: 73.2%;
  width: 28%;
  height: 21.8%;
}

.vip-card {
  left: 31.5%;
  top: 51.3%;
  width: 29.5%;
  height: 18.5%;
}

.go-back-menu {
  left: 0%;
  top: 28.6%;
  width: 10.5%;
  height: 4.6%;
}

.next-page {
  left: 81.5%;
  top: 71.5%;
  width: 17.4%;
  height: 6.3%;
}

.basket-link {
  left: 72%;
  top: 78.5%;
  width: 18%;
  height: 15.8%;
}

.sale-wheel {
  left: 67.3%;
  top: 36.2%;
  width: 23.3%;
  height: 21.4%;
}

.item {
  left: 4%;
  width: 56.5%;
  height: 4.1%;
}

.banana { top: 45.7%; }
.water { top: 50.4%; }
.bread { top: 54.6%; }
.milk { top: 58.6%; }
.salad { top: 62.6%; }
.coffee { top: 66.6%; }
.feast { top: 70.4%; }

.go-back-music {
  left: 0%;
  top: 25%;
  width: 18.8%;
  height: 5.5%;
}

.song {
  height: 2.2%;
}

.p1 { left: 23%; top: 45.5%; width: 18%; }
.p2 { left: 22.5%; top: 48.8%; width: 23.5%; }
.p3 { left: 22.2%; top: 54.5%; width: 22%; }
.p4 { left: 20.7%; top: 59%; width: 25%; height: 5.5%; }

.s1 { left: 49.4%; top: 43.5%; width: 17%; }
.s2 { left: 48.7%; top: 47.2%; width: 14%; }
.s3 { left: 48.7%; top: 50.3%; width: 15%; }
.s4 { left: 48.7%; top: 53.6%; width: 18%; }
.s5 { left: 48.7%; top: 56.9%; width: 18%; }
.s6 { left: 48.7%; top: 60%; width: 18%; }
.s7 { left: 48.7%; top: 63.2%; width: 15%; }
.s8 { left: 48.7%; top: 66.3%; width: 17%; }
.s9 { left: 48.7%; top: 69.5%; width: 20%; }
.s10 { left: 48.7%; top: 72.5%; width: 11%; }
.s11 { left: 45.8%; top: 75.7%; width: 25%; }
.s12 { left: 48.7%; top: 78.8%; width: 19%; }
.s13 { left: 45.5%; top: 82%; width: 25%; }
.s14 { left: 48.7%; top: 85.1%; width: 15%; }
.s15 { left: 48.7%; top: 88.2%; width: 15%; }

.toast,
.now-playing {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(20, 20, 20, .86);
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.toast {
  bottom: 2.5%;
}

.now-playing {
  bottom: 2.2%;
}

.toast.show,
.now-playing.show {
  opacity: 1;
}

.basket-board > img {
  filter: blur(2px) saturate(1.05);
}

.basket-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 240, 250, .42);
}

.basket-overlay {
  position: absolute;
  z-index: 2;
  inset: 7% 12%;
  padding: clamp(18px, 3vw, 42px);
  background:
    linear-gradient(120deg, rgba(255, 186, 209, .94), rgba(255, 233, 122, .94));
  border: 6px solid rgba(255,255,255,.72);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: auto;
}

.basket-overlay h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  font-family: "Times New Roman", Georgia, serif;
}

.basket-overlay h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 400;
}

.basket-items {
  display: grid;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.basket-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,.74);
  border-radius: 14px;
}

.basket-row button,
.basket-actions button {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: #111;
  color: #e4d2ff;
  font-weight: 700;
  cursor: pointer;
}

.basket-row .remove {
  background: #dd2e6f;
  color: white;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 3px solid rgba(0,0,0,.2);
  font-family: Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
}

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

.checkout-message {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .artboard {
    width: 100vw;
    box-shadow: none;
  }

  .basket-overlay {
    inset: 4% 4%;
  }

  .basket-row {
    grid-template-columns: 1fr auto auto auto;
  }

  .basket-row .line-total {
    grid-column: 1 / -1;
  }
}
