:root {
  --ink: #203c36;
  --muted: #6f7d78;
  --line: #e8e6df;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --mint: #ff6b4a;
  --mint-dark: #d94b31;
  --lime: #7cc56b;
  --tomato: #d9363e;
  --sun: #f2b441;
  --soft: #fff3ee;
  --soft-line: #ffd2c4;
  --shadow: 0 18px 46px rgba(32, 60, 54, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 230, 232, 0.8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 150px;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--mint);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 900;
  justify-content: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 3px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav a,
.ghost-button,
.filter {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  min-height: 40px;
  padding: 0 14px;
}

.nav a {
  align-items: center;
  display: inline-flex;
}

.nav a:hover,
.ghost-button:hover,
.filter:hover {
  color: var(--ink);
}

.cart-button,
.icon-button {
  align-items: center;
  background: var(--mint);
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  padding: 0 14px;
}

svg {
  display: block;
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.hero {
  min-height: min(720px, calc(100vh - 44px));
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-scrim {
  background: linear-gradient(90deg, rgba(24, 45, 40, 0.9), rgba(36, 58, 50, 0.58) 46%, rgba(36, 58, 50, 0.05));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  max-width: 700px;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 70px) 90px;
  position: relative;
}

.eyebrow {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  max-width: 760px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.55;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

.primary-button {
  background: var(--mint);
  color: white;
}

.primary-button:hover {
  background: var(--mint-dark);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  outline: 1px solid rgba(255, 255, 255, 0.35);
}

.full {
  width: 100%;
}

.status-strip,
.filters,
.menu-grid,
.info-band {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 40px);
  padding-right: clamp(18px, 4vw, 40px);
}

.status-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.status-strip > div {
  background: var(--surface);
  border: 1px solid rgba(226, 236, 239, 0.9);
  min-height: 92px;
  padding: 20px;
}

.status-strip span,
.cart-summary span,
.fineprint {
  color: var(--muted);
}

.status-strip strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  margin-top: 6px;
}

.status-strip small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 5px;
}

.filters {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 70px;
  flex-wrap: wrap;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
  margin: 0;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 720px;
}

.filter {
  border: 1px solid var(--line);
}

.filter.active {
  background: var(--mint);
  border-color: var(--mint);
  color: white;
}

.result-count {
  color: var(--muted);
  font-weight: 750;
  margin: 12px 0 0;
}

.search-box {
  min-width: min(100%, 320px);
}

.back-button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  min-height: 48px;
  padding: 0 16px;
}

.menu-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 70px;
  padding-top: 24px;
}

.restaurant-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.restaurant-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 37, 43, 0.06);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.restaurant-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.restaurant-open {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  padding: 0;
  text-align: left;
  width: 100%;
}

.restaurant-visual {
  aspect-ratio: 16 / 11;
  background: var(--soft);
  overflow: hidden;
  position: relative;
}

.restaurant-cover {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.restaurant-index {
  background: white;
  border: 4px solid white;
  border-radius: 18px;
  bottom: 14px;
  box-shadow: 0 10px 24px rgba(23, 37, 43, 0.16);
  height: 72px;
  left: 14px;
  position: absolute;
  width: 72px;
}

.restaurant-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.restaurant-card-body h3 {
  font-size: 1.08rem;
  line-height: 1.18;
  margin: 0;
}

.restaurant-card-body p {
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.restaurant-category {
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-link {
  color: var(--ink);
  font-weight: 850;
}

.food-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 37, 43, 0.06);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.food-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.food-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.food-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.food-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.food-meta {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.food-meta h3 {
  font-size: 1.08rem;
  line-height: 1.18;
  margin: 0;
}

.restaurant-name {
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 850;
  margin: 0 0 5px;
}

.food-meta strong {
  color: var(--ink);
  font-size: 0.98rem;
  white-space: nowrap;
}

.food-card p {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.add-button {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  color: #8d2e1f;
  cursor: pointer;
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
}

.add-button:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: white;
}

.info-band {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: 0.82fr 1fr;
  padding-bottom: 86px;
  padding-top: 70px;
}

.steps {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: var(--soft);
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 18px;
}

.steps span {
  color: var(--muted);
  line-height: 1.5;
}

.drawer {
  background: rgba(7, 18, 21, 0.48);
  display: none;
  inset: 0;
  justify-content: end;
  position: fixed;
  z-index: 30;
}

.drawer.open {
  display: flex;
}

.drawer-panel {
  background: var(--surface);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  height: 100%;
  max-width: 440px;
  padding: 22px;
  width: min(100%, 440px);
}

.drawer-head {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.drawer .icon-button,
.modal .icon-button {
  background: #f0efea;
  color: var(--ink);
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 18px 0;
}

.cart-line {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.cart-line-top {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) max-content;
}

.cart-line-title {
  min-width: 0;
}

.cart-line-title strong,
.cart-line-title small {
  display: block;
}

.cart-line-title strong {
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.cart-line-title small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 4px;
}

.cart-line-price {
  font-size: 0.96rem;
  white-space: nowrap;
}

.qty {
  align-items: center;
  background: #faf7f3;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) max-content;
  padding: 8px 10px;
}

.qty > span:first-child {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.qty-controls {
  align-items: center;
  display: inline-grid;
  gap: 8px;
  grid-template-columns: 32px minmax(24px, max-content) 32px;
  justify-items: center;
}

.qty button {
  align-items: center;
  aspect-ratio: 1;
  background: #f0efea;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  width: 32px;
}

.cart-summary {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding: 18px 0;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
}

.cart-summary .total {
  color: var(--ink);
  font-size: 1.2rem;
}

.modal {
  background: transparent;
  border: 0;
  padding: 0;
  width: min(92vw, 440px);
}

.order-modal {
  width: min(92vw, 620px);
}

.modal::backdrop {
  background: rgba(7, 18, 21, 0.48);
}

.modal-card {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 26px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
}

.modal-card h2 {
  font-size: 2rem;
  padding-right: 44px;
}

.auth-toggle {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 4px;
}

.auth-toggle button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
}

.auth-toggle button.active {
  background: white;
  box-shadow: 0 6px 16px rgba(23, 37, 43, 0.08);
  color: var(--ink);
}

.order-card {
  gap: 18px;
}

.order-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-facts div {
  background: var(--soft);
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  padding: 16px;
}

.order-facts span {
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.order-facts strong {
  font-size: clamp(1.15rem, 3vw, 1.7rem);
}

.tracking-dashboard {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.progress-ring {
  --progress: 0;
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, var(--surface) 0 58%, transparent 59%),
    conic-gradient(var(--mint) calc(var(--progress) * 1%), #eee9e3 0);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  justify-items: center;
  margin-inline: auto;
  max-width: 168px;
  padding: 22px;
  place-content: center;
  width: 100%;
}

.progress-ring span {
  color: var(--ink);
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.progress-ring small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 6px;
  text-align: center;
}

.courier-map {
  background:
    linear-gradient(90deg, rgba(255, 107, 74, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 107, 74, 0.13) 1px, transparent 1px),
    #fff8f4;
  background-size: 30px 30px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  height: 142px;
  overflow: hidden;
  position: relative;
}

.real-map {
  display: none;
  inset: 0;
  position: absolute;
  z-index: 1;
}

.courier-map.real {
  background: #eef1ed;
}

.courier-map.real .real-map {
  display: block;
}

.courier-map.real .map-road,
.courier-map.real .map-pin,
.courier-map.real .courier-dot {
  display: none;
}

.leaflet-container {
  font: inherit;
}

.map-emoji-marker {
  align-items: center;
  background: white;
  border: 2px solid var(--mint);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 60, 54, 0.22);
  display: flex;
  font-size: 18px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.map-emoji-marker.home {
  border-color: var(--ink);
}

.map-emoji-marker.courier {
  background: var(--mint);
  border-color: white;
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.map-road {
  background: linear-gradient(90deg, #f2b441, #ff6b4a);
  border-radius: 999px;
  height: 8px;
  left: 70px;
  opacity: 0.85;
  position: absolute;
  right: 70px;
  top: 72px;
}

.map-pin {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(23, 37, 43, 0.12);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  position: absolute;
  top: 42px;
}

.restaurant-pin {
  left: 18px;
}

.home-pin {
  right: 18px;
}

.courier-dot {
  --ride: 0;
  align-items: center;
  background: var(--ink);
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23, 37, 43, 0.22);
  color: white;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: calc(58px + (100% - 116px) * var(--ride));
  position: absolute;
  top: 59px;
  transform: translateX(-50%);
  transition: left 0.18s linear, background 0.2s ease;
  width: 34px;
}

.courier-map:not(.active) .courier-dot {
  background: var(--muted);
}

.courier-map.failed .courier-dot {
  background: var(--tomato);
}

.overload-note {
  background: #fff8dc;
  border: 1px solid #f0d56b;
  border-radius: 8px;
  color: #66520d;
  font-weight: 800;
  margin: 0;
  padding: 12px 14px;
}

.order-progress {
  counter-reset: order;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.order-progress li {
  display: grid;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  min-height: 76px;
  position: relative;
}

.order-progress li:not(:last-child)::before {
  background: var(--soft-line);
  content: "";
  inset: 35px auto -3px 16px;
  position: absolute;
  width: 2px;
}

.progress-dot {
  align-items: center;
  background: #cfe2e6;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  position: relative;
  width: 34px;
  z-index: 1;
}

.order-progress .done .progress-dot {
  background: var(--mint);
}

.order-progress .current .progress-dot {
  background: var(--ink);
}

.order-progress .waiting {
  opacity: 0.62;
}

.order-progress strong,
.order-progress span {
  display: block;
}

.order-progress strong {
  margin-top: 4px;
}

.order-progress span {
  color: var(--muted);
  line-height: 1.42;
  margin-top: 4px;
}

label {
  color: var(--muted);
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

input {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 14px;
}

input:focus {
  border-color: var(--mint-dark);
  outline: 3px solid rgba(255, 107, 74, 0.22);
}

.consent-row {
  align-items: start;
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: 22px 1fr;
  line-height: 1.42;
}

.consent-row input {
  accent-color: var(--mint);
  min-height: auto;
  margin-top: 3px;
}

.consent-row a,
.site-footer a,
.legal-content a {
  color: var(--mint-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-error {
  background: #fff0ed;
  border: 1px solid #ffc4b5;
  border-radius: 8px;
  color: #8d2e1f;
  font-weight: 820;
  line-height: 1.45;
  margin: 0;
  padding: 12px 14px;
}

.toast {
  background: var(--ink);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: var(--shadow);
  color: white;
  left: 50%;
  max-width: min(92vw, 560px);
  opacity: 0;
  padding: 14px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px clamp(18px, 4vw, 40px) 38px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer span {
  flex: 1 1 320px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page {
  background: var(--paper);
}

.legal-shell {
  margin: 0 auto;
  max-width: 920px;
  padding: 42px clamp(18px, 5vw, 48px) 72px;
}

.legal-back {
  color: var(--mint-dark);
  display: inline-flex;
  font-weight: 850;
  margin-bottom: 26px;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(32, 60, 54, 0.08);
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 42px);
}

.legal-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.98;
  margin: 0;
}

.legal-content h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.05;
  margin-top: 16px;
}

.legal-content p,
.legal-content li {
  line-height: 1.65;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 0;
}

.legal-note {
  background: var(--soft);
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  color: #7a3629;
  font-weight: 800;
  padding: 14px 16px;
}

.legal-meta {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(24, 45, 40, 0.9), rgba(36, 58, 50, 0.48) 62%, rgba(36, 58, 50, 0.12));
  }

  .hero-content {
    padding-top: 76px;
  }

  .status-strip,
  .menu-grid,
  .info-band {
    grid-template-columns: 1fr;
  }

  .restaurant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters {
    align-items: start;
    flex-direction: column;
  }

  .filter-controls {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .nav a {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 2.85rem;
    line-height: 0.94;
  }

  .status-strip {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .status-strip > div {
    border-left: 0;
    border-right: 0;
  }

  .cart-line-top {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .cart-line-price {
    justify-self: start;
  }

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

  .qty-controls {
    justify-self: start;
  }

  .order-facts {
    grid-template-columns: 1fr;
  }

  .tracking-dashboard {
    grid-template-columns: 1fr;
  }

  .progress-ring {
    max-width: 148px;
  }

  .courier-map {
    height: 126px;
  }

  .map-road {
    left: 58px;
    right: 58px;
  }

  .map-pin {
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  .courier-dot {
    left: calc(50px + (100% - 100px) * var(--ride));
  }

  .order-progress li {
    min-height: 88px;
  }

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