:root { --primary: #92140C; }
*{ box-sizing: border-box; }

body { font-family: 'Inter', sans-serif; background:#f6f7fb; margin:0; }
body {
  font-family: 'Inter', sans-serif;
}
.bw-wrap { max-width: 980px; margin: 40px auto; padding: 0 16px; }
.bw-top { text-align:center; margin-bottom: 18px; }
.bw-kicker { letter-spacing:2px; font-size:12px; color:#777; }
.bw-title { margin: 8px 0 0; font-size: 34px; }

.bw-card { background:#fff; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.06); padding: 18px; 
width: 100%;          /* reduce width by 40% */
  max-width: 900px;    /* prevent too wide on big screens */
  margin: 0 auto; 
}
.bw-steps { display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 14px; }
.bw-step { display:flex; align-items:center; gap:8px; padding:10px 12px; border-radius:999px; background:#f2f2f6; color:#555; font-weight:600; font-size:14px; }
.bw-step span { width:26px; height:26px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; background:#d9d9e2; color:#333; font-size:13px; }
.bw-step.active { background: rgba(146,20,12,.08); color:#111; }
.bw-step.active span { background: var(--primary); color:#fff; }

.bw-tabs { display:flex; gap:10px; margin-bottom: 14px; }
.bw-tab { padding:10px 14px; border-radius:999px; border:1px solid #eee; background:#fff; cursor:pointer; font-weight:500; }
.bw-tab.active { border-color: rgba(146,20,12,.35); background: rgba(146,20,12,.06); color:#111; }

.bw-form { display:grid; gap:12px; }
.bw-row label { display:block; font-weight:500; margin-bottom:6px; }
.bw-row input, .bw-row select, .bw-row textarea { width:100%; padding:12px; border-radius:12px; border:1px solid #e7e7ee; outline:none; }
.bw-row input:focus, .bw-row select:focus { border-color: rgba(146,20,12,.5); box-shadow:0 0 0 4px rgba(146,20,12,.08); }

.bw-btn { padding:14px 18px; border:0; border-radius:999px; background: var(--primary); color:#fff; font-weight:500; cursor:pointer; }
.bw-btn:disabled { opacity:.6; cursor:not-allowed; }
.bw-btn-outline { padding:14px 18px; border-radius:999px; background:#fff; border:1px solid #ddd; font-weight:500; cursor:pointer; }

.bw-error { padding:12px; border-radius:12px; background:#ffecec; border:1px solid #ffd1d1; color:#a40000; }
.bw-muted { color:#666; font-size: 14px; }

.bw-subhead { display:flex; justify-content:space-between; align-items:center; margin: 6px 0 12px; }
.bw-cars { display:grid; gap:12px; }

.car-card{
  display: grid;
  grid-template-columns: 420px 1fr 380px;
  gap: 28px;
  border: 1px solid #e9e9ee;
  border-radius: 16px;
  padding: 26px;
  background: #fff;
  align-items: center;
}

.car-img{
  width: 100%;
  height: 170px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.car-img img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* like screenshot */
  display: block;
}

.car-title { font-size:18px; font-weight:500; margin:0; }
.car-meta { color:#666; font-size:14px; margin-top:6px; }
.car-right{
  background: #f3f3f3;
  border-radius: 12px;
  padding: 34px 36px;
  display: grid;
  gap: 16px;
  justify-items: start;
}

.car-price{
  font-size: 46px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #111;
}

.car-select{
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 22px;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  /* blue outline like reference */
  box-shadow: 0 0 0 3px rgba(44, 102, 255, 0.85);
}


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

.bw-step.active { 
  background: #92140C; 
  color: #fff; 
}

.bw-step.done { 
  border-color: #92140C; 
  color: #92140C; 
  background: #fff;
  opacity: 0.9;
}


/* =========================
   STEP 2 - NEW CAR CARD UI
   ========================= */

.car-card{
  display: grid;
  grid-template-columns: 420px 1fr 380px;
  gap: 28px;
  border: 1px solid #e9e9ee;
  border-radius: 16px;
  padding: 26px;
  background: #fff;
  align-items: center;
}

/* Left side (title + meta + image) */
.car-left{ display: grid; gap: 18px; }
.car-head{ display: grid; gap: 10px; }

.car-title{
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: .2px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.car-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.car-meta .meta-item{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.car-meta svg{
  width: 22px;
  height: 22px;
  stroke: #111;
  fill: none;
  stroke-width: 1.8;
}

.car-img{
  width: 100%;
  height: 170px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.car-img img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* like screenshot */
  display: block;
}

/* Middle benefits list (hidden on mobile) */
.car-benefits{
  display: grid;
  gap: 14px;
  padding: 10px 0;
}

.car-benefits .benefit{
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 18px;
  color: #111;
  font-weight: 600;
}


/* Right price box */
.car-right{
  background: #f3f3f3;
  border-radius: 12px;
  padding: 34px 36px;
  display: grid;
  gap: 16px;
  justify-items: start;
}

.car-right .price-label{
  font-size: 20px;
  color: #222;
  font-weight: 500;
}

.car-price{
  font-size: 46px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #111;
}

.car-select{
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 22px;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  /* blue outline like reference */
  box-shadow: 0 0 0 3px rgba(44, 102, 255, 0.85);
}

.car-select .arrow{
  margin-left: auto;
  font-size: 22px;
  line-height: 1;
}

/* Mobile */
@media (max-width: 760px){
  .car-card{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .car-title{ font-size: 24px; }
  .car-meta{ font-size: 15px; gap: 14px; }

  .car-img{ height: 140px; }

  /* Requirement: hide checkbox list on mobile */
  .car-benefits{ display: none; }

  .car-right{
    padding: 18px;
    justify-items: stretch;
  }

  .car-price{ font-size: 34px; }
}

/* =========================================================
   STEP 2 – MATCH REFERENCE (paste at END of booking.css)
   ========================================================= */

.bw-cars{ gap: 16px; }

/* Main card */
.car-card{
  background: #fff;
  border: 1px solid #e7e7ee;
  border-radius: 18px;
  padding: 34px 38px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);

  display: grid;
  grid-template-columns: 520px 1fr 520px; /* key: middle wider + right big box */
  gap: 44px;
  align-items: center;
}

/* LEFT */
.car-left{ display:flex; flex-direction:column; gap: 18px; }

.car-head{ display:flex; flex-direction:column; gap: 10px; }

.car-title{
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #111;
}

/* Meta row: small icons + text like reference */
.car-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0;

  font-size: 18px;
  font-weight: 500;
  color: #111;
}

.car-meta .meta-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.car-meta svg{
  width: 20px;
  height: 20px;
  stroke: #111;
  fill: none;
  stroke-width: 1.7;
  opacity: .9;
}

/* Big car image */
.car-img{
  width: 100%;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;

  display:flex;
  align-items:center;
  justify-content:flex-start; /* like reference */
  background: transparent;
}

.car-img img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* no cropping */
  display:block;
}

/* MIDDLE – benefits like reference (single lines, compact) */
.car-benefits{
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.car-benefits .benefit{
  display: flex;
  align-items: center;
  gap: 16px;

  font-size: 18px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;

  white-space: nowrap; /* key: keep them on one line */
}

.car-benefits .check{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.8px solid #111;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

/* RIGHT – price box like reference */
.car-right{
  background: #f1f1f1;
  border-radius: 14px;
  padding: 44px 48px;

  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.car-right .price-label{
  font-size: 20px;
  font-weight: 500;
  color: #222;
}

.car-price{
  font-size: 44px;
  font-weight: 700;
  color: #111;
  letter-spacing: .2px;
}

/* Button like reference (NO blue outline) */
.car-select{
  margin-top: 16px;

  width: 420px;              /* key: centered pill width */
  max-width: 100%;
  height: 62px;

  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  box-shadow: none !important;     /* remove blue outline */
  outline: none !important;
}

.car-select .arrow{
  margin-left: auto;  /* pushes arrow to the far right */
  font-size: 22px;
  padding-right: 6px;
  line-height: 1;
}

/* Slight nicer hover (optional but close to real UI) */
.car-select:hover{ filter: brightness(.98); }

/* RESPONSIVE: hide benefits on mobile as you requested */
@media (max-width: 900px){
  .car-card{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .car-title{ font-size: 26px; }
  .car-meta{ font-size: 15px; gap: 14px; }

  .car-img{ height: 150px; }

  .car-benefits{ display: none; }

  .car-right{
    padding: 22px;
    width: 100%;
  }

  .car-price{ font-size: 34px; }

  .car-select{
    width: 100%;
    height: 58px;
  }
}

/* ===== Step 2: fit inside section perfectly ===== */

.bw-card{ overflow: hidden; } /* prevents visual spill */

.car-card{
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #e7e7ee;
  border-radius: 18px;
  padding: 34px 38px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);

  display: grid;

  /* ✅ KEY FIX: fluid columns instead of fixed 520px */
  grid-template-columns:
    minmax(320px, 1.25fr)   /* left */
    minmax(260px, 1fr)      /* middle */
    minmax(320px, 1.25fr);  /* right */

  gap: 34px;
  align-items: center;
}

/* Keep benefits single line like reference (desktop only) */
.car-benefits .benefit{ white-space: nowrap; }

/* Price button: don’t force fixed width that can overflow */
.car-select{
  width: clamp(280px, 100%, 420px);
  max-width: 100%;
  height: 62px;
  box-shadow: none !important;
}

/* Mobile: already requested */
@media (max-width: 900px){
  .car-card{
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }
  .car-benefits{ display:none; }
  .car-select{ width: 100%; height: 58px; }
}


/* ======================================================
   STEP 2 – FIX CARD OVERFLOW (paste at END of booking.css)
   ====================================================== */

/* allow grid children to shrink instead of pushing outside */
.car-card,
.car-left,
.car-benefits,
.car-right{
  min-width: 0;
}

/* force card to NEVER exceed its container */
.car-card{
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* prevents the grey box from spilling out */
  box-sizing: border-box;

  /* ✅ KEY: shrinkable columns */
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px; /* slightly tighter so it fits in 980px container */
}

/* ✅ IMPORTANT: remove nowrap so long benefits don’t force overflow */
.car-benefits .benefit{
  white-space: normal !important;
}

/* grey price box must stay inside */
.car-right{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* button must not force overflow */
.car-select{
  width: 100% !important;
  max-width: 100% !important;
}

/* Slightly reduce padding on smaller desktop widths */
@media (max-width: 1100px){
  .car-card{
    padding: 24px 22px;
    gap: 22px;
  }

  .car-right{
    padding: 28px 26px;
  }
}


/* ==========================================
   STEP 2 – PROFESSIONAL TYPOGRAPHY + SPACING
   paste at END of booking.css
   ========================================== */

/* card: slightly tighter */
.car-card{
  padding: 28px 30px !important;
  gap: 24px !important;
}

/* title smaller + less heavy */
.car-title{
  font-size: 30px !important;
  font-weight: 400 !important;
  letter-spacing: .2px !important;
  margin-bottom: 2px !important;
}

/* meta row tighter and lighter */
.car-meta{
  font-size: 16px !important;
  gap: 18px !important;
  color: #1b1b1b !important;
}
.car-meta .meta-item{ gap: 8px !important; }
.car-meta svg{
  width: 18px !important;
  height: 18px !important;
  stroke-width: 1.6 !important;
  opacity: .85 !important;
}

/* image: slightly less tall so the card feels balanced */
.car-img{
  height: 165px !important;
}

/* benefits: smaller text + tighter rows */
.car-benefits{
  gap: 14px !important;
}
.car-benefits .benefit{
  font-size: 16px !important;
  font-weight: 600 !important;
  gap: 14px !important;
  line-height: 1.25 !important;
}
.car-benefits .check{
  width: 24px !important;
  height: 24px !important;
  font-size: 13px !important;
  border-width: 1.6px !important;
}

/* price box: a bit less padding */
.car-right{
  padding: 34px 36px !important;
  gap: 12px !important;
}
.car-right .price-label{
  font-size: 18px !important;
  line-height: 1.15 !important;
  color: #222 !important;
}

/* price: slightly smaller */
.car-price{
  font-size: 40px !important;
  font-weight: 700 !important;
}

/* button: smaller, cleaner */
.car-select{
  height: 56px !important;
  font-size: 16px !important;
  letter-spacing: .8px !important;
  padding: 0 18px !important;
}

/* arrow spacing */
.car-select .arrow{
  font-size: 20px !important;
  padding-right: 2px !important;
}

/* tablet tightening */
@media (max-width: 1100px){
  .car-card{ padding: 22px !important; gap: 18px !important; }
  .car-title{ font-size: 26px !important; }
  .car-right{ padding: 26px !important; }
  .car-price{ font-size: 34px !important; }
}

/* mobile remains same (benefits hidden) */
@media (max-width: 900px){
  .car-meta{ font-size: 14px !important; gap: 14px !important; }
}


/* ==========================================
   STEP 2 – INTER PROFESSIONAL COMPACT STYLE
   ========================================== */

.car-card{
  padding: 24px 28px !important;
  gap: 20px !important;
}

/* TITLE */
.car-title {
   font-family: 'Inter', sans-serif !important;
   font-size: 27px !important;
   font-weight: 400 !important;
   letter-spacing: .3px !important;
}


/* META (icons + text) */
.car-meta{
  font-size: 14px !important;
  font-weight: 500 !important;
  gap: 16px !important;
}

.car-meta svg{
  width: 16px !important;
  height: 16px !important;
  stroke-width: 1.6 !important;
}

/* IMAGE */
.car-img{
  height: 150px !important;
}

/* BENEFITS */
.car-benefits{
  gap: 12px !important;
}

.car-benefits .benefit{
  font-size: 14px !important;
  font-weight: 600 !important;
  gap: 12px !important;
  line-height: 1.3 !important;
}

.car-benefits .check{
  width: 20px !important;
  height: 20px !important;
  font-size: 11px !important;
  border-width: 1.4px !important;
}

/* PRICE BOX */
.car-right{
  padding: 28px 30px !important;
  gap: 10px !important;
}

.car-right .price-label{
  font-size: 15px !important;
  font-weight: 500 !important;
}

.car-price{
  font-size: 34px !important;
  font-weight: 800 !important;
}

/* BUTTON */
.car-select{
  height: 50px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: .6px !important;
}

.car-select .arrow{
  font-size: 18px !important;
}

/* =========================================================
   STEP 2 FINAL OVERRIDES (Typography + SVG checkbox)
   Paste at END of booking.css
   ========================================================= */

/* Your requested changes */
.car-title{
  font-family: 'Inter', sans-serif !important;
  font-size: 27px !important;
  font-weight: 400 !important;
  letter-spacing: .3px !important;
  text-transform: uppercase;
}

.car-benefits .benefit{
  font-size: 12px !important;
  font-weight: 500 !important;
  gap: 12px !important;
  line-height: 1.3 !important;
}

/* Reduce meta icon + text size a bit (more professional) */
.car-meta{
  font-size: 13px !important;
  gap: 14px !important;
}
.car-meta svg{
  width: 14px !important;
  height: 14px !important;
  stroke-width: 1.5 !important;
  opacity: .85 !important;
}

/* ===== SVG checkbox replacement =====
   IMPORTANT: update the URL if your svg is in another folder
*/
.car-benefits .check{
  /* Remove the old circle/text look */
  border: 0 !important;
  background: transparent !important;
  font-size: 0 !important;      /* hides the ✓ text */
  line-height: 0 !important;

  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;

  display: inline-block !important;

background-image: url("/the-london-chauffeur/assets/img/checkbox-checked-svgrepo-com.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

/* Tighten card spacing slightly so it looks clean */
.car-card{
  gap: 22px !important;
  padding: 22px 24px !important;
}

.car-img{ height: 145px !important; }

.car-right{
  padding: 26px 28px !important;
  gap: 10px !important;
}

.car-right .price-label{
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.car-price{
  font-size: 32px !important;
  font-weight: 800 !important;
}

.car-select{
  height: 48px !important;
  font-size: 13px !important;
  letter-spacing: .6px !important;
}

/* Mobile: keep benefits hidden */
@media (max-width: 900px){
  .car-benefits{ display:none !important; }
}

/* ======================================================
   FINAL PROFESSIONAL SVG CHECKBOX
   ====================================================== */

.car-benefits .check{
  /* remove old styles completely */
  border: none !important;
  background: none !important;
  font-size: 0 !important;
  line-height: 0 !important;

  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;

  display: inline-block !important;

  background-image: url("the-london-chauffeur/assets/img/checkbox-checked-svgrepo-com.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.95;
}

/* Perfect vertical alignment */
.car-benefits .benefit{
  display: flex;
  align-items: center;
  gap: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

/* Slightly reduce space between benefit rows */
.car-benefits{
  gap: 10px !important;
}



/* ==========================================
   FINAL: SVG checkbox (professional)
   ========================================== */

/* Your final typography (keep) */
.car-title{
  font-family: 'Inter', sans-serif !important;
  font-size: 27px !important;
  font-weight: 400 !important;
  letter-spacing: .3px !important;
  text-transform: uppercase;
}

.car-benefits .benefit{
  font-size: 12px !important;
  font-weight: 500 !important;
  gap: 10px !important;
  line-height: 1.35 !important;
}

/* Replace ✓ circle with SVG icon */
.car-benefits .check{
  /* kill old circle/text */
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;

  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;

  display: inline-block !important;

  background-image: url("/the-london-chauffeur/assets/img/checkbox-checked-svgrepo-com.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;

  opacity: .95;
}

/* Keep benefits hidden on mobile */
@media (max-width: 900px){
  .car-benefits{ display:none !important; }
}


/* =========================================================
   STEP 2 – MOBILE CARD (match reference)
   Desktop untouched. Mobile only.
   ========================================================= */
@media (max-width: 900px){

  /* layout: 2 columns, 2 rows */
  .car-card{
    display: grid !important;
    grid-template-columns: 92px 1fr !important;
    grid-template-areas:
      "img head"
      "price btn";
    gap: 12px 14px !important;
    padding: 14px !important;
    align-items: center !important;
  }

  /* keep checklist hidden on mobile */
  .car-benefits{ display:none !important; }

  /* let inner wrappers “disappear” so we can place children in grid */
  .car-left{ display: contents !important; }
  .car-right{ display: contents !important; }

  /* image small like reference */
  .car-img{
    grid-area: img !important;
    width: 92px !important;
    height: 44px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: transparent !important;
    justify-content: flex-start !important;
  }
  .car-img img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* title + meta right side */
  .car-head{ grid-area: head !important; }
  .car-title{
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: .2px !important;
    line-height: 1.15 !important;
    margin: 0 0 6px !important;
  }
  .car-meta{
    font-size: 12px !important;
    gap: 12px !important;
    color: #111 !important;
  }
  .car-meta svg{
    width: 14px !important;
    height: 14px !important;
  }

  /* remove grey price box label on mobile */
  .price-label{ display:none !important; }

  /* price bottom-left */
  .car-price{
    grid-area: price !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    align-self: center !important;
  }

  /* button bottom-right */
  .car-select{
    grid-area: btn !important;
    width: 100% !important;
    height: 44px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;

    background: #42190c !important; /* required */
    color: #fff !important;

    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .8px !important;

    justify-content: center !important;
  }

  .car-select .arrow{
    font-size: 16px !important;
    margin-left: 10px !important;
    padding-right: 0 !important;
  }
}


/* =========================================================
   STEP 2 – MOBILE FINAL REFINEMENT
   Desktop untouched
   ========================================================= */
@media (max-width: 900px){

  /* Bigger car image */
  .car-img{
    width: 110px !important;
    height: 60px !important;
  }

  /* Title slightly cleaner */
  .car-title{
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  /* Meta slightly tighter */
  .car-meta{
    font-size: 12px !important;
    gap: 10px !important;
  }

  /* PRICE — smaller + lighter */
  .car-price{
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  /* BUTTON — smaller + new color */
  .car-select{
    height: 38px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: #92140c !important; /* updated color */
  }

  .car-select .arrow{
    font-size: 14px !important;
    margin-left: 8px !important;
  }

  /* Slight spacing refinement */
  .car-card{
    gap: 10px 12px !important;
    padding: 12px !important;
  }
}

/* ==========================================
   MOBILE – slightly bigger car image
   ========================================== */
@media (max-width: 900px){

  .car-img{
    width: 135px !important;
    height: 76px !important;
  }

  .car-card{
    grid-template-columns: 125px 1fr !important;
  }

}

/* =========================================================
   PROGRESS BAR (PC + Mobile) – Professional Connected Steps
   Only affects .bw-steps/.bw-step
   ========================================================= */

.bw-steps{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: center !important;
  margin: 6px 0 18px !important;
  padding: 0 !important;
}

/* each step becomes a “node” in a connected line */
.bw-step{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;

  padding: 10px 12px !important;
  border-radius: 999px !important;

  background: transparent !important;
  color: #6b7280 !important;
  font-weight: 600 !important;
  font-size: 16px !important;

  justify-self: start !important;
}

/* connector line */
.bw-step::after{
  content: "" !important;
  position: absolute !important;
  left: calc(26px + 10px + 6px) !important;
  right: -12px !important;
  top: 50% !important;
  height: 2px !important;
  transform: translateY(-50%) !important;

  background: #e5e7eb !important;
  border-radius: 999px !important;
}

.bw-step:last-child::after{ display: none !important; }

/* number dot */
.bw-step__dot{
  width: 26px !important;
  height: 26px !important;
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #e5e7eb !important;
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.bw-step__label{ white-space: nowrap !important; }

/* ACTIVE */
.bw-step.active{ color: #111827 !important; }
.bw-step.active .bw-step__dot{
  background: #2563eb !important;
  color: #fff !important;
}

/* DONE */
.bw-step.done{
  color: #111827 !important;
  opacity: 0.95 !important;
}
.bw-step.done .bw-step__dot{
  background: #2563eb !important;
  color: #fff !important;
}
.bw-step.done::after{ background: #2563eb !important; }

/* MOBILE: show current step + next step only */
@media (max-width: 760px){
  .bw-steps{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .bw-step{ display: none !important; }

  .bw-step.active,
  .bw-step.is-next{
    display: inline-flex !important;
  }

  /* line only from active to next */
  .bw-step.is-next::after{ display: none !important; }

  .bw-step{
    font-size: 14px !important;
    padding: 8px 10px !important;
  }

  .bw-step__dot{
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
  }
}


/* =========================================================
   PRO PROGRESS BAR (PC + Mobile) – FIXED (no overlap)
   Only affects .bw-steps/.bw-step
   ========================================================= */

/* layout */
.bw-steps{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 8px 0 18px !important;
}

/* each cell stretches so the connector can live inside */
.bw-step{
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  justify-self: stretch !important;
  width: 100% !important;

  padding: 8px 10px !important;
  background: transparent !important;
  border-radius: 999px !important;

  color: #6b7280 !important;
  font-weight: 600 !important;
  font-size: 16px !important;

  z-index: 1 !important;
}

/* HARD RESET any old span styling that might still be applying */
.bw-step > span{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* dot and label stay above line */
.bw-step__dot,
.bw-step__label{
  position: relative !important;
  z-index: 2 !important;
}

/* dot */
.bw-step__dot{
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #e5e7eb !important;
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

/* label */
.bw-step__label{
  white-space: nowrap !important;
}

/* connector line: draw ONLY between dots (not through text) */
.bw-step::before{
  content: "" !important;
  position: absolute !important;

  /* start from center of previous dot to center of this dot */
  left: -50% !important;
  width: 100% !important;

  top: 50% !important;
  height: 3px !important;
  transform: translateY(-50%) !important;

  background: #e5e7eb !important;
  border-radius: 999px !important;

  z-index: 0 !important;
}

/* first step has no line before it */
.bw-step:first-child::before{
  display: none !important;
}

/* ACTIVE */
.bw-step.active{
  color: #111827 !important;
}
.bw-step.active .bw-step__dot{
  background: #2563eb !important; /* active blue */
  color: #fff !important;
}

/* DONE */
.bw-step.done{
  color: #111827 !important;
}
.bw-step.done .bw-step__dot{
  background: #2563eb !important;
  color: #fff !important;
}
.bw-step.done::before{
  background: #2563eb !important;
}

/* ----------------------------
   MOBILE: show only 2 steps
   (active + next)
   ---------------------------- */
@media (max-width: 760px){
  .bw-steps{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .bw-step{ display: none !important; }

  .bw-step.active,
  .bw-step.is-next{
    display: flex !important;
  }

  /* On mobile, line only between the two shown steps */
  .bw-step.is-next::before{ display: none !important; }

  .bw-step{
    font-size: 14px !important;
    padding: 8px 8px !important;
    gap: 8px !important;
  }

  .bw-step__dot{
    width: 26px !important;
    height: 26px !important;
    font-size: 12px !important;
  }
}


/* =========================================================
   PROGRESS BAR – PRO STEPper (PC + Mobile) + Animations
   Only affects .bw-steps / .bw-step
   ========================================================= */

.bw-steps{
  /* theme */
  --bw-accent: #2563eb;        /* active color (reference blue) */
  --bw-accent-2: #60a5fa;      /* glow tint */
  --bw-muted: #cbd5e1;         /* line inactive */
  --bw-text: #0f172a;          /* label active */
  --bw-subtext: #64748b;       /* label inactive */
  --bw-progress: 0%;           /* set by JS */

  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: center !important;

  padding: 14px 18px !important;
  border-radius: 14px !important;
  background: #fff !important;
}

/* Base rail */
.bw-steps::before{
  content: "" !important;
  position: absolute !important;
  left: 34px !important;
  right: 34px !important;
  top: 50% !important;
  height: 4px !important;
  transform: translateY(-50%) !important;
  background: linear-gradient(90deg, var(--bw-muted), var(--bw-muted)) !important;
  border-radius: 999px !important;
  z-index: 0 !important;
}

/* Filled progress (animated) */
.bw-steps::after{
  content: "" !important;
  position: absolute !important;
  left: 34px !important;
  top: 50% !important;
  height: 4px !important;
  transform: translateY(-50%) !important;
  width: var(--bw-progress) !important;
  max-width: calc(100% - 68px) !important;

  background: linear-gradient(90deg, var(--bw-accent), var(--bw-accent-2)) !important;
  border-radius: 999px !important;
  z-index: 1 !important;

  transition: width 420ms cubic-bezier(.2,.9,.2,1) !important;
}

/* each step item */
.bw-step{
  position: relative !important;
  z-index: 2 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  padding: 6px 10px !important;
  background: transparent !important;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

/* HARD reset old span styles from previous stepper */
.bw-step > span{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* dot */
.bw-step__dot{
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #eef2f7 !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 800 !important;

  border: 2px solid #e2e8f0 !important;

  transition:
    transform 220ms cubic-bezier(.2,.9,.2,1),
    background 220ms cubic-bezier(.2,.9,.2,1),
    border-color 220ms cubic-bezier(.2,.9,.2,1),
    color 220ms cubic-bezier(.2,.9,.2,1),
    box-shadow 220ms cubic-bezier(.2,.9,.2,1) !important;
}

/* label */
.bw-step__label{
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--bw-subtext) !important;
  white-space: nowrap !important;

  transition: color 220ms cubic-bezier(.2,.9,.2,1) !important;
}

/* ACTIVE */
.bw-step.active .bw-step__dot{
  background: var(--bw-accent) !important;
  border-color: var(--bw-accent) !important;
  color: #fff !important;
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 10px 22px rgba(37,99,235,.22) !important;
}
.bw-step.active .bw-step__label{
  color: var(--bw-text) !important;
}

/* subtle pulse for active dot */
.bw-step.active .bw-step__dot::after{
  content: "" !important;
  position: absolute !important;
  inset: -6px !important;
  border-radius: 999px !important;
  border: 2px solid rgba(96,165,250,.55) !important;
  opacity: .0 !important;
  animation: bwPulse 1.6s ease-out infinite !important;
}
@keyframes bwPulse{
  0%{ transform: scale(.85); opacity:.0; }
  30%{ opacity:.55; }
  100%{ transform: scale(1.18); opacity:0; }
}

/* DONE (show check) */
.bw-step.done .bw-step__dot{
  background: #0f172a !important;
  border-color: #0f172a !important;
  color: transparent !important;
  position: relative !important;
}
.bw-step.done .bw-step__dot::before{
  content: "✓" !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  position: absolute !important;
}

/* MOBILE: show only current + next */
@media (max-width: 760px){
  .bw-steps{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 12px 12px !important;
  }

  /* hide steps by default */
  .bw-step{ display: none !important; }

  /* show active + next */
  .bw-step.active,
  .bw-step.is-next{
    display: inline-flex !important;
    justify-content: flex-start !important;
  }

  /* rail shorter for mobile */
  .bw-steps::before,
  .bw-steps::after{
    left: 26px !important;
    right: 26px !important;
  }

  .bw-step__dot{
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
  }
  .bw-step__label{
    font-size: 14px !important;
  }
}


/* ==========================================
   PROGRESS BAR (MATCH SCREENSHOT)
   Color updated to #92140c via --primary
   Paste at END of booking.css
   ========================================== */

.bw-progress{
  margin-bottom: 18px;
}

.bw-progress-viewport{
  width: 100%;
  overflow: hidden;
}

.bw-progress-track{
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s ease;
}

/* Step block */
.bw-progress-step{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Circle */
.bw-progress-circle{
  width: 34px;
  height: 34px;
  font-size: 14px;
  border-radius: 999px;
  border: 2px solid #bdbdbd;
  background: #fff;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Label */
.bw-progress-label{
  font-size: 16px;
  font-weight: 500;
  color: #9a9a9a;
  white-space: nowrap;
}

/* Active */
.bw-progress-step.active .bw-progress-circle{
  background: var(--primary); /* #92140c */
  border-color: var(--primary);
  color: #fff;
}
.bw-progress-step.active .bw-progress-label{
  color: #111;
  font-weight: 600;
}

/* Line between steps */
.bw-progress-line{
  height: 2px;
  width: 60px;
  background: #bdbdbd;
  flex-shrink: 0;
}

/* ===== Desktop: show all steps centered ===== */
@media (min-width: 768px){
  .bw-progress-track{
    justify-content: center;
    transform: translateX(0) !important;
  }
}

/* ===== Mobile: show 2 steps at a time ===== */
@media (max-width: 767px){

  .bw-progress-track{
    width: 200%;
    justify-content: flex-start;
  }

  /* make each step half-screen wide (2 visible) */
  .bw-progress-step{
    width: 50%;
  }

  .bw-progress-line{
    width: 50px;
  }

  .bw-progress-label{
    font-size: 16px;
  }

  .bw-progress-circle{
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  /* sliding positions */
  .bw-progress-track.step-1{ transform: translateX(0%); }
  .bw-progress-track.step-2{ transform: translateX(-50%); }
  .bw-progress-track.step-3{ transform: translateX(-100%); }
  .bw-progress-track.step-4{ transform: translateX(-150%); }
}


.bw-progress{
  max-width: 900px;   /* control total width */
  margin: 0 auto 25px auto;
}

.bw-progress-track{
  justify-content: space-between;
}


/* ================================
   FIX: Progress bar overflow after card width reduced
   Paste at END of booking.css
   ================================ */

.bw-progress-viewport{
  padding: 0 10px;              /* keeps last step from clipping */
  box-sizing: border-box;
}

.bw-progress-track{
  justify-content: space-between; /* distribute nicely in smaller width */
  gap: 10px;                      /* smaller gap */
}

.bw-progress-step{
  flex-shrink: 0;                 /* steps keep shape */
}

/* Make the line flexible instead of fixed width */
.bw-progress-line{
  width: auto !important;
  flex: 1;                        /* auto shrink/grow */
  min-width: 18px;                /* never disappear */
  max-width: 70px;                /* never get too long */
  margin: 0 10px;                 /* controlled spacing */
}

/* Slightly compact fonts so it fits clean */
.bw-progress-label{
  font-size: 15px;
}

/* Extra compact ONLY when card gets narrow (common after making it 60%) */
@media (max-width: 1100px){
  .bw-progress-circle{
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .bw-progress-label{
    font-size: 14px;
  }
  .bw-progress-line{
    min-width: 14px;
    max-width: 45px;
    margin: 0 8px;
  }
}


/* =========================================
   PROGRESS BAR — FORCE FIT INSIDE BOX
   Paste at END of booking.css
   ========================================= */

.bw-progress {
  width: 100%;
}

.bw-progress-viewport{
  width: 100%;
  overflow: hidden;          /* hard stop overflow */
  padding: 0 14px;           /* prevents last circle from clipping */
  box-sizing: border-box;
}

/* Main row */
.bw-progress-track{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;                  /* smaller gaps */
  width: 100%;
}

/* Each step */
.bw-progress-step{
  display: flex;
  align-items: center;
  gap: 8px;                  /* smaller gap between circle + text */
  flex: 0 0 auto;
}

/* Smaller circle */
.bw-progress-circle{
  width: 30px;
  height: 30px;
  font-size: 13px;
}

/* Smaller labels + safe truncation */
.bw-progress-label{
  font-size: 14px;
  line-height: 1;
  max-width: 110px;          /* keeps "Your Details" from pushing out */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Make line flexible so it NEVER overflows */
.bw-progress-line{
  flex: 1 1 auto;
  height: 2px;
  background: #bdbdbd;
  min-width: 10px;           /* line still visible */
  max-width: 40px;           /* line never too long */
  margin: 0 6px;             /* reduce spacing */
}

/* Extra squeeze for smaller card widths */
@media (max-width: 1050px){
  .bw-progress-label{ font-size: 13px; max-width: 90px; }
  .bw-progress-circle{ width: 28px; height: 28px; font-size: 12px; }
  .bw-progress-line{ max-width: 30px; margin: 0 5px; }
}

/* Extreme safety (if user shrinks browser a lot) */
@media (max-width: 900px){
  .bw-progress-label{ max-width: 70px; }
  .bw-progress-line{ max-width: 22px; min-width: 6px; }
}