@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap');

.vrm-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-end;
	background: #000000;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 30px;
}
.vrm-search-form .vrm-field-group {
	display: flex;
	gap: 12px;
}
.post-entry h3 {
    color: #fff !important;
    font-size: 21px !important;
}
.vrm-search-form .vrm-field {
	display: flex;
	flex-direction: column;
	min-width: 160px;
}
.vrm-search-form label {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #fff;
}
.vrm-search-form select,
.vrm-search-form input[type="text"],
.vrm-search-form input.vrm-datepicker {
	box-sizing: border-box;
	padding: 9px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	height: 40px;
	line-height: 20px;
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
}

.vrm-search-form .vrm-submit {
	justify-content: flex-end;
}
.vrm-search-btn {
	background: #1a7f37;
	color: #fff;
	border: none;
	padding: 11px 24px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}
.vrm-search-btn:hover {
	background: #146c2e;
}

.vrm-results-title {
	margin-top: 10px;
}
.vrm-no-results {
	padding: 20px;
	background: #fcefef;
	border-radius: 6px;
	color: #b32d2e;
}
.vrm-vehicle-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}
.vrm-vehicle-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	border-radius: 22px;
	overflow: hidden;
	background: #14151a;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vrm-vehicle-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}
.vrm-vehicle-image,
.vrm-vehicle-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	/*height: 100%;*/
	object-fit: contain;
	display: block;
	background: #ffffff;
}
.vrm-vehicle-image-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #24262e, #14151a);
}
.vrm-vehicle-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.6) 38%, rgba(0, 0, 0, 0) 68%);
}
.vrm-vehicle-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 24px 24px;
	color: #fff;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.vrm-vehicle-title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.vrm-vehicle-price {
	margin: 0 0 16px;
	line-height: 1;
}
.vrm-price-amount {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.vrm-price-period {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.75;
	margin-left: 2px;
}
.vrm-price-na {
	font-size: 16px;
	font-weight: 600;
	opacity: 0.85;
}
.vrm-vehicle-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.22);
	margin-bottom: 14px;
}
.vrm-vehicle-specs {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 14px;
	font-weight: 600;
}
.vrm-spec {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: 0.95;
}
.vrm-spec strong {
	font-weight: 700;
}
.vrm-spec-icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	opacity: 0.9;
	display: inline-flex;
}
.vrm-spec-icon svg {
	width: 100%;
	height: 100%;
}

@media (max-width: 900px) {
	.vrm-vehicle-grid {
		grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.vrm-search-form {
		flex-direction: column;
		align-items: stretch;
	}
	.vrm-search-form .vrm-field-group {
		flex-direction: column;
	}
	.vrm-vehicle-grid {
		grid-template-columns: 1fr;
	}
	.vrm-vehicle-card {
		aspect-ratio: 4 / 4;
	}
}

/* ------------------------------------------------------------------ */
/* Single Vehicle page                                                 */
/* ------------------------------------------------------------------ */

.vrm-single-vehicle {
	--vrm-accent: #e77917;
	--vrm-ink: #16171b;
	max-width: 1800px;
	margin: 0 auto;
	padding: 40px 24px 80px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--vrm-ink);
}

.vrm-single-layout {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: 28px;
	align-items: start;
}

.vrm-single-main-column {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.vrm-single-main-column .vrm-single-section {
	margin-top: 44px;
}

.vrm-single-hero {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}
.vrm-single-hero img,
.vrm-single-hero .vrm-vehicle-image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.vrm-single-hero .vrm-vehicle-image-placeholder {
	background: linear-gradient(135deg, #24262e, #14151a);
}

.vrm-single-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 20px;
	background: #fff;
	border-radius: 16px;
	padding: 20px 24px;
}
.vrm-highlight {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.vrm-highlight-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fdf0dc;
	color: var(--vrm-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}
.vrm-highlight-icon svg {
	width: 19px;
	height: 19px;
}
.vrm-highlight h4 {
	margin: 0 0 3px;
	font-size: 14.5px;
	font-weight: 700;
}
.vrm-highlight p {
	margin: 0;
	font-size: 12.5px;
	color: #6b6b70;
}

.vrm-single-sidebar {
	position: sticky;
	top: 24px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	scrollbar-width: thin;
}
.vrm-single-sidebar::-webkit-scrollbar {
	width: 6px;
}
.vrm-single-sidebar::-webkit-scrollbar-thumb {
	background: #e2e2e5;
	border-radius: 3px;
}
.vrm-sidebar-price {
	line-height: 1;
	margin-bottom: 16px;
}
.vrm-sidebar-price .vrm-price-amount {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.vrm-sidebar-price .vrm-price-period {
	font-size: 13px;
	font-weight: 500;
	color: #8a8a90;
	margin-left: 2px;
}
.vrm-sidebar-price .vrm-price-na {
	font-size: 18px;
	font-weight: 700;
}
.vrm-sidebar-divider {
	height: 1px;
	background: #ececec;
	margin-bottom: 6px;
}
.vrm-sidebar-specs {
	list-style: none;
	margin: 0;
	padding: 0;
}
.vrm-sidebar-specs li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #f1f1f1;
	font-size: 14px;
}
.vrm-sidebar-specs li:last-child {
	border-bottom: none;
}
.vrm-sidebar-spec-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #45454a;
	font-weight: 500;
}
.vrm-sidebar-spec-label .vrm-spec-icon {
	color: #9a9aa0;
}
.vrm-sidebar-spec-value {
	font-weight: 700;
}
/*.feature-points .vrm-sidebar-spec-value {*/
/*	position: absolute;*/
/*    padding-left: 10px;*/
/*}*/
.vrm-sidebar-cta {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.vrm-booknow-btn {
	flex: 1;
	text-align: center;
	background: var(--vrm-accent);
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 13px 20px;
	border-radius: 999px;
	transition: background 0.2s ease;
}
.vrm-booknow-btn:hover {
	background: #e59a24;
	color: #1a1a1a;
}
.vrm-cta-or {
	font-size: 12px;
	font-weight: 600;
	color: #a5a5aa;
}
.vrm-whatsapp-btn {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--vrm-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
}
.vrm-whatsapp-btn:hover {
	background: #e59a24;
}
.vrm-whatsapp-btn svg {
	width: 20px;
	height: 20px;
}

.vrm-single-section {
	margin-top: 56px;
	max-width: 100%;
}
.vrm-section-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	background: #fff;
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 16px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.vrm-section-eyebrow::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vrm-accent);
	margin-right: 8px;
}
.vrm-section-heading {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
}
.vrm-section-text {
	font-size: 14.5px;
	line-height: 1.7;
	color: #55555b;
	margin: 0 0 22px;
}
.vrm-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.vrm-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14.5px;
	color: #33333a;
}
.vrm-check-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--vrm-accent);
	margin-top: 1px;
}
.vrm-check-icon svg {
	width: 100%;
	height: 100%;
}
/*.vrm-amenities-grid {*/
/*	display: grid;*/
/*	grid-template-columns: repeat(4, auto);*/
/*	gap: 16px 40px;*/
/*}*/
.vrm-amenities-grid .vrm-amenity {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #33333a;
}
.vrm-amenities-grid .vrm-check-icon {
	width: 17px;
	height: 17px;
}

@media (max-width: 900px) {
	.vrm-single-layout {
		grid-template-columns: 1fr;
	}
	.vrm-single-sidebar {
		position: static;
		order: 0;
		margin-bottom: 32px;
		max-height: none;
		overflow-y: visible;
	}
	.vrm-amenities-grid {
		grid-template-columns: repeat(2, auto);
	}
}
@media (max-width: 480px) {
	.vrm-amenities-grid {
		grid-template-columns: 1fr;
	}
	.vrm-section-heading {
		font-size: 24px;
	}
}

/* ------------------------------------------------------------------ */
/* Extras & Options panel (Insurance / Mileage / Additional Driver /   */
/* Equipment / Mandatory Travelling Option / Other Options / Underage) */
/* ------------------------------------------------------------------ */

.vrm-extras-panel {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.vrm-extras-group {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}
.vrm-extras-group-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid #f1f1f1;
}
.vrm-extras-group-icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fdf0dc;
	color: var(--vrm-accent, #f2a93a);
	display: flex;
	align-items: center;
	justify-content: center;
}
.vrm-extras-group-icon svg {
	width: 17px;
	height: 17px;
}
.vrm-extras-group-title {
	margin: 0;
	font-size: 15.5px;
	font-weight: 700;
	color: var(--vrm-ink, #16171b);
}
.vrm-extras-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	padding: 16px 20px 20px;
}
.vrm-extras-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 16px;
	border: 1.5px solid #ececec;
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.vrm-extras-item:hover {
	border-color: #e3c290;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.vrm-extras-item:has(:checked) {
	border-color: var(--vrm-accent, #f2a93a);
	background: #fdf7ec;
}
.vrm-extras-item-control {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.vrm-extras-checkbox {
	width: 20px;
	height: 20px;
	accent-color: var(--vrm-accent, #f2a93a);
	cursor: pointer;
}
.vrm-extras-qty {
	width: 62px;
	padding: 6px 8px;
	border: 1px solid #d8d8dc;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 600;
	background: #fff;
	cursor: pointer;
}
.vrm-extras-item-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.vrm-extras-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #33333a;
	line-height: 1.35;
}
.vrm-extras-item-price {
	display: inline-block;
	align-self: flex-start;
	font-size: 12.5px;
	font-weight: 700;
	display: flex;
	color: var(--vrm-accent, #c9820a);
	background: #fdf0dc;
	padding: 2px 9px;
	border-radius: 999px;
}
.vrm-extras-item-price-note {
	display: block;
	font-size: 10.5px;
	font-weight: 500;
	color: #9a9aa0;
	background: none;
	padding: 0px 10px 0;
	text-transform: none;
}

@media (max-width: 480px) {
	.vrm-extras-items {
		grid-template-columns: 1fr;
	}
}

/* ------------------------------------------------------------------ */
/* Rate Quote box (replaces the old plain spec-list sidebar)           */
/* ------------------------------------------------------------------ */

.vrm-rate-quote {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f1f1;
}
.vrm-rate-quote-header {
	background: #e77917;
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 15px 22px;
}
.vrm-rate-quote-body {
	padding: 10px 22px 24px;
}
.vrm-rate-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 0;
	font-size: 14px;
	color: #45454a;
}
.vrm-rate-section-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #9a9aa0;
	margin-top: 18px;
	padding-bottom: 8px;
	border-bottom: 1px solid #ececec;
}
.vrm-rate-section-label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vrm-accent, #f2a93a);
	flex-shrink: 0;
}
.vrm-rate-extras-list:empty {
	display: none;
}
.vrm-rate-extra-row {
	font-size: 13px;
	color: #6b6b70;
	padding: 6px 0;
}
.vrm-rate-extra-row span:last-child {
	font-weight: 600;
	color: #33333a;
}
.vrm-rate-subtotal {
	border-top: 1px dashed #e2e2e5;
	margin-top: 6px;
	padding-top: 13px;
	font-weight: 700;
	font-size: 15px;
	color: var(--vrm-ink, #16171b);
}
.vrm-rate-mileage-row {
	color: #6b6b70;
	font-size: 13px;
}
.vrm-rate-grandtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
	padding: 14px 16px;
	background: linear-gradient(135deg, #fdf0dc, #fdf7ec);
	border-radius: 12px;
	border: 1px solid #f6dfae;
}
.vrm-rate-grandtotal-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #b9770f;
}
.vrm-rate-grandtotal-value {
	text-align: right;
	font-size: 22px;
	font-weight: 800;
	color: var(--vrm-ink, #16171b);
	line-height: 1.2;
}
.vrm-rate-currency {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #b9770f;
}
.vrm-rate-note {
	font-size: 12px;
	color: #6b6b70;
	line-height: 1.6;
	margin: 14px 0 0;
}
.vrm-rate-disclaimer {
	font-size: 11.5px;
	color: #8a8a90;
	line-height: 1.7;
	margin: 16px 0 0;
	padding: 3px 14px;
	background: #fafafb;
	border-radius: 10px;
	border: 1px solid #f1f1f2;
}
.vrm-rate-quote-actions {
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin-top: 20px;
}
.vrm-select-vehicle-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 50%;
	text-align: center;
	background: #e77917;
	border-color: #e77917;
    border-bottom: #e77917;
    border-right: #e77917;
	color: #fff !important;
	font-size: 13.5px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none;
	padding: 15px 12px;
	border-radius: 10px;
	margin: 0;
	box-shadow: 0 6px 16px rgba(242, 169, 58, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vrm-select-vehicle-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(242, 169, 58, 0.45);
}
.vrm-email-quote-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 50%;
	text-align: center;
	background: #fff;
	color: #fff !important;
	font-size: 13.5px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 15px 12px;
	margin: 0;
	border: 1.5px solid #e77917;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.vrm-email-quote-btn:hover {
	background: #fdf2e7;
	transform: translateY(-2px);
}
@media (max-width: 420px) {
	.vrm-rate-quote-actions {
		flex-direction: column;
	}
	.vrm-select-vehicle-btn,
	.vrm-email-quote-btn {
		flex: 1 1 auto;
	}
}
.vrm-whatsapp-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 600;
	color: #b9770f;
	text-decoration: none;
}
.vrm-whatsapp-link svg {
	width: 16px;
	height: 16px;
}
.vrm-whatsapp-link:hover {
	color: #e0951f;
}

/* ------------------------------------------------------------------ */
/* Booking Details Form                                                */
/* ------------------------------------------------------------------ */

.vrm-booking-form-wrap {
	--vrm-accent: #e77917;
	--vrm-ink: #16171b;
	max-width: 1800px;
	margin: 0 auto;
	padding: 20px 24px 80px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--vrm-ink);
}
.vrm-booking-empty {
	font-size: 15px;
	padding: 40px 0;
	text-align: center;
	color: #6b6b70;
}
.vrm-booking-errors {
	background: #fdecec;
	border: 1px solid #f6c6c6;
	color: #a12626;
	border-radius: 10px;
	padding: 16px 20px;
	margin-bottom: 24px;
	font-size: 14px;
}
.vrm-booking-errors ul {
	margin: 8px 0 0;
	padding-left: 20px;
}
.vrm-booking-success {
	text-align: center;
	padding: 60px 20px;
	max-width: 640px;
	margin: 0 auto;
}
.vrm-booking-success h2 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 10px;
}
.vrm-booking-success p {
	font-size: 15px;
	color: #55555b;
}

.vrm-booking-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 32px;
	align-items: start;
}

.vrm-booking-form-title {
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 4px;
}
.vrm-booking-form-sub {
	font-size: 14px;
	color: #8a8a90;
	margin: 0 0 24px;
}
.vrm-booking-section-title {
	font-size: 17px;
	font-weight: 700;
	margin: 32px 0 16px;
	padding-top: 20px;
	border-top: 1px solid #ececec;
}

.vrm-booking-main {
	background: #fff;
	border-radius: 16px;
	padding: 28px 28px 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px 20px;
}
.vrm-booking-main .vrm-booking-form-title,
.vrm-booking-main .vrm-booking-form-sub,
.vrm-booking-main .vrm-booking-section-title {
	grid-column: 1 / -1;
}

.vrm-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}
.vrm-form-field label {
	font-size: 12.5px;
	font-weight: 600;
	color: #55555b;
}
.vrm-form-field input,
.vrm-form-field select,
.vrm-form-field textarea {
	padding: 10px 12px;
	border: 1.5px solid #e2e2e5;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	color: var(--vrm-ink);
	background: #fff;
	transition: border-color 0.15s ease;
}
.vrm-form-field input:focus,
.vrm-form-field select:focus,
.vrm-form-field textarea:focus {
	outline: none;
	border-color: var(--vrm-accent);
}
.vrm-form-field .vrm-readonly-field {
	background: #f7f7f8;
	color: #6b6b70;
}
.vrm-form-field textarea {
	resize: vertical;
}

.vrm-booking-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vrm-booking-summary {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.vrm-booking-summary-header {
	background: var(--vrm-accent);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 14px 20px;
}
.vrm-booking-summary-body {
	padding: 18px 20px 20px;
}

.vrm-deposit-panel {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.vrm-deposit-header {
	background: var(--vrm-ink);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 14px 20px;
}
.vrm-deposit-body {
	padding: 20px 20px 24px;
}
.vrm-deposit-note {
	font-size: 11.5px;
	color: #8a8a90;
	line-height: 1.6;
	margin: 0 0 14px;
}
.vrm-checkbox-field {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12.5px;
	color: #55555b;
	line-height: 1.5;
	margin: 16px 0;
	cursor: pointer;
}
.vrm-checkbox-field input {
	margin-top: 2px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	accent-color: var(--vrm-accent);
}
.vrm-checkbox-field a {
	color: var(--vrm-accent);
	font-weight: 600;
}
.g-recaptcha {
	margin: 16px 0;
}
.vrm-booking-submit-btn {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--vrm-accent);
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border: none;
	cursor: pointer;
	padding: 15px 20px;
	border-radius: 10px;
	margin-top: 8px;
	box-shadow: 0 6px 16px rgba(242, 169, 58, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vrm-booking-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(242, 169, 58, 0.45);
}

/* Extras always shown expanded now - no collapse/expand toggle. */
.vrm-extras-toggle-row{
    display:flex;
    align-items:center;
    gap:8px;
}

.vrm-rate-extras-list{
    max-height:220px;
    overflow-y:auto;
    margin-top:6px;
}

/* Disclaimer one-line clamp */
.vrm-disclaimer-clamped{
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:normal;
    margin-bottom:2px;
    font-size:12px;
    color:#888;
    line-height:1.5;
}
.vrm-disclaimer-more-btn{
    all:unset;
    cursor:pointer;
    color:#c07b28;
    font-size:12px !important;
    font-weight:600;
    margin-bottom:12px;
    display:inline-block;
    padding: 0px 12px !important;
    color: #e77917 !important;
    background: #ffffff00 !important;
}
.vrm-disclaimer-more-btn:hover{
    text-decoration:underline;
}

/* Modal */
.vrm-disclaimer-modal{ position:fixed; inset:0; z-index:9999; }
.vrm-disclaimer-modal-backdrop{
    position:absolute; inset:0; background:rgba(0,0,0,.5);
}
.vrm-disclaimer-modal-box{
    position:relative;
    max-width:420px;
    margin:15vh auto 0;
    background:#fff;
    padding:24px;
    border-radius:8px;
    font-size:13px;
    line-height:1.6;
    color:#555;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.vrm-disclaimer-modal-close{
    all:unset;
    cursor:pointer;
    position:absolute;
    top:8px;
    right:12px;
    font-size:20px;
    line-height:1;
    color:#888;
    padding: 4px 7px !important;
    border-radius: 30px !important;
}
.vrm-disclaimer-modal-close:hover{
    color:#333;
}

/* "Email Rate Quote" popup */
.vrm-quote-modal{ position:fixed; inset:0; z-index:9999; }
.vrm-quote-modal-backdrop{
    position:absolute; inset:0; background:rgba(0,0,0,.5);
}
.vrm-quote-modal-box{
    position:relative;
    max-width:400px;
    margin:15vh auto 0;
    background:#fff;
    padding:28px 26px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.vrm-quote-modal-close{
    all:unset;
    cursor:pointer;
    position:absolute;
    top:8px;
    right:12px;
    font-size:20px;
    line-height:1;
    color:#888;
    padding: 4px 7px !important;
    border-radius: 30px !important;
}
.vrm-quote-modal-close:hover{
    color:#333;
}
.vrm-quote-modal-title{
    margin:0 0 6px;
    font-size:18px;
    font-weight:800;
    color:#16171b;
}
.vrm-quote-modal-text{
    margin:0 0 18px;
    font-size:13.5px;
    color:#6b6b70;
    line-height:1.5;
}
.vrm-quote-field-label{
    display:block;
    margin-bottom:6px;
    font-size:12.5px;
    font-weight:700;
    color:#45454a;
    text-transform:uppercase;
    letter-spacing:0.02em;
}
.vrm-quote-email-input{
    display:block;
    width:100%;
    box-sizing:border-box;
    padding:11px 14px;
    font-size:14px;
    border:1px solid #dcdce0;
    border-radius:8px;
    margin-bottom:18px;
}
.vrm-quote-email-input:focus{
    outline:none;
    border-color:#e77917;
    box-shadow:0 0 0 3px rgba(231,121,23,.12);
}
.vrm-quote-submit-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#e77917;
    border:none;
    color:#fff !important;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.02em;
    padding:13px 20px;
    border-radius:10px;
    cursor:pointer;
    box-shadow:0 6px 16px rgba(242, 169, 58, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vrm-quote-submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(242, 169, 58, 0.45);
}
.vrm-quote-submit-btn:disabled{
    opacity:.7;
    cursor:default;
    transform:none;
}
.vrm-quote-form-message{
    font-size:13px;
    margin:-6px 0 14px;
    padding:10px 12px;
    border-radius:8px;
}
.vrm-quote-form-message-success{
    background:#eaf7ee;
    color:#1e7a3c;
}
.vrm-quote-form-message-error{
    background:#fdecec;
    color:#c0392b;
}


/* Vehicle specs (Doors / Passengers / Luggage / Transmission / AC / Stereo) */
.vrm-vehicle-specs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 24px;
}
.vrm-vehicle-spec-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1.5px solid #ececec;
	border-radius: 14px;
	padding: 14px 16px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.vrm-vehicle-spec-item:hover {
	border-color: #e3c290;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}
.vrm-vehicle-spec-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fdf0dc;
	color: var(--vrm-accent, #e77917);
	display: flex;
	align-items: center;
	justify-content: center;
}
.vrm-vehicle-spec-icon svg {
	width: 18px;
	height: 18px;
}
.vrm-vehicle-spec-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.vrm-vehicle-spec-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #9a9aa0;
}
.vrm-vehicle-spec-value {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--vrm-ink, #16171b);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 900px) {
	.vrm-vehicle-specs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.vrm-vehicle-specs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.vrm-vehicle-spec-item {
		padding: 12px 14px;
	}
	.vrm-vehicle-spec-icon {
		width: 34px;
		height: 34px;
	}
}

@media (max-width: 900px) {
	.vrm-booking-grid {
		grid-template-columns: 1fr;
	}
	.vrm-booking-main {
		grid-template-columns: 1fr;
	}
}