/* Shared glassmorphism */
.vwe-vs-glass {
	background: rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.48);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.vwe-vs-grid {
	display: grid;
	gap: var(--vwe-vs-gap, 24px);
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 600px) {
	.vwe-vs-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vwe-vs-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vwe-vs-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
	.vwe-vs-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.vwe-vs-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.vwe-vs-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	background: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-radius: var(--vwe-vs-radius, 12px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.45);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vwe-vs-card--shadow {
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.16);
}

.vwe-vs-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.65);
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
}

.vwe-vs-card__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.vwe-vs-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
	overflow: hidden;
}

.vwe-vs-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vwe-vs-card__media--swap .vwe-vs-card__img--secondary {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.vwe-vs-card:hover .vwe-vs-card__media--swap .vwe-vs-card__img--secondary,
.vwe-vs-card__media--swap.is-hover .vwe-vs-card__img--secondary {
	opacity: 1;
}

.vwe-vs-card__media--slideshow {
	--vwe-vs-slideshow-speed: 1200ms;
}

.vwe-vs-card__slideshow-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 3;
	background: rgba(255, 255, 255, 0.35);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.vwe-vs-card__media--slideshow.is-slideshow-active .vwe-vs-card__slideshow-progress {
	opacity: 1;
}

.vwe-vs-card__slideshow-progress-fill {
	display: block;
	width: 0;
	height: 100%;
	background: var(--vwe-vs-accent, #1a56db);
	transform-origin: left center;
}

.vwe-vs-card__slideshow-progress-fill.is-animating {
	animation: vwe-vs-slideshow-progress var(--vwe-vs-slideshow-speed, 1200ms) linear forwards;
}

@keyframes vwe-vs-slideshow-progress {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

.vwe-vs-card__media--slideshow .vwe-vs-card__img--primary {
	transition: opacity 0.35s ease;
}

.vwe-vs-card__media--slideshow.is-fading .vwe-vs-card__img--primary {
	opacity: 0.2;
}

@media (prefers-reduced-motion: reduce) {
	.vwe-vs-card__slideshow-progress-fill.is-animating {
		animation: none;
		width: 100%;
	}
}

.vwe-vs-card__price {
	position: absolute;
	right: 12px;
	bottom: 12px;
	background: var(--vwe-vs-accent, #1a56db);
	color: #fff;
	padding: 6px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	box-shadow: 0 4px 14px color-mix(in srgb, var(--vwe-vs-accent, #1a56db) 35%, transparent);
}

.vwe-vs-card__body {
	flex: 1 1 auto;
	padding: 16px 18px 14px;
	background: rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.vwe-vs-card__title {
	margin: 0 0 6px;
	font-size: 1.1rem;
	line-height: 1.3;
}

.vwe-vs-card__type {
	margin: 0;
	color: #6b7280;
	font-size: 0.92rem;
}

.vwe-vs-card__footer {
	flex-shrink: 0;
	margin-top: auto;
	padding: 9px 16px 11px;
	background: #f8fafc;
	border-top: 1px solid #eef1f5;
}

.vwe-vs-card__specs {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.vwe-vs-card__specs-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	color: #64748b;
	font-size: 0.74rem;
	line-height: 1.35;
}

.vwe-vs-card__specs-line--secondary {
	color: #94a3b8;
	font-size: 0.72rem;
}

.vwe-vs-card__specs-part {
	white-space: nowrap;
}

.vwe-vs-card__specs-sep {
	flex-shrink: 0;
	margin: 0 7px;
	color: #cbd5e1;
	font-size: 0.72rem;
	line-height: 1;
	user-select: none;
}

.vwe-vs-card__specs--compact .vwe-vs-card__specs-line {
	font-size: 0.72rem;
}

.vwe-vs-card__status {
	display: inline-block;
	margin-top: 10px;
	font-size: 0.8rem;
	color: var(--vwe-vs-accent, #1a56db);
	font-weight: 600;
}

.vwe-vs-card--compact .vwe-vs-card__body {
	padding: 12px 14px 14px;
}

.vwe-vs-card__price-inline {
	color: var(--vwe-vs-accent, #1a56db);
	font-size: 1rem;
}

.vwe-vs-layout-horizontal .vwe-vs-grid,
.vwe-vs-grid.vwe-vs-layout-horizontal {
	grid-template-columns: 1fr;
}

.vwe-vs-card--horizontal .vwe-vs-card__link--horizontal {
	display: grid;
	grid-template-columns: 280px 1fr;
	grid-template-rows: 1fr auto;
	min-height: 100%;
	height: 100%;
}

@media (max-width: 700px) {
	.vwe-vs-card--horizontal .vwe-vs-card__link--horizontal {
		grid-template-columns: 1fr;
	}
}

.vwe-vs-card--horizontal .vwe-vs-card__media {
	grid-column: 1;
	grid-row: 1;
	aspect-ratio: auto;
	min-height: 180px;
}

.vwe-vs-card--horizontal .vwe-vs-card__body {
	grid-column: 2;
	grid-row: 1;
}

.vwe-vs-card--horizontal .vwe-vs-card__footer {
	grid-column: 1 / -1;
	grid-row: 2;
	margin-top: 0;
}

.vwe-vs-card__desc {
	color: #4b5563;
	font-size: 0.9rem;
	margin: 8px 0 0;
}

.vwe-vs-empty {
	padding: 24px;
	background: #f9fafb;
	border: 1px dashed #d1d5db;
	border-radius: 8px;
	text-align: center;
}

/* Single vehicle detail page */
.vwe-vs-single {
	padding: 24px 16px 64px;
	color: #111827;
}

.vwe-vs-single__container {
	max-width: 1140px;
	margin: 8rem auto 0;
}

.vwe-vs-single__nav-block {
	margin-bottom: 28px;
}

.vwe-vs-single__nav {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.vwe-vs-single__nav-help {
	margin: 10px 0 0;
	max-width: 36rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: #6b7280;
}

.vwe-vs-single__nav-help a {
	color: var(--vwe-vs-accent, #1a56db);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.15s ease;
}

.vwe-vs-single__nav-help a:hover {
	color: #1546b8;
}

.vwe-vs-single__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid #d1d5db;
	border-radius: 50%;
	background: #fff;
	color: #374151;
	text-decoration: none;
	font-size: 1.1rem;
	line-height: 1;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.vwe-vs-single__nav-btn:hover:not([aria-disabled="true"]) {
	color: var(--vwe-vs-accent, #1a56db);
	border-color: var(--vwe-vs-accent, #1a56db);
	background: #f8fafc;
}

.vwe-vs-single__nav-btn[aria-disabled="true"] {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

.vwe-vs-single__nav-position {
	font-size: 0.875rem;
	font-weight: 500;
	color: #6b7280;
	min-width: 3.5rem;
	text-align: center;
	text-decoration: none;
	transition: color 0.15s ease;
}

.vwe-vs-single__nav-position:hover {
	color: var(--vwe-vs-accent, #1a56db);
}

.vwe-vs-single__nav-fallback {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6b7280;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.15s ease;
}

.vwe-vs-single__nav-fallback:hover {
	color: var(--vwe-vs-accent, #1a56db);
}

.vwe-vs-single__nav.is-context .vwe-vs-single__nav-fallback {
	display: none;
}

.vwe-vs-single__nav:not(.is-context) .vwe-vs-single__nav-btn,
.vwe-vs-single__nav:not(.is-context) .vwe-vs-single__nav-position {
	display: none;
}

.vwe-vs-single__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 40px 48px;
	align-items: start;
}

@media (max-width: 900px) {
	.vwe-vs-single__hero {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.vwe-vs-single__main {
	background: #f3f4f6;
	border-radius: var(--vwe-vs-radius, 12px);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.vwe-vs-single__zoom {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	cursor: zoom-in;
	position: relative;
	text-align: left;
}

.vwe-vs-single__zoom:focus-visible {
	outline: 2px solid var(--vwe-vs-accent, #1a56db);
	outline-offset: 3px;
}

.vwe-vs-single__main--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
}

.vwe-vs-single__main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.15s ease-out;
	will-change: transform;
}

.vwe-vs-single__zoom-lens {
	position: absolute;
	width: 120px;
	height: 120px;
	margin: -60px 0 0 -60px;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s ease;
	box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.08);
}

.vwe-vs-single__zoom.is-zooming .vwe-vs-single__zoom-lens {
	opacity: 1;
}

.vwe-vs-single__zoom-badge {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 8px;
	background: rgba(17, 24, 39, 0.72);
	font-size: 0.82rem;
	font-weight: 600;
	color: #fff;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.vwe-vs-single__zoom:hover .vwe-vs-single__zoom-badge,
.vwe-vs-single__zoom.is-zooming .vwe-vs-single__zoom-badge {
	opacity: 1;
}

.vwe-vs-single__thumbs {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
	margin-top: 14px;
}

@media (max-width: 900px) {
	.vwe-vs-single__thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.vwe-vs-single__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.vwe-vs-single__thumb {
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 3;
	cursor: pointer;
	background: #f3f4f6;
	transition: border-color 0.15s ease, opacity 0.15s ease;
}

.vwe-vs-single__thumb:hover {
	opacity: 0.85;
}

.vwe-vs-single__thumb.is-active {
	border-color: var(--vwe-vs-accent, #1a56db);
}

.vwe-vs-single__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vwe-vs-single__info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.vwe-vs-single__brand {
	margin: 0 0 6px;
	color: #9ca3af;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.vwe-vs-single__title {
	margin: 0 0 6px;
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.vwe-vs-single__subtitle {
	margin: 0 0 20px;
	color: #6b7280;
	font-size: 1rem;
	line-height: 1.4;
}

.vwe-vs-single__price {
	margin: 0 0 28px;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--vwe-vs-accent, #1a56db);
	letter-spacing: -0.02em;
}

.vwe-vs-single__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	border-top: 1px solid #e5e7eb;
}

@media (max-width: 520px) {
	.vwe-vs-single__specs {
		grid-template-columns: 1fr;
	}
}

.vwe-vs-single__spec {
	margin: 0;
	padding: 14px 0;
	border-bottom: 1px solid #f3f4f6;
}

.vwe-vs-single__spec dt {
	margin: 0 0 3px;
	font-size: 0.78rem;
	font-weight: 500;
	color: #9ca3af;
}

.vwe-vs-single__spec dd {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.35;
}

.vwe-vs-single__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #e5e7eb;
}

.vwe-vs-single__ctas {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
}

.vwe-vs-single__cta {
	display: inline-flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	min-width: 0;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #dbe1ea;
	background: #fff;
	color: #334155 !important;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vwe-vs-single__cta-icon {
	flex-shrink: 0;
	font-size: 0.95em;
	line-height: 1;
}

.vwe-vs-single__cta:hover {
	background: #f8fafc;
	border-color: #b8c4d4;
	transform: translateY(-1px);
}

.vwe-vs-single__cta--whatsapp {
	border-color: #bbf7d0;
	color: #15803d !important;
}

.vwe-vs-single__cta--whatsapp:hover {
	background: #f0fdf4;
	border-color: #86efac;
}

.vwe-vs-single__cta--mail {
	border-color: #dbe1ea;
}

.vwe-vs-single__cta--phone {
	border-color: #dbe1ea;
}

.vwe-vs-single__dealer-link-wrap {
	margin: 0;
}

.vwe-vs-single__dealer-link {
	display: inline;
	color: var(--vwe-vs-accent, #1a56db) !important;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: color 0.15s ease, opacity 0.15s ease;
}

.vwe-vs-single__dealer-link:hover {
	color: #1648c0 !important;
	opacity: 0.9;
}

@media (min-width: 640px) {
	.vwe-vs-single__ctas {
		flex-wrap: nowrap;
	}
}

@media (max-width: 639px) {
	.vwe-vs-single__cta {
		flex: 1 1 calc(50% - 5px);
	}
}

.vwe-vs-single__section {
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid #e5e7eb;
}

.vwe-vs-single__section-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #111827;
}

.vwe-vs-single__related .vwe-vs-grid {
	margin-top: 0;
}

.vwe-vs-single__related .vwe-vs-card__body {
	padding: 11px 12px 13px;
}

.vwe-vs-single__related .vwe-vs-card__title {
	margin-bottom: 4px;
	font-size: 0.92rem;
	line-height: 1.25;
}

.vwe-vs-single__related .vwe-vs-card__type {
	font-size: 0.76rem;
	line-height: 1.3;
}

.vwe-vs-single__related .vwe-vs-card__footer {
	padding: 7px 12px 9px;
}

.vwe-vs-single__related .vwe-vs-card__specs-line {
	font-size: 0.68rem;
}

.vwe-vs-single__related .vwe-vs-card__specs-line--secondary {
	font-size: 0.66rem;
}

.vwe-vs-single__related .vwe-vs-card__status,
.vwe-vs-single__related .vwe-vs-card__photos {
	font-size: 0.7rem;
}

.vwe-vs-single__section-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	padding: 0 8px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 0.78rem;
	font-weight: 600;
}

.vwe-vs-single__options-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 900px) {
	.vwe-vs-single__options-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.vwe-vs-single__options-list {
		grid-template-columns: 1fr;
	}
}

.vwe-vs-single__options-list li {
	position: relative;
	padding: 8px 0 8px 24px;
	color: #374151;
	font-size: 0.9rem;
	line-height: 1.45;
}

.vwe-vs-single__options-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vwe-vs-accent, #1a56db);
}

.vwe-vs-single__description-body p {
	margin: 0;
	max-width: 72ch;
	color: #4b5563;
	font-size: 0.98rem;
	line-height: 1.7;
}

/* Lightbox — clean fullscreen viewer */
body.vwe-vs-lightbox-open {
	overflow: hidden;
}

.vwe-vs-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.22s ease, visibility 0.22s ease;
	cursor: pointer;
}

.vwe-vs-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.vwe-vs-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 10, 14, 0.94);
	pointer-events: none;
}

.vwe-vs-lightbox__viewer {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(1000px, 94vw);
	max-height: calc(100vh - 40px);
	cursor: default;
}

.vwe-vs-lightbox__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 44px 10px 4px;
	flex-shrink: 0;
}

.vwe-vs-lightbox__counter {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
	letter-spacing: 0.02em;
}

.vwe-vs-lightbox__zoom {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(12, 14, 18, 0.55);
}

.vwe-vs-lightbox__zoom-btn {
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}

.vwe-vs-lightbox__zoom-btn:hover:not(:disabled) {
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
}

.vwe-vs-lightbox__zoom-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.vwe-vs-lightbox__zoom-btn[data-zoom-reset] {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.vwe-vs-lightbox__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 4;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: rgba(12, 14, 18, 0.72);
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.vwe-vs-lightbox__close:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.4);
}

.vwe-vs-lightbox__stage-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 100%;
	padding: 0 52px;
}

.vwe-vs-lightbox__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(12, 14, 18, 0.72);
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vwe-vs-lightbox__nav--prev {
	left: 0;
}

.vwe-vs-lightbox__nav--next {
	right: 0;
}

.vwe-vs-lightbox__nav:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-50%) scale(1.05);
}

.vwe-vs-lightbox__stage {
	width: 100%;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	cursor: zoom-in;
}

.vwe-vs-lightbox__stage.is-zoomed-in {
	cursor: grab;
}

.vwe-vs-lightbox__stage.is-dragging {
	cursor: grabbing;
}

.vwe-vs-lightbox__img {
	max-width: 100%;
	max-height: min(62vh, calc(100vh - 240px));
	object-fit: contain;
	display: block;
	transform-origin: center center;
	user-select: none;
	-webkit-user-drag: none;
	touch-action: none;
}

.vwe-vs-lightbox__thumbs {
	display: flex;
	justify-content: flex-start;
	gap: 6px;
	width: 100%;
	margin-top: 14px;
	padding: 4px 4px 2px;
	overflow-x: auto;
	flex-shrink: 0;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
	-webkit-overflow-scrolling: touch;
}

.vwe-vs-lightbox__thumbs::-webkit-scrollbar {
	height: 5px;
}

.vwe-vs-lightbox__thumbs::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.35);
	border-radius: 999px;
}

.vwe-vs-lightbox__thumb {
	flex: 0 0 auto;
	width: 60px;
	height: 45px;
	padding: 0;
	border: none;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.45;
	outline: 2px solid transparent;
	outline-offset: 1px;
	transition: opacity 0.15s ease, outline-color 0.15s ease;
	scroll-snap-align: center;
}

.vwe-vs-lightbox__thumb:hover {
	opacity: 0.75;
}

.vwe-vs-lightbox__thumb.is-active {
	opacity: 1;
	outline-color: rgba(255, 255, 255, 0.95);
}

.vwe-vs-lightbox__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 700px) {
	.vwe-vs-lightbox {
		padding: 12px 10px;
	}

	.vwe-vs-lightbox__viewer {
		width: 100%;
	}

	.vwe-vs-lightbox__toolbar {
		padding: 0 40px 8px 2px;
	}

	.vwe-vs-lightbox__stage-wrap {
		padding: 0 40px;
	}

	.vwe-vs-lightbox__nav {
		width: 40px;
		height: 40px;
		font-size: 1.05rem;
	}

	.vwe-vs-lightbox__img {
		max-height: min(56vh, calc(100vh - 220px));
	}

	.vwe-vs-lightbox__thumbs {
		margin-top: 10px;
	}

	.vwe-vs-single__zoom-lens {
		display: none;
	}
}

/* Catalog filters & sorting */
.vwe-vs-catalog {
	margin-bottom: 28px;
}

.vwe-vs-catalog__toolbar {
	margin-bottom: 24px;
	padding: 0;
	background: #fff;
	border: 1px solid #e8ecf1;
	border-radius: 16px;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 8px 24px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.vwe-vs-catalog__toolbar-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
	border-bottom: 1px solid #eef1f5;
}

.vwe-vs-catalog__toolbar-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.vwe-vs-catalog__filters-btn {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid #dbe1ea;
	border-radius: 999px;
	background: #fff;
	color: #334155;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.vwe-vs-catalog__filters-btn[aria-expanded="true"] {
	border-color: var(--vwe-vs-accent, #1a56db);
	color: var(--vwe-vs-accent, #1a56db);
	background: color-mix(in srgb, var(--vwe-vs-accent, #1a56db) 8%, #fff);
}

.vwe-vs-catalog__filters-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--vwe-vs-accent, #1a56db);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
}

.vwe-vs-catalog__backdrop {
	display: none;
}

.vwe-vs-catalog__drawer-header {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: -4px 0 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e8ecf1;
}

.vwe-vs-catalog__drawer-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
}

.vwe-vs-catalog__drawer-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #f1f5f9;
	color: #475569;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.vwe-vs-catalog__apply {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 10px 20px;
	border: none;
	border-radius: 10px;
	background: var(--vwe-vs-accent, #1a56db);
	color: #fff;
	font-size: 0.94rem;
	font-weight: 600;
	cursor: pointer;
	flex: 1 1 auto;
}

.vwe-vs-catalog__apply-count {
	opacity: 0.88;
	font-weight: 500;
}

.vwe-vs-catalog__chips {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	margin: 0 0 16px;
	padding: 2px 2px 6px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.vwe-vs-catalog__chips::-webkit-scrollbar {
	display: none;
}

.vwe-vs-catalog__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	min-height: 34px;
	padding: 6px 10px 6px 12px;
	border: 1px solid #dbe1ea;
	border-radius: 999px;
	background: #fff;
	color: #334155;
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.vwe-vs-catalog__chip:hover {
	border-color: #b8c4d4;
	background: #f8fafc;
}

.vwe-vs-catalog__chip-x {
	color: #94a3b8;
	font-size: 1rem;
	line-height: 1;
}

body.vwe-vs-catalog-filters-open {
	overflow: hidden;
}

.vwe-vs-catalog__toolbar-filters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px 20px;
	flex: 1 1 auto;
	max-width: 640px;
}

.vwe-vs-catalog__field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
}

.vwe-vs-catalog__field--range {
	grid-column: span 1;
}

.vwe-vs-catalog__label {
	font-size: 0.72rem;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.vwe-vs-catalog__select-wrap {
	position: relative;
	display: block;
}

.vwe-vs-catalog__select-wrap::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 14px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #94a3b8;
	border-bottom: 2px solid #94a3b8;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.vwe-vs-catalog__control {
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid #dbe1ea;
	border-radius: 10px;
	background: #fff;
	color: #0f172a;
	font-size: 0.94rem;
	font-weight: 500;
	line-height: 1.3;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease,
		background-color 0.15s ease;
}

.vwe-vs-catalog__control--select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 38px;
	cursor: pointer;
}

.vwe-vs-catalog__control--input {
	font-variant-numeric: tabular-nums;
}

.vwe-vs-catalog__control:hover {
	border-color: #b8c4d4;
	background: #fcfdfe;
}

.vwe-vs-catalog__control:focus {
	outline: none;
	border-color: var(--vwe-vs-accent, #1a56db);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--vwe-vs-accent, #1a56db) 18%, transparent);
}

.vwe-vs-catalog__control::placeholder {
	color: #94a3b8;
	font-weight: 400;
}

.vwe-vs-catalog__range {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 8px;
}

.vwe-vs-catalog__range-sep {
	color: #94a3b8;
	font-size: 0.9rem;
	font-weight: 600;
	user-select: none;
}

.vwe-vs-catalog__count {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	flex-shrink: 0;
	padding: 10px 16px;
	border-radius: 999px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	white-space: nowrap;
}

.vwe-vs-catalog__count-value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--vwe-vs-accent, #1a56db);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1;
}

.vwe-vs-catalog__count-label {
	font-size: 0.88rem;
	font-weight: 600;
	color: #475569;
}

.vwe-vs-catalog__advanced {
	border-top: 0;
}

.vwe-vs-catalog__advanced-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 22px;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.92rem;
	color: #334155;
	list-style: none;
	background: #fff;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.vwe-vs-catalog__advanced-toggle:hover {
	background: #f8fafc;
	color: var(--vwe-vs-accent, #1a56db);
}

.vwe-vs-catalog__advanced-toggle::-webkit-details-marker {
	display: none;
}

.vwe-vs-catalog__advanced-toggle-inner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.vwe-vs-catalog__icon {
	flex-shrink: 0;
	color: var(--vwe-vs-accent, #1a56db);
}

.vwe-vs-catalog__chevron {
	flex-shrink: 0;
	color: #94a3b8;
	transition: transform 0.2s ease, color 0.15s ease;
}

.vwe-vs-catalog__advanced[open] .vwe-vs-catalog__chevron {
	transform: rotate(180deg);
	color: var(--vwe-vs-accent, #1a56db);
}

.vwe-vs-catalog__advanced[open] .vwe-vs-catalog__advanced-toggle {
	border-bottom: 1px solid #eef1f5;
}

.vwe-vs-catalog__advanced-panel {
	padding: 20px 22px 22px;
	background: #fafbfc;
	animation: vwe-vs-catalog-slide 0.22s ease;
}

@keyframes vwe-vs-catalog-slide {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.vwe-vs-catalog__advanced-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px 18px;
}

.vwe-vs-catalog__field--range {
	grid-column: span 2;
}

.vwe-vs-catalog__advanced-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #e8ecf1;
}

.vwe-vs-catalog__reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 18px;
	border: 1px solid #dbe1ea;
	border-radius: 10px;
	background: #fff;
	color: #475569;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		background-color 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease,
		transform 0.15s ease;
}

.vwe-vs-catalog__reset:hover {
	background: #f8fafc;
	border-color: #b8c4d4;
	color: #0f172a;
}

.vwe-vs-catalog__reset:active {
	transform: translateY(1px);
}

.vwe-vs-catalog__empty {
	margin: 18px 0 0;
	padding: 22px;
	text-align: center;
	color: #64748b;
	background: #f8fafc;
	border: 1px dashed #dbe1ea;
	border-radius: 12px;
	font-weight: 500;
}

.vwe-vs-catalog__empty[hidden],
.vwe-vs-card[hidden] {
	display: none !important;
}

/* Featured homepage block */
.vwe-vs-featured {
	margin: 0 0 32px;
}

.vwe-vs-featured__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.vwe-vs-featured__title {
	margin: 0;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	line-height: 1.2;
}

.vwe-vs-featured__link {
	color: var(--vwe-vs-accent, #1a56db);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.vwe-vs-featured__link:hover {
	text-decoration: underline;
}

.vwe-vs-featured__footer {
	margin: 22px 0 0;
	text-align: center;
}

.vwe-vs-featured__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 22px;
	border-radius: 8px;
	background: var(--vwe-vs-accent, #1a56db);
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
}

.vwe-vs-featured__btn:hover {
	opacity: 0.92;
}

@media (max-width: 1100px) {
	.vwe-vs-catalog__advanced-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vwe-vs-catalog__field--range {
		grid-column: span 2;
	}
}

@media (max-width: 900px) {
	.vwe-vs-catalog {
		margin-left: -4px;
		margin-right: -4px;
	}

	.vwe-vs-catalog__toolbar {
		margin-bottom: 12px;
		border-radius: 14px;
	}

	.vwe-vs-catalog__toolbar-header {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 14px 16px;
	}

	.vwe-vs-catalog__toolbar-filters {
		max-width: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.vwe-vs-catalog__toolbar-meta {
		justify-content: space-between;
		width: 100%;
	}

	.vwe-vs-catalog__count {
		padding: 8px 14px;
	}

	.vwe-vs-catalog__filters-btn {
		display: inline-flex;
	}

	.vwe-vs-catalog__control {
		font-size: 16px;
		min-height: 48px;
	}

	.vwe-vs-catalog__advanced {
		border-top: 0;
	}

	.vwe-vs-catalog__advanced-toggle {
		display: none;
	}

	.vwe-vs-catalog__backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 999998;
		background: rgba(8, 10, 14, 0.52);
		backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
	}

	.vwe-vs-catalog__backdrop[hidden] {
		display: none !important;
	}

	.vwe-vs-catalog__advanced[open] .vwe-vs-catalog__advanced-panel {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999999;
		max-height: min(88vh, 720px);
		margin: 0;
		padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
		border-radius: 18px 18px 0 0;
		box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.18);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		animation: vwe-vs-catalog-sheet 0.28s ease;
	}

	@keyframes vwe-vs-catalog-sheet {
		from {
			opacity: 0;
			transform: translateY(100%);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.vwe-vs-catalog__drawer-header {
		display: flex;
		position: sticky;
		top: -18px;
		z-index: 2;
		margin: -18px -16px 16px;
		padding: 16px 16px 14px;
		background: #fafbfc;
		border-bottom: 1px solid #e8ecf1;
	}

	.vwe-vs-catalog__advanced-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.vwe-vs-catalog__field--range {
		grid-column: span 1;
	}

	.vwe-vs-catalog__advanced-footer {
		position: sticky;
		bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
		flex-direction: column-reverse;
		gap: 10px;
		margin: 18px -16px -18px;
		padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
		background: linear-gradient(180deg, rgba(250, 251, 252, 0) 0%, #fafbfc 24%);
		border-top: 1px solid #e8ecf1;
	}

	.vwe-vs-catalog__reset {
		width: 100%;
		min-height: 48px;
	}

	.vwe-vs-catalog__apply {
		display: inline-flex;
		width: 100%;
	}

	.vwe-vs-catalog__chips {
		margin-bottom: 12px;
		padding-left: 4px;
		padding-right: 4px;
	}

	/* Horizontal compact cards in catalog */
	.vwe-vs-catalog [data-catalog-grid] {
		gap: 12px;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card {
		border-radius: 12px;
		box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card:hover {
		transform: none;
		box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__link {
		display: grid;
		grid-template-columns: 38% minmax(0, 1fr);
		grid-template-rows: auto auto;
		min-height: 0;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__media {
		grid-column: 1;
		grid-row: 1 / 3;
		align-self: stretch;
		aspect-ratio: auto;
		min-height: 118px;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__body {
		grid-column: 2;
		grid-row: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 12px 14px 6px;
		background: #fff;
		border-top: 0;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__footer {
		grid-column: 2;
		grid-row: 2;
		margin-top: 0;
		padding: 0 14px 12px;
		background: #fff;
		border-top: 0;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__title {
		margin-bottom: 4px;
		font-size: 0.95rem;
		line-height: 1.25;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__type {
		font-size: 0.8rem;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__price {
		right: 8px;
		bottom: 8px;
		padding: 4px 10px;
		font-size: 0.78rem;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__specs-line {
		font-size: 0.7rem;
		line-height: 1.3;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__specs-line--secondary {
		font-size: 0.68rem;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__specs-sep {
		margin: 0 5px;
	}

	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__status,
	.vwe-vs-catalog [data-catalog-grid] .vwe-vs-card__photos {
		display: none;
	}

	.vwe-vs-catalog__empty {
		margin-top: 12px;
		padding: 18px 16px;
		font-size: 0.92rem;
	}

	.vwe-vs-featured__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.vwe-vs-featured__link {
		display: none;
	}
}

@media (hover: none) {
	.vwe-vs-catalog .vwe-vs-card:hover {
		transform: none;
	}
}

/* Hero search module */
.vwe-vs-search {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: 16px;
	padding: 22px 24px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.vwe-vs-search__fields {
	display: flex;
	flex: 1 1 auto;
	gap: 16px;
	min-width: 0;
}

.vwe-vs-search__field {
	display: flex;
	flex-direction: column;
	flex: 1 1 0;
	gap: 8px;
	min-width: 0;
}

.vwe-vs-search__label {
	font-size: 0.95rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.2;
}

.vwe-vs-search__select-wrap {
	position: relative;
	display: block;
}

.vwe-vs-search__select-wrap::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 16px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #6b7280;
	border-bottom: 2px solid #6b7280;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.vwe-vs-search__control {
	width: 100%;
	min-height: 52px;
	padding: 12px 42px 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	background: #fff;
	color: #111827;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vwe-vs-search__control:disabled {
	background: #f9fafb;
	color: #9ca3af;
	cursor: not-allowed;
}

.vwe-vs-search__control:hover:not(:disabled) {
	border-color: #9ca3af;
}

.vwe-vs-search__control:focus {
	outline: none;
	border-color: var(--vwe-vs-accent, #1a56db);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--vwe-vs-accent, #1a56db) 16%, transparent);
}

.vwe-vs-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 12px 24px;
	border: none;
	border-radius: 10px;
	background: #2762e9;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	white-space: nowrap;
	flex: 0 0 auto;
	box-shadow: none;
	transition: background 0.2s ease;
}

.vwe-vs-search__submit:hover {
	background: #1f54d1;
}

.vwe-vs-search__submit-icon {
	flex-shrink: 0;
}

.vwe-vs-search__submit-count {
	font-weight: 800;
}

@media (max-width: 1100px) {
	.vwe-vs-search {
		flex-wrap: wrap;
	}

	.vwe-vs-search__fields {
		flex-basis: 100%;
		flex-wrap: wrap;
	}

	.vwe-vs-search__field {
		flex: 1 1 calc(50% - 8px);
		min-width: 140px;
	}

	.vwe-vs-search__submit {
		width: 100%;
	}
}

@media (max-width: 700px) {
	.vwe-vs-search {
		flex-direction: column;
		align-items: stretch;
		padding: 18px 16px;
		gap: 14px;
	}

	.vwe-vs-search__fields {
		grid-template-columns: 1fr;
		flex-basis: auto;
		gap: 12px;
	}

	.vwe-vs-search__control {
		font-size: 16px;
		min-height: 48px;
	}

	.vwe-vs-search__submit {
		width: 100%;
		min-height: 50px;
		white-space: normal;
		text-align: center;
	}
}
