/* Booking-site vehicle selection V2 (BOOKING-VIEW-001C)
 * Static visual shell for the Choose Vehicle step.
 * Mockup-aligned: horizontal card layout, premium spacing.
 *
 * Follows shared-booking-ui-contract.md §2/§3/§6/§9:
 * - Rounded cards, premium feel
 * - Primary CTA style (red→purple gradient)
 * - Secondary actions (outline/ghost)
 * - Mobile-safe, no horizontal overflow
 * - Stepper-compatible spacing
 */

.wsb-vehicle-v2 {
	margin: 18px auto 28px;
	width: min(100%, 1240px);
	padding: 0 16px;
}

.wsb-vehicle-v2__container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	grid-template-areas: "main summary";
	gap: 24px;
	align-items: start;
}

/* Ride Summary (Desktop) - Mockup-aligned */
.wsb-vehicle-v2__summary--desktop {
	grid-area: summary;
	position: sticky;
	top: 24px;
	align-self: start;
	background: var(--white, #ffffff);
	border-radius: var(--radius-lg, 12px);
	padding: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wsb-vehicle-v2__summary-card {
	background: var(--white, #ffffff);
	border-radius: inherit;
	padding: 24px;
}

.wsb-vehicle-v2__summary-title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 700;
	color: var(--base-ultra-dark, #111827);
	letter-spacing: -0.01em;
}

.wsb-vehicle-v2__summary-item {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}

.wsb-vehicle-v2__summary-label {
	font-size: 12px;
	color: var(--base, #6b7280);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.wsb-vehicle-v2__summary-value {
	font-size: 15px;
	font-weight: 500;
	color: var(--base-ultra-dark, #111827);
}

.wsb-vehicle-v2__summary-item--editable {
	cursor: pointer;
	padding: 8px 0;
	border-radius: 4px;
	transition: background-color 120ms ease;
}

.wsb-vehicle-v2__summary-item--editable:hover {
	background: var(--base-ultra-light, #f9fafb);
}

/* Mobile Summary Trigger - hidden on desktop */
.wsb-vehicle-v2__summary-trigger--mobile {
	display: none;
	width: 100%;
	padding: 14px 20px;
	margin-bottom: 16px;
	background: var(--white, #ffffff);
	border: 1px solid var(--secondary, #d1d5db);
	border-radius: var(--radius-md, 8px);
	font-size: 15px;
	font-weight: 600;
	color: var(--base-ultra-dark, #111827);
	cursor: pointer;
	transition: border-color 120ms ease, background 120ms ease;
}

.wsb-vehicle-v2__summary-trigger--mobile:hover,
.wsb-vehicle-v2__summary-trigger--mobile:focus {
	background: var(--white, #ffffff);
	border-color: var(--primary, #e11d48);
	outline: 2px solid var(--primary, #e11d48);
	outline-offset: 2px;
}

/* Main Content Area */
.wsb-vehicle-v2__main {
	grid-area: main;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* Map Placeholder - Mockup-aligned */
.wsb-vehicle-v2__map {
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.6) 100%),
		linear-gradient(135deg, rgba(225, 29, 72, 0.06), rgba(124, 58, 237, 0.05)),
		var(--white, #ffffff);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: var(--radius-lg, 12px);
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	overflow: hidden;
	position: relative;
}

.wsb-vehicle-v2__map-surface {
	position: relative;
	width: 100%;
	min-height: 170px;
	display: grid;
	place-items: center;
	gap: 12px;
	text-align: center;
}

.wsb-vehicle-v2__map-route {
	position: absolute;
	inset: 20px 24px auto 24px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.wsb-vehicle-v2__map-route-line {
	flex: 1;
	height: 3px;
	margin: 0 14px;
	border-radius: 9999px;
	background: linear-gradient(90deg, rgba(225, 29, 72, 0.4), rgba(124, 58, 237, 0.55));
	box-shadow: 0 0 0 8px rgba(225, 29, 72, 0.05);
}

.wsb-vehicle-v2__map-route-pin {
	width: 16px;
	height: 16px;
	border-radius: 9999px;
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9), 0 8px 16px rgba(15, 23, 42, 0.12);
}

.wsb-vehicle-v2__map-route-pin--start {
	background: #0f172a;
}

.wsb-vehicle-v2__map-route-pin--end {
	background: linear-gradient(135deg, #e11d48, #7c3aed);
}

.wsb-vehicle-v2__map-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--base, #6b7280);
}

.wsb-vehicle-v2__map-copy {
	position: relative;
	z-index: 1;
	max-width: 340px;
	padding-top: 76px;
}

.wsb-vehicle-v2__map-title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--base-ultra-dark, #111827);
}

.wsb-vehicle-v2__map-text {
	font-size: 14px;
	font-weight: 500;
	color: var(--base, #6b7280);
	line-height: 1.5;
}

/* Vehicle Cards Grid - Mockup-aligned spacing */
.wsb-vehicle-v2__cards {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.wsb-vehicle-v2__placeholder {
	background: var(--white, #ffffff);
	border-radius: var(--radius-lg, 12px);
	padding: 60px 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	text-align: center;
	color: var(--base, #6b7280);
}

.wsb-vehicle-v2__placeholder p {
	margin: 0;
	font-size: 16px;
}

/* Vehicle Card - Mockup-aligned horizontal layout */
.wsb-vehicle-v2__card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr) auto;
	background: var(--white, #ffffff);
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	gap: 18px;
	transition: box-shadow 120ms ease, transform 120ms ease;
	border: 1px solid rgba(148, 163, 184, 0.12);
}

.wsb-vehicle-v2__card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.wsb-vehicle-v2__card-image {
	flex-shrink: 0;
}

.wsb-vehicle-v2__card-image,
.wsb-vehicle-v2__card-image-el,
.wsb-vehicle-v2__card-image-fallback {
	width: 132px;
	height: 100px;
	border-radius: 14px;
	overflow: hidden;
}

.wsb-vehicle-v2__card-image-el {
	object-fit: cover;
	display: block;
	background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(124, 58, 237, 0.08));
}

.wsb-vehicle-v2__card-image-fallback {
	display: grid;
	place-items: center;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--base-ultra-dark, #111827);
	background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(124, 58, 237, 0.1));
}

.wsb-vehicle-v2__card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.wsb-vehicle-v2__card-side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 180px;
}

.wsb-vehicle-v2__card-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
}

.wsb-vehicle-v2__card-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.wsb-vehicle-v2__card-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--base-ultra-dark, #111827);
	letter-spacing: -0.01em;
}

.wsb-vehicle-v2__card-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 9999px;
	background: rgba(225, 29, 72, 0.1);
	color: #b91c1c;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.wsb-vehicle-v2__card-summary {
	margin: 0;
	font-size: 14px;
	color: var(--base, #6b7280);
	line-height: 1.55;
}

.wsb-vehicle-v2__card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.wsb-vehicle-v2__card-meta-item,
.wsb-vehicle-v2__card-feature {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 9999px;
	background: rgba(15, 23, 42, 0.05);
	color: var(--base-ultra-dark, #111827);
	font-size: 12px;
	font-weight: 600;
}

.wsb-vehicle-v2__card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 6px;
}

.wsb-vehicle-v2__card-price {
	font-size: 26px;
	font-weight: 700;
	color: var(--base-ultra-dark, #111827);
	margin-bottom: 14px;
	text-align: right;
}

.wsb-vehicle-v2__card-price-label {
	font-size: 12px;
	color: var(--base, #6b7280);
	font-weight: 400;
}

.wsb-vehicle-v2__card-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	margin-top: auto;
}

.wsb-vehicle-v2__card-info {
	flex-shrink: 0;
	background: transparent;
	border: 1px solid var(--secondary, #d1d5db);
	border-radius: var(--radius-md, 8px);
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--base-ultra-dark, #111827);
	cursor: pointer;
	transition: background 120ms ease, border-color 120ms ease;
	width: 100%;
}

.wsb-vehicle-v2__card-info:hover,
.wsb-vehicle-v2__card-info:focus {
	background: var(--base-ultra-light, #f3f4f6);
	border-color: var(--primary, #e11d48);
	outline: 2px solid var(--primary, #e11d48);
	outline-offset: 2px;
}

.wsb-vehicle-v2__card-cta {
	width: 100%;
}

/* Modal Styles - Mockup-aligned */
.wsb-vehicle-v2__modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

.wsb-vehicle-v2__modal--hidden {
	display: none;
}

.wsb-vehicle-v2__modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.wsb-vehicle-v2__modal-panel {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--white, #ffffff);
	border-radius: var(--radius-lg, 12px);
	max-width: 90vw;
	max-height: 90vh;
	overflow-y: auto;
	padding: 32px;
	width: 460px;
}

.wsb-vehicle-v2__modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--secondary, #e5e7eb);
}

.wsb-vehicle-v2__modal-title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: var(--base-ultra-dark, #111827);
}

.wsb-vehicle-v2__modal-close {
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: var(--base, #6b7280);
	padding: 4px 12px;
	transition: color 120ms ease;
}

.wsb-vehicle-v2__modal-close:hover,
.wsb-vehicle-v2__modal-close:focus {
	color: var(--base-ultra-dark, #111827);
}

.wsb-vehicle-v2__modal-description {
	margin: 0 0 20px;
	font-size: 15px;
	color: var(--base, #6b7280);
	line-height: 1.6;
}

.wsb-vehicle-v2__modal-features {
	margin: 0;
	padding-left: 20px;
	color: var(--base, #6b7280);
	font-size: 14px;
	line-height: 1.6;
}

.wsb-vehicle-v2__modal-features li {
	margin-bottom: 10px;
}

.wsb-vehicle-v2__summary--mobile {
	display: block;
}

.wsb-vehicle-v2__summary--mobile .wsb-vehicle-v2__summary-card {
	padding: 0;
	box-shadow: none;
}

.wsb-vehicle-v2__summary--mobile .wsb-vehicle-v2__summary-title {
	margin-bottom: 16px;
}

.wsb-vehicle-v2__summary--mobile .wsb-vehicle-v2__summary-item:last-child {
	margin-bottom: 0;
}

.wsb-vehicle-v2__summary--desktop .wsb-vehicle-v2__summary-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wsb-vehicle-v2__summary--desktop .wsb-vehicle-v2__summary-item {
	margin-bottom: 0;
}

.wsb-vehicle-v2__summary--desktop .wsb-vehicle-v2__summary-label {
	font-size: 11px;
}

/* Skeleton/Loading States */
.wsb-vehicle-v2__skeleton {
	background: var(--secondary, #f3f4f6);
	border-radius: var(--radius-md, 8px);
	animation: wsb-vehicle-v2-pulse 1.5s ease-in-out infinite;
}

.wsb-vehicle-v2__skeleton-text {
	height: 16px;
	margin-bottom: 8px;
}

.wsb-vehicle-v2__skeleton-text:last-child {
	margin-bottom: 0;
	width: 60%;
}

.wsb-vehicle-v2__skeleton-image {
	width: 120px;
	height: 90px;
	margin-bottom: 24px;
}

@keyframes wsb-vehicle-v2-pulse {
	0% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0.6;
	}
}

/* Mobile Layout - Mockup-aligned */
@media (max-width: 960px) {
	.wsb-vehicle-v2__container {
		grid-template-columns: 1fr;
		grid-template-areas:
			"main"
			"summary";
	}

	.wsb-vehicle-v2__summary--desktop {
		display: none;
	}

	.wsb-vehicle-v2__summary-trigger--mobile {
		display: block;
	}
}

@media (max-width: 680px) {
	.wsb-vehicle-v2 {
		padding: 0 12px;
	}

	.wsb-vehicle-v2__modal-panel {
		width: 95vw;
		padding: 24px;
	}

	.wsb-vehicle-v2__card {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.wsb-vehicle-v2__card-image,
	.wsb-vehicle-v2__card-image-el,
	.wsb-vehicle-v2__card-image-fallback {
		width: 96px;
		height: 96px;
	}

	.wsb-vehicle-v2__card-side {
		grid-column: 1 / -1;
	}

	.wsb-vehicle-v2__card-price {
		text-align: left;
		font-size: 24px;
	}
}

/* Card CTA Primary Button (shared with stepper) - Premium */
.btn-cta.btn-cta--bg-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: var(--radius-md, 8px);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	background: linear-gradient(135deg, #e11d48, #7c3aed);
	color: #fff;
	transition: transform 120ms ease, box-shadow 120ms ease;
	box-shadow: 0 2px 8px rgba(225, 29, 72, 0.2);
}

.btn-cta.btn-cta--bg-primary:hover:not(:disabled):not([disabled]) {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.btn-cta.btn-cta--bg-primary:disabled,
.btn-cta.btn-cta--bg-primary[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* --------------------------------------------------------------------------
   Wolf Shuttles V2 layout correction — added by ChatGPT handoff
   Purpose: use full page width, non-sticky summary, banner->map->cards order,
   two-column cards on desktop, and keep legacy cards visible for comparison.
   -------------------------------------------------------------------------- */

.wsb-vehicle-v2 {
  --wsb-v2-red: var(--primary, #ef3b2d);
  --wsb-v2-purple: var(--secondary, #7c3aed);
  --wsb-v2-ink: var(--base-ultra-dark, #111827);
  --wsb-v2-muted: var(--base, #667085);
  --wsb-v2-panel: var(--white, #fff);
  width: min(100%, 1360px) !important;
  max-width: 1360px !important;
  margin: 26px auto 34px !important;
  padding: 0 18px !important;
}

.wsb-vehicle-v2__container {
  width: 100%;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px) !important;
  grid-template-areas: "main summary" !important;
  gap: 28px !important;
  align-items: start !important;
}

.wsb-vehicle-v2__main {
  gap: 20px !important;
}

.wsb-vehicle-v2__summary--desktop {
  position: static !important;
  top: auto !important;
  align-self: start !important;
  border: 1px solid rgba(124, 58, 237, .18) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08) !important;
}

.wsb-vehicle-v2__summary-card {
  padding: 26px !important;
}

.wsb-vehicle-v2__summary-title {
  font-size: 22px !important;
  letter-spacing: -.02em !important;
}

.wsb-vehicle-v2__policy-banner {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px 24px;
  border-radius: 20px;
  background: #d9f1ee;
  color: #2d7a6a;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.wsb-vehicle-v2__policy-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(45, 122, 106, .14);
  color: #2d7a6a;
  font-size: 24px;
}

.wsb-vehicle-v2__policy-copy {
  display: grid;
  gap: 4px;
}

.wsb-vehicle-v2__policy-copy strong {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: .01em;
}

.wsb-vehicle-v2__policy-copy span {
  font-size: 15px;
  line-height: 1.45;
}

.wsb-vehicle-v2__map {
  min-height: 275px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    repeating-linear-gradient(28deg, rgba(15,23,42,.08) 0 2px, transparent 2px 38px),
    repeating-linear-gradient(112deg, rgba(15,23,42,.06) 0 2px, transparent 2px 44px),
    #eef0f2 !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08) !important;
}

.wsb-vehicle-v2__map-route {
  inset: 34px 56px auto 56px !important;
}

.wsb-vehicle-v2__map-title {
  font-size: 19px !important;
  text-transform: none !important;
}

.wsb-vehicle-v2__map-text {
  max-width: 420px;
  margin-inline: auto;
}

.wsb-vehicle-v2__cards {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.wsb-vehicle-v2__card {
  display: grid !important;
  grid-template-columns: 132px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  gap: 16px !important;
  min-height: 270px;
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08) !important;
}

.wsb-vehicle-v2__card:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 24px 58px rgba(15, 23, 42, .12) !important;
}

.wsb-vehicle-v2__card-image,
.wsb-vehicle-v2__card-image-el,
.wsb-vehicle-v2__card-image-fallback {
  width: 132px !important;
  height: 104px !important;
  border-radius: 18px !important;
  background: #fff4f6 !important;
  object-fit: contain !important;
}

.wsb-vehicle-v2__card-side {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 1fr minmax(190px, 230px) !important;
  align-items: end !important;
  gap: 14px !important;
  min-width: 0 !important;
}

.wsb-vehicle-v2__card-price {
  text-align: left !important;
  margin: 0 !important;
  font-size: 28px !important;
  letter-spacing: -.02em !important;
}

.wsb-vehicle-v2__card-price-label {
  display: inline-block !important;
  margin-left: 6px !important;
  white-space: nowrap !important;
}

.wsb-vehicle-v2__card-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.wsb-vehicle-v2__card-info {
  min-height: 44px !important;
  border-radius: 12px !important;
  background: #fff !important;
}

.wsb-vehicle-v2__card-cta {
  min-height: 50px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #d41473 0%, #8d36e6 100%) !important;
}

.wsb-vehicle-v2__card-feature,
.wsb-vehicle-v2__card-meta-item {
  background: rgba(15, 23, 42, .055) !important;
  font-weight: 750 !important;
}

/* The legacy comparison cards are intentionally not hidden here. Keep them visible
   while V2 is being reviewed against the existing production cards. */
html.wsb-v2-live-mode .shuttle-card {
  display: block !important;
}

@media (max-width: 1180px) {
  .wsb-vehicle-v2__container {
    grid-template-columns: minmax(0, 1fr) 320px !important;
  }

  .wsb-vehicle-v2__cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 960px) {
  .wsb-vehicle-v2__container {
    grid-template-columns: 1fr !important;
    grid-template-areas: "main" !important;
  }

  .wsb-vehicle-v2__summary--desktop {
    display: none !important;
  }

  .wsb-vehicle-v2__summary-trigger--mobile {
    display: block !important;
  }
}

@media (max-width: 680px) {
  .wsb-vehicle-v2 {
    padding: 0 12px !important;
  }

  .wsb-vehicle-v2__policy-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .wsb-vehicle-v2__card {
    grid-template-columns: 104px minmax(0, 1fr) !important;
  }

  .wsb-vehicle-v2__card-side {
    grid-template-columns: 1fr !important;
  }

  .wsb-vehicle-v2__card-price-label {
    display: block !important;
    margin: 3px 0 0 !important;
  }
}

/* ========================================================================== */
/* Wolf Shuttles V2 booking view — high fidelity pass                          */
/* ========================================================================== */
.wsb-vehicle-v2 {
  --ws-red: #ee3024;
  --ws-red-dark: #c32042;
  --ws-purple: #7b2bea;
  --ws-ink: #111827;
  --ws-muted: #667085;
  --ws-line: rgba(16,24,40,.08);
  --ws-surface: #ffffff;
  width: min(1480px, calc(100vw - 40px));
  margin: 38px auto 72px;
  color: var(--ws-ink);
  font-family: inherit;
}
.wsb-vehicle-v2__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.wsb-vehicle-v2__main { min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.wsb-vehicle-v2__policy-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 86px;
  padding: 18px 24px;
  border-radius: 24px;
  background: #dbf5f0;
  color: #2d7d71;
  box-shadow: 0 14px 38px rgba(16,24,40,.05);
}
.wsb-vehicle-v2__policy-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #2f8d7d;
  color: transparent;
  position: relative;
}
.wsb-vehicle-v2__policy-icon::before { content:'✓'; position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-size:26px; font-weight:900; }
.wsb-vehicle-v2__policy-copy { display: grid; gap: 6px; }
.wsb-vehicle-v2__policy-copy strong { font-size: 22px; line-height: 1; letter-spacing: -.02em; color:#2e8276; }
.wsb-vehicle-v2__policy-copy span { font-size: 15px; color:#388579; }
.wsb-vehicle-v2__map {
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  background: #f4f4f5;
  box-shadow: 0 16px 42px rgba(16,24,40,.07);
}
.wsb-vehicle-v2__map-surface { position: relative; min-height: 300px; height: 100%; }
.wsb-vehicle-v2__google-map { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; background: #f1f3f4; }
.wsb-vehicle-v2__map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(16,24,40,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16,24,40,.035) 1px, transparent 1px),
    #f7f7f8;
  background-size: 48px 48px;
}
.wsb-vehicle-v2__map-route { width:min(78%,720px); display:flex; align-items:center; gap:10px; margin:0 auto 22px; }
.wsb-vehicle-v2__map-route-pin { width:18px; height:18px; border-radius:50%; background:#101828; box-shadow:0 0 0 8px rgba(16,24,40,.05); }
.wsb-vehicle-v2__map-route-pin--end { background:linear-gradient(135deg,var(--ws-red),var(--ws-purple)); }
.wsb-vehicle-v2__map-route-line { height:5px; flex:1; border-radius:999px; background:linear-gradient(90deg,#ffb3c5,var(--ws-purple)); box-shadow:0 4px 18px rgba(123,43,234,.18); }
.wsb-vehicle-v2__map-copy { text-align:center; max-width: 480px; margin: 0 auto; }
.wsb-vehicle-v2__map-title { margin: 0 0 8px; font-size: 22px; font-weight: 900; letter-spacing: -.03em; }
.wsb-vehicle-v2__map-text { margin:0; font-size:16px; line-height:1.4; }
.wsb-vehicle-v2__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.wsb-vehicle-v2__card {
  display: grid;
  grid-template-columns: 168px minmax(0,1fr);
  grid-template-areas:
    'image content'
    'side side';
  gap: 18px;
  min-height: 250px;
  padding: 20px;
  border: 1px solid rgba(16,24,40,.06);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16,24,40,.08);
  overflow: hidden;
}
.wsb-vehicle-v2__card-image { grid-area: image; display: flex; align-items: center; justify-content: center; min-height: 126px; border-radius: 22px; background: #fff0f5; overflow: hidden; }
.wsb-vehicle-v2__card-image img { width: 100%; height: 100%; object-fit: contain; display:block; }
.wsb-vehicle-v2__card-content { grid-area: content; min-width:0; }
.wsb-vehicle-v2__card-title-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.wsb-vehicle-v2__card-title { margin: 0; font-size: 26px; line-height:1; font-weight: 950; letter-spacing: -.04em; text-transform: none; }
.wsb-vehicle-v2__card-badge { display:inline-flex; align-items:center; min-height:26px; padding:0 12px; border-radius:999px; background:#fff0f0; color:#d92d20; font-size:12px; font-weight:900; text-transform: capitalize; }
.wsb-vehicle-v2__card-summary { margin:10px 0 14px; color:#344054; font-size:15px; line-height:1.3; }
.wsb-vehicle-v2__card-meta,
.wsb-vehicle-v2__card-features { display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.wsb-vehicle-v2__card-meta-item,
.wsb-vehicle-v2__card-feature { display:inline-flex; align-items:center; min-height:30px; padding:0 12px; border-radius:999px; background:#f4f4f5; color:#111827; font-size:13px; font-weight:900; }
.wsb-vehicle-v2__card-feature { background:#e6f5f2; color:#23786b; }
.wsb-vehicle-v2__card-side {
  grid-area: side;
  display:grid;
  grid-template-columns: minmax(150px, .6fr) 1fr;
  gap:14px;
  align-items:end;
  padding-top: 10px;
}
.wsb-vehicle-v2__card-price { display:grid; gap:3px; font-size:30px; font-weight:950; letter-spacing:-.04em; white-space:nowrap; }
.wsb-vehicle-v2__card-price-label { color:#667085; font-size:12px; font-weight:700; letter-spacing:0; }
.wsb-vehicle-v2__card-actions { display:grid; gap:10px; }
.wsb-vehicle-v2__card-info,
.wsb-vehicle-v2__card-cta { min-height:46px; border-radius:12px; font-weight:900; font-size:15px; text-decoration:none; display:flex; justify-content:center; align-items:center; }
.wsb-vehicle-v2__card-info { background:#fff; border:1px solid rgba(123,43,234,.42); color:#111827; }
.wsb-vehicle-v2__card-cta { border:0; color:#fff; background:linear-gradient(100deg,#d4145a 0%, var(--ws-purple) 100%) !important; box-shadow:0 12px 28px rgba(123,43,234,.2); }
.wsb-vehicle-v2__summary { position: static !important; top:auto !important; }
.wsb-vehicle-v2__summary-card,
.wsb-vehicle-v2__benefits-card,
.wsb-vehicle-v2__trust-card {
  border: 1px solid rgba(238,48,36,.24);
  border-radius: 22px;
  background:#fff;
  box-shadow:0 18px 46px rgba(16,24,40,.075);
  padding:24px;
  margin-bottom: 20px;
}
.wsb-vehicle-v2__summary-title,
.wsb-vehicle-v2__benefits-title { margin:0 0 18px; font-size:24px; font-weight:950; letter-spacing:-.04em; }
.wsb-vehicle-v2__summary-content { display:grid; gap:16px; }
.wsb-vehicle-v2__summary-item { display:grid; gap:5px; padding-bottom:12px; border-bottom:1px solid rgba(16,24,40,.06); }
.wsb-vehicle-v2__summary-item:last-child { border-bottom:0; padding-bottom:0; }
.wsb-vehicle-v2__summary-label { color:#667085; font-size:11px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.wsb-vehicle-v2__summary-value { font-size:15px; line-height:1.4; font-weight:800; color:#111827; }
.wsb-vehicle-v2__itinerary { display:grid; gap:10px; padding-top:2px; }
.wsb-vehicle-v2__itinerary-title { margin:0; color:#111827; font-size:13px; line-height:1.3; font-weight:900; }
.wsb-vehicle-v2__itinerary-trip { display:grid; gap:8px; padding:11px; border:1px solid #e6e8ee; border-radius:12px; background:#f8f9fb; }
.wsb-vehicle-v2__itinerary-trip header { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.wsb-vehicle-v2__itinerary-trip header strong { color:#111827; font-size:13px; }
.wsb-vehicle-v2__itinerary-trip header span { color:#6b1fb1; font-size:11px; font-weight:850; }
.wsb-vehicle-v2__itinerary-leg { display:grid; grid-template-columns:minmax(0,1fr) auto minmax(0,1fr); align-items:start; gap:6px; color:#353844; font-size:12px; line-height:1.35; }
.wsb-vehicle-v2__itinerary-leg small { grid-column:1 / -1; color:#697180; font-size:11px; }
.wsb-vehicle-v2__promise-chip { border-radius:14px; background:#e6f5f2; color:#23786b; text-align:center; padding:11px; display:grid; gap:3px; margin-bottom:14px; }
.wsb-vehicle-v2__promise-chip span { font-size:12px; }
.wsb-vehicle-v2__promise-chip strong { font-size:13px; }
.wsb-vehicle-v2__benefits-list { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.wsb-vehicle-v2__benefits-list li { display:flex; gap:9px; align-items:flex-start; font-size:14px; line-height:1.35; }
.wsb-vehicle-v2__benefits-list li span { flex:0 0 22px; height:22px; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,var(--ws-red),var(--ws-purple)); font-size:12px; }
.wsb-vehicle-v2__trust-card strong { font-size:20px; color:#667085; }
.wsb-vehicle-v2__stars { color:#f8c400; font-size:24px; letter-spacing:2px; margin:8px 0; }
.wsb-vehicle-v2__support { margin-top: 12px; padding: 24px 18px 10px; }
.wsb-vehicle-v2__support h2 { margin:0 0 18px; font-size:24px; font-weight:950; letter-spacing:-.04em; }
.wsb-vehicle-v2__support-actions { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:18px; border-top:1px solid rgba(16,24,40,.08); padding-top:18px; }
.wsb-vehicle-v2__support-link { color:#344054; font-size:19px; font-weight:950; text-decoration:underline; display:grid; gap:4px; }
.wsb-vehicle-v2__support-link span { font-size:14px; font-weight:600; text-decoration:none; color:#667085; }
.wsb-vehicle-v2__summary-trigger--mobile { display:none; }
@media (max-width: 1180px) {
  .wsb-vehicle-v2__container { grid-template-columns: 1fr; }
  .wsb-vehicle-v2__summary--desktop { display:none; }
  .wsb-vehicle-v2__summary-trigger--mobile { display:flex; position: sticky; bottom:18px; z-index:20; width: calc(100% - 24px); margin: 20px auto 0; justify-content:center; align-items:center; min-height:52px; border:0; border-radius:999px; color:#fff; background:linear-gradient(100deg,var(--ws-red),var(--ws-purple)); font-weight:900; }
}
@media (max-width: 880px) {
  .wsb-vehicle-v2 { width: min(100%, calc(100vw - 20px)); margin:24px auto; }
  .wsb-vehicle-v2__cards { grid-template-columns: 1fr; }
  .wsb-vehicle-v2__card { grid-template-columns: 120px minmax(0,1fr); }
  .wsb-vehicle-v2__card-side { grid-template-columns:1fr; }
  .wsb-vehicle-v2__support-actions { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  .wsb-vehicle-v2__card { grid-template-columns:1fr; grid-template-areas:'image' 'content' 'side'; }
  .wsb-vehicle-v2__card-image { min-height:160px; }
}
.wsb-vehicle-v2__google-map { background: transparent !important; }
.wsb-vehicle-v2__google-map > div { border-radius: 28px; }
