/* ============================================================
   WastePlace — Boston Pilot wireframe design system
   Tokens mirror /imports/ui/constant/theme.js (on-brand).
   All wireframe screens MUST link this file and compose these
   classes. Do not invent new colors/fonts per screen.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@500;600;700&display=swap');

:root {
  /* Brand — WastePlace Brand Book 2024 (exact hex) */
  --wp-blue: #4173D1;       /* WastePlace Blue — logo, links, accents */
  --wp-blue-dark: #335cab;
  --wp-green: #4EAF50;      /* WastePlace Green — CTA buttons */
  --wp-green-dark: #429244;
  --azure: #288FCF;         /* WastePlace Azure — icons */
  --sky: #5BC2F0;           /* WastePlace Sky Blue — icon accent */
  --midnight: #24272A;      /* WastePlace Midnight — body text */
  --product-blue: #288FCF;
  --charcoal: #41484E;
  /* Neutrals */
  --graphite: #24272A;
  --slate: #6B767F;
  --steel: #AAB2B9;
  --elephant: #D2D5D8;
  --concrete: #E8EBEF;
  --snow: #F8F9FB;
  --white: #FFFFFF;
  /* Alert */
  --slime: #4CAF50;
  --slime-bg: #4CAF5010;
  --rose: #D63F3F;
  --red: #D12D2D;
  --butterscotch: #FFBB38;
  --butterscotch-bg: #FFBB3822;
  /* Type */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  /* Radius / shadow / spacing */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(36,39,42,.06), 0 1px 3px rgba(36,39,42,.08);
  --shadow-2: 0 4px 12px rgba(36,39,42,.08), 0 2px 4px rgba(36,39,42,.06);
  --shadow-3: 0 12px 32px rgba(36,39,42,.12);
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--snow);
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--wp-blue); line-height: 1.2; }
h1 { font-size: 43px; font-weight: 700; letter-spacing: .5px; }
h2 { font-size: 32px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; letter-spacing: .2px; }
h5 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--slate); }
.eyebrow { font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--wp-blue); }
.muted { color: var(--slate); }
.small { font-size: 13px; }
.tiny { font-size: 11px; }
.strong { font-weight: 700; }
a { color: var(--wp-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 var(--sp-5); }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 var(--sp-5); }
.row { display: flex; gap: var(--sp-5); }
.col { flex: 1; }
.between { justify-content: space-between; }
.center { align-items: center; }
.wrap { flex-wrap: wrap; }
.stack > * + * { margin-top: var(--sp-4); }
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.section { padding: var(--sp-7) 0; }
.mt-2{margin-top:var(--sp-2)} .mt-3{margin-top:var(--sp-3)} .mt-4{margin-top:var(--sp-4)} .mt-5{margin-top:var(--sp-5)}
.mb-2{margin-bottom:var(--sp-2)} .mb-3{margin-bottom:var(--sp-3)} .mb-4{margin-bottom:var(--sp-4)} .mb-5{margin-bottom:var(--sp-5)}

/* ---------- Top nav ---------- */
.wp-nav {
  background: var(--white); border-bottom: 1px solid var(--concrete);
  height: 64px; display: flex; align-items: center;
  position: sticky; top: 0; z-index: 20;
}
.wp-nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.wp-logo { font-family: var(--font-head); font-weight: 700; font-size: 23px; color: var(--wp-blue); letter-spacing: -.3px; text-transform: lowercase; }
.wp-logo span { color: var(--midnight); font-weight: 400; }
.wp-nav-links { display: flex; gap: var(--sp-5); align-items: center; }
.wp-nav-links a { color: var(--charcoal); font-weight: 600; font-size: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; color: var(--wp-blue) !important; white-space: nowrap; }
.nav-phone:hover { text-decoration: none; }
.nav-phone-tag { background: var(--wp-blue); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--r-pill); letter-spacing: .5px; text-transform: uppercase; }
.pill-badge { background: var(--wp-blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 11px; padding: 3px 10px; border-radius: var(--r-pill); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: .15s; line-height: 1; text-decoration: none;
}
.btn-primary { background: var(--wp-green); color: #fff; }   /* brand: CTAs are green */
.btn-primary:hover { background: var(--wp-green-dark); text-decoration: none; }
.btn-blue { background: var(--wp-blue); color: #fff; }
.btn-blue:hover { background: var(--wp-blue-dark); text-decoration: none; }
.btn-secondary { background: #fff; color: var(--wp-blue); border-color: var(--wp-blue); }
.btn-secondary:hover { background: var(--snow); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--elephant); }
.btn-success { background: var(--slime); color: #fff; }
.btn-danger { background: #fff; color: var(--rose); border-color: var(--rose); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--concrete); border-radius: var(--r-lg); box-shadow: var(--shadow-1); }
.card-pad { padding: var(--sp-5); }
.card-hover { transition: .15s; cursor: pointer; }
.card-hover:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); border-color: var(--elephant); }

/* Provider marketplace card */
.provider-card { display: flex; gap: var(--sp-5); padding: var(--sp-5); align-items: center; }
.provider-logo { width: 84px; height: 84px; border-radius: var(--r-md); background: var(--concrete); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--slate); flex-shrink: 0; overflow: hidden; }
.provider-meta { flex: 1; min-width: 0; }
.provider-price { text-align: right; flex-shrink: 0; }
.provider-price .amount { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--graphite); }
.provider-price .sub { font-size: 12px; color: var(--slate); }

/* ---------- Stars / rating ---------- */
.stars { color: var(--butterscotch); letter-spacing: 1px; font-size: 15px; }
.stars .empty { color: var(--elephant); }
.rating-line { display: flex; align-items: center; gap: 8px; }
.rating-line .count { color: var(--slate); font-size: 13px; }

/* ---------- Badges / chips ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: .4px; padding: 4px 10px; border-radius: var(--r-pill); text-transform: uppercase; }
.badge-blue { background: #2D73D11a; color: var(--wp-blue); }
.badge-green { background: var(--slime-bg); color: var(--slime); }
.badge-amber { background: var(--butterscotch-bg); color: #9a6f00; }
.badge-grey { background: var(--concrete); color: var(--slate); }
.badge-rose { background: #D63F3F1a; color: var(--rose); }

/* Quick-reply chips (forms) */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border: 1.5px solid var(--elephant); border-radius: var(--r-pill); background: #fff; font-weight: 600; font-size: 14px; color: var(--charcoal); cursor: pointer; transition: .12s; }
.chip:hover { border-color: var(--wp-blue); color: var(--wp-blue); }
.chip.selected { background: var(--wp-blue); border-color: var(--wp-blue); color: #fff; }
.chip-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ---------- Forms ---------- */
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--charcoal); margin-bottom: 6px; }
.field .hint { font-size: 12px; color: var(--slate); margin-top: 4px; }
.input, .select, textarea.input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--elephant);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: 15px; color: var(--graphite);
  background: #fff; transition: .12s;
}
.input:focus, .select:focus, textarea.input:focus { outline: none; border-color: var(--wp-blue); box-shadow: 0 0 0 3px #2D73D122; }
.input::placeholder { color: var(--steel); }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B767F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border: 1.5px solid var(--elephant); border-radius: var(--r-md); cursor: pointer; }
.checkbox input { margin-top: 3px; }

/* Selectable option card (radio-style, e.g. service / vehicle pick) */
.option-card { border: 2px solid var(--concrete); border-radius: var(--r-md); padding: var(--sp-5); cursor: pointer; transition: .12s; text-align: center; background: #fff; }
.option-card:hover { border-color: var(--steel); }
.option-card.selected { border-color: var(--wp-blue); box-shadow: 0 0 0 3px #2D73D11a; }
.option-card .icon { font-size: 32px; margin-bottom: var(--sp-2); }

/* ---------- Stepper / progress ---------- */
.stepper { display: flex; gap: 6px; align-items: center; }
.stepper .seg { height: 4px; flex: 1; background: var(--concrete); border-radius: var(--r-pill); }
.stepper .seg.done { background: var(--wp-blue); }
.step-label { font-family: var(--font-head); font-weight: 600; font-size: 12px; color: var(--wp-blue); letter-spacing: .5px; }

/* ---------- Order summary ---------- */
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary-row.total { border-top: 1px solid var(--concrete); margin-top: 6px; padding-top: 12px; font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.due-now { display: flex; justify-content: space-between; align-items: baseline; }
.due-now .amount { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--wp-blue); }

/* ---------- Callouts ---------- */
.callout { display: flex; gap: 12px; padding: var(--sp-4); border-radius: var(--r-md); }
.callout-green { background: var(--slime-bg); border: 1px solid #4CAF5033; }
.callout-blue { background: #2D73D10f; border: 1px solid #2D73D133; }
.callout-amber { background: var(--butterscotch-bg); border: 1px solid #FFBB3855; }
.callout .icon { font-size: 22px; }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; gap: var(--sp-6); flex-wrap: wrap; }
.trust-item { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--charcoal); }
.trust-item .icon { font-size: 20px; color: var(--wp-blue); }

/* ---------- Footer ---------- */
.wp-footer { background: var(--charcoal); color: #fff; padding: var(--sp-7) 0; margin-top: var(--sp-8); }
.wp-footer a { color: var(--concrete); }
.wp-footer .small { color: var(--steel); }

.map-placeholder { background: linear-gradient(135deg,#E8EBEF 25%,#dfe3e8 25%,#dfe3e8 50%,#E8EBEF 50%,#E8EBEF 75%,#dfe3e8 75%); background-size: 24px 24px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--slate); font-size: 13px; }
.img-placeholder { background: var(--concrete); display:flex; align-items:center; justify-content:center; color: var(--steel); font-size: 12px; }

/* ---------- Modal (size guide etc.) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(36,39,42,.55); display: none; align-items: flex-start; justify-content: center; z-index: 100; padding: var(--sp-6) var(--sp-5); overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-3); max-width: 780px; width: 100%; margin: auto; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-5); border-bottom: 1px solid var(--concrete); position: sticky; top: 0; background: #fff; border-radius: var(--r-lg) var(--r-lg) 0 0; z-index: 2; }
.modal-close { background: none; border: none; font-size: 24px; line-height: 1; cursor: pointer; color: var(--slate); }
.modal-close:hover { color: var(--graphite); }
.modal-body { padding: var(--sp-5); }
.help-link { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--wp-blue); cursor: pointer; }

/* Dumpster size guide rows */
.size-row { display: flex; gap: var(--sp-5); padding: var(--sp-4); border: 1px solid var(--concrete); border-radius: var(--r-md); align-items: center; }
.size-row + .size-row { margin-top: var(--sp-3); }
.size-row.popular { border: 2px solid var(--wp-blue); box-shadow: 0 0 0 3px #2D73D114; }
.size-visual { flex-shrink: 0; width: 236px; display: flex; align-items: flex-end; justify-content: center; gap: 8px; }
.mini-scene { display: block; height: auto; }
.size-box { background: linear-gradient(180deg,#3a86e0,#2D73D1); border-radius: 4px 4px 2px 2px; width: 58px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 13px; box-shadow: var(--shadow-1); transition: height .4s cubic-bezier(.16,1,.3,1); }
/* full-body person silhouette for true-scale comparison (rec-card hero + size modal) */
.size-person { width: 28px; height: 66px; color: var(--steel); flex-shrink: 0; }
.size-scene { display: flex; align-items: flex-end; justify-content: center; gap: 8px; height: 96px; }
/* to-scale side-elevation: dumpster (blue) vs a person (height) and a car (length) */
.scale-scene { display: block; width: 100%; max-width: 360px; height: auto; margin: 0 auto; }
.size-info { flex: 1; }
.size-info .dims { font-family: var(--font-head); font-weight: 600; font-size: 12px; color: var(--slate); letter-spacing: .3px; }
.size-row { cursor: pointer; transition: .12s; }
.size-row:hover { border-color: var(--steel); }
.size-row.selected { border: 2px solid var(--wp-blue); box-shadow: 0 0 0 3px #4173D11a; background: #4173D108; }
.size-pick { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--elephant); flex-shrink: 0; position: relative; transition: .12s; }
.size-row.selected .size-pick { border-color: var(--wp-green); background: var(--wp-green); }
.size-row.selected .size-pick::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Guided intake (project / item tiles, recommendation, qty) ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.tile { border: 2px solid var(--concrete); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-3); cursor: pointer; transition: .12s; text-align: center; background: #fff; }
.tile:hover { border-color: var(--steel); }
.tile.selected { border-color: var(--wp-blue); box-shadow: 0 0 0 3px #2D73D114; background: #2D73D106; }
.tile .icon { font-size: 26px; line-height: 1; }
.tile .label { font-family: var(--font-head); font-weight: 600; font-size: 13px; margin-top: 8px; display: block; color: var(--graphite); }

.rec-card { border: 2px solid var(--wp-blue); background: #2D73D10a; border-radius: var(--r-md); padding: var(--sp-5); display: flex; gap: var(--sp-5); align-items: center; }
.rec-size { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--wp-blue); line-height: 1; }

.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--elephant); border-radius: var(--r-pill); overflow: hidden; background: #fff; }
.qty-stepper button { border: none; background: #fff; width: 34px; height: 34px; font-size: 18px; cursor: pointer; color: var(--wp-blue); line-height: 1; }
.qty-stepper button:hover { background: var(--snow); }
.qty-stepper .val { min-width: 30px; text-align: center; font-weight: 700; font-family: var(--font-head); font-size: 15px; }

.item-row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: 12px 14px; border: 1.5px solid var(--concrete); border-radius: var(--r-md); }
.item-row.selected { border-color: var(--wp-blue); background: #2D73D108; }
.item-row .item-label { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }

/* ---------- Status timeline ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--concrete); }
.tl-step { position: relative; padding-bottom: var(--sp-5); }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -30px; top: 0; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 2px solid var(--elephant); display: flex; align-items: center; justify-content: center; z-index: 1; }
.tl-step.done .tl-dot { border-color: var(--wp-green); background: var(--wp-green); color: #fff; }
.tl-step.current .tl-dot { border-color: var(--wp-blue); box-shadow: 0 0 0 4px #4173D11a; }
.tl-step.current .tl-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wp-blue); }
.tl-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.tl-step.upcoming .tl-title { color: var(--steel); }
.tl-step.upcoming .tl-dot { opacity: .6; }

/* ---------- Star rating (review funnel) ---------- */
.stars-pick { display: inline-flex; gap: 6px; font-size: 40px; line-height: 1; cursor: pointer; }
.stars-pick [data-star] { color: var(--elephant); transition: .1s; }
.stars-pick [data-star]:hover, .stars-pick [data-star].on { color: var(--butterscotch); }

/* ---------- Icons (brand line icons via icons.svg sprite; stroke=currentColor) ---------- */
.ic { width: 20px; height: 20px; display: inline-block; vertical-align: -4px; flex-shrink: 0; }
.ic-sm { width: 16px; height: 16px; vertical-align: -3px; }
.ic-lg { width: 28px; height: 28px; }
.ic-xl { width: 44px; height: 44px; }
.ic-azure { color: var(--azure); }
.ic-blue { color: var(--wp-blue); }
.ic-green { color: var(--wp-green); }
.ic-white { color: #fff; }
.ic-muted { color: var(--slate); }
.ic-amber { color: var(--butterscotch); }
/* tile/service icons render larger and in azure by default */
.tile .icon .ic, .option-card .icon .ic { width: 30px; height: 30px; color: var(--azure); }
.icon .ic { color: var(--azure); }

/* ============================================================
   Mobile / responsive — added 2026-06-16. No page HTML changed;
   all 21 slides share this sheet, so one block fixes them all.
   Desktop (>768px) is byte-for-byte unaffected.
   ============================================================ */
@media (max-width: 768px) {
  /* Page two-column layouts (.row > .col) stack instead of running off-screen */
  .row { flex-wrap: wrap; gap: var(--sp-4); }
  .row > .col { flex: 1 1 100% !important; min-width: 0 !important; max-width: 100% !important; position: static !important; }
  /* Wide provider rate tables: scroll inside their card instead of stretching the viewport */
  .card-pad { overflow-x: auto; }

  /* Card/section grids collapse to a single column */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="repeat(3, 1fr)"], [style*="repeat(3,1fr)"],
  [style*="repeat(4, 1fr)"], [style*="repeat(4,1fr)"] { grid-template-columns: 1fr !important; }

  /* Typographic scale-down for small screens */
  h1 { font-size: 29px; letter-spacing: .2px; }
  h2 { font-size: 23px; }
  h3 { font-size: 18px; }

  /* Tighter gutters + section rhythm */
  .container, .container-sm { padding: 0 16px; }
  .section { padding: var(--sp-5) 0; }

  /* Nav: keep the phone CTA, hide secondary links (no room for them without a hamburger) */
  .wp-nav-links { gap: 14px; font-size: 13px; }
  .wp-nav-links a:not(.nav-phone) { display: none; }
  .trust-strip { gap: var(--sp-4); }

  /* Ops console (internal): the wide 6-col queue table stacks to one column on mobile */
  .queue-head { display: none; }
  .queue-row { grid-template-columns: 1fr !important; gap: var(--sp-2) !important; }
}

/* ===== Marketplace price rail — shared by RS configurator (F18) + DR/JR intake (F02) =====
   Single source of truth. Was inline-only in F18, which left the F02 rail unstyled. */
.price-bar { background:#fff; border-radius:var(--r-lg); padding:var(--sp-5); box-shadow:var(--shadow-2); border:1px solid var(--concrete); position:relative; overflow:hidden; }
.price-bar .label { font-family:var(--font-head); font-weight:600; font-size:11px; letter-spacing:.8px; text-transform:uppercase; color:var(--slate); }
.price-bar .number { font-family:var(--font-head); font-weight:800; font-size:42px; line-height:1.05; color:var(--graphite); letter-spacing:-.5px; transition:opacity .25s; }
.price-bar .unit { font-family:var(--font-head); font-weight:600; font-size:16px; color:var(--slate); margin-left:6px; }
.price-bar .due { font-size:13px; color:var(--slate); margin-top:6px; }
.price-bar .lock { display:inline-flex; gap:6px; align-items:center; margin-top:var(--sp-3); background:var(--slime-bg); color:var(--slime); padding:6px 10px; border-radius:var(--r-pill); font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; }
.price-bar .sweep { position:absolute; left:0; right:0; bottom:0; height:2px; background:transparent; pointer-events:none; }
.price-bar.state-recalc .number, .price-bar.state-recalc .unit, .price-bar.state-recalc .due { opacity:.4; }
.price-bar.state-recalc .sweep { background:linear-gradient(90deg, transparent 0%, var(--wp-blue) 30%, var(--wp-blue) 70%, transparent 100%); background-size:200% 100%; animation:sweep 1.0s linear infinite; }
@keyframes sweep { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.picker-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.picker-head .lbl { font-family:var(--font-head); font-weight:700; font-size:11px; letter-spacing:.8px; text-transform:uppercase; color:var(--slate); }
.picker-head .cnt { font-size:11px; color:var(--slate); }

.hauler-pick { display:flex; gap:10px; align-items:center; padding:12px; background:#fff; border:1.5px solid var(--concrete); border-radius:var(--r-md); cursor:pointer; transition:.12s; }
.hauler-pick + .hauler-pick { margin-top:8px; }
.hauler-pick:hover { border-color:var(--steel); }
.hauler-pick.selected { border:2px solid var(--wp-blue); background:#2D73D108; padding:11px; }
.hauler-pick .hauler-logo { width:42px; height:42px; border-radius:var(--r-sm); font-size:12px; font-family:var(--font-head); font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hauler-pick .hp-meta { flex:1; min-width:0; }
.hauler-pick .hp-name { font-family:var(--font-head); font-weight:700; font-size:13px; color:var(--graphite); }
.hauler-pick .hp-rate { font-family:var(--font-head); font-weight:700; font-size:18px; color:var(--graphite); white-space:nowrap; }
.hauler-pick .hp-rate-sub { font-size:10px; color:var(--slate); text-align:right; }
.verified { display:inline-flex; gap:4px; align-items:center; color:var(--slime); font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; }
.selected-hauler { display:inline-flex; align-items:center; gap:6px; font-family:var(--font-head); font-weight:700; font-size:12px; color:var(--wp-blue); background:#2D73D11a; padding:4px 10px; border-radius:var(--r-pill); margin-bottom:8px; }
.tos-ast { font-size:10px; color:var(--slate); margin-left:3px; vertical-align:super; text-decoration:none; }

/* Premier Partner — pinned top-of-picker placement, blue glow + badge (customer-facing). */
.hauler-pick.premier { border-color: rgba(212,175,55,0.65); box-shadow: 0 12px 30px rgba(212,175,55,0.42); }
.hauler-pick.premier:hover { border-color: #D4AF37; }
.hauler-pick.premier.selected { border-color: #D4AF37; box-shadow: 0 14px 34px rgba(212,175,55,0.48); }
/* Set the premier apart from the pack with extra breathing room below it. */
.hauler-pick.premier + .hauler-pick { margin-top: 26px; }
.premier-badge { display:inline-flex; align-items:center; gap:3px; font-family:var(--font-head); font-weight:700; font-size:9px; line-height:1; letter-spacing:.5px; text-transform:uppercase; color:#fff; background:linear-gradient(135deg, #E6B422, #C8941B); padding:3px 7px; border-radius:var(--r-pill); margin-bottom:4px; box-shadow:0 1px 3px rgba(184,134,11,0.45); }
