/* ==========================================================================
   delivery.css — customer web food/grocery/mall flow (mockups 04–07).
   Composes cholo.css tokens only (design README: never fork the palette).
   ========================================================================== */

.is-hidden { display: none !important; }
/* `hidden` attribute must beat any display rule (photo onerror fallback). */
.dlv [hidden] { display: none !important; }

/* ——— shared page chrome ————————————————————————————————————————— */
.dlv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.dlv-head--center .dlv-head__mid { text-align: center; flex: 1 1 auto; min-width: 0; }
.dlv-head__spacer { width: 40px; }

.dlv-back {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-strong);
  box-shadow: var(--shadow-1);
  transition: transform 150ms ease;
}
.dlv-back:active { transform: scale(0.94); }
.dlv-back svg { width: 20px; height: 20px; }

.dlv-loc {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  min-height: 36px;
  padding: 0 var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--bg-surface);
  color: var(--c-primary);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background-color 150ms ease;
}
.dlv-loc:active { background: var(--c-primary-50); }
.dlv-loc svg { width: 16px; height: 16px; }

.dlv-title { font-size: var(--fs-2xl); }
.dlv-title--sm { font-size: var(--fs-lg); }
.dlv-title-sec { font-size: var(--fs-xs); margin-bottom: var(--sp-3); }

.dlv-search {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 0 var(--sp-4);
  border-radius: var(--r-md);
  background: var(--c-n100);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.dlv-search svg { width: 18px; height: 18px; flex: 0 0 auto; }
.dlv-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--text-strong);
  outline: none;
}

/* filter chips (04) */
.dlv-chips {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-2);
  scrollbar-width: none;
}
.dlv-chips::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--bg-surface);
  color: var(--text-body);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.chip.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-n0);
}

/* ——— merchant cards (04) ———————————————————————————————————————— */
.dlv-cards { display: flex; flex-direction: column; gap: var(--sp-4); }

.mcard {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--text-strong);
  box-shadow: var(--shadow-1);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.mcard:active { transform: scale(0.985); box-shadow: none; }

.mcard__photo {
  position: relative;
  aspect-ratio: 16 / 8;
  background: var(--c-primary-50);
  overflow: hidden;
}
.mcard__photo img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.mcard__ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--c-primary);
  background: linear-gradient(135deg, var(--c-primary-50), var(--c-primary-100));
}
.mcard.is-closed .mcard__photo { filter: grayscale(1); opacity: 0.8; }
.mcard__closed-tag {
  position: absolute;
  left: var(--sp-3);
  bottom: var(--sp-3);
  padding: 2px var(--sp-3);
  border-radius: var(--r-full);
  background: rgb(21 25 24 / 0.72);
  color: var(--c-n0);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.mcard__promo {
  position: absolute;
  right: var(--sp-3);
  top: var(--sp-3);
  padding: 2px var(--sp-3);
  border-radius: var(--r-full);
  background: var(--c-accent);
  color: var(--c-n0);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.mcard__body { padding: var(--sp-3) var(--sp-4) var(--sp-4); }
.mcard__title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  font-size: var(--fs-lg);
}
.mcard__rating { font-size: var(--fs-sm); font-weight: 700; color: var(--text-strong); }
.mcard__meta {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  margin-top: 2px;
}
.mcard__meta span + span::before { content: "·"; margin-right: var(--sp-2); color: var(--c-n300); }
.mcard__freetag {
  display: inline-flex;
  margin-top: var(--sp-2);
  padding: 2px var(--sp-3);
  border-radius: var(--r-full);
  background: var(--c-primary-50);
  color: var(--c-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
}

/* skeleton card while geolocated refetch runs */
.mcard--skeleton { height: 180px; }

/* ——— merchant page (05) ————————————————————————————————————————— */
.dlv-merchant { position: relative; padding-bottom: 96px; }

.mhero {
  position: relative;
  margin: calc(-1 * var(--sp-4)) calc(-1 * var(--sp-4)) 0;
  aspect-ratio: 16 / 7;
  background: var(--c-primary-100);
  overflow: hidden;
}
.mhero__img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.mhero__ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-primary);
  background: linear-gradient(135deg, var(--c-primary-50), var(--c-primary-100));
}
.mhero.is-closed { filter: grayscale(1); }
.mhero__back { position: absolute; left: var(--sp-4); top: var(--sp-4); }

.minfo {
  position: relative;
  margin-top: calc(-1 * var(--sp-6));
  box-shadow: var(--shadow-2);
}
.minfo__name { font-size: var(--fs-xl); }
.minfo__sec { font-size: var(--fs-xs); }
.minfo__row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
}
.minfo__row span:empty { display: none; }
.minfo__chips { margin-top: var(--sp-2); display: flex; gap: var(--sp-2); }

.mtabs {
  position: sticky;
  top: var(--topbar-h);
  z-index: 5;
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  margin: var(--sp-4) calc(-1 * var(--sp-4)) 0;
  padding: 0 var(--sp-4);
  scrollbar-width: none;
}
.mtabs::-webkit-scrollbar { display: none; }
.mtabs__tab {
  flex: 0 0 auto;
  padding: var(--sp-3) 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-bottom: 3px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.mtabs__tab.is-active { color: var(--c-primary); border-bottom-color: var(--c-primary); }

.msection { scroll-margin-top: calc(var(--topbar-h) + 56px); }
.mitems { display: flex; flex-direction: column; gap: var(--sp-3); }

.mitem { display: flex; gap: var(--sp-3); }
.mitem.is-out { opacity: 0.6; }
.mitem__body { flex: 1 1 auto; min-width: 0; }
.mitem__name { font-size: var(--fs-md); }
.mitem__desc {
  font-size: var(--fs-sm);
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mitem__price {
  margin-top: var(--sp-2);
  font-weight: 700;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
}
.mitem__side {
  position: relative;
  flex: 0 0 auto;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-2);
}
.mitem__photo {
  width: 96px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--c-primary-50);
}
.mitem__add {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-n0);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background-color 150ms ease, transform 100ms ease;
}
.mitem__add:active { background: var(--c-primary-700); transform: scale(0.92); }

/* qty stepper (mint pill, 05) */
.stepper {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-primary-50);
  border: 1px solid var(--c-primary-100);
  border-radius: var(--r-full);
  padding: 2px;
}
.stepper__btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--c-primary);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.stepper__btn:active { background: var(--c-primary-100); }
.stepper__val {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
}

.qtyrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--sp-4) 0;
}

/* floating cart bar (05) */
.cartbar {
  position: fixed;
  z-index: var(--z-nav);
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--nav-h) + var(--sp-3) + env(safe-area-inset-bottom, 0px));
  width: min(calc(100% - var(--sp-6)), calc(var(--page-max) - var(--sp-6)));
}
.cartbar__main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 52px;
  padding: 0 var(--sp-5);
  border: 0;
  border-radius: var(--r-full);
  background: var(--c-primary-700);
  color: var(--c-n0);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-2);
  transition: transform 150ms ease, background-color 150ms ease;
}
.cartbar__main:active { transform: scale(0.98); background: var(--c-primary-600); }
.cartbar__cta { font-size: var(--fs-sm); opacity: 0.95; }

/* option sheet groups */
.optgroup { margin-bottom: var(--sp-3); }
.optgroup__title { font-size: var(--fs-sm); font-weight: 700; color: var(--text-strong); margin-bottom: var(--sp-2); }
.optrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 44px;
  padding: 0 var(--sp-2);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.optrow:active { background: var(--c-n50); }
.optrow input { accent-color: var(--c-primary); width: 18px; height: 18px; }
.optrow__name { flex: 1 1 auto; }
.optrow__price { font-weight: 600; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.optrow.is-out { opacity: 0.5; pointer-events: none; }

.cart-line {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-n100);
}
.cart-line__body { flex: 1 1 auto; min-width: 0; }
.cart-line__name { font-weight: 600; color: var(--text-strong); }
.cart-line__sub { font-size: var(--fs-xs); color: var(--text-muted); }
.cart-line__total { font-weight: 700; font-variant-numeric: tabular-nums; }
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  font-size: var(--fs-md);
}
#cart-checkout { margin-bottom: var(--sp-2); }

/* ——— checkout (06) —————————————————————————————————————————————— */
.dlv-checkout { padding-bottom: 96px; }
.co-card { margin-bottom: var(--sp-4); }
.co-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-body);
  margin: var(--sp-4) 0 var(--sp-2);
}
.co-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-primary-50);
  color: var(--c-primary);
}
.co-icon svg { width: 22px; height: 22px; }

.co-address__row { display: flex; align-items: center; gap: var(--sp-3); }
.co-address__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.co-address__body span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: var(--fs-sm); }
.co-link {
  border: 0;
  background: none;
  color: var(--c-primary);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
}
.co-link--danger { color: var(--c-danger); }
.co-address__eta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-n100);
  font-size: var(--fs-sm);
}
.co-address__eta svg { width: 18px; height: 18px; }

.co-pay { display: flex; flex-direction: column; gap: var(--sp-2); }
.co-pay__opt {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-surface);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease;
}
.co-pay__opt.is-active {
  border-color: var(--c-primary);
  background: var(--c-primary-50);
}
.co-pay__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.co-pay__body span { font-size: var(--fs-sm); }
.co-pay__opt input { position: absolute; opacity: 0; pointer-events: none; }
.co-radio {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--c-n300);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.co-pay__opt.is-active .co-radio {
  border-color: var(--c-primary);
  box-shadow: inset 0 0 0 5px var(--c-primary);
}

.co-coupon { display: flex; align-items: center; gap: var(--sp-3); }
.co-coupon__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text-strong);
  outline: none;
  text-transform: uppercase;
}
.co-coupon-msg { font-size: var(--fs-sm); font-weight: 600; margin: calc(-1 * var(--sp-2)) 0 var(--sp-3); }
.co-coupon-msg.is-ok { color: var(--c-success); }
.co-coupon-msg.is-bad { color: var(--c-danger); }

.co-note { margin-bottom: var(--sp-4); }

.co-bill { font-variant-numeric: tabular-nums; }
.co-bill__line {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-1) 0;
  font-size: var(--fs-md);
}
.co-bill__line--discount { color: var(--c-success); font-weight: 600; }
.co-bill__total {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  font-size: var(--fs-lg);
}

.co-cta {
  position: fixed;
  z-index: var(--z-nav);
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--nav-h) + var(--sp-3) + env(safe-area-inset-bottom, 0px));
  width: min(calc(100% - var(--sp-6)), calc(var(--page-max) - var(--sp-6)));
}
.co-cta .btn { border-radius: var(--r-full); box-shadow: var(--shadow-2); }

.addr-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 52px;
  padding: 0 var(--sp-2);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.addr-row:active { background: var(--c-n50); }
.addr-row.is-active { background: var(--c-primary-50); }
.addr-row__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.addr-row__body span { font-size: var(--fs-xs); color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ——— tracking (07) —————————————————————————————————————————————— */
.trk-steps {
  list-style: none;
  display: flex;
  margin: var(--sp-4) 0;
  padding: 0;
}
.trk-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  position: relative;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
}
.trk-step::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: var(--c-n200);
}
.trk-step:first-child::before { display: none; }
.trk-step__dot {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--c-n300);
  display: grid;
  place-items: center;
  transition: border-color 150ms ease, background-color 150ms ease;
}
.trk-step.is-done .trk-step__dot {
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.trk-step.is-done .trk-step__dot::after { content: "✓"; color: var(--c-n0); font-size: 13px; font-weight: 800; }
.trk-step.is-done::before { background: var(--c-primary); }
.trk-step.is-active { color: var(--c-primary); }
.trk-step.is-active .trk-step__dot {
  border-color: var(--c-primary);
}
.trk-step.is-active .trk-step__dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-primary);
}
.trk-step.is-active::before { background: var(--c-primary); }

.trk-hero { text-align: center; padding: var(--sp-5) var(--sp-4); }
.trk-hero__state { font-size: var(--fs-xl); margin-top: var(--sp-3); }
.trk-hero__state-sec { font-size: var(--fs-sm); }
.trk-live {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  color: var(--c-accent);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.trk-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: trk-pulse 1.4s ease-out infinite;
}
@keyframes trk-pulse {
  0% { box-shadow: 0 0 0 0 rgb(244 42 65 / 0.4); }
  70% { box-shadow: 0 0 0 8px rgb(244 42 65 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(244 42 65 / 0); }
}

/* prep countdown ring: green arc on mint track */
.trk-ring { position: relative; width: 176px; height: 176px; margin: 0 auto; }
.trk-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.trk-ring__track { fill: none; stroke: var(--c-primary-100); stroke-width: 10; }
.trk-ring__arc {
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 900ms linear;
}
.trk-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.trk-ring__time {
  font-size: var(--fs-2xl);
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
}
.trk-ring__center .text-muted { font-size: var(--fs-xs); }

.trk-rider { display: flex; align-items: center; gap: var(--sp-3); }
.trk-rider__avatar {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary-100);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: var(--fs-lg);
}
.trk-rider__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.trk-rider__body span { font-size: var(--fs-sm); }
.trk-rider__call {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-n0);
  transition: background-color 150ms ease, transform 100ms ease;
}
.trk-rider__call:active { background: var(--c-primary-700); transform: scale(0.94); }
.trk-rider__call svg { width: 20px; height: 20px; }

/* mini route panel: lightweight SVG (no map tiles — <100 KB budget) */
.trk-route { position: relative; padding: var(--sp-3); }
.trk-route svg { width: 100%; height: auto; }
.trk-route__path {
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 2.5;
  stroke-dasharray: 6 7;
  stroke-linecap: round;
  opacity: 0.75;
}
.trk-pin { fill: var(--c-primary-100); stroke: var(--c-primary); stroke-width: 1.5; }
.trk-pin--home { fill: var(--c-primary); }
.trk-pin--rider { fill: var(--c-n0); stroke-width: 2; }
.trk-pin__glyph { font-size: 12px; }
.trk-pin__glyph--sm { font-size: 10px; }
#trk-route-rider { transition: transform 900ms linear; }
.trk-route__eta {
  position: absolute;
  right: var(--sp-4);
  bottom: var(--sp-4);
  box-shadow: var(--shadow-1);
}

.trk-summary {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--text-strong);
}
.trk-summary__text { flex: 1 1 auto; font-weight: 600; }
.trk-summary__arrow { color: var(--c-n400); font-size: var(--fs-xl); }

.trk-rate { text-align: center; }
.trk-rate__target { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-2); }
.stars { display: flex; justify-content: center; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.stars__star {
  border: 0;
  background: none;
  font-size: 34px;
  line-height: 1;
  color: var(--c-n300);
  cursor: pointer;
  transition: color 150ms ease, transform 100ms ease;
}
.stars__star.is-on { color: #F5A623; }
.stars__star:active { transform: scale(1.15); }
#trk-rate-comment { margin-bottom: var(--sp-3); }

.trk-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.rcpt-line { display: flex; justify-content: space-between; padding: var(--sp-1) 0; font-size: var(--fs-sm); font-variant-numeric: tabular-nums; }
.rcpt-line--total { border-top: 1px solid var(--border); margin-top: var(--sp-2); padding-top: var(--sp-2); font-weight: 700; font-size: var(--fs-md); }
.rcpt-line--discount { color: var(--c-success); }
.rcpt-event { display: flex; gap: var(--sp-3); font-size: var(--fs-sm); padding: var(--sp-1) 0; }
.rcpt-event time { color: var(--text-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* card grid on wider screens */
@media (min-width: 768px) {
  .dlv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .mhero { border-radius: var(--r-lg); margin: 0; }
}
