/* ===== Root variables - نفس مقاسات الكود الثاني ===== */
:root{
  --bg:#f6f6f6;
  --card:#ffffff;
  --card2:#f0f0f0;
  --text:#111;
  --muted:rgba(0,0,0,.60);
  --border:rgba(0,0,0,.10);
  --shadow:0 12px 26px rgba(0,0,0,.10);
  --radius:12px;
  --accent:#2f7d32;
  --accent2:#3bbf6b;
  --danger:#ff5b5b;
  --control-h:36px;
  --nav-h:48px;
  --header-h:40px;
  --font-base:12px;
  --font-title:14px;
  --sheet-max-h:70vh;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  font-size:var(--font-base);
}

a{color:inherit;text-decoration:none}
button,input,select{font-family:inherit}
.hidden{display:none !important}

/* ===== Map behind ===== */
#map{
  position:fixed;
  inset:0;
  z-index:1;
  transition:opacity .2s ease;
  pointer-events:auto;
  touch-action:pan-x pan-y;
}
body:not(.home-visible) #map{
  opacity:0;
  pointer-events:none;
}

/* ===== Top bar ===== */
.top{
  position:fixed;
  left:0;
  right:0;
  top:0;
  z-index:160;
  background:transparent;
  border-bottom:0;
  height:calc(var(--header-h) + env(safe-area-inset-top));
  pointer-events:none;
}
.top-inner{
  max-width:820px;
  margin:0 auto;
  padding:calc(env(safe-area-inset-top) + 6px) 12px 6px;
  display:flex;
  align-items:center;
  gap:10px;
  height:100%;
  pointer-events:none;
}
.logo{
  height:0px;
  width:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.18));
  pointer-events:auto;
}
.pill{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
  pointer-events:auto;
}
.icon-btn{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.30);
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:14px;
  pointer-events:auto;
}
.icon-btn:active{transform:translateY(1px)}
body.dark .icon-btn{
  background:rgba(20,20,20,.62);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}

/* ===== Pages container ===== */
.pages{
  position:relative;
  z-index:2;
  padding-top:var(--header-h);
  padding-bottom:calc(var(--nav-h) + env(safe-area-inset-bottom));
  min-height:100vh;
}

/* مهم جداً: في صفحة الهوم لا تخلي pages تمنع لمس الخريطة */
body.home-visible .pages{
  pointer-events:none;
}
body.home-visible .pages .pageHome{
  pointer-events:none;
}

/* في الصفحات الثانية ترجع طبيعي */
body:not(.home-visible) .pages{
  pointer-events:auto;
}
.page{display:block}
.page.hidden{display:none}

/* ===== Cards etc ===== */
.wrap{max-width:820px;margin:0 auto;padding:0 14px;}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card.pad{padding:8px;}
.section-title{font-weight:900;font-size:var(--font-title);margin:6px 0 10px;}
.subtle{color:var(--muted);font-size:10px}

.profile{
  text-align:center;
  padding:16px 14px 10px;
  background:linear-gradient(180deg, rgba(59,191,107,.10), rgba(255,255,255,0));
}
.avatar{
  width:48px;height:48px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  margin:4px auto 10px;
  display:grid;place-items:center;
}
.avatar svg{
  opacity:.75;
  width:22px;height:22px;
}
.name{font-weight:900;font-size:14px;margin:0;}
.email{margin:4px 0 0;color:var(--muted);font-size:10px}

.list{display:flex;flex-direction:column}
.row{
  display:flex;align-items:center;gap:12px;
  padding:8px;
  border-top:1px solid rgba(0,0,0,.06);
  background:#fff;
  cursor:pointer;
}
body.dark .row{background:var(--card);}
.row:first-child{border-top:0}
.row .left{
  width:28px;height:28px;
  border-radius:var(--radius);
  border:1px solid rgba(47,125,50,.22);
  background:rgba(59,191,107,.10);
  display:grid;place-items:center;
  flex:0 0 28px;
}
.row .left svg{
  width:14px;height:14px;
}
.row .mid{flex:1;min-width:0}
.row .t{font-weight:900;font-size:12px;}
.row .d{font-size:10px;color:var(--muted);margin-top:2px}
.row .chev{opacity:.55}
.row .chev svg{width:14px;height:14px;}

.seg{
  display:flex; gap:10px;
  background:rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,.06);
  border-radius:999px;
  padding:8px;
}
.seg button{
  flex:1;
  height:36px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:900;
  background:transparent;
  color:rgba(0,0,0,.55);
  font-size:12px;
}
.seg button.active{
  background:#fff;
  color:#111;
  box-shadow:0 10px 16px rgba(0,0,0,.10);
}

.empty{
  padding:22px 14px;
  text-align:center;
}
.empty .ic{
  width:54px;height:54px;border-radius:var(--radius);
  border:1px solid var(--border);
  display:grid;place-items:center;
  margin:0 auto 10px;
  background:rgba(0,0,0,.03);
}
.primary{
  width:100%;
  height:var(--control-h);
  border-radius:10px;
  border:0;
  background:linear-gradient(180deg, var(--accent2), var(--accent));
  color:#04110a;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  font-size:12px;
  padding:0 12px;
}
.btn-ghost{
  width:100%;
  height:var(--control-h);
  border-radius:10px;
  border:1px solid var(--border);
  background:transparent;
  font-weight:950;
  cursor:pointer;
  font-size:12px;
  padding:0 12px;
}
.btn-close{
  width:100%;
  height:var(--control-h);
  border-radius:10px;
  border:0;
  background:#007bff;
  color:white;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  font-size:12px;
  padding:0 12px;
}

/* ===== Bottom Nav ===== */
.bottom{
  position:fixed; left:0; right:0; bottom:0;
  height:calc(var(--nav-h) + env(safe-area-inset-bottom));
  padding-bottom:env(safe-area-inset-bottom);
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-top:1px solid var(--border);
  z-index:200;
}
body.dark .bottom{ background:rgba(20,20,20,.92); }
.bottom-inner{
  max-width:820px;margin:0 auto;
  height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-around;
  padding:8px 10px;
}
.tab{
  width:70px;
  display:flex;flex-direction:column;align-items:center;gap:2px;
  border:0;background:transparent;cursor:pointer;
  color:rgba(0,0,0,.45);
  font-weight:900;
  padding:4px;
  border-radius:var(--radius);
  font-size:10px;
}
body.dark .tab{ color:rgba(255,255,255,.45); }
.tab svg{
  width:16px;height:16px;
  opacity:.6;
}
.tab.active{color:var(--accent);}
.tab.active svg{opacity:1}

/* ===== Overlay dim ===== */
.overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.30);
  z-index:120;
  display:none;
}
.overlay.show{display:block}

/* ===== SHEETS behavior ===== */
.sheet{
  position:fixed; left:0; right:0; bottom:80px;
  z-index:121;
  padding:0 0 calc(14px + env(safe-area-inset-bottom));
  display:none;
  pointer-events:none;
  transform:translateY(110%);
  transition:transform .22s ease;
  will-change:transform;
}
.sheet.open{
  display:block;
  pointer-events:auto;
  transform:translateY(0);
}
.sheet.dragging{transition:none}

#homeSheet{ z-index:121; }

.sheet-card{
  max-width:820px;
  margin:0 auto;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(15,29,22,.92), rgba(11,21,16,.92));
  box-shadow:0 18px 60px rgba(0,0,0,.55);
  overflow:hidden;
  max-height:calc(100vh - 14px);
  display:flex;flex-direction:column;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
body:not(.dark) .sheet-card{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,245,245,.96));
  border-color:rgba(0,0,0,.08);
}
.sheet-grip{
  width:54px;height:5px;border-radius:999px;
  background:rgba(255,255,255,.22);
  margin:10px auto 0;
  touch-action:none;
}
body:not(.dark) .sheet-grip{
  background:rgba(0,0,0,.18);
}
.sheet-head{
  padding:12px 14px 10px;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  touch-action:none;
}
.sheet-title{font-weight:900;font-size:16px;letter-spacing:.2px;}
.sheet-sub{font-size:13px;color:var(--muted);margin-top:8px}
.sheet-x{
  width:28px;height:28px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.20);
  color:var(--text);
  cursor:pointer;
  display:grid;place-items:center;
  font-size:14px;
}
body:not(.dark) .sheet-x{
  border-color:rgba(0,0,0,.10);
  background:rgba(0,0,0,.06);
}

.sheet-body{
  flex:1;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding:14px;
  touch-action: pan-y;
}

.sheet-footer{
  padding:12px 14px calc(12px + env(safe-area-inset-bottom));
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(7,17,12,.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
body:not(.dark) .sheet-footer{ background:rgba(255,255,255,.75); }

/* === أزرار التنقل المزدوجة === */
.footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.back-action, .main-action {
  height: var(--control-h);
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.1);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  padding: 0 16px;
  font-size: 12px;
  flex: 1;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-action {
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: #04110a;
  border: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
  max-width: 200px;
}

.main-action:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.sheet-actions{
  padding:12px 14px calc(12px + env(safe-area-inset-bottom));
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.75);
}
body.dark .sheet-actions{
  background:rgba(7,17,12,.55);
  border-top-color:rgba(255,255,255,.08);
}

/* radio rows */
.radio-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
  padding:8px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(0,0,0,.03);
  cursor:pointer;
  margin-bottom:10px;
}
body.dark .radio-row{
  border-color:rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.radio-row .l{font-size:12px;}
.radio-row .dot{
  width:18px;height:18px;border-radius:999px;
  border:2px solid rgba(0,0,0,.25);
  position:relative;
  display:grid;place-items:center;
  flex:0 0 18px;
}
body.dark .radio-row .dot{ border-color:rgba(255,255,255,.30); }
.radio-row .dot i{
  width:8px;height:8px;border-radius:999px;
  background:transparent;
  display:block;
}
.radio-row.active{
  border-color:rgba(43,209,115,.35);
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}
.radio-row.active .dot{ border-color:rgba(43,209,115,.85); }
.radio-row.active .dot i{ background:rgba(43,209,115,.85); }

/* ===== Home sheet controls ===== */
.block{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  padding:6px;
}
body:not(.dark) .block{
  background:rgba(0,0,0,.04);
  border-color:rgba(0,0,0,.08);
}

.route-title{
  text-align:center;
  font-size:14px;
  font-weight:950;
  margin:0 0 10px;
}
.route-box{
  position:relative;
  border-radius:22px;
  border:1px solid rgba(43,209,115,.28);
  background:rgba(0,0,0,.16);
  padding:6px;
  display:grid;
  gap:10px;
}
.rrow{display:flex;align-items:center;gap:10px}
.dot{
  width:5px;height:5px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  flex:0 0 5px;
}
.dot.from{background:#4e77ff}
.dot.to{background:var(--accent2)}
.dot.stop{background:#ffb020}

.field{
  display:flex;align-items:center;gap:10px;
  height:var(--control-h);
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(8,18,12,.55);
  padding:0 6px;
  min-width:0;
  position:relative;
}
body:not(.dark) .field{
  background:rgba(255,255,255,.8);
  border-color:rgba(0,0,0,.12);
}
.field input{
  border:0;outline:0;background:transparent;
  color:var(--text);
  width:100%;
  font-size:16px;
  min-width:0;
}

.glass{
  width:18px;height:18px;border:2px solid currentColor;
  border-radius:50%;
  position:relative;
  flex:0 0 18px;
  opacity:.85;
}
.glass::after{
  content:"";
  position:absolute;
  width:9px;height:2px;
  background:currentColor;
  right:-7px;bottom:-3px;
  transform:rotate(45deg);
  border-radius:2px;
}

.icon{
  width:30px;height:30px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:var(--text);
  cursor:pointer;
  display:grid;place-items:center;
  flex:0 0 30px;
  font-size:14px;
}
.icon:active{transform:translateY(1px)}
body:not(.dark) .icon{
  background:rgba(255,255,255,.8);
  border-color:rgba(0,0,0,.12);
}

.swap{
  position:absolute;
  right:10px; top:50%;
  transform:translateY(-50%);
  width:30px;height:30px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  cursor:pointer;
  display:grid;place-items:center;
}

.suggest{
  position:absolute;
  left:0; right:0;
  top:calc(36px + 8px);
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(8,18,12,.92);
  box-shadow:0 18px 50px rgba(0,0,0,.55);
  overflow:hidden;
  z-index:50;
  max-height:260px;
  overflow-y:auto;
}
body:not(.dark) .suggest{
  background:white;
  border-color:rgba(0,0,0,.1);
}
.s-item{
  padding:8px 10px;
  border-top:1px solid rgba(255,255,255,.06);
  cursor:pointer;
}
.s-item:first-child{border-top:0}
.s-item:hover{background:rgba(255,255,255,.06)}
.s-top{
  display:flex;align-items:center;gap:8px;
  font-weight:800;
  font-size:12px;
}
.s-sub{margin-top:2px;font-size:10px;color:var(--muted)}
.badge{
  font-size:9px;
  padding:2px 5px;
  border-radius:999px;
  border:1px solid rgba(43,209,115,.28);
  color:rgba(43,209,115,.95);
  background:rgba(43,209,115,.08);
  font-weight:900;
}

.stops{display:grid;gap:10px}
.stop-row{display:flex;align-items:center;gap:10px}
.remove{
  width:30px;height:30px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:var(--text);
  cursor:pointer;
  flex:0 0 30px;
  display:grid;place-items:center;
  font-size:14px;
}
.addstop{
  height:36px;
  border-radius:8px;
  border:1px dashed rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  font-size:12px;
}

.flowbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.stepchips{display:flex;gap:3px;align-items:center}
.chipstep{
  font-size:9px;
  padding:2px 5px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.70);
  background:rgba(255,255,255,.04);
  font-weight:900;
}
body:not(.dark) .chipstep{ color:rgba(0,0,0,.55); }
.chipstep.active{
  border-color:rgba(43,209,115,.30);
  color:rgba(43,209,115,.95);
  background:rgba(43,209,115,.10);
}

.grid2{display:grid;gap:10px}
@media(min-width:760px){ .grid2{grid-template-columns:1fr 1fr} }

.lbl{font-size:10px;color:var(--muted);font-weight:900;margin:0 0 6px}
.ctrl{
  height:var(--control-h);
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(8,18,12,.55);
  color:var(--text);
  padding:0 6px;
  width:100%;
  outline:none;
  font-size:12px;
}
body:not(.dark) .ctrl{
  background:white;
  border-color:rgba(0,0,0,.12);
}

.toggle{
  display:flex; gap:10px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:6px;
}
.toggle button{
  flex:1;
  height:36px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:950;
  color:rgba(255,255,255,.65);
  background:transparent;
  font-size:12px;
}
body:not(.dark) .toggle button{ color:rgba(0,0,0,.55); }
.toggle button.active{
  background:rgba(0,0,0,.25);
  color:var(--text);
  box-shadow:0 14px 30px rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.10);
}
body:not(.dark) .toggle button.active{
  background:#fff;
  border-color:rgba(0,0,0,.08);
  box-shadow:0 10px 18px rgba(0,0,0,.10);
}

.helper{
  margin-top:10px;
  font-size:10px;
  color:var(--muted);
  text-align:center;
  white-space:pre-line;
}

/* Fullscreen picker */
#pickModal{
  position:fixed; inset:0;
  z-index:200;
  display:none;
  flex-direction:column;
  background:rgba(255,255,255,0.98);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  color:#111;
}
#pickModal.open{display:flex}
.pickTop{
  padding:12px 12px calc(10px + env(safe-area-inset-top));
  display:flex;align-items:center;gap:10px;
  border-bottom:1px solid rgba(0,0,0,.08);
  height:36px;
}
.back{
  width:32px;height:32px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.9);
  color:#111;
  cursor:pointer;
  font-size:16px;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
  display:grid;place-items:center;
}
.pickSearch{
  flex:1;
  display:flex;align-items:center;gap:10px;
  border:1px solid rgba(0,0,0,.12);
  background:white;
  border-radius:8px;
  padding:0 6px;
  height:36px;
  box-shadow:0 4px 10px rgba(0,0,0,.03);
}
.pickSearch input{
  border:0;outline:0;background:transparent;
  color:#111;
  width:100%;
  font-size:12px;
}
.pickSearch input::placeholder{ color:#888; }
.pickSearch button{
  width:30px;height:30px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(0,0,0,.02);
  color:#111;
  cursor:pointer;
  display:grid;place-items:center;
  font-size:14px;
}
.pickMapWrap{position:relative;flex:1;min-height:0}
#pickMap{width:100%;height:100%}
.pin{
  position:absolute;left:50%;top:50%;
  width:20px;height:32px;
  transform:translate(-50%,-100%);
  z-index:500;
  pointer-events:none;
}
.pin::before{
  content:"";
  position:absolute;left:50%;top:0;transform:translateX(-50%);
  width:20px;height:20px;
  border-radius:50%;
  background:var(--accent2);
  box-shadow:0 18px 40px rgba(0,0,0,.2);
}
.pin::after{
  content:"";
  position:absolute;left:50%;top:18px;transform:translateX(-50%);
  width:4px;height:14px;
  border-radius:0 0 4px 4px;
  background:var(--accent2);
}
.pin span{
  position:absolute;left:50%;top:6px;transform:translateX(-50%);
  width:8px;height:8px;border-radius:50%;
  background:#04110a;
}
.pickBottom{
  padding:12px 12px calc(14px + env(safe-area-inset-bottom));
  border-top:1px solid rgba(0,0,0,.08);
  background:white;
}
.picked{
  font-weight:950;
  margin:6px 0 10px;
  font-size:12px;
  color:#111;
}
.confirm{
  width:100%;
  height:36px;
  border-radius:10px;
  border:0;
  background:linear-gradient(180deg, var(--accent2), var(--accent));
  color:#04110a;
  font-weight:950;
  font-size:12px;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,.2);
  padding:0 12px;
}

/* RTL tweaks */
body[dir="rtl"] .top-inner{flex-direction:row-reverse}
body[dir="rtl"] .pill{margin-left:0;margin-right:auto}
body[dir="rtl"] .row{flex-direction:row-reverse}
body[dir="rtl"] .sheet-head{flex-direction:row-reverse}
body[dir="rtl"] .rrow{flex-direction:row-reverse}
body[dir="rtl"] .footer-actions{flex-direction:row-reverse}
/* ══ VEHICLE CARDS ══ */
.vcard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.80);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  margin-bottom: 8px;
}
body.dark .vcard {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}
.vcard.selected {
  border-color: var(--accent);
  background: rgba(47,125,50,.07);
}
body.dark .vcard.selected {
  background: rgba(47,125,50,.15);
}
.vcard-ico {
 width: 72px;
 height: 72px;
 display: grid;
 place-items: center;
 flex-shrink: 0;
 overflow: hidden;
}



.vcard-info { flex: 1; min-width: 0; }
.vcard-name { font-size: 13px; font-weight: 900; color: var(--text); }
.vcard-desc { font-size: 10px; color: var(--muted); margin-top: 2px; }
.vcard-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.vcard-price { font-size: 14px; font-weight: 900; color: var(--accent); }
.vcard-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.20);
  display: grid;
  place-items: center;
  transition: all .15s;
}
body.dark .vcard-check { border-color: rgba(255,255,255,.25); }
.vcard.selected .vcard-check {
  border-color: var(--accent);
  background: var(--accent);
}
.vcard.selected .vcard-check::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

/* ══ ROUTE MAP ══ */
#routeMapWrap {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,.08);
}
body.dark #routeMapWrap {
  border-color: rgba(255,255,255,.08);
}