.dsb-booking-wrap {
  --dsb-primary: #ffca05;
  --dsb-black: #000;
  --dsb-ink: #111827;
  --dsb-muted: #667085;
  --dsb-soft: #f4f5f7;
  --dsb-border: #e5e7eb;
  --dsb-green: #0a8a52;
  --dsb-error: #b42318;
  --dsb-success: #047857;
  color: var(--dsb-ink);
  font-family: Figtree, sans-serif;
  width: 100%;
}
.dsb-booking-wrap,
.dsb-booking-wrap * { box-sizing: border-box; }
.dsb-booking-wrap [hidden] { display: none !important; }
.dsb-shell { width: 100%; max-width: 1140px; margin: 0 auto; }
.dsb-flow-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
}
.dsb-flow-header h2 {
  margin: 0;
  max-width: 720px;
  color: #050505;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}
.dsb-flow-header p { margin: 8px 0 0; color: var(--dsb-muted); font-size: 16px; font-weight: 800; }
.dsb-step-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.dsb-screen-card,
.dsb-white-card {
  background: #fff;
  border: 1px solid var(--dsb-border);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}
.dsb-screen-card { max-width: 520px; padding: 20px; }
.dsb-screen-journey .dsb-form { display: grid; gap: 12px; }
.dsb-trip-tabs { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.dsb-trip-tabs button {
  border: 0;
  border-radius: 8px;
  min-height: 38px;
  padding: 9px 16px;
  background: transparent;
  color: var(--dsb-ink);
  font-weight: 900;
  cursor: pointer;
}
.dsb-trip-tabs button.is-active { background: #000; color: #fff; }
.dsb-trip-tabs button:disabled { opacity: .72; cursor: not-allowed; }
.dsb-field { position: relative; }
.dsb-field label,
.dsb-passenger-picker label {
  display: block;
  margin: 0 0 6px;
  color: var(--dsb-ink);
  font-size: 14px;
  font-weight: 900;
}
.dsb-field label span { color: #0d9488; }
.dsb-field input,
.dsb-field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f0f0f1;
  color: #111827;
  padding: 12px 14px;
  font-size: 16px;
  font: inherit;
  outline: none;
}
.dsb-field input:focus,
.dsb-field select:focus { border-color: #000; background: #fff; box-shadow: 0 0 0 3px rgba(0,0,0,.08); }
.dsb-location-field input { padding-right: 54px; }
.dsb-swap {
  position: absolute;
  right: 10px;
  top: 35px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}
.dsb-two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.dsb-phone-row { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 12px; }
.dsb-add-return {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--dsb-border);
  border-radius: 10px;
  background: #fff;
  color: var(--dsb-ink);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.dsb-add-return.is-active { border-color: #111; background: #111; color: #fff; }
.dsb-return-fields { margin-top: -2px; }
.dsb-passenger-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f0f0f1;
}
.dsb-passenger-picker strong { display: block; margin-top: 4px; font-size: 18px; }
.dsb-counter-controls { display: flex; gap: 12px; }
.dsb-counter-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #262626;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}
.dsb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.dsb-button-primary { background: #000; color: #fff; }
.dsb-button-ghost { background: #fff; color: #000; border: 1px solid #d1d5db; }
.dsb-button-full { width: 100%; }
.dsb-message { min-height: 20px; color: var(--dsb-muted); font-size: 14px; font-weight: 700; }
.dsb-message.is-error { color: var(--dsb-error); }
.dsb-message.is-success { color: var(--dsb-success); }
.dsb-message.is-info { color: #1d4ed8; }
.dsb-screen-reservation { width: 100%; }
.dsb-reservation-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.dsb-reservation-main { min-width: 0; }
.dsb-white-card { padding: 24px; }
.dsb-white-card h3 { margin: 0 0 20px; color: #000; font-size: 26px; font-weight: 900; letter-spacing: -0.02em; }
.dsb-white-card .dsb-form { display: grid; gap: 14px; }
.dsb-map-card {
  overflow: hidden;
  border: 1px solid var(--dsb-border);
  border-radius: 14px;
  background: #fff;
}
.dsb-map { width: 100%; height: 270px; background: #e5e7eb; }
.dsb-route-strip { display: grid; gap: 8px; padding: 14px; }
.dsb-brief-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--dsb-muted);
  font-size: 13px;
}
.dsb-brief-line strong { color: #000; }
.dsb-brief-line span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dsb-brief-metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-left: 62px; }
.dsb-brief-metrics span,
.dsb-route-chip {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #344054;
  font-size: 12px;
  font-weight: 800;
}
.dsb-included-note { margin: 12px 0; text-align: center; font-size: 13px; color: #111; font-weight: 800; }
.dsb-results { display: grid; gap: 14px; padding-bottom: 90px; }
.dsb-vehicle-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  cursor: pointer;
}
.dsb-vehicle-row.is-selected { border-color: #000; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.dsb-vehicle-img { display: flex; align-items: center; justify-content: center; min-height: 72px; }
.dsb-vehicle-img img,
.dsb-summary-img img { max-width: 100%; max-height: 78px; object-fit: contain; display: block; }
.dsb-car-icon { font-size: 48px; color: #111; }
.dsb-vehicle-head { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.dsb-vehicle-head strong { color: #000; font-size: 20px; font-weight: 900; }
.dsb-best { padding: 3px 7px; border-radius: 999px; background: #ecfdf3; color: #067647; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.dsb-cap-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0; }
.dsb-cap { display: inline-flex; align-items: center; gap: 4px; color: #344054; font-size: 12px; font-weight: 800; white-space: nowrap; }
.dsb-vehicle-copy p { margin: 4px 0 0; color: #475467; font-size: 13px; line-height: 1.35; }
.dsb-vehicle-price { text-align: right; display: grid; gap: 3px; justify-items: end; }
.dsb-vehicle-price strong { color: #000; font-size: 21px; font-weight: 900; white-space: nowrap; }
.dsb-vehicle-price small { color: #98a2b3; font-size: 11px; font-weight: 800; }
.dsb-vehicle-price button {
  border: 0;
  background: transparent;
  color: #344054;
  text-decoration: underline;
  padding: 4px 0;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.dsb-summary-sidebar { position: sticky; top: 18px; min-width: 0; }
.dsb-summary-card {
  background: #fff;
  border: 1px solid var(--dsb-border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
}
.dsb-summary-card h4 { margin: 0 0 16px; color: #000; font-size: 20px; font-weight: 900; }
.dsb-summary-type { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 14px; font-size: 13px; }
.dsb-summary-type span { padding: 4px 8px; border-radius: 999px; background: #f8fafc; color: #344054; font-weight: 800; }
.dsb-summary-date { margin: 0 0 10px; color: #475467; font-size: 12px; font-weight: 900; }
.dsb-timeline-section { border-left: 3px solid #111; padding-left: 14px; margin: 0 0 18px; }
.dsb-timeline-point { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; margin: 0 0 8px; }
.dsb-timeline-point b { color: #000; font-size: 13px; line-height: 1.25; }
.dsb-timeline-point span { color: #475467; font-size: 13px; font-weight: 800; }
.dsb-summary-vehicle { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 12px; align-items: center; padding: 14px 0; border-top: 1px solid var(--dsb-border); }
.dsb-summary-img { min-height: 48px; display: flex; align-items: center; justify-content: center; }
.dsb-summary-features { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 0; }
.dsb-summary-features span { border: 1px solid #d1fadf; color: #027a48; background: #f6fef9; border-radius: 999px; padding: 4px 8px; font-size: 11px; font-weight: 800; }
.dsb-summary-prices { border-top: 1px solid var(--dsb-border); padding-top: 10px; display: grid; gap: 8px; }
.dsb-summary-prices div,
.dsb-price-breakdown div { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: #344054; font-size: 14px; }
.dsb-summary-total,
.dsb-breakdown-total { border-top: 1px solid var(--dsb-border); padding-top: 10px; margin-top: 4px; }
.dsb-summary-total strong,
.dsb-breakdown-total strong { font-size: 24px; color: #000; }
.dsb-sticky-choice {
  position: sticky;
  z-index: 20;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 690px;
  margin: -78px auto 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(0,0,0,.18);
}
.dsb-sticky-choice span { display: block; color: #475467; font-size: 12px; font-weight: 800; }
.dsb-sticky-choice strong { color: #000; font-size: 14px; }
.dsb-sticky-choice .dsb-button { min-width: 220px; min-height: 48px; }
.dsb-check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--dsb-border);
  border-radius: 10px;
  background: #fff;
  color: #344054;
  font-weight: 800;
}
.dsb-check-row input { width: 20px; height: 20px; flex: 0 0 auto; }
.dsb-actions { display: flex; gap: 12px; justify-content: space-between; margin-top: 4px; }
.dsb-actions .dsb-button { flex: 1; }
.dsb-choice-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.dsb-choice-row label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--dsb-border);
  border-radius: 999px;
  font-weight: 800;
  color: #111;
}
.dsb-upsell-card {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--dsb-border);
  border-radius: 12px;
  background: #fff;
}
.dsb-upsell-card strong { color: #000; }
.dsb-upsell-card p { margin: 5px 0 0; color: #475467; font-size: 13px; }
.dsb-upsell-card button { border: 0; border-radius: 8px; background: #000; color: #fff; padding: 10px 12px; font-weight: 900; cursor: pointer; }
.dsb-price-breakdown { display: grid; gap: 10px; padding: 16px; border: 1px solid var(--dsb-border); border-radius: 12px; background: #fff; }
.dsb-price-breakdown h4 { margin: 0 0 4px; color: #000; font-size: 18px; }
.dsb-payment-panel h3 { margin: 0 0 8px; color: #000; font-size: 28px; font-weight: 900; }
.dsb-payment-panel p { margin: 0 0 16px; color: #475467; }
.dsb-payment-success { padding: 12px 14px; border-radius: 10px; background: #ecfdf3; color: #067647; font-weight: 900; margin-bottom: 12px; }
.dsb-payment-total { display: flex; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--dsb-border); border-bottom: 1px solid var(--dsb-border); margin-bottom: 14px; }
.dsb-payment-total strong { color: #000; font-size: 26px; }
.dsb-pay-icons { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 16px; }
.dsb-pay-icons span { padding: 6px 8px; border-radius: 6px; background: #f3f4f6; color: #344054; font-size: 12px; font-weight: 900; }
.dsb-small-note { margin-top: 10px !important; font-size: 12px; color: #667085; }
.dsb-empty { padding: 18px; border-radius: 12px; background: #fff3f3; color: #b42318; font-weight: 900; }
.dsb-modal { position: fixed; inset: 0; z-index: 999999; display: flex; align-items: center; justify-content: center; padding: 18px; }
.dsb-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.dsb-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}
.dsb-modal-close { position: absolute; top: 16px; right: 16px; border: 0; background: transparent; font-size: 36px; line-height: 1; cursor: pointer; }
.dsb-modal-card h3 { margin: 0 42px 18px 0; color: #000; font-size: 32px; font-weight: 900; }
.dsb-modal-card h4 { margin: 24px 0 10px; color: #000; font-size: 18px; }
.dsb-modal-vehicle { display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 18px; align-items: center; }
.dsb-modal-vehicle img { max-width: 150px; max-height: 90px; object-fit: contain; }
.dsb-modal-card ul { margin: 0; padding-left: 20px; color: #344054; }
.dsb-modal-breakdown { display: grid; gap: 8px; }
.dsb-modal-breakdown div { display: flex; justify-content: space-between; gap: 12px; }
.dsb-modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
@media (max-width: 900px) {
  .dsb-shell { max-width: 100%; }
  .dsb-flow-header { margin-bottom: 14px; }
  .dsb-flow-header h2 { font-size: clamp(28px, 9vw, 44px); }
  .dsb-flow-header p { font-size: 14px; }
  .dsb-step-pill { font-size: 12px; min-height: 30px; padding: 7px 10px; }
  .dsb-screen-card { max-width: 100%; padding: 16px; border-radius: 14px; }
  .dsb-reservation-grid { grid-template-columns: 1fr; gap: 14px; }
  .dsb-summary-sidebar { position: static; order: -1; }
  .dsb-map { height: 180px; }
  .dsb-vehicle-row { grid-template-columns: 86px minmax(0, 1fr) auto; gap: 10px; padding: 12px; min-height: 94px; }
  .dsb-vehicle-img img { max-height: 58px; }
  .dsb-vehicle-head strong { font-size: 16px; }
  .dsb-vehicle-copy p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 12px; }
  .dsb-cap { font-size: 10.5px; }
  .dsb-vehicle-price strong { font-size: 16px; }
  .dsb-vehicle-price small { display: none; }
  .dsb-vehicle-price button { font-size: 11px; }
  .dsb-sticky-choice { left: 10px; right: 10px; bottom: 10px; max-width: none; margin-top: -78px; }
  .dsb-sticky-choice .dsb-button { min-width: 132px; }
  .dsb-summary-card { padding: 14px; }
  .dsb-summary-card h4 { font-size: 18px; margin-bottom: 12px; }
  .dsb-summary-features { display: none; }
  .dsb-white-card { padding: 16px; }
}
@media (max-width: 560px) {
  .dsb-booking-wrap { overflow-x: hidden; }
  .dsb-flow-header { align-items: flex-start; gap: 10px; }
  .dsb-flow-header h2 { font-size: 34px; max-width: 72%; }
  .dsb-step-pill { margin-top: 2px; }
  .dsb-two-col,
  .dsb-phone-row { grid-template-columns: 1fr; gap: 10px; }
  .dsb-field input,
  .dsb-field select { min-height: 50px; font-size: 15px; }
  .dsb-vehicle-row { grid-template-columns: 76px minmax(0, 1fr) 82px; gap: 8px; }
  .dsb-vehicle-img img { max-height: 52px; }
  .dsb-cap-row { gap: 4px; margin: 4px 0; }
  .dsb-cap { width: 100%; font-size: 10px; }
  .dsb-vehicle-price strong { font-size: 14px; }
  .dsb-vehicle-price { gap: 0; }
  .dsb-brief-line { grid-template-columns: 46px minmax(0, 1fr); font-size: 12px; }
  .dsb-brief-metrics { margin-left: 54px; }
  .dsb-summary-vehicle { grid-template-columns: 70px minmax(0,1fr); }
  .dsb-actions { grid-template-columns: 1fr; flex-direction: column; }
  .dsb-upsell-card { grid-template-columns: 72px minmax(0, 1fr); }
  .dsb-upsell-card button { grid-column: 1 / -1; width: 100%; }
  .dsb-modal-card { padding: 22px; border-radius: 14px; }
  .dsb-modal-vehicle { grid-template-columns: 1fr; }
  .dsb-modal-actions { grid-template-columns: 1fr; }
}

/* v0.9 compact Transfeero-style refinements */
.dsb-flow-header-compact { align-items: center; justify-content: flex-end; margin: 0 0 12px; min-height: 34px; }
.dsb-flow-header-compact .dsb-flow-copy:empty { display: none; }
.dsb-flow-header-compact h2,
.dsb-flow-header-compact p[hidden] { display: none !important; }
.dsb-screen-journey { margin-top: 0; }
.dsb-swap { display: inline-flex; align-items: center; justify-content: center; }
.dsb-swap svg { width: 18px; height: 18px; display: block; }
.dsb-datetime-trigger {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f0f0f1;
  color: #111827;
  padding: 11px 14px;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.dsb-datetime-trigger span { color: #667085; font-size: 13px; font-weight: 800; }
.dsb-datetime-trigger strong { color: #111827; font-size: 15px; font-weight: 900; text-align: right; }
.dsb-datetime-trigger:focus { border-color: #000; background: #fff; box-shadow: 0 0 0 3px rgba(0,0,0,.08); outline: none; }
.dsb-counter-controls button { display: inline-flex; align-items: center; justify-content: center; padding: 0; line-height: 1; }
.dsb-section-title { margin: 0 0 14px; color: #000; font-size: clamp(24px, 4vw, 34px); line-height: 1.08; font-weight: 900; letter-spacing: -0.03em; }
.dsb-addons { display: grid; gap: 8px; }
.dsb-addons h4 { margin: 0; color: #000; font-size: 16px; font-weight: 900; }
.dsb-addons .dsb-check-row { padding: 11px 12px; }
.dsb-postcode-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.dsb-postcode-row input { min-width: 0; }
.dsb-postcode-row button { min-width: 74px; border: 0; border-radius: 9px; background: #111; color: #fff; font-weight: 900; cursor: pointer; }
.dsb-datetime-modal { position: fixed; inset: 0; z-index: 1000000; display: flex; align-items: center; justify-content: center; padding: 18px; }
.dsb-datetime-card { position: relative; z-index: 1; width: min(520px, 100%); background: #fff; border-radius: 18px; padding: 22px; box-shadow: 0 28px 80px rgba(0,0,0,.3); }
.dsb-datetime-card h3 { margin: 0 0 16px; color: #000; font-size: 24px; font-weight: 900; }
.dsb-datetime-card .dsb-actions { margin-top: 16px; }
.dsb-business-fields { display: grid; gap: 12px; }
.dsb-choice-row.dsb-billing-type label:has(input:checked) { border-color: #000; background: #f8fafc; }
@media (max-width: 560px) {
  .dsb-flow-header-compact { margin-bottom: 8px; }
  .dsb-screen-card { padding: 14px; }
  .dsb-datetime-trigger { min-height: 52px; padding: 10px 12px; }
  .dsb-datetime-trigger { align-items: flex-start; flex-direction: column; gap: 3px; }
  .dsb-datetime-trigger strong { text-align: left; font-size: 14px; }
  .dsb-passenger-picker { min-height: 62px; padding: 10px 12px; }
  .dsb-counter-controls button { width: 38px; height: 38px; }
  .dsb-section-title { font-size: 24px; margin-bottom: 10px; }
  .dsb-vehicle-row { grid-template-columns: 72px minmax(0,1fr) 90px; padding: 10px; gap: 8px; }
  .dsb-vehicle-copy p { -webkit-line-clamp: 2; }
  .dsb-datetime-card { padding: 18px; }
}


.dsb-datetime-trigger { width: 100%; min-height: 58px; border: 1px solid var(--dsb-border); border-radius: 10px; background: #fff; color: var(--dsb-ink); padding: 12px 14px; text-align: left; display: grid; gap: 4px; cursor: pointer; }
.dsb-datetime-trigger span { color: var(--dsb-muted); font-size: 13px; font-weight: 700; }
.dsb-datetime-trigger strong { color: var(--dsb-ink); font-size: 16px; font-weight: 800; }
.dsb-return-header, .dsb-edit-return-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px; }
.dsb-return-header label { margin:0; font-size:14px; font-weight:900; }
.dsb-return-remove { width:34px; height:34px; border:0; border-radius:999px; background:#111; color:#fff; font-size:24px; line-height:1; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; }
.dsb-summary-top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.dsb-summary-top h4 { margin:0; }
.dsb-summary-edit { border:0; background:transparent; color:#344054; font:inherit; font-weight:800; cursor:pointer; text-decoration:underline; }
.dsb-summary-route-actions { margin-top:12px; }
.dsb-summary-add-return { width:100%; min-height:46px; border:1px dashed #c8ced8; border-radius:10px; background:#fff; color:#475467; font:inherit; font-weight:800; cursor:pointer; }
.dsb-modal-card-journey { max-width: 620px; }
.dsb-modal-card-journey h3 { margin:0 0 18px; color:#000; font-size:28px; font-weight:900; }
.dsb-edit-return-wrap { display:grid; gap:10px; padding:12px; border:1px solid var(--dsb-border); border-radius:12px; background:#fafafa; }
.dsb-edit-return-head strong { font-size:16px; }
.dsb-check-row.dsb-terms-row span { font-weight:700; }

.dsb-stripe-box {
  margin: 14px 0;
  padding: 16px;
  border: 1px solid var(--dsb-border);
  border-radius: 12px;
  background: #fff;
}
.dsb-button[disabled] {
  opacity: .7;
  cursor: not-allowed;
}
.dsb-message.is-success {
  color: var(--dsb-success);
}

/* v1.3.4 restored step 3 flight/passenger UX */
.dsb-booking-block { border-top: 1px solid #d9dde5; padding-top: 20px; margin-top: 10px; }
.dsb-booking-block:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.dsb-inline-head h4 { margin: 0 0 8px; color: #000; font-size: 18px; font-weight: 900; }
.dsb-help-copy { margin: 0 0 14px; color: #475467; font-size: 14px; line-height: 1.45; }
.dsb-pill-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.dsb-pill-button { border: 1px solid #cfd5df; background: #fff; border-radius: 999px; padding: 12px 16px; font: inherit; font-size: 14px; font-weight: 800; color: #344054; cursor: pointer; }
.dsb-pill-button:hover { border-color: #111827; color: #111827; }
.dsb-seat-panel, .dsb-notes-panel { border: 1px solid #d0d5dd; border-radius: 14px; padding: 16px; background: #fff; margin-bottom: 14px; }
.dsb-seat-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid #e4e7ec; }
.dsb-seat-row:last-of-type { border-bottom: 0; }
.dsb-seat-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dsb-seat-copy strong { font-size: 16px; color: #111827; }
.dsb-seat-copy span { color: #475467; font-size: 13px; line-height: 1.4; }
.dsb-free-badge { display: inline-block; margin-left: 6px; padding: 2px 8px; border: 1px solid #16a34a; color: #16a34a; border-radius: 999px; font-size: 11px; font-weight: 900; vertical-align: middle; }
.dsb-seat-panel select { min-width: 92px; padding: 10px 12px; border-radius: 10px; border: 1px solid #cfd5df; font: inherit; font-weight: 800; }
.dsb-seat-warning { margin-top: 12px; border: 1px solid #f0b100; background: #fff8e1; color: #92400e; padding: 12px 14px; border-radius: 12px; font-size: 13px; line-height: 1.45; }
.dsb-seat-note { margin-top: 10px; color: #475467; font-size: 13px; line-height: 1.45; }
.dsb-meet-greet-field { position: relative; }
.dsb-info-dot { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; background: #667085; color: #fff; cursor: pointer; font-size: 13px; font-weight: 900; margin-left: 6px; }
.dsb-tooltip-box { position: absolute; right: 0; top: calc(100% + 8px); width: min(420px, 96%); background: rgba(17,24,39,.96); color: #fff; padding: 14px 16px; border-radius: 12px; z-index: 20; box-shadow: 0 20px 50px rgba(0,0,0,.18); font-size: 13px; line-height: 1.45; }
.dsb-tooltip-box::before { content: ''; position: absolute; top: -8px; right: 20px; border-width: 0 8px 8px 8px; border-style: solid; border-color: transparent transparent rgba(17,24,39,.96) transparent; }
.dsb-managed-addons { margin-top: 18px; }
.dsb-managed-addons h4 { margin-bottom: 8px; }
@media (max-width: 767px) {
  .dsb-seat-row { flex-direction: column; align-items: flex-start; }
  .dsb-seat-panel select { width: 100%; }
  .dsb-tooltip-box { left: 0; right: auto; width: 100%; }
  .dsb-tooltip-box::before { left: 20px; right: auto; }
}


/* v1.3.5 layout + payment polish */
.dsb-phone-row {
  grid-template-columns: minmax(260px, 0.48fr) minmax(190px, 0.52fr);
}
.dsb-phone-code select {
  min-width: 100%;
  font-size: 14px;
}
.dsb-layout-horizontal .dsb-screen-journey {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.dsb-layout-horizontal .dsb-screen-journey .dsb-form {
  display: grid;
  grid-template-columns: minmax(210px, 1.3fr) minmax(210px, 1.3fr) minmax(220px, 1fr) minmax(190px, .8fr) auto;
  align-items: end;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 14px;
  background: rgba(17,24,39,.72);
  backdrop-filter: blur(12px);
}
.dsb-layout-horizontal .dsb-screen-journey .dsb-field,
.dsb-layout-horizontal .dsb-screen-journey .dsb-passenger-picker {
  margin: 0;
}
.dsb-layout-horizontal .dsb-screen-journey .dsb-add-return,
.dsb-layout-horizontal .dsb-screen-journey .dsb-return-fields,
.dsb-layout-horizontal .dsb-screen-journey .dsb-message {
  grid-column: 1 / -1;
}
.dsb-layout-horizontal .dsb-screen-journey .dsb-button-full {
  height: 52px;
  white-space: nowrap;
}
.dsb-layout-horizontal .dsb-screen-journey label,
.dsb-layout-horizontal .dsb-screen-journey .dsb-passenger-picker label {
  color: #fff;
}
.dsb-layout-horizontal .dsb-screen-journey input,
.dsb-layout-horizontal .dsb-screen-journey .dsb-datetime-trigger,
.dsb-layout-horizontal .dsb-screen-journey .dsb-passenger-picker {
  background: rgba(255,255,255,.95);
}
.dsb-screen[data-dsb-screen="payment"] .dsb-reservation-grid {
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.dsb-screen[data-dsb-screen="payment"] .dsb-payment-panel,
.dsb-screen[data-dsb-screen="payment"] .dsb-summary-sidebar {
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(16,24,40,.10);
}
.dsb-screen[data-dsb-screen="payment"] .dsb-payment-panel {
  padding: 28px;
}
.dsb-screen[data-dsb-screen="payment"] .dsb-payment-total {
  background: #f8fafc;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--dsb-border);
}
@media (max-width: 1024px) {
  .dsb-layout-horizontal .dsb-screen-journey .dsb-form {
    grid-template-columns: 1fr 1fr;
  }
  .dsb-layout-horizontal .dsb-screen-journey .dsb-button-full,
  .dsb-layout-horizontal .dsb-screen-journey .dsb-passenger-picker {
    grid-column: auto;
  }
  .dsb-screen[data-dsb-screen="payment"] .dsb-reservation-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .dsb-phone-row {
    grid-template-columns: 1fr;
  }
  .dsb-layout-horizontal .dsb-screen-journey .dsb-form {
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
    padding: 0;
    backdrop-filter: none;
  }
  .dsb-layout-horizontal .dsb-screen-journey label,
  .dsb-layout-horizontal .dsb-screen-journey .dsb-passenger-picker label {
    color: var(--dsb-ink);
  }
}
