:root{
  --slt-green:#7EBA1D;
  --slt-dark:#585858;
  --slt-bg:#ffffff;
  --slt-muted:rgba(88,88,88,0.75);
  --slt-border:rgba(88,88,88,0.18);
  --slt-shadow:0 10px 30px rgba(0,0,0,0.10);
}
[hidden] { display: none !important; }

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Segoe UI", Arial, sans-serif;
  color:var(--slt-dark);
  background:#fff;
}
a{ color:inherit; }
:disabled{ opacity:0.55; cursor:not-allowed; }
body.slt-noscroll{ overflow:hidden; }

/* Header */
.slt-header{
  position:sticky;
  top:0;
  z-index:999;
  background:linear-gradient(180deg, rgba(30,30,30,0.92), rgba(24,24,24,0.92));
  border-bottom:1px solid rgba(255,255,255,0.06);
}
/* Header edge alignment (menu left corner, CTA right corner) */
.slt-header__container{
  max-width:100%;
  padding-left:10px;
  padding-right:10px;
}

/* Reduce internal padding so the hamburger sits closer to the edge */
.slt-menu-btn{
  padding:0 10px;
}

/* Slightly tighter on small screens */
@media (max-width: 575.98px){
  .slt-header__container{ padding-left:6px; padding-right:6px; }
  .slt-menu-btn{ padding:0 6px; }
}

.slt-header__row{
  height:72px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
}
.slt-header__left{ display:flex; justify-content:flex-start; }
.slt-header__center{ display:flex; justify-content:center; }
.slt-header__right{ display:flex; justify-content:flex-end; gap:12px; }

.slt-menu-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 16px;
  height:72px;
  border:0;
  background:transparent;
  color:#fff;
  font-weight:1000;
  cursor:pointer;
}
.slt-menu-text{ font-size:0.9rem; letter-spacing:.2px; }

/* Hamburger */
.slt-hamburger{ width:22px; height:16px; display:inline-block; position:relative; }
.slt-hamburger__bar{
  position:absolute;
  left:0; right:0;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}
.slt-hamburger__bar:nth-child(1){ top:1px; }
.slt-hamburger__bar:nth-child(2){ top:7px; }
.slt-hamburger__bar:nth-child(3){ top:13px; }

/* Animate hamburger to X when menu open */
body.slt-menu-open .slt-hamburger__bar:nth-child(1){ top:7px; transform:rotate(45deg); }
body.slt-menu-open .slt-hamburger__bar:nth-child(2){ opacity:0; }
body.slt-menu-open .slt-hamburger__bar:nth-child(3){ top:7px; transform:rotate(-45deg); }

/* Logo */
.slt-logo{ text-decoration:none; display:flex; align-items:center; }
.slt-logo__text{
  color:#fff;
  font-weight:1100;
  letter-spacing:.3px;
  font-size:1.05rem;
}

/* Buttons */
.slt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:12px;
  text-decoration:none;
  font-weight:1100;
  cursor:pointer;
}
.slt-btn--primary{
  background:var(--slt-green);
  color:#0b0b0b;
}
.slt-btn--square{
  height:44px;
  padding:0 18px;
  border-radius:6px;
}
.slt-btn--hero{
  margin-top:18px;
  height:48px;
  padding:0 22px;
  border-radius:999px;
  background:var(--slt-green);
  color:#0b0b0b;
  font-weight:1100;
}

/* Offcanvas */
.slt-offcanvas{
  position:fixed;
  inset:0 auto 0 0;
  width:320px;
  max-width:86vw;
  background:#1b1b1b;
  color:#fff;
  transform:translateX(-110%);
  transition:transform 220ms ease;
  z-index:10000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.slt-offcanvas.is-open{ transform:translateX(0); }

.slt-offcanvas__header{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.slt-offcanvas__title{ font-weight:1100; letter-spacing:.3px; }

.slt-icon-btn{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.06);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}
.slt-icon-btn--dark{
  border:1px solid rgba(88,88,88,0.18);
  background:#fff;
  color:var(--slt-dark);
}

.slt-offcanvas__nav{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.slt-offcanvas__nav a{
  color:#fff;
  text-decoration:none;
  padding:12px 12px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  font-weight:900;
}
.slt-offcanvas__nav a:hover{ background:rgba(255,255,255,0.10); }

.slt-nav-group{ padding:8px 0 0; }
.slt-nav-group__label{
  font-weight:1000;
  opacity:.9;
  margin:8px 0;
}

.slt-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:9000;
}

/* Home hero */
.slt-home .slt-hero-full{
  position:relative;
  min-height: 640px;
  height: calc(100vh - 72px);
  overflow:hidden;
}
.slt-home .slt-hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.slt-home .slt-hero-full__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.40));
}
.slt-home .slt-hero-full__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 72px 18px 20px;
  color:#fff;
}
.slt-home .slt-hero-full__center{ max-width:820px; margin:0 auto; }
.slt-home .slt-hero-kicker{
  color: var(--slt-green);
  font-weight:1100;
  letter-spacing:2px;
  font-size:0.98rem;
  opacity:1;
}

.slt-home .slt-hero-rotator{
  margin-top:10px;
  font-size: clamp(2.8rem, 5.6vw, 4.1rem);
  font-weight:1100;
  line-height:1.02;
  color:#fff;
}

#sltRotatorText{
  color:#fff;
  transition:opacity 180ms ease, transform 180ms ease;
  display:inline-block;
}
#sltRotatorText.is-fading{ opacity:0; transform:translateY(6px); }

.slt-hero-pills{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.slt-pill{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.12);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:0.86rem;
}

/* =========================
   QUOTE: Form | Vehicles (collapsed) | Map
   ========================= */
.slt-quote-split{
  display:grid;
  grid-template-columns: minmax(320px, 440px) 0px 1fr; /* vehicles hidden */
  min-height: calc(100vh - 72px);
  transition: grid-template-columns 320ms ease;
}
.slt-quote-split.has-vehicles{
  grid-template-columns: minmax(320px, 440px) 420px 1fr; /* vehicles shown */
}

.slt-qpanel{
  background:#fff;
  border-right:1px solid rgba(88,88,88,0.10);
  padding:16px 16px 18px;
}

.slt-qtabs{ display:flex; gap:10px; margin-bottom:14px; }
.slt-qtab{
  flex:1;
  border:1px solid var(--slt-border);
  background:#fff;
  border-radius:12px;
  font-weight:1000;
  padding:10px 12px;
  cursor:pointer;
  color:var(--slt-dark);
}
.slt-qtab.is-active{
  border-color:rgba(126,186,29,0.70);
  box-shadow:0 0 0 3px rgba(126,186,29,0.12);
}

.slt-qfield{ margin-bottom:12px; position:relative; }
.slt-qrowhead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:6px;
}
.slt-qrowtools{ display:flex; gap:8px; }
.slt-qlabel{ font-weight:1100; color:var(--slt-dark); }

.slt-iconmini{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--slt-border);
  background:#fff;
  font-weight:1100;
  cursor:pointer;
  color:var(--slt-dark);
}
.slt-iconmini:hover{ background:rgba(88,88,88,0.06); }

.slt-qinput{
  width:100%;
  border-radius:12px;
  border:1px solid var(--slt-border);
  padding:12px 12px;
  font-weight:800;
  outline:none;
  background:rgba(126,186,29,0.06);
}
.slt-qinput:focus{
  border-color:rgba(126,186,29,0.75);
  box-shadow:0 0 0 3px rgba(126,186,29,0.14);
  background:#fff;
}

.slt-vias{ display:flex; flex-direction:column; gap:10px; margin-bottom:12px; }
.slt-via{ display:flex; gap:10px; align-items:center; position:relative; }
.slt-via-remove{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--slt-border);
  background:#fff;
  font-weight:1100;
  cursor:pointer;
}
.slt-via-remove:hover{ background:rgba(88,88,88,0.06); }

.slt-qtime{
  margin:14px 0 12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(88,88,88,0.12);
  background:#fff;
}
.slt-qtime__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.slt-qtime__label{ font-weight:1100; color:var(--slt-dark); }
.slt-qtime__value{ font-weight:900; color:rgba(88,88,88,0.78); margin-top:2px; }
.slt-qtime__tz{ margin-top:10px; font-size:0.86rem; color:var(--slt-muted); }

.slt-btn--dark{ background:#000; color:#fff; }
.slt-btn--sm{ height:38px; padding:0 12px; border-radius:10px; }

.slt-timepop{ margin-top:12px; padding-top:12px; border-top:1px solid rgba(88,88,88,0.10); }
.slt-timepop__actions{ margin-top:10px; display:flex; justify-content:flex-end; }

.slt-status{
  font-weight:900;
  color:rgba(88,88,88,0.78);
  margin: 10px 0 12px;
  font-size:0.92rem;
}

/* Continue (disabled grey -> enabled black) */
.slt-continue{
  width:100%;
  border:0;
  border-radius:14px;
  padding:14px;
  font-weight:1100;
  background:#e6e6e6;
  color:#9a9a9a;
  cursor:not-allowed;
  box-shadow:none;
}
.slt-continue.is-ready{
  background:#000;
  color:#fff;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,0.22);
}
.slt-continue.is-ready:hover{ filter:brightness(0.96); }
.slt-continue:disabled{ opacity:1; }

/* Vehicles panel — slide-in (content) */
.slt-veh-panel{
  width:100%;
  overflow:hidden;
  background:#fff;
  border-right:1px solid rgba(88,88,88,0.10);

  opacity:0;
  transform: translateX(24px);
  pointer-events:none;
  will-change: transform, opacity;

  transition: transform 320ms ease, opacity 180ms ease;
}
.slt-veh-panel.is-open{
  opacity:1;
  transform: translateX(0);
  pointer-events:auto;
  box-shadow: var(--slt-shadow);
}

.slt-veh-panel__head{
  padding:16px 14px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  border-bottom:1px solid rgba(88,88,88,0.10);
}
.slt-veh-title{ font-weight:1100; font-size:1.2rem; color:var(--slt-dark); }
.slt-veh-subtitle{ color:var(--slt-muted); margin-top:6px; font-weight:700; font-size:0.92rem; }

.slt-vehicles{
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
  overflow:auto;
  max-height: calc(100vh - 72px - 74px);
}

.slt-vcard{
  border:1px solid var(--slt-border);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#fff;
}
.slt-vcard:hover{ background:rgba(126,186,29,0.10); }
.slt-vcard.is-active{
  border-color:rgba(126,186,29,0.75);
  box-shadow:0 0 0 3px rgba(126,186,29,0.14);
}
.slt-vleft{ display:flex; align-items:center; gap:10px; min-width:0; }
.slt-vimg{
  width:66px;
  height:38px;
  object-fit:cover;
  border-radius:9px;
  border:1px solid rgba(88,88,88,0.12);
  flex:0 0 auto;
}
.slt-vtext{ min-width:0; }
.slt-vname{ font-weight:1100; color:var(--slt-dark); }
.slt-vtitle{ font-weight:1100; color:var(--slt-dark); font-size:0.98rem; }
.slt-vdesc{
  margin:4px 0 0;
  color:var(--slt-muted);
  font-weight:700;
  font-size:0.82rem;
  line-height:1.25;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.slt-vicons{ display:flex; gap:6px; margin-top:6px; }
.slt-vpill{
  font-weight:900;
  color:var(--slt-dark);
  background:rgba(88,88,88,0.08);
  padding:4px 8px;
  border-radius:999px;
  font-size:0.78rem;
}
.slt-vprice{ font-weight:1100; font-size:1.02rem; white-space:nowrap; color:var(--slt-dark); }

/* Map (base) */
.slt-mapwrap{ position:relative; background:#fff; }
.slt-map{ width:100%; height:100%; }

/* =========================
   Ideal Postcodes dropdown
   ========================= */
.slt-pcdrop{
  position:absolute;
  left:0;
  right:0;
  top: calc(100% + 6px);
  z-index: 9999;
  background:#fff;
  border:1px solid var(--slt-border);
  border-radius:12px;
  box-shadow: var(--slt-shadow);
  overflow:hidden;
  max-height: 260px;
  overflow:auto;
}
.slt-pcdrop button{
  width:100%;
  text-align:left;
  padding:10px 12px;
  border:0;
  background:#fff;
  cursor:pointer;
  font-weight:900;
  color:var(--slt-dark);
}
.slt-pcdrop button:hover{ background: rgba(126,186,29,0.10); }

/* =========================
   Mobile base layout
   ========================= */
@media (max-width: 991px){
  .slt-header__row{ height:66px; }
  .slt-home .slt-hero-full__content{ padding-top: 66px; }
  .slt-home .slt-hero-full{ min-height: 560px; }

  .slt-quote-split{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: calc(100vh - 66px);
    transition:none;
  }
  .slt-qpanel{ border-right:0; border-bottom:1px solid rgba(88,88,88,0.10); }

  .slt-veh-panel{
    width:100%;
    border-right:0;
    border-bottom:1px solid rgba(88,88,88,0.10);
    display:none;
    opacity:1;
    transform:none;
    pointer-events:auto;
    box-shadow:none;
  }
  .slt-veh-panel.is-open{ display:block; }
}

/* Offcanvas menu refinements */
.slt-nav-link{
  display:block;
  color:#fff;
  text-decoration:none;
  padding:12px 12px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  font-weight:900;
}
.slt-nav-link:hover{ background:rgba(255,255,255,0.10); }

/* Services accordion */
.slt-nav-acc{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
}

.slt-nav-acc-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border:0;
  background:transparent;
  color:#fff;
  font-weight:1000;
  cursor:pointer;
}

.slt-nav-caret{
  display:inline-block;
  transition: transform 200ms ease;
  opacity:0.9;
}
.slt-nav-acc-btn[aria-expanded="true"] .slt-nav-caret{
  transform: rotate(180deg);
}

/* Services links in-line (nice grid) */
.slt-nav-sub{
  padding:10px 12px 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:8px;
}

.slt-nav-sub a{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:10px 10px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:0.88rem;
  line-height:1.1;
}
.slt-nav-sub a:hover{
  background:rgba(126,186,29,0.20);
}

/* Mobile: services stack */
@media (max-width: 480px){
  .slt-nav-sub{ grid-template-columns: 1fr; }
}

/* ===== Vehicle panel footer button ===== */
.slt-veh-panel__footer{
  padding:12px 12px 14px;
  border-top:1px solid rgba(88,88,88,0.10);
  background:#fff;
}
.slt-btn--block{ width:100%; }

/* ===== Modal ===== */
.slt-modal{
  position:fixed;
  inset:0;
  z-index:20000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.slt-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.slt-modal__dialog{
  position:relative;
  width:min(860px, 94vw);
  max-height: 92vh;
  overflow:auto;
  background:#fff;
  border-radius:18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.slt-modal__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 18px;
  border-bottom:1px solid rgba(88,88,88,0.12);
}
.slt-modal__title{
  font-size:2rem;
  font-weight:1100;
  color:#111;
}
.slt-modal__x{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(88,88,88,0.18);
  background:#fff;
  font-size:20px;
  cursor:pointer;
}
.slt-modal__body{ padding:18px; }

.slt-qinput--plain{ background:#fff; }

.slt-frow{ margin-bottom:16px; }
.slt-flabel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:900;
  color:rgba(0,0,0,0.70);
  margin-bottom:8px;
}
.slt-req{ font-size:0.85rem; color:rgba(88,88,88,0.65); font-weight:900; }
.slt-hint{ font-size:0.85rem; color:rgba(88,88,88,0.65); margin-top:6px; font-weight:800; }

.slt-fgrid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 640px){
  .slt-fgrid2{ grid-template-columns: 1fr; }
}

.slt-check{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:1000;
  color:rgba(0,0,0,0.70);
  margin: 6px 0 12px;
}
.slt-captcha{ margin-top:10px; }

.slt-modal__actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  padding:14px 18px 18px;
  border-top:1px solid rgba(88,88,88,0.12);
}
.slt-error{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,0,0,0.06);
  border:1px solid rgba(255,0,0,0.14);
  color: rgba(140,0,0,0.9);
  font-weight:900;
}

/* ===== Checkout ===== */
.slt-checkout{
  padding:18px;
  background:#f1f1f1;
  min-height: calc(100vh - 72px);
}
.slt-checkout__top{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 6px auto 14px;
  max-width: 1180px;
}
.slt-backbtn{
  width:38px;
  height:38px;
  border-radius:999px;
  border:0;
  background:#e7e7e7;
  font-weight:1100;
  cursor:pointer;
}
.slt-checkout__h{ font-weight:1100; font-size:1.25rem; color:#111; }
.slt-checkout__sub{ color:rgba(88,88,88,0.75); font-weight:800; margin-top:2px; }

.slt-checkout__grid{
  max-width:1180px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:16px;
}
@media (max-width: 991px){
  .slt-checkout__grid{ grid-template-columns: 1fr; }
}

.slt-card{
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(88,88,88,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding:16px;
}
.slt-card__h{
  font-weight:1100;
  color:#111;
  margin-bottom:12px;
  font-size:1.05rem;
}

.slt-paygrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 640px){
  .slt-paygrid{ grid-template-columns: 1fr; }
}

.slt-payopt{ display:block; cursor:pointer; }
.slt-payopt input{ position:absolute; opacity:0; pointer-events:none; }
.slt-payopt__box{
  border:2px solid rgba(88,88,88,0.16);
  border-radius:12px;
  padding:12px 12px;
  background:#fff;
  min-height:72px;
}
.slt-payopt__t{ font-weight:1100; color:#111; }
.slt-payopt__s{ color:rgba(88,88,88,0.75); font-weight:800; margin-top:4px; font-size:0.9rem; }

.slt-payopt input:checked + .slt-payopt__box{
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,0.06);
}

.slt-coupon{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  align-items:center;
}

.slt-summary{ margin-top:6px; }
.slt-sumrow{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  color:rgba(88,88,88,0.95);
  font-weight:900;
}
.slt-sumrow--total{
  border-top:1px solid rgba(88,88,88,0.14);
  margin-top:8px;
  padding-top:12px;
  font-size:1.25rem;
  color:#111;
}

.slt-confirm{
  margin-top:14px;
  height:56px;
  border-radius:12px;
}

/* Right column cards */
.slt-rightcol{ display:flex; flex-direction:column; gap:16px; }
.slt-jmeta{
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid rgba(88,88,88,0.10);
  padding-bottom:12px;
  margin-bottom:12px;
}
.slt-muted{ color:rgba(88,88,88,0.75); font-weight:800; }
.slt-strong{ font-weight:1100; color:#111; }

.slt-vehmini{
  border:1px solid rgba(88,88,88,0.10);
  border-radius:12px;
  padding:12px;
}
.slt-vehmini__row{ display:flex; gap:12px; align-items:flex-start; }
.slt-vehmini__img{ width:72px; height:42px; object-fit:cover; border-radius:10px; border:1px solid rgba(88,88,88,0.12); }
.slt-vehmini__t{ font-weight:1100; color:#111; }
.slt-vehmini__s{ color:rgba(88,88,88,0.75); font-weight:800; margin-top:4px; font-size:0.9rem; }
.slt-vehmini__pills{ display:flex; gap:8px; margin-top:8px; flex-wrap:wrap; }

.slt-stopbox{
  margin-top:12px;
  border:1px solid rgba(88,88,88,0.10);
  border-radius:12px;
  padding:12px;
}
.slt-stopbox__h{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:1100;
  margin-bottom:10px;
  color:#111;
}
.slt-stop{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.slt-stop__dot{
  width:28px; height:28px;
  border-radius:999px;
  background:#e7e7e7;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1100;
  color:#111;
  flex: 0 0 auto;
}
.slt-stop__dot--d{ background:#111; color:#fff; }
.slt-stop__line{
  height:18px;
  width:2px;
  background: rgba(88,88,88,0.25);
  margin: 6px 0 6px 13px;
}

.slt-pmeta__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 640px){
  .slt-pmeta__grid{ grid-template-columns: 1fr; }
}

/* =========================
   Quote page typography (lighter + modern)
   Only affects pages with body.slt-quote
   ========================= */
.slt-quote{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slt-quote .slt-qlabel,
.slt-quote .slt-qtime__label,
.slt-quote .slt-stat__label,
.slt-quote .slt-muted{
  font-weight: 500;
  letter-spacing: 0;
}

.slt-quote .slt-qinput,
.slt-quote .slt-qtime__value,
.slt-quote .slt-status{
  font-weight: 400;
}

/* Tabs */
.slt-quote .slt-qtab{
  font-weight: 600;
  letter-spacing: 0;
}

/* Main buttons (Continue / Confirm) */
.slt-quote .slt-continue,
.slt-quote .slt-btn{
  font-weight: 600;
  letter-spacing: .2px;
}

/* Vehicle panel */
.slt-quote .slt-veh-title,
.slt-quote .slt-card__h,
.slt-quote .slt-checkout__h{
  font-weight: 700;
  letter-spacing: 0;
}

.slt-quote .slt-veh-subtitle,
.slt-quote .slt-payopt__s,
.slt-quote .slt-vehmini__s,
.slt-quote .slt-vdesc{
  font-weight: 400;
}

/* Vehicle cards */
.slt-quote .slt-vtitle{ font-weight: 700; }
.slt-quote .slt-vprice{ font-weight: 700; }

/* Summary totals */
.slt-quote .slt-sumrow{ font-weight: 500; }
.slt-quote .slt-sumrow--total{ font-weight: 800; }

/* Passenger modal */
.slt-quote .slt-modal__title{ font-weight: 800; }
.slt-quote .slt-flabel{ font-weight: 600; }
.slt-quote .slt-hint{ font-weight: 400; }

#airportFields{
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(88,88,88,0.12);
  border-radius: 14px;
  background: #fff;
}

/* =========================
   MAP: Contained tidy frame + smaller stats
   (keeps your new rounded corners but adds clean outline + shadow)
   ========================= */
.slt-mapwrap--right{
  height: calc(100vh - 72px);
  min-height: 520px;
  padding: 14px;
  background:#fff;
}

.slt-map--panel{
  height: 100%;
  min-height: 520px;

  border-radius: 16px;

  /* clear tidy outline */
  border: 1px solid rgba(88,88,88,0.22);

  /* nicer shadow */
  box-shadow:
    0 18px 42px rgba(0,0,0,0.14),
    0 2px 0 rgba(255,255,255,0.65) inset;

  /* safer than overflow:hidden for Google overlays */
  clip-path: inset(0 round 16px);

  background:#fff;
  position:relative;
}

/* helps map tiles behave nicely */
.slt-map--panel .gm-style{ border-radius: 16px; }

.slt-mapstats{
  position:absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  z-index:10;
  pointer-events:none;
}

.slt-stat{
  background: rgba(255,255,255,0.90);
  border:1px solid rgba(88,88,88,0.12);
  border-radius:12px;
  padding: 8px 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.slt-stat__label{
  font-size:0.72rem;
  line-height:1.1;
  font-weight:1100;
  color:rgba(88,88,88,0.72);
}
.slt-stat__value{
  margin-top:2px;
  font-size:0.98rem;
  line-height:1.15;
  font-weight:700;
  color:var(--slt-dark);
}

/* Mobile map sizing */
@media (max-width: 991px){
  .slt-mapwrap--right{
    height: 48vh;
    min-height: 360px;
    padding: 12px;
  }
  .slt-map--panel{ min-height: 360px; }
  .slt-mapstats{
    grid-template-columns: 1fr;
    top: 20px;
    left: 20px;
    right: 20px;
  }
}
