/* ═══════════ Ride-Now · book a chauffeur ═══════════
   Built to behave like an app, not a page:
   · the shell is position:fixed with NO viewport units, so Safari's collapsing
     URL bar can never move anything
   · every input is 16px, because iOS zooms into anything smaller — and that zoom
     is what lets a phone pan sideways
   · nothing may ever exceed the viewport width (see "no sideways" below)     */
:root{
  --paper:#121417; --paper2:#1a1d21; --ink:#f2f4f6; --grey:#9aa1ab; --grey2:#6f7883;
  --go:#f4821f; --go-hi:#ff9740; --gold:#e9b96b;
  --line:rgba(255,255,255,.10); --hair:rgba(255,255,255,.07);
  --font:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'SF Pro Text',system-ui,sans-serif;
  --row:56px;                       /* comfortably over the 44pt touch minimum */
}
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
html,body{height:100%;overflow:hidden;overscroll-behavior:none;-webkit-text-size-adjust:100%}
body{font-family:var(--font);background:var(--paper);color:var(--ink);font-size:15px;line-height:1.45;
  /* chrome should not feel like selectable text; inputs opt back in below */
  -webkit-user-select:none;user-select:none;-webkit-touch-callout:none}
input,textarea{-webkit-user-select:text;user-select:text}
.hidden{display:none !important}
button,input,select{font:inherit;color:inherit}
button{background:none;border:0;cursor:pointer}
::placeholder{color:var(--grey2)}
.grow{flex:1;min-width:0}

/* ── no sideways, ever ────────────────────────────────────────────────────
   Belt and braces: the shell clips, the scrollers clip horizontally, every
   flex/grid child is allowed to shrink, and long text breaks instead of
   pushing the layout wide. */
.app,.sheet,.modal-card,.group,.row,.seg,.quote,.soldout{max-width:100%}
.scroller,.results{overflow-x:hidden}
.row>*,.seg>*,.qtop>*,.qline>*,.pay-head>*,.live-head>*,.drv>*{min-width:0}
.txt b,.txt small,.qline span,.pay-head p,.res b,.res small,.soldout p,.drv b,.drv small{
  overflow-wrap:anywhere}
img{max-width:100%;height:auto}

/* ── shell ── */
.app{position:fixed;inset:0;overflow:hidden}
#map{position:absolute;inset:0;z-index:1;background:var(--paper2)}
.leaflet-container{background:var(--paper2)}
.leaflet-control-attribution{font-size:9px;opacity:.65}

/* floating controls, native-app style */
.bar{position:absolute;top:0;left:0;right:0;z-index:20;display:flex;align-items:center;
  justify-content:space-between;gap:10px;padding:calc(8px + env(safe-area-inset-top)) 12px 8px;
  pointer-events:none}
.pill{pointer-events:auto;display:grid;place-items:center;height:40px;border-radius:14px;
  background:rgba(24,27,31,.9);border:1px solid rgba(255,255,255,.12);
  box-shadow:0 6px 20px rgba(0,0,0,.4);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.pill.logo{padding:0 13px}
.pill.logo img{height:21px;display:block}
.pill.icon{width:40px;font-size:16px;color:var(--go);text-decoration:none}
.pill:active{transform:scale(.96)}

/* ── sheet ── */
.sheet{position:absolute;left:8px;right:8px;bottom:calc(8px + env(safe-area-inset-bottom) + var(--kb,0px));
  z-index:15;transition:bottom .18s ease-out;
  display:flex;flex-direction:column;max-height:88%;
  border-radius:28px;background:rgba(20,22,25,.9);
  backdrop-filter:blur(16px) saturate(1.5);-webkit-backdrop-filter:blur(16px) saturate(1.5);
  transform:translateZ(0);
  border:1px solid rgba(255,255,255,.1);box-shadow:0 22px 60px rgba(0,0,0,.5)}
.sheet.short{max-height:64%}
.grab{width:36px;height:5px;border-radius:3px;background:rgba(255,255,255,.18);margin:9px auto 2px;flex:0 0 auto}
.scroller{overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;
  min-height:0;touch-action:pan-y;padding:6px 14px 4px}
.cta{padding:10px 14px calc(12px + env(safe-area-inset-bottom));flex:0 0 auto;
  border-top:1px solid var(--hair)}

.stitle{font-size:24px;font-weight:800;letter-spacing:-.03em;margin:4px 2px 14px}
.glabel{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--grey);
  font-weight:800;margin:0 2px 7px}
.gnote{font-size:12.5px;color:var(--grey);margin:-4px 2px 8px;line-height:1.4}

/* ── grouped inset list, the iOS idiom ── */
.group{border-radius:18px;background:#1c1f24;border:1px solid var(--line);overflow:hidden;margin-bottom:16px}
.row{display:flex;align-items:center;gap:12px;width:100%;min-height:var(--row);
  padding:9px 13px;text-align:left;border-bottom:1px solid var(--hair);background:none}
.row:last-child{border-bottom:0}
button.row:active,label.row:active{background:rgba(255,255,255,.05)}
.row .txt{flex:1;min-width:0;display:block}
.row .txt small{display:block;font-size:9.5px;letter-spacing:.12em;color:var(--grey);font-weight:800;
  margin-bottom:1px}
.row .txt b{display:block;font-size:15.5px;font-weight:600;white-space:nowrap;overflow:hidden;
  text-overflow:ellipsis}
.row .txt b.dim{color:var(--grey2);font-weight:500}
.ico{width:30px;height:30px;border-radius:10px;flex:0 0 30px;display:grid;place-items:center;
  font-style:normal;font-size:13px;background:rgba(255,255,255,.06);color:var(--grey)}
.ico.go{background:rgba(244,130,31,.15);color:var(--go)}
.ico.gold{background:rgba(233,185,107,.15);color:var(--gold)}
.ico.when{background:rgba(244,130,31,.12);color:var(--go)}
.chev{font-style:normal;color:var(--grey2);font-size:20px;flex:0 0 auto;line-height:1}
.tick{font-style:normal;color:var(--go);font-size:16px;font-weight:800;flex:0 0 auto;opacity:0}
.tick.on{opacity:1}
.rm{width:32px;height:32px;border-radius:10px;background:rgba(255,255,255,.06);display:grid;place-items:center;
  font-style:normal;font-size:13px;flex:0 0 32px;color:var(--grey)}
.air{width:32px;height:32px;border-radius:10px;background:rgba(244,130,31,.13);display:grid;place-items:center;
  font-style:normal;font-size:14px;flex:0 0 32px;color:var(--go)}
.addstop{width:100%;margin:-8px 0 16px;padding:12px;border-radius:14px;
  border:1px dashed rgba(255,255,255,.22);color:var(--go);font-weight:700;font-size:14px}
.addstop:active{background:rgba(244,130,31,.08)}

/* rows that hold a field — 16px keeps iOS from zooming the page on focus */
.row.input{align-items:center}
.row.input .txt{flex:0 0 96px}
.row.input input{flex:1;min-width:0;width:100%;font-size:16px;border:0;background:none;outline:none;
  padding:6px 0;text-align:right}
.row.input input[type=date],.row.input input[type=time]{-webkit-appearance:none;appearance:none;
  text-align:right;min-width:0}

/* Touch targets: these read small by design, but the finger gets 44px either way. */
.cbtn,.rm,.air,.back,.pill.icon,.chev,.mhead button{position:relative}
.cbtn::after,.rm::after,.air::after,.back::after,.mhead button::after{content:'';position:absolute;
  top:50%;left:50%;transform:translate(-50%,-50%);width:44px;height:44px}

.row.car .txt small{display:block;text-transform:none;letter-spacing:0;font-size:12px;font-weight:600;
  color:var(--grey);margin-top:1px}
.row.car.nofit{opacity:.42}
.row.car .carprice{font-weight:800;font-size:15px;color:var(--go);flex:0 0 auto;font-variant-numeric:tabular-nums}
.row.car.on{background:rgba(244,130,31,.08)}

/* ── stepper rows ── */
.stepper{display:flex;align-items:center;gap:4px;flex:0 0 auto}
.cbtn{width:34px;height:34px;border-radius:11px;background:rgba(255,255,255,.07);font-size:19px;
  font-weight:700;color:var(--ink);display:grid;place-items:center;line-height:1}
.cbtn:active{background:rgba(255,255,255,.14)}
.cbtn:disabled{opacity:.28}
.stepper b{min-width:26px;text-align:center;font-size:16px;font-weight:800;font-variant-numeric:tabular-nums}

/* ── segmented ── */
.seg{display:flex;gap:4px;padding:4px;border-radius:16px;background:var(--paper2);margin-bottom:16px}
.seg button{flex:1 1 0;min-width:0;padding:11px 6px;border-radius:12px;font-size:14px;font-weight:700;
  color:var(--grey);line-height:1.2}
.seg button small{display:block;font-size:10px;font-weight:600;color:var(--grey2);margin-top:2px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.seg button:active{background:rgba(255,255,255,.08)}
.seg button.on{background:#262a30;color:var(--ink);box-shadow:0 2px 8px rgba(0,0,0,.3)}
.seg button.on small{color:var(--go)}
.seg.sub{margin-top:-8px}

/* ── price ── */
.quote{border-radius:18px;background:rgba(244,130,31,.08);border:1px solid rgba(244,130,31,.3);
  padding:14px;margin-bottom:14px}
/* the way the chauffeur will actually drive. Fixed height so revealing the card
   shifts nothing, and pointer-events:none so a thumb scrolls the sheet straight
   through it instead of panning a map. */
.qmap{position:relative;height:156px;margin:0 0 16px;border-radius:18px;overflow:hidden;
  background:var(--paper2);border:1px solid var(--line);pointer-events:none;
  box-shadow:0 4px 14px rgba(0,0,0,.3)}
.qmap .leaflet-container{background:var(--paper2)}
.qmap-tag{position:absolute;z-index:500;left:8px;top:8px;padding:4px 9px;border-radius:9px;
  background:rgba(24,27,31,.92);font-size:10px;font-weight:800;letter-spacing:.09em;
  text-transform:uppercase;color:var(--go);box-shadow:0 2px 8px rgba(0,0,0,.35)}
.qdot{width:11px;height:11px;border-radius:50%;border:2.5px solid #fff;box-shadow:0 1px 5px rgba(0,0,0,.35)}
.qdot.go{background:var(--go)}
.qdot.gold{background:#16181c}
.qdot.mid{background:#6f7883}
.qtop{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
.qtop span{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--go);font-weight:800}
.qtop b{font-size:28px;font-weight:800;letter-spacing:-.03em;color:var(--go)}
.qlines{margin-top:9px;display:flex;flex-direction:column;gap:4px}
.qline{display:flex;justify-content:space-between;gap:12px;font-size:12.5px;color:var(--grey)}
.qline b{font-weight:700;color:var(--ink);font-variant-numeric:tabular-nums;flex:0 0 auto}
.qmeta{display:flex;gap:14px;margin-top:9px;padding-top:9px;border-top:1px solid rgba(244,130,31,.22);
  font-size:11.5px;color:var(--grey);font-weight:600}
.qnote{margin-top:9px;font-size:12px;color:var(--gold);line-height:1.4}

/* ── over capacity ── */
.soldout{border-radius:18px;padding:14px;margin-bottom:14px;
  background:rgba(183,145,47,.08);border:1px solid rgba(183,145,47,.3)}
.soldout b{display:block;font-size:14.5px;font-weight:800;color:var(--gold);letter-spacing:-.01em}
.soldout p{font-size:12.5px;color:var(--grey);margin-top:5px;line-height:1.45}
.socall:active{filter:brightness(1.35)}
.socall{display:inline-block;margin-top:10px;padding:10px 15px;border-radius:12px;background:var(--go);
  color:#181006;font-size:13.5px;font-weight:700;text-decoration:none}

/* ── buttons ── */
.btn{padding:16px 20px;border-radius:16px;font-weight:700;font-size:16.5px;
  transition:transform .12s,filter .15s}
.btn:active{transform:scale(.985)}
.btn:disabled{opacity:.4}
.btn-ink{background:linear-gradient(180deg,var(--go-hi),var(--go));color:#181006;
  box-shadow:0 10px 24px rgba(244,130,31,.3),inset 0 1px 0 rgba(255,255,255,.35)}
.btn-quiet{background:rgba(255,255,255,.07);color:var(--ink)}
.wfull{width:100%}
.foot{text-align:center;font-size:11.5px;color:var(--grey);margin-top:8px}
.foot b{color:var(--ink);font-weight:700}
.err{color:#ff7f6b;font-size:13px;margin:8px 2px 0}

/* ── pay ── */
.pay-head{display:flex;align-items:flex-start;gap:10px;margin:2px 0 16px}
.pay-head h2{font-size:21px;font-weight:800;letter-spacing:-.02em}
.pay-head p{font-size:12.5px;color:var(--grey);margin-top:2px}
.pay-head b{font-size:21px;font-weight:800;color:var(--go);flex:0 0 auto}
.back:active,.mhead button:active{opacity:.55}
.back{width:32px;height:32px;border-radius:11px;background:rgba(255,255,255,.07);font-size:20px;
  color:var(--ink);display:grid;place-items:center;line-height:1;flex:0 0 32px}
.or{display:flex;align-items:center;gap:10px;margin:14px 0 10px;color:var(--grey2);
  font-size:11.5px;font-weight:700}
.or::before,.or::after{content:'';flex:1;height:1px;background:var(--line)}
.cardbox{margin-top:12px;padding:14px;border-radius:16px;border:1px solid var(--line);background:#fff;
  min-height:186px;color:#101418}   /* the SumUp widget iframe is light — give it a light card */
#walletBtn{min-height:48px}

/* ── live ── */
.live-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-top:2px}
.live-head h2{font-size:22px;font-weight:800;letter-spacing:-.025em}
.live-head p{font-size:13px;color:var(--grey);margin-top:2px}
.live-head b{font-size:21px;font-weight:800;color:var(--go);flex:0 0 auto}
.drv{display:flex;align-items:center;gap:12px;margin-top:14px;padding:12px 13px;border-radius:16px;
  background:#1c1f24;border:1px solid var(--line)}
.av{width:44px;height:44px;border-radius:15px;background:rgba(244,130,31,.13);display:grid;place-items:center;
  color:var(--go);font-size:19px;flex:0 0 44px}
.drv b{display:block;font-size:15px}
.drv small{font-size:12.5px;color:var(--grey)}
.call{width:46px;height:46px;border-radius:15px;background:var(--go);color:#181006;display:grid;
  place-items:center;font-size:19px;text-decoration:none;flex:0 0 46px}
.call:active{filter:brightness(.92)}
.prog{display:flex;gap:6px;margin-top:14px}
.prog i{flex:1;height:5px;border-radius:3px;background:rgba(255,255,255,.12);transition:background .3s}
.prog i.on{background:var(--go)}

/* ── modals ── */
.modal{position:fixed;inset:0;z-index:50;background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}
/* The card is itself fixed to the bottom of the viewport. A percentage max-height on a
   fixed element always resolves (against the viewport), so the list inside it gets a
   real height and scrolls; the spacer at the end keeps the last row above Safari's
   toolbar and the home bar, whatever the phone. */
.modal-card{position:fixed;left:0;right:0;bottom:0;margin:0 auto;width:100%;max-width:560px;max-height:86%;
  display:flex;flex-direction:column;min-height:0;
  padding:16px 14px 0;border-radius:26px 26px 0 0;background:var(--paper);
  animation:up .26s cubic-bezier(.22,1,.36,1)}
.modal-card::after{content:'';flex:0 0 calc(18px + env(safe-area-inset-bottom) + var(--kb,0px))}
.modal-card>.mhead,.modal-card>#sInput,.modal-card>.group,.modal-card>.mnote{flex:0 0 auto}
@keyframes up{from{transform:translateY(26px);opacity:.5}to{transform:none;opacity:1}}
.mhead{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0 2px 12px}
.mhead b{font-size:19px;font-weight:800}
.mhead button{color:var(--go);font-weight:700;font-size:16px;padding:4px 2px}
.mnote{font-size:12px;color:var(--grey);margin:-8px 4px 14px;line-height:1.45}
/* the secondary choice: present, but plainly not the main road */
.group.quiet{background:transparent;border-color:transparent;margin-bottom:6px}
.group.quiet .row{border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.05)}
.group.quiet .txt b{font-weight:600;font-size:14.5px;color:var(--grey)}
.group.quiet .txt em{display:block;font-style:normal;font-size:11.5px;color:var(--grey2);
  margin-top:1px;white-space:normal}
#sInput{width:100%;padding:14px;border-radius:15px;border:1px solid var(--line);background:#1c1f24;
  outline:none;margin-bottom:10px;font-size:16px}
#sInput:focus{border-color:var(--go)}
.results{flex:1 1 auto;min-height:0;overflow-y:auto;overflow-x:hidden;overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;touch-action:pan-y;padding-bottom:6px}
.res{display:block;width:100%;text-align:left;padding:13px 14px;border-radius:15px;
  border:1px solid var(--line);background:#1c1f24;margin-bottom:8px}
.res:active{background:var(--paper2)}
.reshead{font-size:10.5px;letter-spacing:.11em;text-transform:uppercase;color:var(--grey);
  font-weight:800;margin:14px 4px 7px}
.res.place b::before{content:'★';color:var(--gold);font-size:12px;margin-right:7px;vertical-align:1px}
.res.place.golf b::before{content:'⛳';font-size:13px}
.res b{display:block;font-size:15px;font-weight:600}
.res small{font-size:12.5px;color:var(--grey)}
.muted{padding:18px 4px;color:var(--grey);font-size:14px;text-align:center}

/* ── map marks ── */
.endpin{width:15px;height:15px;border-radius:50%;border:3px solid #fff;box-shadow:0 2px 8px rgba(0,0,0,.3)}
.endpin.go{background:var(--go)}
.endpin.gold{background:#16181c}
.endpin.mid{background:#6f7883}
.carpin{width:27px;height:27px;border-radius:9px;background:#16181c;color:#fff;display:grid;
  place-items:center;font-size:12px;box-shadow:0 4px 12px rgba(0,0,0,.28)}

/* ── phones: no background map. The sheet IS the app, edge to edge, and the
   route lives in its own card that travels through book → pay → live. ── */
@media(max-width:759px){
  #map{display:none}
  .bar{background:linear-gradient(180deg,var(--paper) 60%,rgba(18,20,23,0))}
  .sheet{left:0;right:0;top:calc(54px + env(safe-area-inset-top));bottom:var(--kb,0px);
    max-height:none;border-radius:26px 26px 0 0;border-bottom:0;
    background:var(--paper);backdrop-filter:none;-webkit-backdrop-filter:none;
    box-shadow:0 -8px 30px rgba(0,0,0,.35)}
  .sheet.short{max-height:none}
  .grab{display:none}
  .scroller{padding-top:12px}
  #liveSheet .qmap{height:240px}          /* the live screen has the room — use it */
  #paySheet .qmap{height:132px;margin-bottom:16px}
}

/* installed from the Home Screen: no URL bar, so the sheet can sit a touch lower */
@media(display-mode:standalone){ .sheet{bottom:calc(6px + env(safe-area-inset-bottom) + var(--kb,0px))} }

/* tablets and desktop: the app becomes a panel, still no viewport units */
@media(min-width:760px){
  .sheet{left:auto;right:16px;bottom:16px;width:420px;max-height:calc(100% - 96px)}
  .modal-card{left:50%;right:auto;bottom:auto;top:50%;transform:translate(-50%,-50%);width:560px;
    border-radius:26px;animation:none;padding-bottom:0}
}

/* ── the chauffeur on the live map: a top-down gold limousine, pointing where it drives ── */
.qcar{width:22px;height:46px;transition:transform 1.2s ease}
.qcar svg{width:100%;height:100%;display:block;filter:drop-shadow(0 2px 3px rgba(0,0,0,.45))}
/* ── refresh the chauffeur's position ── */
.refresh{display:flex;flex-direction:column;gap:5px;margin:10px 0 2px}
.refresh button{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:12px;border-radius:14px;
  border:1px solid rgba(244,130,31,.4);background:rgba(244,130,31,.12);color:#ff9740;font-weight:700;font-size:14.5px}
.refresh button:disabled{opacity:.6}
.refresh button i{font-style:normal;font-size:16px;display:inline-block}
.refresh button.spin i{animation:refspin .8s linear infinite}
@keyframes refspin{to{transform:rotate(360deg)}}
.refresh small{font-size:11.5px;color:var(--grey2);text-align:center}
.refresh small.ok{color:#6fcf9a}

/* ── the rules & regulations tick ── */
.terms{display:flex;gap:10px;align-items:flex-start;margin:12px 2px 0;font-size:12.5px;line-height:1.5;color:#9aa1ab}
.terms input{margin-top:2px;width:18px;height:18px;flex:0 0 18px;accent-color:#f4821f}
.terms a{color:#ff9740;font-weight:700}
.terms.shake{animation:tshake .4s}
@keyframes tshake{0%,100%{transform:none}25%{transform:translateX(-5px)}75%{transform:translateX(5px)}}

.foot.warn{color:var(--gold);font-weight:600}

/* the price rides with the CTA so it can never scroll away or hide under the keyboard */
.ctaprice{display:flex;align-items:center;justify-content:space-between;gap:12px;
  border:1px solid var(--line);border-radius:14px;background:#1c1f24;
  padding:9px 14px;margin:0 0 10px;box-shadow:0 1px 8px rgba(0,0,0,.3)}
.ctaprice span{font-size:12px;color:var(--grey);font-weight:700}
.ctaprice em{display:block;font-style:normal;font-size:11px;color:var(--grey2);font-weight:500;margin-top:1px}
.ctaprice b{font-size:23px;letter-spacing:-.02em;font-variant-numeric:tabular-nums;white-space:nowrap}
.ctaprice.hidden{display:none}

/* luggage never costs anything — say so right where it's asked */
.gfree{font-size:12px;color:var(--grey);margin:-4px 2px 8px;line-height:1.5}

/* ═══ follows the system setting — the light room of the same app ═══ */
@media (prefers-color-scheme: light){
  :root{
    --paper:#fafaf8;--paper2:#f1f1ec;--ink:#101418;--grey:#667085;--grey2:#98a1ad;
    --go:#d8690f;--go-hi:#f4821f;--gold:#a1751d;
    --line:rgba(16,20,24,.10);--hair:rgba(16,20,24,.07);
  }
  .pill{background:rgba(255,255,255,.92);border:1px solid rgba(255,255,255,.9);box-shadow:0 6px 20px rgba(16,20,24,.14)}
  .sheet{background:rgba(255,255,255,.9);border:1px solid rgba(255,255,255,.92);box-shadow:0 22px 60px rgba(16,20,24,.22)}
  .grab{background:rgba(16,20,24,.14)}
  .group{background:#fff}
  button.row:active,label.row:active{background:rgba(16,20,24,.045)}
  .ico{background:rgba(16,20,24,.05)}
  .ico.go{background:rgba(216,105,15,.12)}
  .ico.gold{background:rgba(161,117,29,.14)}
  .ico.when{background:rgba(216,105,15,.10)}
  .rm{background:rgba(16,20,24,.05)}
  .air{background:rgba(216,105,15,.11)}
  .addstop{border-color:rgba(16,20,24,.2)}
  .addstop:active{background:rgba(216,105,15,.06)}
  .row.car.on{background:rgba(216,105,15,.06)}
  .cbtn{background:rgba(16,20,24,.06)}
  .cbtn:active{background:rgba(16,20,24,.12)}
  .seg button:active{background:rgba(255,255,255,.6)}
  .seg button.on{background:#fff;box-shadow:0 2px 8px rgba(16,20,24,.1)}
  .quote{background:rgba(216,105,15,.06);border-color:rgba(216,105,15,.22)}
  .qmap{box-shadow:0 4px 14px rgba(16,20,24,.07)}
  .qmap-tag{background:rgba(255,255,255,.92);box-shadow:0 2px 8px rgba(16,20,24,.12)}
  .qmeta{border-top-color:rgba(216,105,15,.18)}
  .btn-quiet{background:rgba(16,20,24,.05)}
  .err{color:#c0392b}
  .back{background:rgba(16,20,24,.05)}
  .drv{background:#fff}
  .av{background:rgba(216,105,15,.10)}
  .prog i{background:rgba(16,20,24,.1)}
  .modal{background:rgba(16,20,24,.4)}
  .group.quiet .row{background:rgba(255,255,255,.6)}
  #sInput{background:#fff}
  .res{background:#fff}
  .refresh button{border-color:rgba(216,105,15,.4);background:rgba(216,105,15,.09);color:#c05e0e}
  .refresh small.ok{color:#0f6b47}
  .terms{color:#5b6570}
  .ctaprice{background:#fff;box-shadow:0 1px 8px rgba(16,20,24,.05)}
}
@media (prefers-color-scheme: light) and (max-width:759px){
  .bar{background:linear-gradient(180deg,var(--paper) 60%,rgba(250,250,248,0))}
  .sheet{background:#fff;box-shadow:0 -8px 30px rgba(16,20,24,.08)}
}

/* a pickup booked for later stays one tap away while booking the next ride */
.upcoming{display:flex;align-items:center;gap:10px;width:100%;text-align:left;margin:0 0 14px;padding:11px 14px;
  border-radius:13px;border:1px solid rgba(244,130,31,.4);background:rgba(244,130,31,.12);color:inherit;font:inherit;cursor:pointer}
.upcoming span{flex:1;min-width:0;font-size:12.5px;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.upcoming b{flex:0 0 auto;color:#f4821f;font-size:13px}
@media (prefers-color-scheme: light){
  .upcoming{border-color:rgba(216,105,15,.4);background:rgba(216,105,15,.09)}
  .upcoming b{color:#d8690f}
}

/* the post-payment note: your ride page IS the receipt, an email follows on driver assignment */
.emailnote{display:flex;gap:11px;align-items:flex-start;margin:14px 0 2px;padding:12px 14px;border-radius:13px;
  background:rgba(244,130,31,.10);border:1px solid rgba(244,130,31,.28)}
.emailnote .en-ico{flex:0 0 auto;font-size:16px;line-height:1.4;color:#f4821f}
.emailnote p{margin:0;font-size:12.5px;line-height:1.5;color:var(--muted,#8a9099)}
.emailnote b{color:inherit;font-weight:700}
@media (prefers-color-scheme: light){
  .emailnote{background:rgba(216,105,15,.08);border-color:rgba(216,105,15,.28)}
  .emailnote .en-ico{color:#d8690f}
}
