/* ─────────────────────────────────────
   LuxeMotion Booking Engine — lmb.css
   White / Light Theme
   ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --lmb-bg:      #f7f7f7;
  --lmb-surface: #ffffff;
  --lmb-surface2:#f2f2f2;
  --lmb-sidebar: #f0f0f0;
  --lmb-border:  #e4e4e4;
  --lmb-border2: #d0d0d0;
  --lmb-text:    #111111;
  --lmb-text2:   #333333;
  --lmb-muted:   #888888;
  --lmb-subtle:  #c4c4c4;
  --lmb-gold:    #b8935a;
  --lmb-gold2:   #c9a96e;
  --lmb-gold-bg: rgba(184,147,90,0.08);
  --lmb-gold-bd: rgba(184,147,90,0.22);
  --lmb-error:   #d44f4f;
  --lmb-success: #2e9e6b;
  --lmb-radius:  10px;
  --lmb-head:    'Playfair Display', Georgia, serif;
  --lmb-body:    'DM Sans', 'Helvetica Neue', sans-serif;
}

/* ══════════════════════════════════════
   BOOKING PAGE SHELL
══════════════════════════════════════ */
.lmb-booking-body {
  margin: 0;
  padding: 0;
  background: var(--lmb-bg);
  color: var(--lmb-text);
  font-family: var(--lmb-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.lmb-booking-body *,
.lmb-booking-body *::before,
.lmb-booking-body *::after { box-sizing: border-box; }

.lmb-bp { display: flex; flex-direction: column; min-height: 100vh; }

/* ── Minimal Header ── */
.lmb-bp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}
.lmb-bp-logo img { height: 36px; width: auto; display: block; }
.lmb-bp-logo-text {
  font-family: var(--lmb-head);
  font-size: 20px;
  color: var(--lmb-gold);
  letter-spacing: 2px;
  text-decoration: none;
}
.lmb-bp-header-right { display: flex; align-items: center; gap: 20px; }
.lmb-bp-help {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lmb-body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.lmb-bp-help svg { width: 15px; height: 15px; }
.lmb-bp-help strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.lmb-bp-help:hover { color: var(--lmb-gold); }

.lmb-bp-login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lmb-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.lmb-bp-login-btn svg { width: 15px; height: 15px; }
.lmb-bp-login-btn:hover { border-color: var(--lmb-gold); color: var(--lmb-gold); background: rgba(184,147,90,0.1); }

.lmb-bp-back-home {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lmb-body);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.lmb-bp-back-home svg { width: 14px; height: 14px; }
.lmb-bp-back-home:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }

/* Header user area */
.lmb-header-user { display: flex; align-items: center; gap: 10px; }
.lmb-header-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lmb-gold);
  color: #fff;
  font-family: var(--lmb-body);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lmb-header-user-info { display: flex; flex-direction: column; gap: 2px; }
.lmb-header-user-name { font-family: var(--lmb-body); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.lmb-header-user-links { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.35); }
.lmb-header-link {
  font-family: var(--lmb-body);
  font-size: 12px;
  color: var(--lmb-gold);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.lmb-header-link:hover { opacity: 0.75; text-decoration: underline; }
.lmb-header-logout { font-size: 12px; }

/* ── Body Layout ── */
.lmb-bp-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  flex: 1;
  min-height: 0;
}

/* ══════════════════════════════════════
   LEFT SIDEBAR
══════════════════════════════════════ */
.lmb-bp-sidebar {
  background: var(--lmb-sidebar);
  border-right: 1px solid var(--lmb-border);
  padding: 28px 22px;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lmb-bp-trip-card {
  background: var(--lmb-surface);
  border: 1px solid var(--lmb-border);
  border-radius: var(--lmb-radius);
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.lmb-bp-service-badge {
  display: inline-block;
  font-family: var(--lmb-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lmb-gold);
  background: var(--lmb-gold-bg);
  border: 1px solid var(--lmb-gold-bd);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.lmb-bp-route { padding: 4px 0 14px; }
.lmb-bp-route-row { display: flex; align-items: center; gap: 12px; }
.lmb-bp-route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lmb-bp-route-dot--from { background: var(--lmb-gold); }
.lmb-bp-route-dot--to   { background: var(--lmb-border2); border: 2px solid var(--lmb-text); }
.lmb-bp-route-vline {
  width: 1px;
  height: 22px;
  background: var(--lmb-border);
  margin: 5px 0 5px 4px;
}
.lmb-bp-route-place {
  font-family: var(--lmb-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--lmb-text);
  line-height: 1.3;
}

.lmb-bp-trip-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--lmb-border);
}
.lmb-bp-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lmb-body);
  font-size: 13px;
  color: var(--lmb-muted);
}
.lmb-bp-meta-row svg { width: 14px; height: 14px; color: var(--lmb-gold); flex-shrink: 0; }

/* Selected vehicle in sidebar */
.lmb-bp-selected-vehicle { padding-top: 14px; }
.lmb-bp-sv-divider { height: 1px; background: var(--lmb-border); margin-bottom: 14px; }
.lmb-bp-sv-label { font-family: var(--lmb-body); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--lmb-muted); margin-bottom: 4px; }
.lmb-bp-sv-name { font-family: var(--lmb-head); font-size: 15px; color: var(--lmb-text); margin-bottom: 2px; }
.lmb-bp-sv-price { font-family: var(--lmb-body); font-size: 15px; color: var(--lmb-gold); font-weight: 600; }

.lmb-bp-edit-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lmb-body);
  font-size: 12px;
  color: var(--lmb-muted);
  text-decoration: none;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--lmb-border);
  transition: color 0.2s;
}
.lmb-bp-edit-link svg { width: 13px; height: 13px; }
.lmb-bp-edit-link:hover { color: var(--lmb-gold); }

/* Sidebar trust */
.lmb-bp-sidebar-trust { display: flex; flex-direction: column; gap: 10px; }
.lmb-bp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lmb-body);
  font-size: 12px;
  color: var(--lmb-muted);
}
.lmb-bp-trust-item svg { width: 14px; height: 14px; color: var(--lmb-gold); flex-shrink: 0; opacity: 0.7; }

/* ══════════════════════════════════════
   MAIN CONTENT AREA
══════════════════════════════════════ */
.lmb-bp-main {
  padding: 40px 48px 80px;
  overflow-y: auto;
  flex: 1;
  min-width: 0;
  background: var(--lmb-bg);
}

/* Step indicator */
.lmb-bp-steps {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.lmb-step { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lmb-step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--lmb-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lmb-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--lmb-subtle);
  background: var(--lmb-surface);
  transition: all 0.25s;
}
.lmb-step-label {
  font-family: var(--lmb-body);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lmb-subtle);
  transition: color 0.25s;
}
.lmb-step.active .lmb-step-dot  { background: var(--lmb-gold); border-color: var(--lmb-gold); color: #fff; box-shadow: 0 3px 10px rgba(184,147,90,0.3); }
.lmb-step.active .lmb-step-label { color: var(--lmb-text); font-weight: 600; }
.lmb-step.done .lmb-step-dot    { background: var(--lmb-gold-bg); border-color: var(--lmb-gold-bd); color: var(--lmb-gold); }
.lmb-step.done .lmb-step-label  { color: var(--lmb-muted); }
.lmb-step-line { flex: 1; height: 1px; background: var(--lmb-border); margin: 0 12px; }

/* Panel */
.lmb-panel { display: none; animation: lmb-in 0.3s ease; }
.lmb-panel.active { display: block; }
@keyframes lmb-in { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

.lmb-bp-panel-head { margin-bottom: 28px; }
.lmb-bp-panel-head h1 {
  font-family: var(--lmb-head);
  font-size: 32px;
  font-weight: 400;
  color: var(--lmb-text);
  margin: 0 0 8px;
  line-height: 1.15;
}
.lmb-bp-panel-head h1 em { font-style: italic; color: var(--lmb-gold); }
.lmb-bp-panel-head p { font-family: var(--lmb-body); font-size: 14px; color: var(--lmb-muted); margin: 0; line-height: 1.6; }

.lmb-bp-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--lmb-border);
}

/* ══════════════════════════════════════
   VEHICLE CARDS
══════════════════════════════════════ */
.lmb-vehicles-loading {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--lmb-muted);
  font-family: var(--lmb-body);
  font-size: 14px;
  padding: 40px 0;
}
.lmb-spinner {
  width: 22px; height: 22px;
  border: 2px solid var(--lmb-border);
  border-top-color: var(--lmb-gold);
  border-radius: 50%;
  animation: lmb-spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes lmb-spin { to { transform: rotate(360deg); } }

#lmb-vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }

.lmb-vehicle-card {
  background: var(--lmb-surface);
  border: 2px solid var(--lmb-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  overflow: hidden;
  position: relative;
}
.lmb-vehicle-card:hover { border-color: var(--lmb-gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.lmb-vehicle-card.selected { border-color: var(--lmb-gold); box-shadow: 0 0 0 1px var(--lmb-gold), 0 8px 24px rgba(184,147,90,0.15); transform: translateY(-2px); }

/* Image — cream background like Blacklane studio shots */
.lmb-vehicle-img { width: 100%; height: 190px; background: #f5f2ec; overflow: hidden; flex-shrink: 0; }
.lmb-vehicle-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.lmb-vehicle-card:hover .lmb-vehicle-img img { transform: scale(1.04); }
.lmb-vehicle-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.lmb-vehicle-img-placeholder svg { width: 56px; height: 56px; color: #ccc; }

/* Body */
.lmb-vehicle-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

/* Header: name left, price right — exactly like Blacklane */
.lmb-vc-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.lmb-vc-name-col { flex: 1; min-width: 0; }
.lmb-vc-price-col { text-align: right; flex-shrink: 0; }

.lmb-vehicle-category {
  font-family: var(--lmb-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lmb-gold);
  margin-bottom: 3px;
}
.lmb-vehicle-name {
  font-family: var(--lmb-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--lmb-text);
  line-height: 1.3;
}
.lmb-vehicle-price-amount {
  font-family: var(--lmb-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--lmb-text);
  line-height: 1.2;
  white-space: nowrap;
}
.lmb-vehicle-price-label {
  font-family: var(--lmb-body);
  font-size: 10px;
  color: var(--lmb-muted);
  text-align: right;
}

/* Specs row — compact icon + number */
.lmb-vehicle-specs { display: flex; align-items: center; gap: 16px; }
.lmb-vehicle-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--lmb-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--lmb-text);
}
.lmb-vehicle-spec svg { width: 15px; height: 15px; color: var(--lmb-muted); flex-shrink: 0; }

/* Selected checkmark badge */
.lmb-vehicle-selected-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  background: var(--lmb-gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(184,147,90,0.45);
}
.lmb-vehicle-selected-check svg { width: 13px; height: 13px; color: #fff; }
.lmb-vehicle-card.selected .lmb-vehicle-selected-check { display: flex; }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.lmb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.lmb-field { display: flex; flex-direction: column; gap: 6px; }
.lmb-field-full { grid-column: 1 / -1; }
.lmb-label {
  font-family: var(--lmb-body);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lmb-text2);
  font-weight: 600;
}
.lmb-label .req { color: var(--lmb-gold); }
.lmb-label .optional { font-style: italic; letter-spacing: 0; text-transform: none; font-size: 10px; color: var(--lmb-muted); font-weight: 400; }
.lmb-input {
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: 8px;
  color: var(--lmb-text);
  font-family: var(--lmb-body);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lmb-input:focus { border-color: var(--lmb-gold); box-shadow: 0 0 0 3px rgba(184,147,90,0.1); }
.lmb-input::placeholder { color: var(--lmb-subtle); }
.lmb-input.lmb-invalid { border-color: var(--lmb-error); }
.lmb-textarea { resize: vertical; min-height: 88px; }
.lmb-field-err { font-family: var(--lmb-body); font-size: 11px; color: var(--lmb-error); min-height: 14px; }
.lmb-checkbox-wrap { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.lmb-checkbox-wrap input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--lmb-gold); cursor: pointer; }
.lmb-checkbox-label { font-family: var(--lmb-body); font-size: 13px; color: var(--lmb-muted); line-height: 1.5; }
.lmb-link { color: var(--lmb-gold); text-decoration: none; }
.lmb-link:hover { text-decoration: underline; }
.lmb-link-btn { background: none; border: none; padding: 0; cursor: pointer; color: var(--lmb-gold); font-family: var(--lmb-body); font-size: inherit; }
.lmb-link-btn:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   FAKE CARD FORM
══════════════════════════════════════ */
.lmb-card-input-wrap { position: relative; }
.lmb-card-input-wrap .lmb-input { padding-right: 80px; }
.lmb-card-icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
  align-items: center;
}
.lmb-card-icons svg { width: 32px; height: 20px; border-radius: 3px; }
.lmb-card-row { grid-template-columns: 1fr 1fr; }

/* ══════════════════════════════════════
   PAYMENT STEP
══════════════════════════════════════ */
.lmb-bp-payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 8px; }

.lmb-order-summary {
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: var(--lmb-radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.lmb-order-title {
  font-family: var(--lmb-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lmb-muted);
  padding: 14px 18px;
  border-bottom: 1px solid var(--lmb-border);
  background: var(--lmb-surface2);
}
.lmb-order-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--lmb-border);
  font-family: var(--lmb-body);
  font-size: 13px;
}
.lmb-order-row:last-child { border-bottom: none; }
.lmb-order-label { color: var(--lmb-muted); flex-shrink: 0; }
.lmb-order-val { color: var(--lmb-text); text-align: right; font-weight: 500; }
.lmb-order-divider { height: 1px; background: var(--lmb-border); }
.lmb-order-total { background: var(--lmb-surface2); }
.lmb-order-total .lmb-order-label { color: var(--lmb-text2); font-weight: 600; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }
.lmb-total-val { font-family: var(--lmb-head); font-size: 22px; color: var(--lmb-gold); font-weight: 700; }

.lmb-payment-section { margin-bottom: 20px; }
.lmb-card-errors { font-family: var(--lmb-body); font-size: 12px; color: var(--lmb-error); margin-top: 6px; min-height: 16px; }

.lmb-trust-row { display: flex; align-items: center; gap: 18px; padding-top: 16px; border-top: 1px solid var(--lmb-border); flex-wrap: wrap; }
.lmb-trust-badge { display: flex; align-items: center; gap: 6px; font-family: var(--lmb-body); font-size: 11px; color: var(--lmb-muted); }
.lmb-trust-badge svg { width: 13px; height: 13px; color: var(--lmb-gold); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.lmb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lmb-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.lmb-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.lmb-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.lmb-btn-primary { background: var(--lmb-gold); color: #fff; }
.lmb-btn-primary:hover:not(:disabled) { background: var(--lmb-gold2); box-shadow: 0 6px 20px rgba(184,147,90,0.3); transform: translateY(-1px); }
.lmb-btn-ghost { background: transparent; color: var(--lmb-muted); border: 1.5px solid var(--lmb-border); }
.lmb-btn-ghost:hover { color: var(--lmb-text2); border-color: var(--lmb-border2); }
.lmb-btn-pay { min-width: 200px; justify-content: center; }
.lmb-btn-spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: lmb-spin 0.7s linear infinite; }

/* ══════════════════════════════════════
   CONFIRMATION
══════════════════════════════════════ */
.lmb-bp-confirmation { text-align: center; padding: 20px 0 40px; }
.lmb-confirm-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--lmb-gold-bg);
  border: 1.5px solid var(--lmb-gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: lmb-pop 0.5s cubic-bezier(.22,.68,0,1.5) both;
}
.lmb-confirm-icon svg { width: 30px; height: 30px; color: var(--lmb-gold); }
@keyframes lmb-pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lmb-bp-confirmation h1 { font-family: var(--lmb-head); font-size: 34px; font-weight: 400; color: var(--lmb-text); margin: 0 0 12px; }
.lmb-bp-confirmation h1 em { font-style: italic; color: var(--lmb-gold); }
.lmb-confirm-intro { font-family: var(--lmb-body); font-size: 14px; color: var(--lmb-muted); margin: 0 auto 28px; max-width: 420px; line-height: 1.65; }
.lmb-confirm-ref-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-gold-bd);
  border-radius: var(--lmb-radius);
  padding: 18px 40px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(184,147,90,0.1);
}
.lmb-confirm-ref-label { font-family: var(--lmb-body); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--lmb-muted); margin-bottom: 6px; }
.lmb-confirm-ref { font-family: var(--lmb-head); font-size: 28px; color: var(--lmb-gold); font-weight: 700; letter-spacing: 3px; }
.lmb-confirm-details {
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: var(--lmb-radius);
  overflow: hidden;
  margin: 0 auto 24px;
  max-width: 480px;
  text-align: left;
}
.lmb-confirm-row { display: flex; justify-content: space-between; padding: 11px 20px; border-bottom: 1px solid var(--lmb-border); font-family: var(--lmb-body); font-size: 13px; }
.lmb-confirm-row:last-child { border-bottom: none; }
.lmb-confirm-row span:first-child { color: var(--lmb-muted); }
.lmb-confirm-row span:last-child { color: var(--lmb-text); font-weight: 500; }
.lmb-confirm-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--lmb-body); font-size: 12px; color: var(--lmb-muted); margin-bottom: 28px; }
.lmb-confirm-note svg { width: 14px; height: 14px; color: var(--lmb-gold); flex-shrink: 0; }
.lmb-confirm-account-linked {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lmb-body);
  font-size: 13px;
  color: var(--lmb-muted);
  background: var(--lmb-surface2);
  border: 1px solid var(--lmb-border);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 24px;
}
.lmb-confirm-account-linked svg { width: 15px; height: 15px; color: var(--lmb-gold); flex-shrink: 0; }

/* Account creation box */
.lmb-create-account-box {
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 28px auto;
  max-width: 480px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.lmb-ca-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lmb-gold-bg);
  border: 1px solid var(--lmb-gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.lmb-ca-icon svg { width: 22px; height: 22px; color: var(--lmb-gold); }
.lmb-create-account-box h3 {
  font-family: var(--lmb-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--lmb-text);
  margin: 0 0 6px;
}
.lmb-create-account-box p {
  font-family: var(--lmb-body);
  font-size: 13px;
  color: var(--lmb-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}
.lmb-ca-form {}
.lmb-ca-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lmb-body);
  font-size: 14px;
  color: var(--lmb-success);
  padding: 14px 0;
}
.lmb-ca-success svg { width: 18px; height: 18px; color: var(--lmb-success); flex-shrink: 0; }
.lmb-ca-login-prompt {
  font-family: var(--lmb-body);
  font-size: 12px;
  color: var(--lmb-muted);
  margin-top: 14px;
  text-align: center;
}

/* ══════════════════════════════════════
   LOGIN MODAL
══════════════════════════════════════ */
.lmb-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}
.lmb-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lmb-modal-card {
  background: var(--lmb-surface);
  border-radius: 14px;
  padding: 36px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.lmb-modal-overlay.open .lmb-modal-card { transform: translateY(0); }
.lmb-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--lmb-surface2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lmb-modal-close:hover { background: var(--lmb-border); }
.lmb-modal-close svg { width: 15px; height: 15px; color: var(--lmb-muted); }
.lmb-modal-logo { margin-bottom: 20px; }
.lmb-modal-title {
  font-family: var(--lmb-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--lmb-text);
  margin: 0 0 6px;
}
.lmb-modal-sub { font-family: var(--lmb-body); font-size: 13px; color: var(--lmb-muted); margin: 0 0 24px; }
.lmb-modal-footer-note { font-family: var(--lmb-body); font-size: 12px; color: var(--lmb-muted); margin-top: 20px; line-height: 1.5; text-align: center; }

/* ══════════════════════════════════════
   MY RIDES PAGE
══════════════════════════════════════ */
.lmb-mr-body .lmb-bp-body { display: block; }
.lmb-mr-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 40px 80px;
  width: 100%;
}
.lmb-mr-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}
.lmb-mr-header h1 {
  font-family: var(--lmb-head);
  font-size: 36px;
  font-weight: 400;
  color: var(--lmb-text);
  margin: 0 0 6px;
}
.lmb-mr-header h1 em { font-style: italic; color: var(--lmb-gold); }
.lmb-mr-header p { font-family: var(--lmb-body); font-size: 14px; color: var(--lmb-muted); margin: 0; }
.lmb-mr-loading { display: flex; align-items: center; gap: 14px; color: var(--lmb-muted); font-family: var(--lmb-body); font-size: 14px; padding: 40px 0; }
.lmb-mr-empty {
  text-align: center;
  padding: 60px 0;
}
.lmb-mr-empty svg { width: 56px; height: 56px; color: var(--lmb-border2); margin-bottom: 16px; }
.lmb-mr-empty h3 { font-family: var(--lmb-head); font-size: 22px; color: var(--lmb-text); margin: 0 0 8px; }
.lmb-mr-empty p { font-family: var(--lmb-body); font-size: 14px; color: var(--lmb-muted); margin: 0 0 24px; }
.lmb-mr-list { display: flex; flex-direction: column; gap: 14px; }

.lmb-ride-card {
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: var(--lmb-radius);
  padding: 22px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.lmb-ride-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: var(--lmb-border2); }
.lmb-ride-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.lmb-ride-ref {
  font-family: var(--lmb-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lmb-muted);
  margin-bottom: 4px;
}
.lmb-ride-date {
  font-family: var(--lmb-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--lmb-text);
}
.lmb-ride-status {
  font-family: var(--lmb-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}
.lmb-ride-status--confirmed { background: rgba(46,158,107,0.1); color: #2e9e6b; border: 1px solid rgba(46,158,107,0.25); }
.lmb-ride-status--pending   { background: rgba(184,147,90,0.1);  color: var(--lmb-gold); border: 1px solid var(--lmb-gold-bd); }
.lmb-ride-status--cancelled { background: rgba(212,79,79,0.08);  color: var(--lmb-error); border: 1px solid rgba(212,79,79,0.2); }
.lmb-ride-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lmb-body);
  font-size: 14px;
  color: var(--lmb-text2);
  margin-bottom: 14px;
}
.lmb-ride-route svg { width: 14px; height: 14px; color: var(--lmb-muted); flex-shrink: 0; }
.lmb-ride-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--lmb-border);
}
.lmb-ride-meta-item {
  font-family: var(--lmb-body);
  font-size: 12px;
  color: var(--lmb-muted);
}
.lmb-ride-meta-item strong { color: var(--lmb-text2); font-weight: 600; }
.lmb-ride-total {
  margin-left: auto;
  font-family: var(--lmb-head);
  font-size: 20px;
  color: var(--lmb-gold);
  font-weight: 700;
}

/* My Rides login wall */
.lmb-mr-login-wall {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  padding: 40px 20px;
}
.lmb-mr-login-card {
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: 14px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  text-align: center;
}
.lmb-mr-login-logo { height: 36px; width: auto; margin-bottom: 20px; }
.lmb-mr-login-card h2 {
  font-family: var(--lmb-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--lmb-text);
  margin: 0 0 8px;
}
.lmb-mr-login-card h2 em { font-style: italic; color: var(--lmb-gold); }
.lmb-mr-login-card p { font-family: var(--lmb-body); font-size: 14px; color: var(--lmb-muted); margin: 0 0 24px; }
.lmb-mr-login-card .lmb-field { text-align: left; }
.lmb-mr-no-account { font-family: var(--lmb-body); font-size: 12px; color: var(--lmb-muted); margin-top: 20px; }

/* ══════════════════════════════════════
   WIDGET NUDGE POPUP (theme pages)
══════════════════════════════════════ */
.lmb-widget-nudge {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.lmb-widget-nudge.show {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}
.lmb-widget-nudge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(184,147,90,0.08);
  border: 1px solid rgba(184,147,90,0.28);
  border-radius: 10px;
  padding: 14px 18px;
}
.lmb-widget-nudge svg {
  width: 22px;
  height: 22px;
  color: #c9a96e;
  flex-shrink: 0;
}
.lmb-widget-nudge-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #c9a96e;
  margin-bottom: 2px;
}
.lmb-widget-nudge-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   AUTOCOMPLETE DROPDOWN
══════════════════════════════════════ */
.lmb-ac-wrap { position: relative; display: block; }
.lmb-ac-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #111113;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 6px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 999999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  overflow-y: auto;
  max-height: 280px;
  min-width: 280px;
}
.lmb-ac-list.lmb-ac-open { display: block; }
.lmb-ac-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.lmb-ac-item:last-child { border-bottom: none; }
.lmb-ac-item:hover, .lmb-ac-item.lmb-ac-hi { background: rgba(201,168,76,0.1); }
.lmb-ac-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lmb-ac-icon svg { width: 14px; height: 14px; color: #9A8A74; stroke: #9A8A74; }
.lmb-ac-icon--air { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); }
.lmb-ac-icon--air svg { color: #C9A84C; stroke: #C9A84C; }
.lmb-ac-text { display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.lmb-ac-primary { font-family: var(--lmb-body); font-size: 13px; font-weight: 500; color: #F0EBE1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lmb-ac-sub { font-family: var(--lmb-body); font-size: 11px; color: #9A8A74; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ══════════════════════════════════════
   SIDEBAR MAP
══════════════════════════════════════ */
.lmb-sidebar-map {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #ede9e2;
  display: none;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   VEHICLE DETAIL PANEL (Blacklane style)
══════════════════════════════════════ */
.lmb-vehicle-detail {
  display: none;
}
.lmb-vehicle-detail.visible { display: block; }

/* Detail panel lives inside the selected card — card width, tucked underneath */
.lmb-vehicle-card > .lmb-vehicle-detail {
  border-top: 1px solid var(--lmb-border);
  padding: 0 16px 16px;
}

.lmb-vd-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: none;
  border: none;
  padding: 13px 0;
  cursor: pointer;
  font-family: var(--lmb-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--lmb-gold);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.lmb-vd-toggle svg { width: 15px; height: 15px; color: var(--lmb-gold); transition: transform 0.2s; flex-shrink: 0; }
.lmb-vd-toggle:hover { color: var(--lmb-gold2); }

/* Expanded content opens FULL WIDTH as its own row under the selected card */
#lmb-vehicles-grid > #lmb-vd-content {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 8px 4px 4px;
}

.lmb-vd-content { display: none; }

.lmb-vd-hero {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f2ec;
  position: relative;
  margin-bottom: 20px;
}
.lmb-vd-img-wrap { width: 100%; height: 500px; overflow: hidden; }
.lmb-vd-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lmb-vd-img-placeholder { width: 100%; height: 500px; display: flex; align-items: center; justify-content: center; }
.lmb-vd-img-placeholder svg { width: 72px; height: 72px; color: #ccc; }

.lmb-vd-hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  color: #fff;
  font-family: var(--lmb-body);
  font-size: 13px;
  padding: 28px 20px 16px;
  margin: 0;
}
.lmb-vd-tagline {
  font-family: var(--lmb-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--lmb-text2);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
}

.lmb-vd-section { margin-bottom: 28px; }
.lmb-vd-section-title {
  font-family: var(--lmb-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--lmb-text);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lmb-border);
}

/* What's included — 3 column grid */
.lmb-vd-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 12px;
}
.lmb-vd-include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--lmb-body);
  font-size: 12px;
  color: var(--lmb-text2);
  line-height: 1.4;
}
.lmb-vd-include-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--lmb-surface2);
  border: 1px solid var(--lmb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lmb-vd-include-icon svg { width: 15px; height: 15px; color: var(--lmb-gold); }

/* Capacity (tabbed — Blacklane style) */
.lmb-vd-capacity { }
.lmb-vd-cap-tabs-wrap { }
.lmb-vd-cap-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  background: var(--lmb-surface2);
  border: 1px solid var(--lmb-border);
  border-radius: 8px;
  padding: 3px;
  width: fit-content;
}
.lmb-vd-cap-tab {
  font-family: var(--lmb-body);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 20px;
  border: none;
  background: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--lmb-muted);
  transition: all 0.15s;
}
.lmb-vd-cap-tab.active {
  background: var(--lmb-surface);
  color: var(--lmb-text);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.lmb-vd-cap-panel { }
.lmb-vd-cap-note {
  font-family: var(--lmb-body);
  font-size: 13px;
  color: var(--lmb-muted);
  margin: 0 0 14px;
  line-height: 1.6;
}
.lmb-vd-cap-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.lmb-vd-cap-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--lmb-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--lmb-text2);
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.lmb-vd-cap-type-btn:hover { border-color: var(--lmb-gold-bd); background: var(--lmb-gold-bg); }
.lmb-vd-cap-type-btn.active {
  border-color: var(--lmb-gold);
  background: var(--lmb-gold-bg);
  color: var(--lmb-gold);
  font-weight: 600;
}
.lmb-vd-cap-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Legacy simple capacity items (fallback, not used in tabbed mode) */
.lmb-vd-cap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lmb-surface2);
  border: 1px solid var(--lmb-border);
  border-radius: 10px;
  padding: 14px 20px;
  flex: 1;
}
.lmb-vd-cap-item svg { width: 22px; height: 22px; color: var(--lmb-gold); flex-shrink: 0; }
.lmb-vd-cap-item div { display: flex; flex-direction: column; gap: 1px; }
.lmb-vd-cap-item strong { font-family: var(--lmb-head); font-size: 22px; font-weight: 700; color: var(--lmb-text); line-height: 1; }
.lmb-vd-cap-item span { font-family: var(--lmb-body); font-size: 11px; color: var(--lmb-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════════
   INLINE TRIP EDITOR
══════════════════════════════════════ */
.lmb-edit-bar {
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: var(--lmb-radius);
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.2s;
}
.lmb-edit-bar.open { border-color: var(--lmb-gold-bd); }

.lmb-edit-bar-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
}

.lmb-edit-bar-route {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-family: var(--lmb-body);
  font-size: 13px;
  color: var(--lmb-text2);
}
.lmb-edit-bar-icon { display: flex; align-items: center; color: var(--lmb-gold); flex-shrink: 0; }
.lmb-edit-bar-icon svg { width: 14px; height: 14px; }
.lmb-edit-bar-val { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; font-weight: 500; }
.lmb-edit-bar-arrow { display: flex; align-items: center; color: var(--lmb-muted); flex-shrink: 0; }
.lmb-edit-bar-arrow svg { width: 13px; height: 13px; }
.lmb-edit-bar-sep { color: var(--lmb-subtle); flex-shrink: 0; }

.lmb-edit-bar-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lmb-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--lmb-text2);
  background: var(--lmb-surface2);
  border: 1px solid var(--lmb-border);
  border-radius: 7px;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.lmb-edit-bar-btn svg { width: 13px; height: 13px; }
.lmb-edit-bar-btn:hover { border-color: var(--lmb-gold); color: var(--lmb-gold); }

/* Edit form */
.lmb-edit-form {
  padding: 0 18px 18px;
  border-top: 1px solid var(--lmb-border);
}

.lmb-edit-form-tabs {
  display: flex;
  gap: 0;
  margin: 14px 0 16px;
  background: var(--lmb-surface2);
  border: 1px solid var(--lmb-border);
  border-radius: 8px;
  padding: 3px;
  width: fit-content;
}
.lmb-edit-svc-tab {
  font-family: var(--lmb-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border: none;
  background: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--lmb-muted);
  transition: all 0.15s;
}
.lmb-edit-svc-tab.active { background: var(--lmb-surface); color: var(--lmb-text); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.lmb-edit-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 16px;
}
.lmb-edit-field label {
  display: block;
  font-family: var(--lmb-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lmb-muted);
  margin-bottom: 5px;
}

/* Passenger counter inside edit bar */
.lmb-ef-pax-counter {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--lmb-border);
}
.lmb-ef-pax-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--lmb-border2); background: transparent;
  color: var(--lmb-gold); font-size: 16px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lmb-ef-pax-btn:hover { background: var(--lmb-gold-bg); border-color: var(--lmb-gold); }
#lmb-ef-pax-display { font-size: 15px; font-weight: 600; color: var(--lmb-text); min-width: 16px; text-align: center; }

.lmb-edit-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.lmb-btn-sm { padding: 9px 18px; font-size: 11px; }

/* Service-area error inside the edit-trip bar */
.lmb-edit-err {
  margin: 10px 0 0;
  padding: 12px 16px;
  background: var(--lmb-gold-bg);
  border: 1px solid var(--lmb-gold);
  border-radius: 8px;
  color: var(--lmb-text);
  font-family: var(--lmb-body);
  font-size: 13px;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   BOOK FOR MYSELF / GUEST
══════════════════════════════════════ */
.lmb-book-for {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.lmb-bf-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: var(--lmb-surface);
  border: 1.5px solid var(--lmb-border);
  border-radius: var(--lmb-radius);
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lmb-bf-option:hover { border-color: var(--lmb-gold-bd); }
.lmb-bf-option.active {
  border-color: var(--lmb-gold);
  box-shadow: 0 0 0 1px var(--lmb-gold-bd), 0 2px 10px rgba(184,147,90,0.1);
}

.lmb-bf-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lmb-surface2);
  border: 1px solid var(--lmb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.lmb-bf-option.active .lmb-bf-icon { background: var(--lmb-gold-bg); border-color: var(--lmb-gold-bd); }
.lmb-bf-icon svg { width: 17px; height: 17px; color: var(--lmb-muted); }
.lmb-bf-option.active .lmb-bf-icon svg { color: var(--lmb-gold); }

.lmb-bf-text { flex: 1; }
.lmb-bf-text strong { display: block; font-family: var(--lmb-body); font-size: 14px; font-weight: 600; color: var(--lmb-text); margin-bottom: 2px; }
.lmb-bf-text span { font-family: var(--lmb-body); font-size: 12px; color: var(--lmb-muted); }

.lmb-bf-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lmb-gold);
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lmb-bf-check svg { width: 11px; height: 11px; color: #fff; }
.lmb-bf-option.active .lmb-bf-check { display: flex; }

.lmb-bf-login-prompt {
  background: var(--lmb-gold-bg);
  border: 1px solid var(--lmb-gold-bd);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lmb-bf-login-prompt p {
  font-family: var(--lmb-body);
  font-size: 13px;
  color: var(--lmb-text2);
  margin: 0;
  flex: 1;
}

/* ══════════════════════════════════════
   PRICE BREAKDOWN (Vehicle Detail)
══════════════════════════════════════ */
.lmb-vd-pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--lmb-border);
  font-family: var(--lmb-body);
  font-size: 14px;
}
.lmb-vd-pb-row:last-of-type { border-bottom: none; }
.lmb-vd-pb-label { color: var(--lmb-muted); }
.lmb-vd-pb-val { font-weight: 600; color: var(--lmb-text); }
.lmb-vd-pb-total .lmb-vd-pb-label { color: var(--lmb-text2); font-weight: 600; }
.lmb-vd-pb-total-val { font-family: var(--lmb-head); font-size: 18px; color: var(--lmb-gold); }
.lmb-vd-pb-note {
  font-family: var(--lmb-body);
  font-size: 11px;
  color: var(--lmb-muted);
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   IMAGE CAROUSEL (Vehicle Detail Panel)
══════════════════════════════════════ */
.lmb-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lmb-cs-track {
  width: 100%;
  height: 100%;
}

.lmb-cs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.lmb-cs-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.lmb-cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow buttons */
.lmb-cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.lmb-cs-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.lmb-cs-arrow svg { width: 18px; height: 18px; color: var(--lmb-text); }
.lmb-cs-prev { left: 12px; }
.lmb-cs-next { right: 12px; }

/* Dot indicators */
.lmb-cs-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.lmb-cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.lmb-cs-dot.active {
  background: #fff;
  transform: scale(1.25);
}
.lmb-cs-dot:hover { background: rgba(255, 255, 255, 0.8); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .lmb-bp-body { grid-template-columns: 1fr; }
  .lmb-bp-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--lmb-border);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 24px;
    gap: 16px;
  }
  .lmb-bp-trip-card { flex: 1; min-width: 240px; }
  .lmb-bp-sidebar-trust { display: none; }
  .lmb-bp-main { padding: 28px 24px 60px; max-width: 100%; }
  .lmb-bp-payment-grid { grid-template-columns: 1fr; }
  #lmb-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .lmb-vd-includes { grid-template-columns: repeat(2, 1fr); }
  .lmb-sidebar-map { height: 160px; }
  .lmb-bp-header { padding: 0 20px; }
  .lmb-bp-help { display: none; }
  .lmb-mr-main { padding: 32px 20px 60px; }
  .lmb-mr-header { flex-direction: column; }
}
@media (max-width: 600px) {
  .lmb-edit-form-grid { grid-template-columns: 1fr; }
  .lmb-edit-bar-val { max-width: 100px; }
  #lmb-vehicles-grid { grid-template-columns: 1fr; }
  .lmb-vd-includes { grid-template-columns: 1fr 1fr; }
  .lmb-vd-capacity { flex-direction: column; }
  .lmb-vd-img-wrap { height: 260px; }
  .lmb-form-grid { grid-template-columns: 1fr; }
  .lmb-field-full { grid-column: 1; }
  .lmb-bp-panel-head h1 { font-size: 24px; }
  .lmb-step-label { display: none; }
  .lmb-modal-card { padding: 28px 24px; }
  .lmb-create-account-box { padding: 24px 20px; }
  .lmb-header-user-name { display: none; }
}

/* ============================================================
   FLATPICKR OVERRIDES — dark gold theme
============================================================ */
.flatpickr-calendar {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 44px rgba(0,0,0,0.18) !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #1a1a1a !important;
}
.flatpickr-calendar::before, .flatpickr-calendar::after { display: none !important; }
.flatpickr-months { padding: 8px 0 4px; background: transparent !important; }
.flatpickr-month { background: transparent !important; }
.flatpickr-current-month,
.flatpickr-monthDropdown-months {
  background: transparent !important;
  color: #1a1a1a !important;
  fill: #1a1a1a !important;
}
.flatpickr-current-month { font-size: 14px !important; font-weight: 600 !important; }
.flatpickr-current-month .numInputWrapper input,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent !important; color: #1a1a1a !important;
  border: none !important; font-family: 'DM Sans', sans-serif !important;
}
.flatpickr-weekdays { background: transparent !important; }
.flatpickr-weekday {
  background: transparent !important;
  color: #b8935a !important;
  font-size: 11px !important; font-weight: 600 !important;
}
.flatpickr-days { background: transparent !important; }
.dayContainer { background: transparent !important; }
.flatpickr-day {
  color: #333333 !important;
  background: transparent !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  border: 1px solid transparent !important;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(184,147,90,0.12) !important;
  border-color: rgba(184,147,90,0.30) !important;
  color: #1a1a1a !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: #b8935a !important;
  border-color: #b8935a !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}
.flatpickr-day.today {
  border-color: rgba(184,147,90,0.55) !important;
  color: #b8935a !important;
}
.flatpickr-day.today:hover {
  background: rgba(184,147,90,0.12) !important;
  color: #1a1a1a !important;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(0,0,0,0.22) !important;
  background: transparent !important;
}
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #999999 !important; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: #b8935a !important; }
.numInputWrapper span { border-color: rgba(0,0,0,0.10) !important; }
.numInputWrapper span svg { fill: #999999 !important; }

/* Time picker — light, consistent segments */
.flatpickr-time {
  background: #ffffff !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 0 0 10px 10px !important;
  height: 42px !important;
}
.flatpickr-time .numInputWrapper,
.flatpickr-time input.flatpickr-hour,
.flatpickr-time input.flatpickr-minute,
.flatpickr-time .flatpickr-am-pm {
  background: #ffffff !important;
  color: #1a1a1a !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
}
.flatpickr-time input:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus { background: rgba(184,147,90,0.10) !important; }
.flatpickr-time .flatpickr-time-separator { color: #1a1a1a !important; }

/* ============================================================
   PASSENGER COUNTER — booking widget
============================================================ */
.b-pax-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Match the same padding and border-bottom as .b-field input/select */
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  width: 100%;
}
.b-pax-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: #C9A84C;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.b-pax-btn:hover { background: rgba(201,168,76,0.15); border-color: #C9A84C; }
#h-pax-display { font-size: 15px; font-weight: 500; color: #F0EBE1; min-width: 16px; text-align: center; }
.b-pax-label { font-size: 13px; color: #9A8A74; }

/* ── Trip distance/time label under the map ── */
.TimeX {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: -6px 0 16px;
  padding: 6px 12px;
  background: var(--lmb-gold-bg);
  border: 1px solid var(--lmb-gold);
  border-radius: 999px;
  color: var(--lmb-text);
  font-family: var(--lmb-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ── Trip error (shown when a route can't be calculated) ── */
.lmb-trip-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 44px 24px;
  border: 1px solid var(--lmb-border);
  border-radius: 12px;
  background: var(--lmb-surface);
}
.lmb-trip-error svg { width: 34px; height: 34px; color: var(--lmb-gold); }
.lmb-trip-error p { margin: 0; max-width: 420px; color: var(--lmb-text2); font-size: 14px; line-height: 1.6; }
