/* ============================================================
   ALU-WELD BOOKING — booking.css v11
   Clean, minimal, professional. No bold borders.
   Single consistent card language throughout.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=AR+One+Sans:wght@400..700&display=swap');

:root {
  --awb-grey-900: #2d2d2d;
  --awb-grey-800: #404040;
  --awb-grey-700: #555555;
  --awb-grey-600: #555555;
  --awb-grey-500: #777777;
  --awb-grey-400: #999999;
  --awb-grey-300: #cccccc;
  --awb-grey-200: #e3e3e3;
  --awb-grey-100: #f3f3f3;
  --awb-grey-50:  #f9f9f9;
  --awb-white:    #ffffff;

  --awb-red:      #c94444;
  --awb-red-mid:  #d46060;
  --awb-red-lt:   #fdf2f2;

  --awb-ink:    #1f1f1f;
  --awb-ink-2:  #555555;
  --awb-ink-3:  #999999;
  --awb-border: #e3e3e3;
  --awb-bg:     #f3f3f3;

  --awb-font: 'AR One Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --awb-mono: 'SF Mono', ui-monospace, 'Courier New', monospace;

  --awb-pad: 28px;
  --awb-r:   9px;
  --awb-rsm: 6px;
  --awb-t:   .13s ease;
}

/* ── Reset ── */
.awb-wrap * { box-sizing: border-box; }
.awb-wrap {
  font-family: var(--awb-font);
  color: var(--awb-ink);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.awb-progress {
  background: var(--awb-grey-900);
  border-radius: var(--awb-r) var(--awb-r) 0 0;
  overflow: hidden;
}
.awb-progress-track { height: 2px; background: rgba(255,255,255,.06); }
.awb-fill {
  height: 100%;
  background: var(--awb-red-mid);
  transition: width .3s cubic-bezier(.4,0,.2,1);
  width: 0%;
}
.awb-steps {
  display: flex;
  padding: 12px var(--awb-pad) 14px;
}
.awb-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.awb-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25);
  transition: all var(--awb-t);
}
.awb-dot svg { width: 14px; height: 14px; }
.awb-dot-label {
  font-size: .58rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.25);
  transition: color var(--awb-t);
}
.awb-step.active .awb-dot {
  background: var(--awb-white);
  border-color: var(--awb-white);
  color: var(--awb-grey-900);
}
.awb-step.active .awb-dot-label { color: rgba(255,255,255,.8); }
.awb-step.done .awb-dot {
  background: var(--awb-red-mid);
  border-color: var(--awb-red-mid);
  color: var(--awb-white);
}
.awb-step.done .awb-dot-label { color: var(--awb-red-mid); }

/* ============================================================
   PRICE TICKER
   ============================================================ */
.awb-ticker {
  display: flex; align-items: baseline; gap: 8px;
  padding: 11px var(--awb-pad);
  border-bottom: 1px solid var(--awb-border);
}
.awb-ticker-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--awb-ink-3); }
.awb-ticker-value { font-size: 1.5rem; font-weight: 900; color: var(--awb-ink); letter-spacing: -.04em; line-height: 1; }
.awb-ticker-note  { font-size: .72rem; color: var(--awb-ink-3); margin-left: auto; }

/* ============================================================
   PANELS
   ============================================================ */
.awb-panel { display: none; }
.awb-panel.active { display: block; }
.awb-panel-inner { padding: var(--awb-pad); }
.awb-panel-wide  { padding: var(--awb-pad); }

.awb-step-hd { margin-bottom: 22px; }
.awb-step-lbl { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--awb-ink-3); display: block; margin-bottom: 4px; }
.awb-step-hd h2 { font-size: 1.35rem; font-weight: 800; color: var(--awb-ink); letter-spacing: -.02em; margin: 0 0 6px; line-height: 1.2; }
.awb-step-hd p  { font-size: .875rem; color: var(--awb-ink-2); margin: 0; line-height: 1.55; }

/* ============================================================
   STEP 1 — Name / Postcode / Email
   ============================================================ */
.awb-step1-hero {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.awb-step1-badge {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--awb-grey-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--awb-grey-700);
  border: 1px solid var(--awb-border);
}
.awb-step1-badge svg { width: 20px; height: 20px; }
.awb-step1-intro h2 { font-size: 1.25rem; font-weight: 800; margin: 0 0 5px; letter-spacing: -.02em; }
.awb-step1-intro p  { font-size: .85rem; color: var(--awb-ink-2); margin: 0; line-height: 1.55; }

.awb-step1-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.awb-step1-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 6px; }

/* ── Form groups ── */
.awb-fg { display: flex; flex-direction: column; gap: 5px; }
.awb-lbl { font-size: .78rem; font-weight: 700; color: var(--awb-ink-2); }
.awb-req  { color: var(--awb-red); margin-left: 1px; }
.awb-hint { font-size: .74rem; color: var(--awb-ink-3); display: block; margin-top: 4px; }

.awb-igroup {
  display: flex; align-items: center;
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-rsm);
  background: var(--awb-white);
  overflow: hidden; min-height: 44px;
  transition: border-color var(--awb-t), box-shadow var(--awb-t);
}
.awb-igroup:focus-within {
  border-color: var(--awb-grey-700);
  box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}
.awb-iicon { padding: 0 10px; color: var(--awb-grey-300); flex-shrink: 0; }
.awb-iicon svg { width: 14px; height: 14px; display: block; }
.awb-input {
  border: none !important; outline: none !important; background: transparent !important;
  padding: 11px 12px !important; font-size: .875rem !important;
  flex: 1 !important; color: var(--awb-ink) !important;
  font-family: var(--awb-font) !important; min-width: 0;
}
.awb-iicon ~ .awb-input { padding-left: 0 !important; }
.awb-input::placeholder { color: var(--awb-grey-400) !important; }

/* Standalone select (no igroup) */
.awb-select-field {
  width: 100%; border: 1px solid var(--awb-border);
  border-radius: var(--awb-rsm); padding: 11px 36px 11px 14px;
  font-size: .875rem; font-family: var(--awb-font); color: var(--awb-ink);
  background: var(--awb-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 13px center;
  background-size: 11px; cursor: pointer; appearance: none; -webkit-appearance: none;
  transition: border-color var(--awb-t), box-shadow var(--awb-t);
}
.awb-select-field:focus { outline: none; border-color: var(--awb-grey-700); box-shadow: 0 0 0 3px rgba(0,0,0,.05); }
.awb-textarea {
  border: 1px solid var(--awb-border); border-radius: var(--awb-rsm);
  padding: 11px 13px; font-size: .875rem; font-family: var(--awb-font);
  color: var(--awb-ink); resize: vertical; width: 100%;
  transition: border-color var(--awb-t); background: var(--awb-white);
}
.awb-textarea:focus { outline: none; border-color: var(--awb-grey-700); box-shadow: 0 0 0 3px rgba(0,0,0,.05); }
.awb-reg { text-transform: uppercase; font-family: var(--awb-mono); letter-spacing: .06em; }

/* ============================================================
   UNIVERSAL CARD — shared by ALL choice cards
   ============================================================ */
.awb-card-choice { cursor: pointer; display: block; }
.awb-card-choice input[type=radio],
.awb-card-choice input[type=checkbox] { display: none; }
.awb-card-inner {
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-r);
  background: var(--awb-white);
  transition: border-color var(--awb-t), box-shadow var(--awb-t);
  position: relative;
  height: 100%;
}
/* Radio dot top-right on all cards */
.awb-card-inner::after {
  content: '';
  position: absolute; top: 12px; right: 12px;
  width: 15px; height: 15px; border-radius: 50%;
  border: 1.5px solid var(--awb-grey-300);
  background: var(--awb-white);
  transition: all var(--awb-t);
  pointer-events: none;
}
.awb-card-choice:hover .awb-card-inner { border-color: var(--awb-grey-500); }
.awb-card-choice input:checked + .awb-card-inner {
  border-color: var(--awb-grey-900);
}
.awb-card-choice input:checked + .awb-card-inner::after {
  background: var(--awb-grey-900);
  border-color: var(--awb-grey-900);
  box-shadow: inset 0 0 0 3.5px var(--awb-white);
}

/* ============================================================
   STEP 2 — WHEEL CONDITION CARDS
   Same layout as .awb-opt vertical cards — fully consistent
   ============================================================ */
.awb-condition-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.awb-ccard { cursor: pointer; display: flex; flex-direction: column; }
.awb-ccard input { display: none; }
.awb-ccard-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 24px 20px 22px; gap: 9px;
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-r); background: var(--awb-white);
  position: relative; height: 100%;
  transition: border-color var(--awb-t);
}
.awb-ccard-inner::after {
  content: ''; position: absolute; top: 10px; right: 10px;
  width: 15px; height: 15px; border-radius: 50%;
  border: 1.5px solid var(--awb-grey-300);
  background: var(--awb-white); transition: all var(--awb-t);
}
.awb-ccard:hover .awb-ccard-inner { border-color: var(--awb-grey-500); }
.awb-ccard input:checked + .awb-ccard-inner { border-color: var(--awb-grey-900); }
.awb-ccard input:checked + .awb-ccard-inner::after {
  background: var(--awb-grey-900); border-color: var(--awb-grey-900);
  box-shadow: inset 0 0 0 3.5px var(--awb-white);
}
/* Visual area — matches awb-opt-icon exactly */
.awb-ccard-visual { display: none; } /* hide old visual block */
.awb-ccard-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--awb-grey-100); color: var(--awb-grey-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--awb-t), color var(--awb-t);
  margin-bottom: 2px;
}
.awb-ccard-icon svg { width: 20px; height: 20px; }
.awb-ccard input:checked + .awb-ccard-inner .awb-ccard-icon {
  background: var(--awb-grey-900); color: var(--awb-white);
}
/* Body — no separate padding needed, card handles it */
.awb-ccard-body { display: contents; } /* merge body into card flow */
.awb-ccard-title {
  display: block; font-size: .9rem; font-weight: 800;
  color: var(--awb-ink); line-height: 1.25;
}
.awb-ccard-desc {
  font-size: .75rem; color: var(--awb-ink-2);
  line-height: 1.5; display: block;
}
.awb-ccard-detail {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-top: 4px;
}
.awb-ccard-service-tag {
  display: inline-flex; font-size: .6rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px;
}
.awb-cst-mobile { background: var(--awb-grey-900); color: var(--awb-white); }
.awb-cst-drop   { background: var(--awb-grey-100); color: var(--awb-grey-600); border: 1px solid var(--awb-border); }
/* Mobile pill — matches the surcharge badge style exactly */
.awb-cst-premium {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fffbeb; color: #92400e;
  border: 1px solid #fde68a;
  font-size: .66rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
}
.awb-cst-premium svg { width: 9px; height: 9px; }
.awb-ccard-price { font-size: .9rem; font-weight: 900; color: var(--awb-grey-700); letter-spacing: -.02em; }

/* ============================================================
   STEP 2b — LOOSE WHEEL (cracks + tyre + delivery)
   ============================================================ */
.awb-loose-section {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--awb-border);
}
.awb-loose-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 12px; }
.awb-loose-section-label {
  display: flex; align-items: center; gap: 9px;
  font-size: .69rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--awb-ink-3); margin-bottom: 14px;
}
.awb-step-badge {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--awb-grey-100); color: var(--awb-grey-600);
  border: 1px solid var(--awb-grey-300);
  font-size: .67rem; font-weight: 700; letter-spacing: 0;
  text-transform: none;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; line-height: 1;
}

/* Taller section gap — so 3 sections feel distinct */
.awb-loose-section {
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--awb-border);
}
.awb-loose-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 12px; }

/* 2- or 3-col question grid — all cards same height */
.awb-loose-q-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
}
.awb-loose-q-grid-2 { grid-template-columns: repeat(2,1fr); }

.awb-lq-card { cursor: pointer; }
.awb-lq-card input { display: none; }
.awb-lq-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; text-align: center; gap: 5px;
  padding: 18px 14px 16px;
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-r); background: var(--awb-white);
  height: 100%; position: relative;
  transition: border-color var(--awb-t);
}
.awb-lq-inner::after {
  content: ''; position: absolute; top: 10px; right: 10px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--awb-grey-300);
  background: var(--awb-white); transition: all var(--awb-t);
}
.awb-lq-card:hover .awb-lq-inner { border-color: var(--awb-grey-500); }
.awb-lq-card input:checked + .awb-lq-inner { border-color: var(--awb-grey-900); }
.awb-lq-card input:checked + .awb-lq-inner::after {
  background: var(--awb-grey-900); border-color: var(--awb-grey-900);
  box-shadow: inset 0 0 0 3px var(--awb-white);
}
.awb-lq-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--awb-grey-100); color: var(--awb-grey-500);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--awb-t), color var(--awb-t);
  flex-shrink: 0; margin-bottom: 2px;
}
.awb-lq-icon svg { width: 20px; height: 20px; }
.awb-lq-card input:checked + .awb-lq-inner .awb-lq-icon {
  background: var(--awb-grey-900); color: var(--awb-white);
}
.awb-lq-inner strong { font-size: .875rem; font-weight: 800; color: var(--awb-ink); line-height: 1.2; }
.awb-lq-inner span:not(.awb-lq-badge) { font-size: .76rem; color: var(--awb-ink-2); line-height: 1.4; }

.awb-lq-badge { display: inline-flex; font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; margin-top: 5px; }
.awb-badge-free   { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; display: inline-flex; }
.awb-badge-charge { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; display: inline-flex; }

/* ============================================================
   STEP 3 — CRACKS (on-car path) — AWB-OPT cards
   ============================================================ */
.awb-opt-row   { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 24px; }
.awb-opt-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; align-items: stretch; }
.awb-opt-row-2 .awb-opt { height: 100%; }
.awb-opt-row-2 .awb-opt-inner { height: 100%; }

.awb-opt { cursor: pointer; display: flex; flex-direction: column; height: 100%; }
.awb-opt input { display: none; }
.awb-opt-inner {
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-r); background: var(--awb-white);
  position: relative; height: 100%;
  transition: border-color var(--awb-t);
}
.awb-opt-inner::after {
  content: ''; position: absolute; top: 10px; right: 10px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--awb-grey-300);
  background: var(--awb-white); transition: all var(--awb-t);
}
.awb-opt:hover .awb-opt-inner { border-color: var(--awb-grey-500); }
.awb-opt input:checked + .awb-opt-inner { border-color: var(--awb-grey-900); }
.awb-opt input:checked + .awb-opt-inner::after {
  background: var(--awb-grey-900); border-color: var(--awb-grey-900);
  box-shadow: inset 0 0 0 3px var(--awb-white);
}

/* Vertical opt card (cracks) */
.awb-opt-inner:not(.awb-opt-horiz) {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; text-align: center;
  padding: 20px 16px 18px; gap: 6px;
}
.awb-opt-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--awb-grey-100); color: var(--awb-grey-500);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--awb-t), color var(--awb-t);
  flex-shrink: 0;
}
.awb-opt-icon svg { width: 20px; height: 20px; }
.awb-opt input:checked + .awb-opt-inner .awb-opt-icon { background: var(--awb-grey-900); color: var(--awb-white); }
.awb-opt-title { font-size: .875rem; font-weight: 800; color: var(--awb-ink); line-height: 1.2; }
.awb-opt-sub   { font-size: .75rem; color: var(--awb-ink-2); line-height: 1.4; }

/* Horizontal opt card (speed) */
.awb-opt-horiz {
  display: flex !important; flex-direction: row !important;
  align-items: center !important; text-align: left !important;
  padding: 16px 42px 16px 16px; gap: 14px;
  flex: 1;
}
.awb-opt-horiz .awb-opt-icon { flex-shrink: 0; }
.awb-opt-horiz div { display: flex; flex-direction: column; gap: 2px; }

/* ── PRIORITY card — gold ── */
.awb-opt-priority .awb-opt-inner {
  border-color: #d4a827;
  background: linear-gradient(160deg, #fffef5 0%, #fef9dc 100%);
}
.awb-opt-priority .awb-opt-inner::after { border-color: #c9a020; }
.awb-opt-priority:hover .awb-opt-inner {
  border-color: #b8860b;
  box-shadow: 0 2px 12px rgba(200,160,20,.12);
}
.awb-opt-priority input:checked + .awb-opt-inner {
  border-color: #a07010;
  box-shadow: 0 0 0 1.5px #c9a020;
}
.awb-opt-priority input:checked + .awb-opt-inner::after {
  background: #a07010; border-color: #a07010;
  box-shadow: inset 0 0 0 3px var(--awb-white);
}
.awb-opt-priority .awb-opt-icon { background: #fef3c7; color: #a07010; border: 1px solid #fde68a; }
.awb-opt-priority input:checked + .awb-opt-inner .awb-opt-icon { background: linear-gradient(135deg,#c9a020,#a07010); color: #fff; }
.awb-opt-priority .awb-opt-title { color: #6b4c00; }
.awb-opt-priority .awb-opt-sub   { color: #8a6200; }
.awb-priority-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg,#c9a020,#a07010); color: #fff;
  font-size: .56rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px; margin-bottom: 2px;
}
.awb-priority-badge svg { width: 8px; height: 8px; }

/* ============================================================
   STEP 4 — AVAILABILITY
   ============================================================ */
.awb-avail-block {
  margin-top: 20px; padding: 18px 20px;
  background: var(--awb-grey-50);
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-r);
}
.awb-avail-label {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 800; color: var(--awb-ink); margin-bottom: 5px;
}
.awb-avail-label svg { width: 14px; height: 14px; color: var(--awb-grey-500); flex-shrink: 0; }
.awb-avail-optional { font-size: .7rem; font-weight: 500; color: var(--awb-grey-400); }
.awb-avail-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px;
}

/* ============================================================
   STEP 5 — LOCATION LIST
   ============================================================ */
.awb-loc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 18px; }
.awb-loc-left { min-width: 0; }
#awb-loc-loading { padding: 24px; text-align: center; color: var(--awb-ink-3); font-size: .84rem; }

.awb-loc-item {
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-r); background: var(--awb-white);
  cursor: pointer; margin-bottom: 8px;
  transition: border-color var(--awb-t);
  position: relative;
}
.awb-loc-item::after {
  content: ''; position: absolute; top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 15px; height: 15px; border-radius: 50%;
  border: 1.5px solid var(--awb-grey-300);
  background: var(--awb-white); transition: all var(--awb-t);
}
.awb-loc-item:hover { border-color: var(--awb-grey-500); }
.awb-loc-item.chosen { border-color: var(--awb-grey-900); }
.awb-loc-item.chosen::after {
  background: var(--awb-grey-900); border-color: var(--awb-grey-900);
  box-shadow: inset 0 0 0 3.5px var(--awb-white);
}
.awb-loc-row { display: flex; align-items: center; padding: 13px 44px 13px 14px; gap: 12px; }
.awb-loc-bar { display: none; } /* removed left bar */
.awb-loc-ico { color: var(--awb-grey-400); flex-shrink: 0; }
.awb-loc-ico svg { width: 17px; height: 17px; display: block; }
.awb-loc-content { flex: 1; min-width: 0; }
.awb-loc-typetag {
  display: inline-flex; font-size: .58rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 20px; margin-bottom: 4px;
}
.awb-tag-mobile-loc  { background: var(--awb-grey-100); color: var(--awb-grey-700); border: 1px solid var(--awb-border); }
.awb-tag-dropoff-loc { background: var(--awb-grey-100); color: var(--awb-grey-600); border: 1px solid var(--awb-border); }
.awb-loc-name    { display: block; font-size: .875rem; font-weight: 700; color: var(--awb-ink); }
.awb-loc-address { display: block; font-size: .75rem; color: var(--awb-ink-3); margin-top: 2px; }
.awb-loc-note    { display: block; font-size: .73rem; color: var(--awb-ink-3); margin-top: 3px; }
.awb-loc-meta {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 4px; flex-shrink: 0;
}
.awb-loc-badge { display: inline-flex; font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.awb-loc-dist  { font-size: .72rem; color: var(--awb-ink-3); }
/* Hide old radio — using ::after instead */
.awb-loc-radio { display: none; }
.awb-loc-radio-dot { display: none; }

/* Sort note */
.awb-loc-sort-note {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem; color: var(--awb-ink-3);
  padding: 0 0 10px 2px;
}
.awb-loc-sort-note svg { flex-shrink: 0; }

/* Show more button */
.awb-show-more-locs {
  display: block; width: 100%; padding: 11px;
  background: var(--awb-grey-50); border: 1px solid var(--awb-border);
  border-radius: var(--awb-r); font-size: .8rem; font-weight: 700;
  color: var(--awb-ink-2); cursor: pointer; text-align: center; margin-bottom: 8px;
  transition: background var(--awb-t), border-color var(--awb-t);
}
.awb-show-more-locs:hover { background: var(--awb-grey-100); border-color: var(--awb-grey-400); }
.awb-loc-hidden { display: none; }

/* Mobile address block */
.awb-addr-block { margin-top: 10px; }
.awb-addr-block-hd {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: var(--awb-grey-50);
  border: 1px solid var(--awb-border); border-bottom: none;
  border-radius: var(--awb-r) var(--awb-r) 0 0;
  font-size: .78rem; font-weight: 700; color: var(--awb-ink-2);
}
.awb-addr-block-hd svg { width: 14px; height: 14px; color: var(--awb-ink-3); }
.awb-grid-addr-v2 {
  display: grid; grid-template-columns: 110px 1fr 1fr 130px;
  gap: 10px; padding: 16px;
  border: 1px solid var(--awb-border); border-radius: 0 0 var(--awb-r) var(--awb-r);
  background: var(--awb-white);
}

/* Map */
.awb-map-static-wrap { position: sticky; top: 20px; }
.awb-static-map { height: 300px; border-radius: var(--awb-r); overflow: hidden; background: var(--awb-grey-100); border: 1px solid var(--awb-border); }
.awb-map-legend {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
}
.awb-leg-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; color: var(--awb-ink-2);
  white-space: nowrap;
}
.awb-leg-dot  { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }

/* Zone notices */
.awb-zone-notice {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 11px 14px; border-radius: var(--awb-rsm);
  font-size: .8rem; line-height: 1.5; margin-bottom: 14px;
  border: 1px solid;
}
.awb-zone-notice svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }
.notice-ok   { background: #f0fdf4; color: #14532d; border-color: #bbf7d0; }
.notice-ok svg { color: #15803d; }
.notice-warn { background: #fffbeb; color: #78350f; border-color: #fde68a; }
.notice-warn svg { color: #d97706; }
.notice-info { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.awb-zone-notice--loading { background: var(--awb-grey-50); color: var(--awb-grey-500); border-color: var(--awb-border); }

/* Drop-off disclaimer */
.awb-dropoff-disclaimer {
  margin-top: 12px; padding: 14px 16px;
  background: #fffbeb; border: 1px solid #fde68a;
  border-left: 3px solid #d97706; border-radius: var(--awb-rsm);
  font-size: .8rem; color: #5c3d00; line-height: 1.55;
}
@media (max-width: 860px) {
  /* Disclaimer at top on mobile — margin below instead */
  .awb-dropoff-disclaimer { margin-top: 0; margin-bottom: 14px; }
}
.awb-dd-header { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.awb-dd-header svg { color: #d97706; flex-shrink: 0; }
.awb-dd-header strong { font-size: .84rem; color: #3d2800; }
.awb-dropoff-disclaimer p { margin: 0 0 7px; }
.awb-dropoff-disclaimer p:last-of-type { margin-bottom: 10px; }
.awb-dd-contacts { display: flex; gap: 8px; flex-wrap: wrap; }
.awb-dd-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--awb-rsm);
  font-size: .8rem; font-weight: 700; text-decoration: none;
  transition: opacity var(--awb-t);
}
.awb-dd-btn:hover { opacity: .85; }
.awb-dd-btn-wa   { background: #25D366; color: #fff; }
.awb-dd-btn-call { background: var(--awb-grey-900); color: #fff; }

/* ============================================================
   STEP 6 — REVIEW & CONFIRM
   ============================================================ */
.awb-sum-card {
  border: 1px solid var(--awb-border); border-radius: var(--awb-r);
  overflow: hidden; margin-bottom: 22px;
}
.awb-sum-hd {
  display: flex; align-items: center; gap: 10px;
  background: var(--awb-grey-900); color: var(--awb-white);
  padding: 13px 18px; font-size: .82rem; font-weight: 700;
}
.awb-sum-hd svg { width: 14px; height: 14px; }
.awb-sum-price-badge {
  margin-left: auto; font-size: 1.1rem; font-weight: 900; letter-spacing: -.03em;
}
.awb-sum-body { display: grid; grid-template-columns: 1fr 1fr; }
.awb-sum-row {
  padding: 11px 18px; border-bottom: 1px solid var(--awb-border);
  display: flex; flex-direction: column; gap: 2px;
}
.awb-sum-row:nth-child(odd):not(:last-child) { border-right: 1px solid var(--awb-border); }
.awb-sum-key { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--awb-ink-3); display: block; }
.awb-sum-val { font-size: .875rem; font-weight: 600; color: var(--awb-ink); display: block; }
.awb-sum-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; background: var(--awb-grey-50);
  border-top: 1px solid var(--awb-border);
  font-size: .78rem; color: var(--awb-ink-2); font-weight: 600;
}

/* Contact fields */
.awb-section-label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .09em; color: var(--awb-ink-3); margin-bottom: 12px; display: block;
}
.awb-fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.awb-grid-2 { grid-template-columns: 1fr 1fr; }
.awb-fg-full { grid-column: 1 / -1; }
.awb-fg-street { grid-column: span 2; }

/* Address confirm (readonly) */
.awb-addr-confirm-block { margin-bottom: 20px; }
.awb-grid-addr { display: grid; grid-template-columns: 90px 1fr 1fr 110px; gap: 10px; }
.awb-grid-addr input[readonly],
.awb-grid-addr-v2 input[readonly] {
  background: var(--awb-grey-50) !important;
  color: var(--awb-ink-2) !important;
  cursor: default !important;
}

/* Agreements */
.awb-agrees { margin-bottom: 22px; }
.awb-agrees-hd {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; color: var(--awb-ink-2);
  margin-bottom: 12px;
}
.awb-agrees-hd svg { width: 14px; height: 14px; }
.awb-agree {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 0; border-bottom: 1px solid var(--awb-border);
  cursor: pointer; font-size: .82rem; color: var(--awb-ink-2); line-height: 1.55;
}
.awb-agree:last-child { border-bottom: none; }
.awb-chk {
  width: 18px; height: 18px; border: 1.5px solid var(--awb-grey-300);
  border-radius: 4px; flex-shrink: 0; margin-top: 1px; background: var(--awb-white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--awb-t);
}
.awb-agree input:checked ~ .awb-chk {
  background: var(--awb-grey-900); border-color: var(--awb-grey-900);
}
.awb-agree input:checked ~ .awb-chk::after {
  content: ''; width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(42deg); margin-top: -1px;
}
.awb-agree input[type=checkbox] { display: none; }
.awb-agree a { color: var(--awb-ink); font-weight: 700; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.awb-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; gap: 10px; }
.awb-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: var(--awb-rsm);
  font-size: .875rem; font-weight: 700; cursor: pointer;
  border: 1.5px solid; font-family: var(--awb-font);
  transition: all var(--awb-t); white-space: nowrap; text-decoration: none;
}
.awb-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.awb-btn-primary {
  background: var(--awb-grey-900); border-color: var(--awb-grey-900);
  color: var(--awb-white);
}
.awb-btn-primary:hover { background: var(--awb-grey-700); border-color: var(--awb-grey-700); }
.awb-btn-primary:disabled { opacity: .38; cursor: not-allowed; }
.awb-btn-ghost {
  background: var(--awb-white); border-color: var(--awb-border);
  color: var(--awb-ink-2);
}
.awb-btn-ghost:hover { border-color: var(--awb-grey-500); color: var(--awb-ink); }
.awb-btn-submit {
  background: var(--awb-grey-900); border-color: var(--awb-grey-900);
  color: var(--awb-white); padding: 13px 28px; font-size: .9rem;
}
.awb-btn-submit:hover { background: var(--awb-grey-700); }
.awb-btn-submit:disabled { opacity: .4; cursor: not-allowed; }

/* ============================================================
   ERROR / FLASH
   ============================================================ */
.awb-flash {
  padding: 10px 14px; border-radius: var(--awb-rsm);
  font-size: .8rem; font-weight: 600; margin-top: 12px;
  background: #fef2f2; color: #991b1b;
  border: 1px solid #fecaca; display: none;
}
.awb-error-msg { color: #991b1b; font-size: .8rem; font-weight: 600; padding: 8px 0; display: none; }

/* ============================================================
   SUCCESS SCREEN
   ============================================================ */
.awb-success-wrap { padding: var(--awb-pad); }
.awb-success-top {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
}
.awb-success-check { width: 52px; height: 52px; flex-shrink: 0; color: var(--awb-red); }
.awb-success-check svg { width: 52px; height: 52px; }
.awb-success-check circle { stroke: var(--awb-red-lt); }
.awb-success-check path  { stroke: var(--awb-red); }
.awb-success-text h2 { font-size: 1.2rem; font-weight: 800; margin: 0 0 4px; color: var(--awb-ink); }
.awb-success-text p  { font-size: .84rem; color: var(--awb-ink-2); margin: 0; line-height: 1.55; }
.awb-success-ref-block {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--awb-grey-900); border-radius: var(--awb-r);
  overflow: hidden; margin-bottom: 20px;
}
.awb-success-ref-inner, .awb-success-name-inner {
  padding: 16px 20px; display: flex; flex-direction: column; gap: 4px;
}
.awb-success-ref-inner { border-right: 1px solid rgba(255,255,255,.07); }
.awb-success-ref-lbl { font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.awb-success-ref-val { font-family: var(--awb-mono); font-size: 1.35rem; font-weight: 900; color: var(--awb-red-mid); letter-spacing: .05em; line-height: 1; }
.awb-success-steps { padding: 0 0 16px; }
.awb-success-step {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--awb-border);
}
.awb-success-step:last-child { border-bottom: none; }
.awb-ss-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.awb-step-done .awb-ss-icon { background: var(--awb-red-lt); color: var(--awb-red); }
.awb-step-next .awb-ss-icon { background: var(--awb-grey-900); color: #fff; }
.awb-step-wait .awb-ss-icon { background: var(--awb-grey-100); color: var(--awb-grey-500); }
.awb-ss-body strong { display: block; font-size: .875rem; font-weight: 700; color: var(--awb-ink); }
.awb-ss-body span   { font-size: .78rem; color: var(--awb-ink-3); }
.awb-success-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0 0; border-top: 1px solid var(--awb-border);
  font-size: .8rem; color: var(--awb-ink-2); gap: 12px; flex-wrap: wrap;
}
.awb-success-contact, .awb-success-email-note {
  display: flex; align-items: center; gap: 6px;
}
.awb-success-footer svg { width: 13px; height: 13px; color: var(--awb-red); }
.awb-success-contact strong { font-weight: 800; color: var(--awb-ink); }

/* ============================================================
   RESPONSIVE
   Desktop: all grids as designed
   Mobile (≤600px): all cards stack vertically (1 col)
   ============================================================ */

/* Below 860px: map drops below list, full width */
@media (max-width: 860px) {
  .awb-loc-layout { grid-template-columns: 1fr; }
  .awb-map-static-wrap {
    display: block !important;
    position: static !important;
    margin-top: 18px;
    width: 100%;
  }
  /* Explicit height ensures Google Maps never collapses to 0 on mobile */
  #awb-static-map,
  .awb-static-map {
    height: 300px !important;
    min-height: 300px !important;
    width: 100% !important;
    border-radius: var(--awb-r) !important;
  }
  .awb-map-legend {
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px; margin-top: 10px;
  }
  .awb-leg-item { font-size: .68rem; white-space: nowrap; }
}

/* Mid — dot labels hide, minor padding */
@media (max-width: 680px) {
  .awb-dot-label { display: none; }
}

/* Mobile — everything stacks vertically */
@media (max-width: 600px) {
  :root { --awb-pad: 16px; }
  .awb-wrap { background: #fff; }
  .awb-panel-inner, .awb-panel-wide { background: #fff; }
  /* Prevent iOS auto-zoom on input focus (requires font-size >= 16px) */
  .awb-input,
  .awb-textarea,
  .awb-select-field,
  select, input, textarea { font-size: 16px !important; }
  /* Progress bar — smaller dots, no labels, give steps more breathing room */
  .awb-steps { padding: 10px 12px 12px; gap: 0; }
  .awb-step { gap: 4px; }
  .awb-dot { width: 28px; height: 28px; }
  .awb-dot svg { width: 12px; height: 12px; }
  .awb-progress-track { height: 2px; }
  /* Ticker — smaller on mobile */
  .awb-ticker { padding: 9px var(--awb-pad); }
  .awb-ticker-value { font-size: 1.3rem; }
  .awb-ticker-label { font-size: .62rem; }
  /* Step heading — tighter on mobile */
  .awb-step-hd { margin-bottom: 16px; }
  .awb-step-hd h2 { font-size: 1.15rem; }
  .awb-step-hd p { font-size: .82rem; }

  /* All card grids → single column */
  .awb-condition-grid     { grid-template-columns: 1fr; }
  .awb-loose-q-grid       { grid-template-columns: 1fr; }
  .awb-loose-q-grid-2     { grid-template-columns: 1fr; }
  .awb-opt-row            { grid-template-columns: 1fr; }
  .awb-opt-row-2          { grid-template-columns: 1fr; }

  /* Step 1 fields → single column */
  .awb-step1-name-row     { grid-template-columns: 1fr; }
  .awb-step1-bottom-row   { grid-template-columns: 1fr; }

  /* Contact / confirm fields → single column */
  .awb-fields-grid,
  .awb-grid-2             { grid-template-columns: 1fr; }
  .awb-fg-full,
  .awb-fg-street          { grid-column: auto; }

  /* Address grids → 2 col (house+street, town+postcode) */
  .awb-grid-addr-v2       { grid-template-columns: 1fr 1fr; }
  .awb-grid-addr          { grid-template-columns: 1fr 1fr; }

  /* Summary → single column */
  .awb-sum-body           { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .awb-sum-row:nth-child(odd) { border-right: none; }

  /* Availability → single column */
  .awb-avail-row          { grid-template-columns: 1fr; }

  /* Nav buttons — Back always first on mobile */
  .awb-nav                { flex-direction: column-reverse; flex-wrap: nowrap; }
  .awb-btn                { width: 100%; justify-content: center; }
  .awb-btn-ghost          { order: 2; }
  .awb-btn-primary        { order: 1; }
  .awb-btn-submit         { order: 1; width: 100%; }

  /* Success block */
  .awb-success-ref-block  { grid-template-columns: 1fr; }
  .awb-success-ref-inner  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }


  /* Step 2b — condensed on mobile */
  .awb-loose-section { margin-bottom: 16px; padding-bottom: 16px; }
  .awb-lq-inner { padding: 12px 10px 11px; gap: 5px; }
  .awb-lq-icon svg { width: 26px; height: 26px; }
  .awb-lq-inner strong { font-size: .82rem; }
  .awb-lq-inner span:not(.awb-lq-badge) { font-size: .72rem; }
  .awb-lq-badge { font-size: .62rem; padding: 2px 7px; margin-top: 3px; }
  .awb-loose-section-label { font-size: .66rem; margin-bottom: 9px; }

  /* Speed cards equal height still in 1-col */
  .awb-opt-row-2 .awb-opt,
  .awb-opt-row-2 .awb-opt-inner { height: auto; }
}

/* Stag tags on service cards */
.awb-stag {
  display: inline-flex; font-size: .6rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px;
}
.awb-stag-mobile { background: var(--awb-grey-900); color: var(--awb-white); }
.awb-stag-drop   { background: var(--awb-grey-100); color: var(--awb-grey-600); border: 1px solid var(--awb-border); }

/* Unavailable card */
.awb-scard.unavailable { pointer-events: none; opacity: .45; }
