/* Main Container */
.cbs-booking-wizard.cbs-premium-layout {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
}

/* Tabs - Booking Type */
.cbs-type-tabs {
	display: flex;
	background: #f5f7fa;
	border-radius: 8px;
	padding: 5px;
	margin-bottom: 25px;
	border: 1px solid #eee;
}

.cbs-tab-item {
	flex: 1;
	text-align: center;
	padding: 12px;
	cursor: pointer;
	font-weight: 600;
	color: #666;
	border-radius: 6px;
	transition: all 0.2s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.cbs-tab-item:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #333;
}

.cbs-tab-item.active {
	background: #fff;
	color: #ff5722;
	/* Brand Color */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cbs-tab-item .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

/* Form Layout */
.cbs-step {
	padding: 30px;
}

.cbs-form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.cbs-form-group {
	flex: 1;
}

.cbs-form-group.half-width {
	flex: 0 0 calc(50% - 10px);
}

.cbs-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

.cbs-input-icon {
	position: relative;
	display: flex;
	align-items: center;
}

.cbs-input-icon .dashicons {
	position: absolute;
	left: 10px;
	color: #777;
	z-index: 10;
}

.cbs-form-group input,
.cbs-form-group select {
	width: 100%;
	padding: 12px 12px 12px 36px;
	/* Space for icon */
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.cbs-form-group input:focus,
.cbs-form-group select:focus {
	border-color: #ff5722;
	outline: none;
}

/* Button */
.cbs-action-row {
	margin-top: 30px;
}

.cbs-button {
	background: #ff5722;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.2s;
}

.cbs-button-large {
	width: 100%;
	padding: 15px;
	font-size: 18px;
}

.cbs-button:hover {
	background: #e64a19;
}

.cbs-button:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* Vehicle List (Step 2) */
.cbs-vehicle-list {
	display: flex;
	/* Changed from grid to column flex */
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

/* Premium Vehicle Card */
.cbs-vehicle-card-premium {
	display: flex;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	align-items: center;
	transition: box-shadow 0.3s;
}

.cbs-vehicle-card-premium:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cbs-vc-image {
	flex: 0 0 30%;
	padding-right: 20px;
	text-align: center;
}

.cbs-vc-image img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.cbs-vc-details {
	flex: 1;
	border-right: 1px solid #f0f0f0;
	padding-right: 20px;
}

.cbs-vc-details h4 {
	font-size: 20px;
	margin: 0 0 10px 0;
	color: #222;
}

.cbs-vc-details h4 small {
	color: #888;
	font-size: 14px;
	font-weight: 400;
}

.cbs-vc-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	color: #666;
	font-size: 13px;
}

.cbs-vc-meta span {
	display: flex;
	align-items: center;
	gap: 4px;
}

.cbs-vc-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cbs-vc-features li {
	font-size: 14px;
	color: #444;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cbs-vc-features li .dashicons {
	color: #888;
	font-size: 16px;
}

.cbs-vc-action {
	flex: 0 0 25%;
	padding-left: 20px;
	text-align: left;
	/* Changed to left/center based on design */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cbs-vc-label {
	font-size: 13px;
	color: #777;
	margin: 0;
}

.cbs-vc-price {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	margin: 5px 0 15px 0;
}

.cbs-button-premium {
	background: #007bff;
	/* Blue as per image */
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 30px;
	/* Pill shape */
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	transition: background 0.2s;
}

.cbs-button-premium:hover {
	background: #0056b3;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
	.cbs-booking-wizard.cbs-premium-layout {
		max-width: 100%;
		margin: 0 10px;
		border-radius: 6px;
	}

	.cbs-step {
		padding: 20px;
	}

	.cbs-vehicle-card-premium {
		flex-direction: column;
		text-align: center;
	}

	.cbs-vc-image,
	.cbs-vc-details,
	.cbs-vc-action {
		flex: 100%;
		width: 100%;
		border-right: none;
		padding: 0;
	}

	.cbs-vc-image {
		padding-bottom: 15px;
	}

	.cbs-vc-details {
		margin: 15px 0;
		border-bottom: 1px solid #eee;
		padding-bottom: 15px;
	}

	.cbs-vc-action {
		padding-top: 15px;
	}

	.cbs-vc-meta {
		justify-content: center;
		flex-wrap: wrap;
	}

	.cbs-form-row {
		flex-direction: column;
		gap: 15px;
	}

	.cbs-form-group.half-width {
		flex: 100%;
	}

	.cbs-type-tabs {
		flex-direction: row;
		padding: 4px;
	}

	.cbs-tab-item {
		padding: 10px 8px;
		font-size: 14px;
	}

	.cbs-tab-item .dashicons {
		font-size: 18px;
		width: 18px;
		height: 18px;
	}
}

/* Responsive - Mobile */
@media (max-width: 480px) {
	.cbs-booking-wizard.cbs-premium-layout {
		margin: 0;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	.cbs-step {
		padding: 15px;
	}

	.cbs-type-tabs {
		flex-direction: column;
		gap: 5px;
		padding: 5px;
	}

	.cbs-tab-item {
		padding: 12px;
		font-size: 15px;
		width: 100%;
	}

	.cbs-form-group label {
		font-size: 13px;
	}

	.cbs-form-group input,
	.cbs-form-group select {
		padding: 10px 10px 10px 32px;
		font-size: 16px;
		/* Prevents zoom on iOS */
	}

	.cbs-button {
		padding: 14px 20px;
		font-size: 15px;
	}

	.cbs-button-large {
		padding: 16px;
		font-size: 17px;
	}

	.cbs-vehicle-card-premium {
		padding: 15px;
	}

	.cbs-vc-details h4 {
		font-size: 18px;
	}

	.cbs-vc-price {
		font-size: 24px;
	}

	.cbs-vc-meta {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}

	.cbs-vc-features li {
		font-size: 13px;
	}

	.cbs-button-premium {
		padding: 14px 18px;
		font-size: 15px;
	}

	/* Improve touch targets */
	.cbs-tab-item,
	.cbs-button,
	.cbs-button-premium {
		min-height: 44px;
		/* iOS recommended touch target */
	}

	/* Map container */
	#cbs-map {
		height: 250px !important;
		margin-bottom: 15px;
	}

	/* Trip info */
	#cbs-trip-info {
		font-size: 14px;
		padding: 10px;
	}
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
	.cbs-step {
		padding: 15px 20px;
	}

	.cbs-vehicle-card-premium {
		flex-direction: row;
	}

	.cbs-vc-image {
		flex: 0 0 35%;
	}

	.cbs-vc-details {
		flex: 1;
		border-right: 1px solid #f0f0f0;
		padding-right: 15px;
		margin: 0;
		border-bottom: none;
	}

	.cbs-vc-action {
		flex: 0 0 30%;
		padding-left: 15px;
	}
}

/* Modal Styles */
.cbs-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.5);
}

.cbs-modal-content {
	position: relative;
	background-color: #fefefe;
	margin: 5% auto;
	padding: 0;
	border: 1px solid #888;
	width: 90%;
	max-width: 900px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	animation-name: cbsanimatetop;
	animation-duration: 0.4s
}

@keyframes cbsanimatetop {
	from {
		top: -300px;
		opacity: 0
	}

	to {
		top: 0;
		opacity: 1
	}
}

.cbs-close-modal {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	right: 20px;
	top: 10px;
	z-index: 10001;
	cursor: pointer;
	transition: color 0.1s;
}

.cbs-close-modal:hover,
.cbs-close-modal:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/* Adjust wizard inside modal */
.cbs-modal .cbs-booking-wizard.cbs-premium-layout {
	box-shadow: none;
	border: none;
	margin: 0;
}

/* --- REDESIGN STYLES --- */

/* Modal Content Redesign Overrides */
.cbs-modal-content.cbs-redesign {
	max-width: 600px;
	/* Increased width */
	width: 95%;
	/* Responsive width */
	border-radius: 4px;
	overflow: hidden;
	/* Ensure it fits on screen */
	max-height: 90vh;
	display: flex;
	flex-direction: column;
}

.cbs-redesign .cbs-booking-wizard {
	overflow-y: auto;
	/* Scrollable content */
	max-height: 100%;
}

/* Top Tabs */
.cbs-type-tabs-redesign {
	display: flex;
	border-bottom: 1px solid #ddd;
	flex-shrink: 0;
	/* Keep header fixed */
	background: #fff;
	z-index: 10;
}

.cbs-tab-item-redesign {
	flex: 1;
	text-align: center;
	padding: 15px;
	cursor: pointer;
	background: #f9f9f9;
	font-weight: 600;
	color: #666;
	text-transform: uppercase;
	font-size: 14px;
	border-bottom: 3px solid transparent;
}

.cbs-tab-item-redesign.active {
	background: #fff;
	color: #333;
	border-bottom: 3px solid #333;
	/* or purple if preferred */
}

/* Input List */
.cbs-input-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/* Reduced gap */
	margin-bottom: 20px;
	padding: 0 5px;
	/* slight padding for scrollbar space */
}

.cbs-input-row {
	display: flex;
	align-items: center;
	background: #f9f9f9;
	border-radius: 4px;
	padding: 8px 12px;
	/* Reduced padding */
}

.cbs-icon-col {
	flex: 0 0 30px;
	/* narrowed */
	text-align: center;
	color: #333;
}

.cbs-icon-col .dashicons {
	font-size: 18px;
}

.cbs-field-col {
	flex: 1;
}

.cbs-field-col label {
	display: block;
	font-size: 11px;
	/* Smaller label */
	font-weight: 600;
	color: #666;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cbs-field-col input,
.cbs-field-col select {
	width: 100%;
	border: none;
	background: transparent;
	padding: 4px 0;
	font-size: 15px;
	color: #333;
	outline: none;
	height: auto;
}

.cbs-field-col input::placeholder {
	color: #999;
}

/* Stops */
.cbs-stop-row {
	margin-top: -5px;
	/* visuals to connect */
	background: #f9f9f9;
	border-top: 1px solid #eee;
}

/* Action Buttons */
.cbs-action-buttons-row {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	/* Allow wrapping on very small screens */
}

.cbs-btn-outline {
	flex: 1;
	background: #fff;
	border: 1px solid #ccc;
	color: #333;
	padding: 10px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	text-align: center;
	transition: all 0.2s;
	white-space: nowrap;
}

.cbs-btn-outline:hover {
	border-color: #333;
	background: #f0f0f0;
}

/* Block Button Purple */
.cbs-submit-row {
	margin-top: auto;
	/* Push to bottom if flex container */
}

.cbs-btn-block-purple {
	display: block;
	width: 100%;
	background: #9c2778;
	/* Purple from image */
	color: #fff;
	border: none;
	padding: 15px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s;
}

.cbs-btn-block-purple:hover {
	background: #7a1e5e;
}

/* Hide original form elements that might interfere */
.cbs-modal .cbs-booking-wizard h3 {
	display: none;
	/* Hide original headers inside step 1 */
}

/* Additional utility for dynamically added stops removal */
.cbs-remove-stop {
	cursor: pointer;
	color: #999;
	padding: 0 10px;
	font-size: 18px;
}

.cbs-remove-stop:hover {
	color: #f00;
}

/* Mobile Specific Adjustments for Redesign */
@media (max-width: 480px) {
	.cbs-modal-content.cbs-redesign {
		width: 100%;
		/* Full width on mobile */
		height: 100%;
		/* Full height on mobile */
		max-height: 100vh;
		margin: 0;
		border-radius: 0;
	}

	.cbs-booking-wizard {
		padding: 15px;
	}

	.cbs-action-buttons-row {
		flex-direction: column;
	}

	.cbs-btn-outline {
		width: 100%;
	}
}

/* --- Vehicles Page Redesign --- */

.cbs-vehicles-page {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	background: #f9f9f9;
	min-height: 80vh;
	padding-bottom: 50px;
}

.cbs-vehicles-layout {
	display: flex;
	gap: 30px;
	max-width: 100%;
	margin: 0;
	padding: 0 40px;
}

.cbs-vehicles-main {
	flex: 1;
}

.cbs-vehicles-sidebar {
	flex: 0 0 300px;
}

/* Stepper */
.cbs-stepper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	margin-bottom: 20px;
	background: #fdfdfd;
	border-bottom: 1px solid #eee;
}

.cbs-step-item {
	display: flex;
	align-items: center;
	color: #999;
	font-weight: 400;
	font-size: 16px;
}

.cbs-step-num {
	width: 24px;
	height: 24px;
	background: #eee;
	color: #666;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	margin-right: 8px;
}

.cbs-step-icon {
	width: 24px;
	height: 24px;
	background: #000;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	margin-right: 8px;
}

.cbs-step-label {
	margin-right: 15px;
}

.cbs-step-line {
	width: 40px;
	height: 1px;
	background: #ddd;
	margin-right: 15px;
	display: block;
}

.cbs-step-item.active {
	color: #000;
}

.cbs-step-item.active .cbs-step-num {
	background: #000;
	color: #fff;
}

.cbs-step-item.completed {
	color: #000;
}

/* Trip Summary Header */
.cbs-trip-summary-header {
	background: #fff;
	padding: 20px 30px;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	border: 1px solid #e0e0e0;
}

.cbs-trip-locations {
	display: flex;
	gap: 40px;
}

.cbs-trip-locations div small {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #888;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.cbs-trip-locations div span {
	font-size: 15px;
	color: #333;
	font-weight: 400;
}

#cbs-edit-journey {
	background: none;
	border: none;
	color: #000;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Vehicle Horizontal Card */
.cbs-vehicle-card-horizontal {
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 30px;
	border-radius: 4px;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	transition: box-shadow 0.2s;
}

.cbs-vehicle-card-horizontal:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cbs-vch-image {
	flex: 0 0 35%;
	padding-right: 30px;
}

.cbs-vch-image h4 {
	font-size: 24px;
	font-weight: 400;
	color: #333;
	margin: 0 0 10px 0;
}

.cbs-vch-meta-icons {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	color: #666;
	font-size: 14px;
}

.cbs-vch-image img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 10px;
}

.cbs-badge-eco {
	display: inline-block;
	background: #f0fdf4;
	color: #166534;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 700;
	border-radius: 4px;
}

.cbs-vch-features {
	flex: 1;
	border-left: 1px solid #eee;
	padding-left: 30px;
	padding-top: 10px;
}

.cbs-vch-features ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cbs-vch-features li {
	position: relative;
	padding-left: 15px;
	font-size: 15px;
	color: #555;
	margin-bottom: 8px;
	line-height: 1.5;
}

.cbs-vch-features li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #999;
}

.cbs-vch-action {
	flex: 0 0 200px;
	background: #f5f5f5;
	padding: 20px;
	text-align: center;
	border-radius: 4px;
	margin-left: 20px;
	align-self: center;
}

.cbs-vch-price-box {
	margin-bottom: 15px;
}

.cbs-price-amount {
	display: block;
	font-size: 36px;
	color: #333;
	font-weight: 400;
}

.cbs-vch-price-box small {
	font-size: 12px;
	color: #777;
}

.cbs-select-vehicle-btn {
	display: block;
	width: 100%;
	background: #9c2778;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 12px;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s;
}

.cbs-select-vehicle-btn:hover {
	background: #7a1e5e;
}

/* Sidebar Widgets */
.cbs-support-box,
.cbs-secure-payments,
.cbs-features-box {
	background: #f5f5f5;
	padding: 20px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.cbs-support-box h4,
.cbs-secure-payments h4,
.cbs-features-box h4 {
	margin: 10px 0 10px;
	font-size: 16px;
}

.cbs-btn-dark {
	display: inline-block;
	background: #333;
	color: #fff;
	padding: 8px 15px;
	text-decoration: none;
	font-size: 13px;
	margin: 10px 0;
}

.cbs-features-box ul {
	padding: 0;
	list-style: none;
}

.cbs-features-box li {
	font-size: 13px;
	color: #555;
	margin-bottom: 8px;
	display: flex;
	gap: 6px;
}

.cbs-loading-msg {
	text-align: center;
	padding: 40px;
	color: #666;
}

.cbs-spin {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Responsive Redesign */
@media (max-width: 900px) {
	.cbs-vehicles-layout {
		flex-direction: column;
		padding: 0 15px;
	}

	.cbs-vehicles-sidebar {
		flex: none;
		width: 100%;
	}

	/* Hide trip summary on mobile, show compact version */
	.cbs-trip-summary-header {
		background: #000;
		color: #fff;
		padding: 15px 20px;
		margin-bottom: 0;
		border-radius: 0;
		border: none;
	}

	.cbs-trip-locations {
		display: none;
	}

	#cbs-edit-journey {
		color: #fff;
		font-size: 14px;
		margin-left: auto;
	}

	/* Stepper - only show numbered circles */
	.cbs-stepper {
		padding: 20px 15px;
		justify-content: flex-start;
		gap: 10px;
	}

	.cbs-step-label {
		display: none;
	}

	.cbs-step-line {
		display: none;
	}

	.cbs-step-num {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.cbs-step-item.active .cbs-step-num {
		background: #000;
	}

	/* Vehicle Card - Full width stacked */
	.cbs-vehicle-card-horizontal {
		flex-direction: column;
		padding: 20px 15px;
		margin-bottom: 0;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	.cbs-vch-image {
		padding-right: 0;
		width: 100%;
		text-align: center;
	}

	.cbs-vch-image h4 {
		font-size: 20px;
		text-align: left;
		margin-bottom: 15px;
	}

	.cbs-vch-meta-icons {
		justify-content: flex-start;
		margin-bottom: 20px;
	}

	.cbs-vch-image img {
		max-width: 100%;
		margin: 20px 0;
	}

	.cbs-badge-eco {
		display: block;
		text-align: center;
		margin: 10px auto;
		width: fit-content;
	}

	/* Features - Full width */
	.cbs-vch-features {
		border-left: none;
		border-top: none;
		padding-left: 0;
		padding-top: 0;
		margin-top: 0;
		width: 100%;
	}

	.cbs-vch-features ul {
		margin: 20px 0;
	}

	.cbs-vch-features li {
		font-size: 14px;
		margin-bottom: 10px;
	}

	/* Price & Action - Sticky bottom section */
	.cbs-vch-action {
		background: #f5f5f5;
		margin: 20px -15px -20px -15px;
		padding: 20px 15px;
		width: calc(100% + 30px);
		flex: none;
		text-align: center;
	}

	.cbs-vch-price-box {
		margin-bottom: 15px;
	}

	.cbs-price-amount {
		font-size: 32px;
	}

	.cbs-select-vehicle-btn {
		width: 100%;
		padding: 15px;
		font-size: 16px;
		text-transform: uppercase;
	}
}

/* Payment Icons */
.cbs-payment-icons {
	width: 100%;
	max-width: 280px;
	height: auto;
	display: block;
	margin-top: 10px;
}

/* =========================================
   BOOKING DETAILS PAGE STYLES
   ========================================= */

.cbs-booking-details-page {
	max-width: 1200px;
	margin: 0 auto;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: #333;
	padding: 20px;
}

/* Stepper */
.cbs-stepper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.cbs-step-item {
	display: flex;
	align-items: center;
	position: relative;
	flex: 1;
}

.cbs-step-item:last-child {
	flex: 0 0 auto;
}

.cbs-step-num,
.cbs-step-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-right: 10px;
	font-size: 14px;
	z-index: 2;
}

.cbs-step-icon {
	background: #28a745;
	/* Green for completed */
}

.cbs-step-item.active .cbs-step-num {
	background: #000;
	color: #fff;
}

.cbs-step-label {
	font-weight: 500;
	color: #999;
}

.cbs-step-item.active .cbs-step-label,
.cbs-step-item.completed .cbs-step-label {
	color: #333;
	font-weight: 600;
}

.cbs-step-line {
	flex: 1;
	height: 2px;
	background: #e0e0e0;
	margin: 0 15px;
}

.cbs-step-item.completed .cbs-step-line {
	background: #28a745;
}

/* Trip Summary Header */
.cbs-trip-summary-header {
	background: #f9f9f9;
	padding: 15px 25px;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border: 1px solid #eee;
}

.cbs-trip-locations {
	display: flex;
	gap: 40px;
}

.cbs-trip-locations div {
	display: flex;
	flex-direction: column;
}

.cbs-trip-locations small {
	font-size: 11px;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}

.cbs-trip-locations span {
	font-weight: 600;
	font-size: 15px;
	color: #333;
}

#cbs-bd-edit-journey {
	background: transparent;
	border: 1px solid #ccc;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	color: #666;
	transition: all 0.2s;
}

#cbs-bd-edit-journey:hover {
	border-color: #333;
	color: #333;
}

/* Vehicle Info Bar */
.cbs-bd-vehicle-bar {
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 20px 25px;
	border-radius: 8px;
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.cbs-bd-vehicle-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.cbs-bd-vehicle-name {
	font-size: 18px;
	font-weight: 700;
}

.cbs-bd-vehicle-meta {
	color: #666;
	font-size: 14px;
	display: flex;
	gap: 8px;
}

.cbs-bd-vehicle-price {
	text-align: right;
}

.cbs-bd-price {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #333;
}

.cbs-bd-vehicle-price small {
	color: #999;
	font-size: 11px;
}


/* Main Layout Columns */
.cbs-bd-main-layout {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
}

.cbs-bd-left-column {
	flex: 2;
}

.cbs-bd-right-column {
	flex: 1;
	min-width: 300px;
}

/* Sections */
.cbs-bd-section {
	margin-bottom: 30px;
}

.cbs-bd-section-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	color: #333;
}

/* Forms */
.cbs-bd-form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.cbs-bd-form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cbs-bd-full-width {
	width: 100%;
}

.cbs-bd-form-group label {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 8px;
	color: #555;
}

.cbs-bd-form-group input,
.cbs-bd-form-group select,
.cbs-bd-form-group textarea {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	transition: border-color 0.2s;
	background: #fff;
	color: #333;
}

.cbs-bd-form-group input:focus,
.cbs-bd-form-group select:focus,
.cbs-bd-form-group textarea:focus {
	border-color: #333;
	outline: none;
}

.cbs-bd-toggle-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	margin-bottom: 15px;
	user-select: none;
}

/* Phone Input */
.cbs-bd-phone-input-wrap {
	display: flex;
	gap: 10px;
}

#cbs-bd-phone-country {
	width: 110px;
	flex: none;
}

/* Additional Services */
.cbs-bd-services-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 15px;
}

.cbs-bd-service-item {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.2s;
	background: #fff;
}

.cbs-bd-service-item:hover {
	border-color: #ccc;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cbs-bd-service-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin-bottom: 10px;
	width: 100%;
}

.cbs-bd-service-check {
	width: 18px;
	height: 18px;
	accent-color: #333;
}

.cbs-bd-service-name {
	font-weight: 600;
	color: #333;
	flex: 1;
}

.cbs-bd-service-icon {
	font-size: 20px;
}

.cbs-bd-service-price {
	font-size: 14px;
	color: #666;
	text-align: right;
	font-weight: 500;
}

.cbs-bd-variant-select {
	width: 100%;
	margin: 5px 0;
	padding: 6px;
	font-size: 13px;
	border: 1px solid #ddd;
	border-radius: 4px;
}


/* Right Column Cards */
.cbs-bd-trip-details-card,
.cbs-bd-map-section,
.cbs-bd-price-summary-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.cbs-bd-trip-detail-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 14px;
}

.cbs-bd-detail-label {
	color: #888;
}

.cbs-bd-detail-value {
	font-weight: 500;
	text-align: right;
	max-width: 60%;
}

.cbs-bd-trip-change-link {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px dashed #eee;
	text-align: center;
	font-size: 12px;
}

.cbs-bd-trip-change-link a {
	color: #666;
	text-decoration: underline;
}

/* Map */
.cbs-bd-map-container {
	height: 250px;
	background: #f0f0f0;
	border-radius: 6px;
	overflow: hidden;
}

/* Price Summary */
.cbs-bd-price-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 15px;
	color: #555;
}

.cbs-bd-price-total {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 2px solid #eee;
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

/* Bottom Buttons */
.cbs-bd-bottom-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.cbs-bd-btn {
	padding: 15px 30px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.cbs-bd-btn-back {
	background: #f5f5f5;
	border: 1px solid #ddd;
	color: #666;
}

.cbs-bd-btn-back:hover {
	background: #eee;
	color: #333;
}

.cbs-bd-btn-continue {
	background: #000;
	color: #fff;
	border: 1px solid #000;
}

.cbs-bd-btn-continue:hover {
	background: #333;
	border-color: #333;
}

.cbs-bd-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Responsive */
@media (max-width: 900px) {
	.cbs-bd-main-layout {
		flex-direction: column;
	}

	.cbs-trip-summary-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.cbs-trip-locations {
		flex-direction: column;
		gap: 15px;
	}

	.cbs-bd-vehicle-bar {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	.cbs-bd-vehicle-price {
		text-align: left;
	}
}

@media (max-width: 600px) {
	.cbs-bd-form-row {
		flex-direction: column;
		gap: 0;
	}

	.cbs-stepper {
		display: none;
		/* Hide stepper on very small screens or simplify it */
	}
}

/* =========================================
   PAYMENT PAGE STYLES (New)
   ========================================= */

.cbs-payment-page-container {
	max-width: 1200px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
	color: #333;
	padding: 20px;
}

.cbs-payment-header {
	text-align: center;
	margin-bottom: 30px;
}

.cbs-payment-header h1 {
	font-size: 24px;
	margin-bottom: 20px;
}

.cbs-payment-summary-bar {
	background: #f9f9f9;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.cbs-summary-item {
	display: flex;
	flex-direction: column;
}

.cbs-summary-item label {
	font-size: 11px;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 5px;
	font-weight: 600;
}

.cbs-summary-item span {
	font-weight: 500;
}

.cbs-edit-journey-btn {
	text-decoration: none;
	color: #333;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.cbs-payment-content-grid {
	display: flex;
	gap: 40px;
}

.cbs-payment-form-col {
	flex: 2;
}

.cbs-payment-sidebar {
	flex: 1;
	min-width: 350px;
}

/* Form Groups */
.cbs-form-group {
	margin-bottom: 25px;
}

.cbs-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #555;
	font-size: 14px;
}

.cbs-form-control {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
}

#cbs-card-element {
	padding: 12px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
}

/* Tip Section */
.cbs-tip-section {
	margin-bottom: 30px;
	background: #fff;
}

.cbs-tip-options {
	display: flex;
	gap: 10px;
}

.cbs-tip-btn {
	flex: 1;
	padding: 12px;
	border: 1px solid #eee;
	background: #fff;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.2s;
	color: #555;
}

.cbs-tip-btn:hover {
	background: #f5f5f5;
}

.cbs-tip-btn.active {
	background: #f0a500;
	/* Example yellow/gold color */
	color: #fff;
	border-color: #f0a500;
}

/* Terms */
.cbs-payment-terms {
	font-size: 13px;
	color: #777;
	margin-bottom: 20px;
}

.cbs-payment-logos {
	font-size: 30px;
	color: #666;
	margin-bottom: 30px;
	display: flex;
	gap: 10px;
}

.cbs-payment-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cbs-btn {
	padding: 15px 30px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	font-size: 16px;
}

.cbs-btn-outline {
	background: #f5f5f5;
	color: #333;
	border: 1px solid #ddd;
}

.cbs-btn-primary {
	background: #9c2778;
	color: #fff;
	flex-grow: 1;
	margin-left: 20px;
}

/* Breakdown Sidebar */
.cbs-breakdown-card {
	background: #f5f5f5;
	padding: 25px;
	border-radius: 8px;
}

.cbs-breakdown-card h3 {
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 15px;
}

.cbs-breakdown-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 14px;
	color: #555;
}

.cbs-breakdown-total {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #ccc;
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	font-size: 18px;
	color: #333;
}

@media (max-width: 768px) {
	.cbs-payment-content-grid {
		flex-direction: column-reverse;
	}

	.cbs-payment-summary-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}