/* ============================================================
   NQA DETAILS — BOOKING WIZARD LAYOUT
   ------------------------------------------------------------
   Page components for booking.html.
   Palette, typography, buttons, nav, footer, fields and motion all
   live in css/theme.css, which MUST be loaded before this file.

   ⚠  DO NOT RENAME ANY SELECTOR IN THIS FILE.
   js/booking.js drives the wizard by class and id — .choice, .svc,
   .addon, .slot, .cal-day, .selected, .active, .show and friends are
   a contract with the script. This file restyles them; it never
   renames them.
   ============================================================ */

/* ============================================================
   PAGE HERO — the band the wizard card lifts out of
   ============================================================ */
.page-hero {
  position: relative;
  padding: 62px 0 104px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 940px; height: 680px;
  background: radial-gradient(ellipse at center, rgba(200, 50, 63, .3), transparent 66%);
  pointer-events: none;
  animation: book-breathe 14s ease-in-out infinite alternate;
}
@keyframes book-breathe {
  from { opacity: .8; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;  transform: translateX(-50%) scale(1.1); }
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}
.page-hero .wrap, .page-hero .container { position: relative; z-index: 1; }
.page-hero .offer-pill { margin-bottom: 18px; }
.page-hero h1 { margin: 8px 0 14px; }
.page-hero .lead { margin: 0 auto; }
.page-hero .trust { justify-content: center; margin-top: 24px; }

/* the wizard section rides up into the band above it */
.section {
  padding: 0 0 76px;
  margin-top: -66px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   WIZARD SHELL
   ============================================================ */
.wizard {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  background: linear-gradient(172deg, #1a1a20, #121217);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, .5),
    0 30px 90px rgba(0, 0, 0, .75),
    0 0 80px rgba(158, 27, 43, .12);
  padding: 36px 40px 34px;
  overflow: hidden;
}
/* brand hairline along the very top edge of the card */
.wizard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright) 46%, var(--chrome));
}

/* ---------- progress ---------- */
.wiz-progress { margin-bottom: 30px; }
.wiz-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 11px;
}
.wiz-step-count {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brand-bright);
  white-space: nowrap;
}
.wiz-step-label {
  font-family: var(--fd);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  font-size: 1.2rem;
  text-align: right;
}
.wiz-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .5);
  border: 1px solid var(--line);
  overflow: hidden;
}
.wiz-bar span {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  box-shadow: 0 0 14px rgba(200, 50, 63, .7);
  transition: width .5s var(--ease);
  position: relative;
  overflow: hidden;
}
/* light travelling along the filled portion */
.wiz-bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
  animation: bar-shine 2.6s ease-in-out infinite;
}
@keyframes bar-shine {
  0%   { transform: translateX(-100%); }
  60%, 100% { transform: translateX(240%); }
}

/* ---------- steps ---------- */
.wiz-step { display: none; }
.wiz-step.active { display: block; animation: wiz-in .5s var(--ease); }
@keyframes wiz-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.wiz-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 8px; }
.wiz-sub { color: var(--muted); font-size: .94rem; margin-bottom: 26px; max-width: 60ch; }

.wiz-cometoyou {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-bright);
  background: rgba(200, 50, 63, .12);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  padding: 9px 19px;
  margin-bottom: 22px;
}
.wiz-cometoyou svg { width: 15px; height: 15px; fill: var(--brand-bright); flex-shrink: 0; }

/* ---------- service-area check ---------- */
.area-check {
  display: none;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 19px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  animation: wiz-in .4s var(--ease);
}
.area-check.show { display: flex; }
.area-check.ok {
  background: rgba(63, 191, 127, .1);
  border: 1px solid rgba(63, 191, 127, .34);
  color: var(--ink-soft);
}
.area-check.ok .mark { color: var(--ok); font-weight: 800; }
.area-check.maybe {
  background: rgba(200, 50, 63, .1);
  border: 1px solid var(--brand-line);
  color: var(--ink-soft);
}
.area-check.maybe .mark { color: var(--brand-bright); font-weight: 800; }

/* ============================================================
   VEHICLE CHOICE TILES
   ============================================================ */
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 26px; }
.choice {
  position: relative;
  background: rgba(255, 255, 255, .035);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 20px 14px 16px;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--fb);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .25s var(--ease);
}
.choice:hover {
  border-color: var(--brand-lift);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .5);
}
.choice.selected {
  border-color: var(--brand-lift);
  background: rgba(200, 50, 63, .14);
  color: var(--brand-bright);
  box-shadow: 0 0 0 1px var(--brand-lift), 0 12px 30px rgba(158, 27, 43, .4);
}
.choice svg { width: 62px; height: 30px; margin: 0 auto 10px; display: block; fill: currentColor; opacity: .9; transition: transform .3s var(--ease); }
.choice:hover svg, .choice.selected svg { transform: translateY(-2px); }
.choice .c-name {
  display: block;
  font-family: var(--fd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.15;
}
.choice .c-eg {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.35;
}
.choice.selected .c-name { color: var(--brand-bright); }
/* tick badge on the selected tile */
.choice.selected::after {
  content: "✓";
  position: absolute;
  top: 8px; right: 9px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  animation: tick-pop .3s var(--ease);
}
@keyframes tick-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
/* Prices on this step are driven by the size tier picked in step 1,
   so the customer never has to work out which column they're in. */
.tier-flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chrome);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 17px;
  margin-bottom: 18px;
}
.tier-flag b { color: #fff; }
.tier-flag .tf-edit {
  color: var(--brand-bright);
  border-bottom: 1px solid rgba(224, 80, 92, .5);
  cursor: pointer;
  background: none;
  border-top: none; border-left: none; border-right: none;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
}

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc {
  position: relative;
  background: rgba(255, 255, 255, .035);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 22px 22px 17px;
  text-align: left;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: var(--fb);
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .25s var(--ease);
}
.svc:hover {
  border-color: var(--brand-lift);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .5);
}
.svc.selected {
  border-color: var(--brand-lift);
  background: rgba(200, 50, 63, .13);
  box-shadow: 0 0 0 1px var(--brand-lift), 0 12px 30px rgba(158, 27, 43, .34);
}
.svc h4 {
  font-family: var(--fd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.12;
  margin-bottom: 9px;
  padding-right: 70px;
}
.svc .s-desc { font-size: .86rem; color: var(--muted); flex: 1; }
.svc .s-price {
  margin-top: 13px;
  font-family: var(--fd);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .88rem;
  color: var(--ink-soft);
}
.svc .s-price strong { color: var(--brand-bright); font-size: 1.42rem; font-weight: 600; }
.svc .s-fine { font-size: .74rem; color: var(--muted); margin-top: 8px; line-height: 1.45; }
.svc .s-toggle {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-bright);
}
.svc .s-toggle::before { content: "＋ "; }
.svc.selected .s-toggle::before { content: "✓ "; }
.svc .save-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: linear-gradient(180deg, var(--chrome-soft), var(--chrome-deep));
  color: var(--chrome-ink);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .6);
}

/* ============================================================
   ADD-ONS
   ============================================================ */
.addon-head {
  font-family: var(--fd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink);
  font-size: 1.12rem;
  margin: 28px 0 4px;
}
.addon-sub { font-size: .84rem; color: var(--muted); margin-bottom: 15px; }
.addon-row { display: flex; flex-wrap: wrap; gap: 10px; }
.addon {
  background: rgba(255, 255, 255, .035);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  padding: 11px 19px;
  font-family: var(--fb);
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s var(--ease);
}
.addon::before { content: "＋ "; color: var(--brand-bright); font-weight: 800; }
.addon .a-price { color: var(--muted); margin-left: 6px; }
.addon:hover { border-color: var(--brand-lift); background: rgba(255, 255, 255, .06); transform: translateY(-2px); }
.addon.selected {
  border-color: var(--brand-lift);
  background: rgba(200, 50, 63, .16);
  color: #fff;
  box-shadow: 0 6px 18px rgba(158, 27, 43, .35);
}
.addon.selected::before { content: "✓ "; color: var(--brand-bright); }
.addon.selected .a-price { color: var(--brand-bright); }

/* ============================================================
   CALENDAR
   ============================================================ */
.cal { max-width: 480px; margin-inline: auto; }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cal-month {
  font-family: var(--fd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  font-size: 1.3rem;
}
.cal-nav {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid var(--line-2);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, opacity .2s ease, transform .2s var(--ease);
}
.cal-nav:hover:not(:disabled) { border-color: var(--brand-lift); color: var(--brand-bright); transform: translateY(-2px); }
.cal-nav:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow {
  text-align: center;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0 6px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 11px;
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--fb);
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s var(--ease), color .18s ease;
}
.cal-day:hover:not(:disabled) {
  border-color: var(--brand-lift);
  background: rgba(200, 50, 63, .14);
  color: #fff;
  transform: translateY(-2px);
}
.cal-day:disabled {
  opacity: .3;
  cursor: default;
  background: transparent;
  border-color: transparent;
  color: #5a5f68;
}
.cal-day.blank { visibility: hidden; }
.cal-day.today { border-color: var(--brand-lift); color: var(--brand-bright); }
.cal-day.selected {
  background: linear-gradient(180deg, var(--brand-lift), var(--brand-deep));
  border-color: var(--brand-lift);
  color: #fff;
  box-shadow: 0 8px 22px rgba(158, 27, 43, .6);
  transform: translateY(-2px);
}
.cal-note { text-align: center; font-size: .84rem; color: var(--muted); margin-top: 16px; }
.cal-note.need-note {
  margin-top: 12px;
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  background: rgba(200, 50, 63, .09);
  border: 1px solid var(--brand-line);
  color: var(--ink-soft);
  font-size: .83rem;
  line-height: 1.55;
  text-align: left;
}
.cal-note.need-note strong { color: #fff; }

/* ============================================================
   TIME SLOTS
   ============================================================ */
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 480px; margin-inline: auto; }
.slot {
  padding: 20px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid var(--line-2);
  color: var(--ink-soft);
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s var(--ease), color .18s ease;
  white-space: nowrap;
}
.slot:hover:not(:disabled) { border-color: var(--brand-lift); background: rgba(200, 50, 63, .14); color: #fff; transform: translateY(-2px); }
.slot:disabled { opacity: .38; cursor: default; }
.slot.selected {
  background: linear-gradient(180deg, var(--brand-lift), var(--brand-deep));
  border-color: var(--brand-lift);
  color: #fff;
  box-shadow: 0 10px 26px rgba(158, 27, 43, .6);
  transform: translateY(-2px);
}
.slot small {
  display: block;
  font-family: var(--fb);
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--danger);
  margin-top: 5px;
}
.slot-later {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 14px auto 0;
  padding: 17px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .03);
  border: 1.5px dashed var(--brand-line);
  color: var(--ink-soft);
  font-family: var(--fb);
  font-size: .9rem;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s var(--ease);
}
.slot-later strong { color: var(--brand-bright); }
.slot-later:hover { border-style: solid; background: rgba(200, 50, 63, .1); transform: translateY(-2px); }
.slot-later.selected {
  border: 1.5px solid var(--brand-lift);
  background: rgba(200, 50, 63, .16);
  color: #fff;
  box-shadow: 0 0 0 1px var(--brand-lift), 0 10px 26px rgba(158, 27, 43, .3);
}

/* ---------- time block (revealed once a date is picked) ---------- */
.time-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  animation: timeIn .45s var(--ease) both;
}
@keyframes timeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.time-head {
  font-family: var(--fd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ============================================================
   REVIEW SUMMARY
   ============================================================ */
.review {
  background: rgba(0, 0, 0, .32);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin-top: 28px;
}
.review h4 {
  font-family: var(--fd);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  font-size: 1.14rem;
  margin-bottom: 14px;
}
.review-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.review-row:last-of-type { border-bottom: none; }
.review-row .k {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.review-row .v { color: var(--ink); text-align: right; }
.review-row.total-row { border-top: 2px solid var(--line-2); margin-top: 8px; padding-top: 15px; }
.review-row.total-row .k { color: var(--ink); font-size: .78rem; }
.review-row.total-row .v {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--brand-bright);
}
.review-fine { font-size: .77rem; color: var(--muted); margin-top: 13px; line-height: 1.55; }

/* ============================================================
   WIZARD NAV + ERROR
   ============================================================ */
.wiz-error {
  display: none;
  margin-top: 20px;
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  background: rgba(224, 80, 92, .12);
  border: 1px solid rgba(224, 80, 92, .4);
  color: #ffa8b0;
  font-weight: 600;
  font-size: .92rem;
}
.wiz-error.show { display: block; animation: wiz-in .3s var(--ease); }
.wiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 30px; }
.wiz-nav .btn-primary { margin-left: auto; }

/* ---------- running total bar ---------- */
.wiz-total {
  position: sticky;
  bottom: 16px;
  z-index: 60;
  max-width: 880px;
  margin: 18px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: linear-gradient(120deg, var(--brand-deep), var(--void));
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .7);
}
.wiz-total[hidden] { display: none; }
.wiz-total .lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d5aeb2;
}
.wiz-total .lbl small {
  display: block;
  letter-spacing: .04em;
  font-size: .66rem;
  text-transform: none;
  font-weight: 500;
  margin-top: 3px;
  color: #9c8285;
}
.wiz-total .amt {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.6rem;
  color: #fff;
  white-space: nowrap;
}

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.wiz-success { text-align: center; padding: 28px 0 16px; }
.check-ring {
  width: 92px; height: 92px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: rgba(200, 50, 63, .16);
  border: 2px solid var(--brand-lift);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: var(--brand-bright);
  box-shadow: 0 0 0 10px rgba(200, 50, 63, .07), 0 16px 44px rgba(158, 27, 43, .45);
  animation: ring-pop .65s var(--ease);
}
@keyframes ring-pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wiz-success h2 { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 14px; }
.wiz-success p { max-width: 48ch; margin: 0 auto 10px; color: var(--ink-soft); }
.wiz-success .dim { font-size: .89rem; }
.wiz-success a.inline { color: var(--brand-bright); font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 620px) {
  .page-hero { padding: 46px 0 86px; }
  .section { margin-top: -56px; padding-bottom: 56px; }
  .wizard { padding: 26px 18px 24px; border-radius: 18px; }
  .wiz-step-label { font-size: 1rem; }
  .choice-grid { gap: 10px; }
  .choice { padding: 16px 10px 14px; }
  .choice svg { width: 52px; height: 26px; }
  .choice .c-name { font-size: .92rem; }
  /* the example models are how people identify their tier — keep them readable */
  .choice .c-eg { font-size: .74rem; }
  .svc .save-badge { font-size: .7rem; }
  .wiz-total .lbl, .wiz-total .lbl small { font-size: .72rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .slot { font-size: .95rem; padding: 16px 4px; }
  .cal-grid { gap: 4px; }
  .cal-day { font-size: .86rem; border-radius: 9px; }
  .wiz-nav .btn { padding: 14px 20px; font-size: .78rem; }
  .wiz-total { padding: 12px 20px; bottom: 10px; }
  .wiz-total .amt { font-size: 1.3rem; }
  .review { padding: 19px 17px; }
  .review-row { flex-direction: column; gap: 2px; align-items: flex-start; }
  .review-row .v { text-align: left; }
  .review-row.total-row { flex-direction: row; align-items: baseline; }
}
