/* 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: 1200px; 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;
}

/* Single Van Layout */
.vr-single-van-layout {
	font-family: 'Hanken Grotesk', sans-serif;
	color: var(--vr-ink);
	background: #ffffff;
	padding: 40px 0;
}
.vr-single-van-layout .vr-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.vr-single-nav {
	margin-bottom: 24px;
}
.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: 30px;
	text-align: left;
}
.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: 40px;
	align-items: start;
}
.vr-single-content {
	display: flex;
	flex-direction: column;
	gap: 36px;
	text-align: left;
}
.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(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}
.vr-single-spec-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: var(--vr-neutral);
	border-radius: 16px;
}
.vr-spec-svg {
	width: 24px;
	height: 24px;
	color: var(--vr-primary);
	flex-shrink: 0;
}
.vr-single-spec-card strong {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	color: var(--vr-muted);
	letter-spacing: 0.5px;
	line-height: 1.2;
}
.vr-single-spec-card span {
	font-size: 14px;
	font-weight: 700;
	color: var(--vr-ink);
}
.vr-single-features-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.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);
}
.vr-feat-svg {
	width: 16px;
	height: 16px;
	color: var(--vr-primary);
}
.vr-single-desc-content {
	font-size: 15px;
	line-height: 1.6;
	color: #4a4a4a;
}
.vr-single-desc-content p {
	margin: 0 0 16px;
}
.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;
}
.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;
}

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

/* 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 */
.vr-sb-calendar-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	width: 90vw;
	max-width: 860px;
	background: #ffffff;
	border: 1.5px solid var(--vr-neutral);
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(18, 20, 20, 0.15);
	padding: 20px;
}
.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: flex;
	gap: 24px;
	overflow-x: auto;
}
.vr-cal-month {
	flex: 1;
	min-width: 240px;
}
.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: 4px;
}
.vr-cal-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	font-size: 12px;
	font-weight: 600;
}
.vr-cal-header {
	color: var(--vr-muted);
	font-weight: 700;
}
.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 Search Bar */
@media (max-width: 900px) {
	.vr-search-bar-form {
		grid-template-columns: 1fr;
	}
	.vr-sb-calendar-dropdown {
		left: 0;
		transform: none;
		width: calc(100vw - 40px);
	}
	.vr-sb-calendar-months {
		flex-direction: column;
		gap: 20px;
		max-height: 300px;
		overflow-y: auto;
	}
}

/* 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%;
	}
}
