/* VanRent — light booking widget · brand: #FD4802 / #121414 / #00BBFE / #E9ECEF · Hanken Grotesk */
:root {
	--vr-primary: #FD4802;
	--vr-ink: #121414;
	--vr-accent: #00BBFE;
	--vr-neutral: #E9ECEF;
	--vr-bg: #ffffff;
	--vr-muted: #6c757d;
	--vr-radius: 18px;
	--vr-shadow: 0 10px 30px rgba(18, 20, 20, .07);
}

.vr-widget,
.vr-widget * {
	font-family: 'Hanken Grotesk', -apple-system, sans-serif;
	box-sizing: border-box;
}

.vr-widget {
	max-width: 100%;
	margin: 0 auto;
	padding: clamp(20px, 4vw, 36px);
	background: var(--vr-bg);
	border: 1px solid var(--vr-neutral);
	border-radius: 24px;
	box-shadow: var(--vr-shadow);
	color: var(--vr-ink);
}

/* Stepper */
.vr-steps {
	display: flex;
	gap: 8px;
	margin-bottom: 28px;
}

.vr-step {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 999px;
	background: var(--vr-neutral);
	color: var(--vr-muted);
	font-size: 13px;
	font-weight: 600;
	transition: .25s;
}

.vr-step i {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	font-style: normal;
	border-radius: 50%;
	background: #fff;
	font-size: 12px;
	font-weight: 800;
}

.vr-step.is-active {
	background: var(--vr-ink);
	color: #fff;
}

.vr-step.is-active i {
	background: var(--vr-primary);
	color: var(--vr-ink);
}

.vr-step.is-done {
	background: rgba(0, 187, 254, .12);
	color: var(--vr-accent);
}

/* Panels */
.vr-panel {
	display: none;
	animation: vr-in .3s ease;
}

.vr-panel.is-active {
	display: block;
}

.vr-panel[data-panel="2"],
.vr-panel[data-panel="3"] {
	max-width: 760px;
	margin: 0 auto;
}

@keyframes vr-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vr-panel {
		animation: none;
	}
}

/* Van cards */
.vr-vans {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	margin-bottom: 22px;
}

@media (min-width: 992px) {
	.vr-vans {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1200px) {
	.vr-vans {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vr-van input {
	position: absolute;
	opacity: 0;
}

.vr-van__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid var(--vr-neutral);
	border-radius: var(--vr-radius);
	background: #fff;
	transition: .2s;
}

.vr-van__card:hover {
	border-color: var(--vr-accent);
	transform: translateY(-2px);
}

.vr-van input:checked+.vr-van__card {
	border-color: var(--vr-primary);
	box-shadow: 0 0 0 4px rgba(253, 72, 2, .18);
}

.vr-van input:focus-visible+.vr-van__card {
	outline: 3px solid var(--vr-accent);
	outline-offset: 2px;
}

.vr-van__img {
	width: 100%;
	height: 130px;
	object-fit: cover;
}

.vr-van__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px;
}

.vr-van__tag {
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.vr-van__tag--small {
	background: rgba(0, 187, 254, .14);
	color: #0089bb;
}

.vr-van__tag--big {
	background: rgba(253, 72, 2, .16);
	color: #c23700;
}

.vr-van__name {
	font-size: 16px;
}

.vr-van__meta {
	font-size: 13px;
	color: var(--vr-muted);
}

.vr-van__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 10px;
	border-top: 1.5px solid var(--vr-neutral);
}

.vr-van__price {
	font-size: 20px;
	font-weight: 800;
}

.vr-van__price small {
	font-size: 12px;
	font-weight: 600;
	color: var(--vr-muted);
}

.vr-van__learn-more {
	font-size: 13px;
	font-weight: 700;
	color: var(--vr-primary);
	text-decoration: none;
	transition: color 0.2s;
}

.vr-van__learn-more:hover {
	color: var(--vr-ink);
}

/* Dates + fields */
.vr-dates {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.vr-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.vr-fields__full {
	grid-column: 1 / -1;
}

.vr-widget label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
}

.vr-widget input[type=date],
.vr-widget input[type=text],
.vr-widget input[type=email],
.vr-widget input[type=tel],
.vr-widget textarea {
	padding: 13px 14px;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 14px;
	font-size: 15px;
	font-weight: 500;
	background: #fff;
	transition: border-color .2s;
}

.vr-widget input:focus,
.vr-widget textarea:focus {
	outline: none;
	border-color: var(--vr-primary);
}

/* Quote + summary */
.vr-quote,
.vr-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	padding: 15px 18px;
	border-radius: 14px;
	background: rgba(0, 187, 254, .08);
	font-size: 15px;
}

.vr-quote strong,
.vr-summary strong {
	font-size: 19px;
}

.vr-note {
	margin: 0 0 16px;
	padding: 12px 16px;
	border-radius: 12px;
	background: rgba(253, 72, 2, .1);
	font-size: 14px;
}

/* Buttons */
.vr-btn {
	padding: 15px 28px;
	border: 0;
	border-radius: 16px;
	cursor: pointer;
	background: var(--vr-primary);
	color: var(--vr-ink);
	font-size: 15px;
	font-weight: 800;
	transition: .2s;
}

.vr-btn:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(253, 72, 2, .35);
}

.vr-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
}

.vr-btn--ghost {
	background: var(--vr-neutral);
}

.vr-actions {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}

.vr-error {
	margin: 0 0 14px;
	padding: 12px 16px;
	border-radius: 12px;
	background: #fdecec;
	color: #b3261e;
	font-size: 14px;
	font-weight: 600;
}

#vr-payment-element {
	margin-bottom: 6px;
}

/* Success */
.vr-success {
	text-align: center;
	padding: 30px 10px;
}

.vr-success__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--vr-primary);
	color: var(--vr-ink);
	font-size: 34px;
	font-weight: 800;
}

.vr-success h3 {
	margin: 0 0 10px;
	font-size: 24px;
}

.vr-success p {
	color: var(--vr-muted);
	max-width: 46ch;
	margin: 0 auto;
}

@media (max-width: 560px) {

	.vr-dates,
	.vr-fields {
		grid-template-columns: 1fr;
	}

	.vr-steps {
		flex-direction: column;
	}
}

/* Filters Panel */
.vr-filters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin-bottom: 22px;
	padding: 16px;
	background: var(--vr-neutral);
	border-radius: var(--vr-radius);
}

.vr-filter-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.vr-filter-item label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--vr-muted);
	letter-spacing: .5px;
}

.vr-filter-item select {
	padding: 10px 12px;
	border: 1.5px solid transparent;
	border-radius: 10px;
	background: #ffffff;
	font-size: 13px;
	font-weight: 600;
	color: var(--vr-ink);
	cursor: pointer;
	transition: .2s;
}

.vr-filter-item select:focus {
	outline: none;
	border-color: var(--vr-accent);
}

/* Extras Section */
.vr-extras {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1.5px solid var(--vr-neutral);
}

.vr-extras h3 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
}

.vr-extras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 12px;
}

.vr-extra-item {
	position: relative;
	cursor: pointer;
}

.vr-extra-item input {
	position: absolute;
	opacity: 0;
}

.vr-extra-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	border: 2px solid var(--vr-neutral);
	border-radius: 14px;
	background: #ffffff;
	transition: .2s;
}

.vr-extra-item:hover .vr-extra-box {
	border-color: var(--vr-accent);
}

.vr-extra-item input:checked+.vr-extra-box {
	border-color: var(--vr-primary);
	background: rgba(253, 72, 2, .03);
	box-shadow: 0 0 0 3px rgba(253, 72, 2, .12);
}

.vr-extra-box strong {
	font-size: 14px;
	font-weight: 700;
}

.vr-extra-box span {
	font-size: 12px;
	font-weight: 600;
	color: var(--vr-muted);
}

.vr-extra-item input:checked+.vr-extra-box span {
	color: var(--vr-primary);
	font-weight: 700;
}

/* Card Specifications Row */
.vr-van__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
	margin-bottom: 10px;
}

.vr-spec-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--vr-muted);
	font-weight: 600;
}

.vr-spec-item svg {
	opacity: 0.8;
}

/* Included Features Badges */
.vr-van__features {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}

.vr-fbadge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	border-radius: 6px;
	background: var(--vr-neutral);
	color: var(--vr-ink);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .3px;
}

.vr-fbadge svg {
	fill: var(--vr-primary);
}

/* Disabled Extras Checkboxes */
.vr-extra-item.is-disabled {
	opacity: 0.4;
	pointer-events: none;
	cursor: not-allowed;
}

.vr-extra-item.is-disabled .vr-extra-box {
	background: #fafafa;
	border-color: #eee;
}

/* Visual FAQ Accordion Styles */
.vr-van__faq-section {
	margin-top: 10px;
	margin-bottom: 12px;
	border-top: 1px dashed #e9ecef;
	padding-top: 8px;
	width: 100%;
}

.vr-faq-toggle {
	background: transparent;
	border: none;
	padding: 6px 0;
	color: var(--vr-primary);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-align: left;
	transition: color 0.2s;
	outline: none;
}

.vr-faq-toggle:hover {
	color: var(--vr-ink);
}

.vr-faq-toggle svg {
	transition: transform 0.2s;
}

.vr-faq-toggle.is-active svg {
	transform: rotate(180deg);
}

.vr-van__faq-accordion {
	background: var(--vr-neutral);
	border-radius: 8px;
	padding: 8px 12px;
	margin-top: 6px;
	font-size: 13px;
	max-height: 180px;
	overflow-y: auto;
	text-align: left;
}

.vr-faq-item {
	padding: 8px 0;
	border-bottom: 1px solid rgba(18, 20, 20, 0.05);
}

.vr-faq-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.vr-faq-question {
	display: block;
	font-weight: 700;
	color: var(--vr-ink);
	margin-bottom: 3px;
	font-size: 12px;
}

.vr-faq-answer {
	margin: 0;
	color: var(--vr-muted);
	line-height: 1.4;
	font-size: 12px;
}

/* Theme Container Reset for Single Van Page */
body.single-vr_van #primary,
body.single-vr_van #main,
body.single-vr_van .site-main,
body.single-vr_van .content-area,
body.single-vr_van .entry-content,
body.single-vr_van article,
body.single-vr_van .post,
body.single-vr_van .container,
body.single-vr_van .ast-container,
body.single-vr_van .site-content {
	max-width: 100% !important;
	width: 100% !important;
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 auto !important;
	overflow: visible !important;
}

/* Single Van Layout & Cards */
.vr-single-van-layout {
	font-family: 'Hanken Grotesk', -apple-system, sans-serif;
	color: var(--vr-ink);
	background: #f8f9fa;
	padding: 36px 0 60px;
	width: 100%;
	max-width: 100%;
}

.vr-single-van-layout .vr-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.vr-single-nav {
	margin-bottom: 20px;
}

.vr-back-link {
	display: inline-flex;
	align-items: center;
	color: var(--vr-muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: color 0.2s;
}

.vr-back-link:hover {
	color: var(--vr-primary);
}

.vr-single-header {
	margin-bottom: 24px;
	text-align: left;
	background: #ffffff;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 20px;
	padding: 24px 28px;
	box-shadow: 0 10px 30px rgba(18, 20, 20, 0.03);
}

.vr-back-to-fleet-btn {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--vr-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.vr-back-to-fleet-btn:hover {
	color: var(--vr-primary);
}

.vr-single-van-layout h1.vr-single-title {
	font-size: clamp(20px, 4.5vw, 32px) !important;
	font-weight: 800 !important;
	margin: 0 !important;
	letter-spacing: -0.5px !important;
	line-height: 1.2 !important;
}

.vr-single-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 32px;
	align-items: start;
	width: 100%;
	position: relative;
}

.vr-single-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	text-align: left;
	background: #ffffff;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 24px;
	padding: clamp(20px, 4vw, 36px);
	box-shadow: 0 10px 30px rgba(18, 20, 20, 0.03);
	min-width: 0;
	overflow: hidden;
	/* Guarantees all text, specs, and badges stay 100% inside the white card */
}

.vr-single-gallery {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	background: var(--vr-neutral);
}

.vr-single-hero-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.vr-single-placeholder-img {
	height: 320px;
	display: grid;
	place-items: center;
	background: #f1f3f5;
	border-radius: 20px;
}

.vr-single-section h2 {
	font-size: clamp(18px, 3vw, 22px);
	font-weight: 700;
	margin: 0 0 16px;
	border-bottom: 1.5px solid var(--vr-neutral);
	padding-bottom: 10px;
	color: var(--vr-ink);
}

.vr-single-specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	width: 100%;
}

.vr-single-spec-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: var(--vr-neutral);
	border-radius: 14px;
	min-width: 0;
	overflow: hidden;
}

.vr-single-spec-card div {
	min-width: 0;
	flex: 1;
	overflow: hidden;
}

.vr-spec-svg {
	width: 22px;
	height: 22px;
	color: var(--vr-primary);
	flex-shrink: 0;
}

.vr-single-spec-card strong {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	color: var(--vr-muted);
	letter-spacing: 0.5px;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vr-single-spec-card span {
	font-size: 13px;
	font-weight: 700;
	color: var(--vr-ink);
	line-height: 1.3;
	display: block;
	word-break: break-word;
	overflow-wrap: break-word;
}

.vr-single-features-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.vr-feature-capsule {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #ffffff;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--vr-ink);
	max-width: 100%;
	word-break: break-word;
}

.vr-feat-svg {
	width: 16px;
	height: 16px;
	color: var(--vr-primary);
	flex-shrink: 0;
}

.vr-single-desc-content {
	font-size: 15px;
	line-height: 1.65;
	color: #333333;
	width: 100%;
	max-width: 100%;
	word-break: break-word;
	overflow-wrap: break-word;
}

.vr-single-desc-content h1,
.vr-single-desc-content h2,
.vr-single-desc-content h3,
.vr-single-desc-content h4 {
	color: var(--vr-ink);
	font-weight: 800;
	margin: 24px 0 12px;
	line-height: 1.3;
	word-break: break-word;
	overflow-wrap: break-word;
}

.vr-single-desc-content h1 {
	font-size: clamp(20px, 4.5vw, 26px);
}

.vr-single-desc-content h2 {
	font-size: clamp(18px, 4vw, 22px);
}

.vr-single-desc-content h3 {
	font-size: clamp(16px, 3.5vw, 19px);
}

.vr-single-desc-content h4 {
	font-size: clamp(15px, 3vw, 17px);
}

.vr-single-desc-content p {
	margin: 0 0 16px;
	word-break: break-word;
	overflow-wrap: break-word;
}

.vr-single-desc-content ul,
.vr-single-desc-content ol {
	padding-left: 20px;
	margin: 12px 0 18px;
	max-width: 100%;
}

.vr-single-desc-content li {
	margin-bottom: 8px;
	line-height: 1.5;
	word-break: break-word;
	overflow-wrap: break-word;
}

.vr-single-desc-content p:last-child {
	margin-bottom: 0;
}

/* FAQ Accordions on Single Page */
.vr-single-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vr-single-faq-item {
	border: 1.5px solid var(--vr-neutral);
	border-radius: 14px;
	overflow: hidden;
	background: #ffffff;
}

.vr-single-faq-details[open] {
	background: var(--vr-neutral);
}

.vr-single-faq-summary {
	padding: 16px 20px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	outline: none;
}

.vr-single-faq-summary::-webkit-details-marker {
	display: none;
}

.vr-summary-chevron {
	width: 16px;
	height: 16px;
	transition: transform 0.2s;
	color: var(--vr-muted);
}

.vr-single-faq-details[open] .vr-summary-chevron {
	transform: rotate(180deg);
}

.vr-single-faq-answer-box {
	padding: 0 20px 18px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--vr-muted);
}

.vr-single-faq-answer-box p {
	margin: 0;
}

/* Sidebar & Sticky Booking widget */
.vr-single-sidebar {
	position: sticky;
	top: 32px;
	z-index: 100;
}

body.admin-bar .vr-single-sidebar {
	top: 64px;
}

.vr-single-sticky-card {
	background: #ffffff;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.vr-sticky-price-header {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	border-bottom: 1.5px solid var(--vr-neutral);
	padding-bottom: 16px;
	text-align: left;
}

.vr-sticky-price-header span {
	font-size: 11px;
	color: var(--vr-muted);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.vr-sticky-price-header strong {
	font-size: 28px;
	font-weight: 800;
	color: var(--vr-primary);
	margin-top: 4px;
}

/* Single page shortcode overrides */
.vr-widget--single .vr-filters,
.vr-widget--single .vr-vans {
	display: none !important;
}

.vr-widget--single {
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.vr-widget--single .vr-dates,
.vr-widget--single .vr-fields {
	grid-template-columns: 1fr !important;
	gap: 12px !important;
	width: 100% !important;
}

.vr-widget--single .vr-steps {
	gap: 6px !important;
	width: 100% !important;
}

.vr-widget--single select,
.vr-widget--single input {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Responsive breakpoint overrides */
@media (max-width: 900px) {
	.vr-single-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vr-single-sidebar {
		position: static;
		width: 100%;
	}
}

/* Gallery Slider Thumbnails */
.vr-gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
	padding: 0 4px;
}

.vr-thumb-btn {
	background: transparent;
	border: 2px solid transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
	width: 70px;
	height: 50px;
	transition: border-color 0.2s, transform 0.2s;
	flex-shrink: 0;
	outline: none;
}

.vr-thumb-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vr-thumb-btn:hover {
	transform: scale(1.05);
}

.vr-thumb-btn.is-active {
	border-color: var(--vr-primary);
	box-shadow: 0 0 0 3px rgba(253, 72, 2, 0.15);
}

/* Related Vans Footer Section */
.vr-related-vans-section {
	margin-top: 54px;
	padding-top: 40px;
	border-top: 1.5px solid var(--vr-neutral);
	text-align: left;
	width: 100%;
}

.vr-related-vans-section h2 {
	font-size: clamp(20px, 3.5vw, 26px);
	font-weight: 800;
	margin: 0 0 24px;
	color: var(--vr-ink);
	letter-spacing: -0.5px;
}

.vr-related-vans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.vr-related-van-card {
	border: 1.5px solid var(--vr-neutral);
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	transition: border-color 0.2s, transform 0.2s;
	display: flex;
	flex-direction: column;
}

.vr-related-van-card:hover {
	border-color: var(--vr-accent);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.vr-related-card-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.vr-related-img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	display: block;
}

.vr-related-placeholder-img {
	height: 170px;
	background: #f1f3f5;
	display: grid;
	place-items: center;
	color: var(--vr-muted);
}

.vr-related-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.vr-related-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--vr-ink);
	line-height: 1.3;
}

.vr-related-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.vr-related-specs span {
	font-size: 12px;
	color: var(--vr-muted);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.vr-related-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1.5px solid var(--vr-neutral);
}

.vr-related-price {
	font-size: 18px;
	color: var(--vr-ink);
}

.vr-related-price strong {
	font-weight: 800;
}

.vr-related-price small {
	font-size: 11px;
	font-weight: 600;
	color: var(--vr-muted);
}

.vr-related-btn {
	font-size: 13px;
	font-weight: 700;
	color: var(--vr-primary);
	transition: color 0.2s;
}

.vr-related-van-card:hover .vr-related-btn {
	color: var(--vr-ink);
}

/* Search Bar Shortcode */
.vr-search-bar-container {
	width: 100%;
	background: #ffffff;
	border: 1px solid var(--vr-neutral);
	border-radius: 20px;
	box-shadow: var(--vr-shadow);
	padding: 20px;
	margin-bottom: 30px;
}

.vr-search-bar-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	align-items: end;
}

.vr-sb-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
	position: relative;
}

.vr-sb-field label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--vr-muted);
	letter-spacing: 0.5px;
}

.vr-sb-field select,
.vr-sb-date-text {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--vr-ink);
	background: #ffffff;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s;
}

.vr-sb-field select:focus,
.vr-sb-date-text:hover {
	border-color: var(--vr-primary);
}

.vr-sb-date-text.has-value {
	color: var(--vr-ink);
}

.vr-sb-submit {
	width: 100%;
	height: 48px;
	background: var(--vr-primary);
	border: none;
	border-radius: 12px;
	color: var(--vr-ink);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
}

.vr-sb-submit:hover {
	background: var(--vr-ink);
	color: #ffffff;
}

.vr-sb-submit:active {
	transform: scale(0.98);
}

/* 3-Month Range Calendar Dropdown Overhaul */
.vr-sb-calendar-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	left: auto;
	transform: none;
	z-index: 99999;
	width: 780px !important;
	max-width: 90vw !important;
	background: #ffffff;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(18, 20, 20, 0.18);
	padding: 24px;
	box-sizing: border-box;
}

.vr-sb-calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	border-bottom: 1.5px solid var(--vr-neutral);
	padding-bottom: 10px;
}

.vr-sb-calendar-header span {
	font-size: 13px;
	font-weight: 700;
	color: var(--vr-ink);
}

.vr-sb-calendar-close {
	background: none;
	border: none;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	color: var(--vr-muted);
}

.vr-sb-calendar-close:hover {
	color: var(--vr-ink);
}

.vr-sb-calendar-months {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
}

.vr-cal-month {
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.vr-cal-month h3 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--vr-ink);
	text-align: center;
	text-transform: capitalize;
}

.vr-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	width: 100%;
	box-sizing: border-box;
}

.vr-cal-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	font-size: 11px;
	font-weight: 600;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	overflow: hidden;
}

.vr-cal-header {
	color: var(--vr-muted);
	font-weight: 700;
	font-size: 10px;
	text-transform: uppercase;
}

.vr-cal-day {
	cursor: pointer;
	border-radius: 8px;
	color: var(--vr-ink);
	transition: background 0.15s, color 0.15s;
}

.vr-cal-day:hover:not(.is-disabled) {
	background: var(--vr-neutral);
}

.vr-cal-day.is-disabled {
	color: #ccc;
	cursor: default;
}

.vr-cal-day.is-booked {
	color: #c0c0c0 !important;
	text-decoration: line-through;
	background: #f1f3f5 !important;
	cursor: not-allowed;
}

.vr-cal-day.is-start,
.vr-cal-day.is-end {
	background: var(--vr-primary) !important;
	color: var(--vr-ink) !important;
	font-weight: 700;
	border-radius: 8px;
}

.vr-cal-day.is-in-range {
	background: rgba(253, 72, 2, 0.12);
	border-radius: 0;
}

.vr-cal-day.is-hover-range {
	background: rgba(253, 72, 2, 0.06);
	border-radius: 0;
}

/* Responsive Calendar for Mobile & Tablet */
@media (max-width: 820px) {
	.vr-search-bar-form {
		grid-template-columns: 1fr;
	}

	.vr-sb-calendar-dropdown {
		position: fixed !important;
		top: 50% !important;
		left: 50% !important;
		right: auto !important;
		transform: translate(-50%, -50%) !important;
		width: 92vw !important;
		max-height: 85vh !important;
		overflow-y: auto !important;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
	}

	.vr-sb-calendar-months {
		display: flex !important;
		flex-direction: column !important;
		gap: 20px !important;
	}
}

/* Vans Random Slider */
.vr-vans-slider-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 40px;
}

.vr-slider-header {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 16px;
}

.vr-slider-nav-btn {
	background: #ffffff;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--vr-ink);
	transition: background 0.2s, border-color 0.2s;
	padding: 0;
}

.vr-slider-nav-btn:hover {
	background: var(--vr-neutral);
	border-color: var(--vr-primary);
}

.vr-slider-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	gap: 20px;
	padding: 4px;
	scrollbar-width: none;
}

.vr-slider-track::-webkit-scrollbar {
	display: none;
}

.vr-slider-card {
	flex: 0 0 calc(33.333% - 14px);
	scroll-snap-align: start;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	transition: border-color 0.2s, transform 0.2s;
	display: flex;
	flex-direction: column;
}

.vr-slider-card:hover {
	border-color: var(--vr-accent);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.vr-slider-card-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.vr-slider-img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

.vr-slider-placeholder-img {
	height: 160px;
	background: #f1f3f5;
	display: grid;
	place-items: center;
	color: var(--vr-muted);
}

.vr-slider-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	text-align: left;
}

.vr-slider-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--vr-ink);
	line-height: 1.3;
}

.vr-slider-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.vr-slider-specs span {
	font-size: 11px;
	color: var(--vr-muted);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.vr-slider-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1.5px solid var(--vr-neutral);
}

.vr-slider-price {
	font-size: 16px;
	color: var(--vr-ink);
}

.vr-slider-price strong {
	font-weight: 800;
}

.vr-slider-price small {
	font-size: 10px;
	font-weight: 600;
	color: var(--vr-muted);
}

.vr-slider-btn {
	font-size: 12px;
	font-weight: 700;
	color: var(--vr-primary);
	transition: color 0.2s;
}

.vr-slider-card:hover .vr-slider-btn {
	color: var(--vr-ink);
}

@media (max-width: 900px) {
	.vr-slider-card {
		flex: 0 0 calc(50% - 10px);
	}
}

@media (max-width: 500px) {
	.vr-slider-card {
		flex: 0 0 100%;
	}
}

/* 2026 Climate Control / AC Badges & Cards UI/UX */
.vr-fbadge--ac,
.vr-feat-ac {
	background: linear-gradient(135deg, rgba(0, 187, 254, 0.15), rgba(0, 187, 254, 0.05)) !important;
	color: #0077a8 !important;
	border: 1px solid rgba(0, 187, 254, 0.3) !important;
	font-weight: 700 !important;
}

.vr-feature-capsule.vr-feat-ac {
	background: rgba(0, 187, 254, 0.08);
	border-color: rgba(0, 187, 254, 0.25);
	color: #006694;
}

.vr-feature-capsule.vr-feat-ac svg {
	fill: #0088cc;
}

/* 2026 Single Van Gallery & Thumbnails */
.vr-gallery-main {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.vr-single-hero-img {
	width: 100%;
	height: clamp(280px, 45vw, 460px);
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
}

.vr-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	color: #121414;
	border: none;
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 3;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vr-gallery-arrow:hover {
	background: #ffffff;
	transform: translateY(-50%) scale(1.08);
}

.vr-gallery-prev {
	left: 12px;
}

.vr-gallery-next {
	right: 12px;
}

.vr-gallery-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-behavior: smooth;
}

.vr-thumb-btn {
	flex: 0 0 80px;
	height: 60px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	background: #f0f0f0;
	cursor: pointer;
	opacity: 0.65;
	transition: all 0.25s ease;
}

.vr-thumb-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vr-thumb-btn:hover {
	opacity: 0.95;
	transform: translateY(-2px);
}

.vr-thumb-btn.is-active {
	opacity: 1;
	border-color: var(--vr-primary, #FD4802);
	box-shadow: 0 4px 12px rgba(253, 72, 2, 0.25);
}

/* Mobile UI/UX Design System Overhaul */
@media (max-width: 768px) {

	.vr-dates,
	.vr-fields {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		width: 100% !important;
	}

	.vr-steps {
		flex-direction: column !important;
		gap: 6px !important;
		width: 100% !important;
	}

	.vr-widget select,
	.vr-widget input,
	.vr-widget label {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.vr-filters {
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	.vr-vans {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	.vr-widget {
		padding: 16px !important;
	}
}

@media (max-width: 600px) {
	.vr-single-van-layout {
		padding: 16px 0 32px;
	}

	.vr-single-van-layout .vr-container {
		padding: 0 14px;
	}

	.vr-single-header {
		margin-bottom: 20px;
	}

	.vr-single-specs-grid {
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	.vr-single-spec-card {
		padding: 12px 14px !important;
		gap: 10px;
		border-radius: 12px;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	.vr-single-spec-card span {
		white-space: normal !important;
		word-break: break-word !important;
		overflow-wrap: anywhere !important;
		font-size: 13px !important;
	}

	.vr-spec-svg {
		width: 22px;
		height: 22px;
	}

	.vr-single-spec-card strong {
		font-size: 10px;
	}

	.vr-single-gallery {
		border-radius: 14px;
	}

	.vr-gallery-main {
		border-radius: 14px !important;
	}

	.vr-single-hero-img {
		height: 220px !important;
	}

	.vr-gallery-thumbs {
		gap: 8px;
		margin-top: 10px;
	}

	.vr-thumb-btn {
		flex: 0 0 68px;
		height: 52px;
		border-radius: 10px;
	}

	.vr-single-features-grid {
		gap: 8px;
	}

	.vr-feature-capsule {
		padding: 6px 12px;
		font-size: 12px;
		border-radius: 10px;
	}

	.vr-single-sticky-card {
		padding: 18px 14px;
		border-radius: 16px;
	}

	.vr-sticky-price-header strong {
		font-size: 24px;
	}

	.vr-related-vans-section {
		margin-top: 36px;
		padding-top: 28px;
	}

	.vr-related-vans-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* 2026 Stepper & Date Form High-Visibility Pulse Highlights */
@keyframes vr-pulse-highlight {
	0% {
		box-shadow: 0 0 0 0px rgba(253, 72, 2, 0.5);
		border-color: var(--vr-primary, #FD4802);
	}

	50% {
		box-shadow: 0 0 0 10px rgba(253, 72, 2, 0.2);
		border-color: var(--vr-accent, #00BBFE);
	}

	100% {
		box-shadow: 0 0 0 0px rgba(253, 72, 2, 0);
	}
}

.vr-pulse-active {
	animation: vr-pulse-highlight 1.2s ease-in-out 2 !important;
}

/* Floating mobile CTA Bar styling */
.vr-mobile-cta-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 12px 16px;
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
}
.vr-mobile-cta-bar.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.vr-btn--mobile-cta {
	width: 100%;
	max-width: 480px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(253, 72, 2, 0.3);
}

/* Hide on desktop views */
@media (min-width: 901px) {
	.vr-mobile-cta-bar {
		display: none !important;
	}
}