:root {
	--vs-bg: #111314;
	--vs-surface: #1a1c1e;
	--vs-surface-2: #24272b;
	--vs-border: rgba(255, 255, 255, 0.08);
	--vs-text: #f4f4f5;
	--vs-muted: #a1a1aa;
	--vs-accent: #00843d;
	--vs-accent-text: #ffffff;
	--vs-danger: #ef4444;
	--vs-chrome: rgba(17, 19, 20, 0.78);
	--vs-panel: rgba(26, 28, 30, 0.92);
	--vs-input: rgba(0, 0, 0, 0.25);
	--vs-hover: rgba(255, 255, 255, 0.06);
	--vs-chip-active-bg: rgba(0, 132, 61, 0.18);
	--vs-chip-active-border: rgba(0, 132, 61, 0.55);
	--vs-chip-active-text: #d8ffe9;
	--vs-status-ready: #b7f0d1;
	--vs-demo-note: #b45309;
	--vs-loading-bg: radial-gradient(circle at top, #1d2226 0%, #111314 55%);
	--vs-stage-bg: #0b0c0d;
	--vs-panel-width: 400px;
	--vs-topbar-h: 56px;
	--vs-radius: 12px;
	--vs-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	--vs-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.vs-app[data-vs-theme="light"] {
	--vs-bg: #eef1f3;
	--vs-surface: #ffffff;
	--vs-surface-2: #f7f8f9;
	--vs-border: rgba(24, 24, 27, 0.10);
	--vs-text: #18181b;
	--vs-muted: #52525b;
	--vs-chrome: rgba(255, 255, 255, 0.88);
	--vs-panel: rgba(255, 255, 255, 0.94);
	--vs-input: rgba(24, 24, 27, 0.04);
	--vs-hover: rgba(24, 24, 27, 0.05);
	--vs-chip-active-bg: rgba(0, 132, 61, 0.12);
	--vs-chip-active-border: rgba(0, 132, 61, 0.45);
	--vs-chip-active-text: #065f46;
	--vs-status-ready: #047857;
	--vs-demo-note: #b45309;
	--vs-loading-bg: radial-gradient(circle at top, #ffffff 0%, #eef1f3 55%);
	--vs-stage-bg: #d4d4d8;
	--vs-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: var(--vs-bg);
	color: var(--vs-text);
	font-family: var(--vs-font);
	overflow: hidden;
}

button,
input {
	font: inherit;
}

.vs-app {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100dvh;
	background: var(--vs-bg);
}

.vs-app.is-embed .vs-topbar {
	height: 48px;
}

.vs-topbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	height: var(--vs-topbar-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 14px 0 0;
	background: var(--vs-chrome);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--vs-border);
}

.vs-brand {
	display: flex;
	align-items: center;
	align-self: stretch;
	gap: 12px;
	min-width: 0;
	flex: 0 0 auto;
	max-width: min(420px, 42vw);
}

.vs-brand img {
	height: 100%;
	width: auto;
	display: block;
	border-radius: 0;
	flex-shrink: 0;
	object-fit: contain;
	object-position: left center;
}

.vs-cta-short {
	display: none;
}

.vs-desktop-only {
	display: inline-flex;
}

.vs-sheet-handle,
.vs-btn.vs-sheet-close {
	display: none !important;
}

.vs-sheet-toolbar {
	display: contents;
}

.vs-brand-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1px;
	min-width: 7.5rem;
	max-width: 18rem;
	flex: 1 1 auto;
	padding-right: 4px;
}

.vs-brand-meta strong {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vs-brand-meta span {
	font-size: 11px;
	line-height: 1.2;
	color: var(--vs-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vs-change-showroom {
	flex-shrink: 0;
	text-decoration: none;
}

.vs-change-showroom .vs-btn-label-short {
	display: none;
}

/* Desktop: sit with Explore / Guided, not floating in the brand gap */
.vs-top-actions .vs-change-showroom {
	margin-right: 4px;
}

.vs-top-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
	flex-shrink: 0;
}

.vs-btn {
	appearance: none;
	border: 1px solid var(--vs-border);
	background: var(--vs-hover);
	color: var(--vs-text);
	border-radius: 999px;
	padding: 8px 12px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vs-btn:hover {
	filter: brightness(0.98);
	background: var(--vs-hover);
}

.vs-btn:focus-visible {
	outline: 2px solid var(--vs-accent);
	outline-offset: 2px;
}

.vs-btn:disabled,
.vs-btn[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

.vs-btn-primary {
	background: var(--vs-accent);
	border-color: transparent;
	color: var(--vs-accent-text);
	font-weight: 650;
}

.vs-btn-primary:hover {
	filter: brightness(1.05);
	background: var(--vs-accent);
}

.vs-btn-primary.is-viewing:disabled,
.vs-btn-primary.is-viewing[aria-disabled="true"] {
	opacity: 1;
	background: var(--vs-chip-active-bg);
	border: 1px solid var(--vs-chip-active-border);
	color: var(--vs-chip-active-text);
	cursor: default;
}

.vs-btn-ghost {
	background: transparent;
}

.vs-btn-icon {
	width: 36px;
	height: 36px;
	padding: 0;
	justify-content: center;
	border-radius: 10px;
}

.vs-fs-wrap {
	position: relative;
}

.vs-more-wrap {
	display: none;
	position: relative;
	flex-shrink: 0;
}

.vs-more-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 60;
	width: min(260px, calc(100vw - 20px));
	padding: 6px;
	border-radius: 14px;
	background: var(--vs-panel);
	border: 1px solid var(--vs-border);
	box-shadow: var(--vs-shadow);
}

.vs-more-menu[hidden] {
	display: none !important;
}

.vs-more-option {
	display: block;
	width: 100%;
	text-align: left;
	border: 0;
	background: transparent;
	color: var(--vs-text);
	border-radius: 10px;
	padding: 10px 12px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.25;
}

.vs-more-option span {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 500;
	color: var(--vs-muted);
}

.vs-more-option:hover,
.vs-more-option:focus-visible {
	background: var(--vs-hover);
	outline: none;
}

.vs-fs-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 60;
	width: 220px;
	padding: 6px;
	border-radius: 14px;
	background: var(--vs-panel);
	border: 1px solid var(--vs-border);
	box-shadow: var(--vs-shadow);
}

.vs-fs-menu[hidden] {
	display: none !important;
}

.vs-fs-option {
	display: block;
	width: 100%;
	text-align: left;
	border: 0;
	background: transparent;
	color: var(--vs-text);
	border-radius: 10px;
	padding: 10px 12px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.25;
}

.vs-fs-option span {
	display: block;
	margin-top: 3px;
	font-size: 11px;
	font-weight: 500;
	color: var(--vs-muted);
}

.vs-fs-option:hover,
.vs-fs-option:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	outline: none;
}

.vs-app:fullscreen,
.vs-app:-webkit-full-screen {
	width: 100%;
	height: 100%;
	background: var(--vs-bg);
}

.vs-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--vs-accent);
	color: var(--vs-accent-text);
	font-size: 11px;
	font-weight: 700;
}

.vs-stage {
	position: absolute;
	inset: 0;
	background: var(--vs-stage-bg);
}

.vs-stage iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: var(--vs-stage-bg);
}

.vs-panel {
	position: absolute;
	top: var(--vs-topbar-h);
	left: 0;
	bottom: 0;
	width: var(--vs-panel-width);
	z-index: 30;
	display: flex;
	flex-direction: column;
	background: var(--vs-panel);
	backdrop-filter: blur(16px);
	border-right: 1px solid var(--vs-border);
	transform: translateX(0);
	transition: transform 0.22s ease;
}

.vs-app.is-panel-collapsed .vs-panel {
	transform: translateX(calc(-1 * var(--vs-panel-width)));
}

.vs-panel-toggle {
	position: absolute;
	top: calc(var(--vs-topbar-h) + 12px);
	left: calc(var(--vs-panel-width) + 10px);
	z-index: 35;
	transition: left 0.22s ease;
}

.vs-app.is-panel-collapsed .vs-panel-toggle {
	left: 10px;
}

.vs-tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	padding: 12px;
	border-bottom: 1px solid var(--vs-border);
}

.vs-tab {
	border: 0;
	background: transparent;
	color: var(--vs-muted);
	padding: 10px 8px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
}

.vs-tab.is-active {
	background: var(--vs-hover);
	color: var(--vs-text);
}

.vs-panel-body {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 12px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.vs-search {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
	flex-shrink: 0;
}

/* Author display:flex beats the UA [hidden] rule — keep Explore-only search actually gone */
.vs-search[hidden] {
	display: none !important;
}

.vs-search-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--vs-muted);
	margin: 0 0 -4px 2px;
}

.vs-smart-summary {
	margin: -4px 0 0;
	font-size: 12.5px;
	line-height: 1.4;
	color: var(--vs-text);
	background: color-mix(in srgb, var(--vs-accent) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--vs-accent) 30%, transparent);
	border-radius: 10px;
	padding: 7px 10px;
}

.vs-results-label {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	font-size: 12px;
	color: var(--vs-muted);
	margin: 0;
	padding: 10px 2px 8px;
	background: transparent;
}

.vs-search-field {
	position: relative;
	display: flex;
}

.vs-search input {
	width: 100%;
	border: 1px solid var(--vs-border);
	background: var(--vs-input);
	color: var(--vs-text);
	border-radius: 12px;
	padding: 12px 34px 12px 14px;
}

.vs-search input:focus {
	outline: 2px solid var(--vs-accent);
	border-color: transparent;
}

.vs-search-spinner {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.18);
	border-top-color: var(--vs-accent);
	animation: vs-spin 0.7s linear infinite;
	pointer-events: none;
}

.vs-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.vs-chip {
	border: 1px solid var(--vs-border);
	background: var(--vs-hover);
	color: var(--vs-text);
	border-radius: 999px;
	padding: 7px 10px;
	font-size: 12px;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.vs-chip:hover {
	border-color: var(--vs-chip-active-border);
}

.vs-chip.is-active {
	background: var(--vs-chip-active-bg);
	border-color: var(--vs-chip-active-border);
	color: var(--vs-chip-active-text);
}

.vs-chip.is-active:hover {
	border-color: var(--vs-chip-active-border);
}

.vs-chips-compact {
	gap: 5px;
	margin-top: 2px;
}

.vs-chips-compact .vs-chip {
	padding: 5px 9px;
	font-size: 11px;
}

.vs-chip-more,
.vs-chip-clear {
	border-style: dashed;
	color: var(--vs-muted);
}

.vs-chip-more {
	font-weight: 650;
}

.vs-categories {
	margin-bottom: 2px;
}

.vs-categories .vs-chip {
	font-weight: 650;
	border-radius: 10px;
}

.vs-tag.is-category {
	background: rgba(0, 132, 61, 0.16);
	color: var(--vs-accent);
}

.vs-card-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	padding-right: 2px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.vs-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 10px;
	padding: 10px;
	border-radius: 14px;
	border: 1px solid var(--vs-border);
	background: var(--vs-hover);
	cursor: pointer;
	text-align: left;
	color: inherit;
	width: 100%;
}

.vs-card:hover {
	filter: brightness(0.99);
	background: var(--vs-hover);
}

.vs-card.is-experience {
	border-color: rgba(0, 132, 61, 0.28);
	background: linear-gradient(135deg, rgba(0, 132, 61, 0.08), var(--vs-hover));
}

.vs-card.is-experience .vs-tag.is-category {
	background: rgba(0, 132, 61, 0.22);
}

.vs-benefit {
	font-size: 14px !important;
	font-weight: 600;
	color: var(--vs-text) !important;
	line-height: 1.4;
}

.vs-checklist {
	margin: 0 0 12px;
	padding: 0 0 0 18px;
	color: var(--vs-muted);
	font-size: 13px;
	line-height: 1.45;
}

.vs-checklist li {
	margin: 0 0 6px;
}

.vs-visit-pitch {
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(0, 132, 61, 0.12);
	border: 1px solid rgba(0, 132, 61, 0.28);
	color: var(--vs-text);
	font-size: 13px;
	line-height: 1.4;
}

.vs-card.is-current {
	position: relative;
	border-color: var(--vs-accent);
	background: var(--vs-chip-active-bg);
	box-shadow:
		inset 3px 0 0 0 var(--vs-accent),
		0 0 0 1px rgba(0, 132, 61, 0.35),
		0 8px 20px rgba(0, 132, 61, 0.12);
}

.vs-card.is-current:hover {
	background: var(--vs-chip-active-bg);
	filter: none;
}

.vs-card-viewing {
	display: inline-flex;
	align-items: center;
	margin: 0 0 6px;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--vs-accent);
	color: var(--vs-accent-text);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.vs-card-thumb {
	width: 88px;
	height: 72px;
	border-radius: 10px;
	background:
		linear-gradient(145deg, rgba(27, 143, 90, 0.35), rgba(255, 255, 255, 0.04)),
		repeating-linear-gradient(
			-45deg,
			rgba(255, 255, 255, 0.04),
			rgba(255, 255, 255, 0.04) 8px,
			transparent 8px,
			transparent 16px
		);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 6px;
	overflow: hidden;
}

.vs-card-thumb span {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.45);
	padding: 2px 5px;
	border-radius: 999px;
}

.vs-card-body h3 {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 700;
}

.vs-card-body p {
	margin: 0 0 6px;
	font-size: 12px;
	color: var(--vs-muted);
	line-height: 1.35;
}

.vs-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 8px;
}

.vs-tag {
	font-size: 10px;
	padding: 3px 6px;
	border-radius: 999px;
	background: var(--vs-input);
	color: var(--vs-muted);
}

.vs-card-actions {
	display: flex;
	gap: 6px;
}

.vs-card-actions .vs-btn {
	padding: 6px 10px;
	font-size: 12px;
	border-radius: 999px;
}

.vs-empty {
	padding: 24px 12px;
	text-align: center;
	color: var(--vs-muted);
	font-size: 13px;
}

.vs-context {
	position: absolute;
	left: calc(var(--vs-panel-width) + 16px);
	right: 16px;
	bottom: 16px;
	z-index: 25;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 16px;
	background: var(--vs-panel);
	backdrop-filter: blur(14px);
	border: 1px solid var(--vs-border);
	box-shadow: var(--vs-shadow);
	transition: left 0.22s ease;
}

.vs-app.is-panel-collapsed .vs-context {
	left: 16px;
}

.vs-context.is-visible {
	display: flex;
}

.vs-context-main strong {
	display: block;
	font-size: 14px;
}

.vs-context-main span {
	font-size: 12px;
	color: var(--vs-muted);
}

.vs-context-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.vs-drawer {
	position: absolute;
	top: var(--vs-topbar-h);
	right: 0;
	bottom: 0;
	width: min(420px, 100%);
	z-index: 45;
	background: var(--vs-panel);
	backdrop-filter: blur(16px);
	border-left: 1px solid var(--vs-border);
	transform: translateX(100%);
	transition: transform 0.22s ease;
	display: flex;
	flex-direction: column;
}

.vs-drawer.is-open {
	transform: translateX(0);
}

.vs-drawer-header,
.vs-journey-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px;
	border-bottom: 1px solid var(--vs-border);
}

.vs-drawer-body {
	flex: 1;
	overflow: auto;
	padding: 14px;
}

.vs-drawer-body h2 {
	margin: 0 0 8px;
	font-size: 20px;
}

.vs-drawer-body p {
	margin: 0 0 12px;
	color: var(--vs-muted);
	line-height: 1.45;
	font-size: 14px;
}

.vs-meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 14px 0;
}

.vs-meta-item {
	padding: 10px;
	border-radius: 12px;
	background: var(--vs-hover);
	border: 1px solid var(--vs-border);
}

.vs-meta-item span {
	display: block;
	font-size: 11px;
	color: var(--vs-muted);
	margin-bottom: 4px;
}

.vs-meta-item strong {
	font-size: 13px;
}

.vs-journey-bar {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 88px;
	z-index: 28;
	width: min(560px, calc(100% - 32px));
	border: 1px solid var(--vs-border);
	border-radius: 16px;
	background: var(--vs-panel);
	backdrop-filter: blur(14px);
	box-shadow: var(--vs-shadow);
	display: none;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: none;
}

.vs-journey-bar.is-visible {
	display: flex;
}

.vs-journey-bar-main {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.vs-journey-bar-thumb {
	width: 64px;
	height: 52px;
	border-radius: 10px;
	flex-shrink: 0;
	background-color: var(--vs-hover);
	background-size: cover;
	background-position: center;
	border: 1px solid var(--vs-border);
}

.vs-journey-bar-copy {
	flex: 1;
	min-width: 0;
}

.vs-journey-bar-heading {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 8px;
}

.vs-journey-bar-copy strong {
	display: block;
	font-size: 14px;
	line-height: 1.3;
}

.vs-journey-bar-progress {
	font-size: 12px;
	font-weight: 650;
	color: var(--vs-muted);
	white-space: nowrap;
}

.vs-journey-bar-meta {
	font-size: 12px;
	color: var(--vs-muted);
	margin-top: 2px;
	line-height: 1.35;
}

.vs-journey-bar-actions {
	flex-shrink: 0;
}

.vs-card-journey .vs-card-actions {
	margin-top: 8px;
}

.vs-loading,
.vs-error {
	position: absolute;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 14px;
	background: var(--vs-loading-bg);
	text-align: center;
	padding: 24px;
}

.vs-loading[hidden],
.vs-error[hidden] {
	display: none !important;
}

.vs-loading-mark {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	border: 1px solid var(--vs-border);
	display: grid;
	place-items: center;
	background: var(--vs-hover);
	color: var(--vs-accent);
	font-weight: 900;
	letter-spacing: 0.08em;
}

.vs-spinner {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-top-color: var(--vs-accent);
	animation: vs-spin 0.8s linear infinite;
}

@keyframes vs-spin {
	to { transform: rotate(360deg); }
}

.vs-loading h1,
.vs-error h1 {
	margin: 0;
	font-size: 22px;
}

.vs-loading p,
.vs-error p {
	margin: 0;
	color: var(--vs-muted);
	max-width: 360px;
}

.vs-status-pill {
	position: absolute;
	top: calc(var(--vs-topbar-h) + 12px);
	right: 12px;
	z-index: 24;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--vs-panel);
	border: 1px solid var(--vs-border);
	font-size: 12px;
	color: var(--vs-muted);
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.45s ease, transform 0.45s ease;
	pointer-events: none;
}

.vs-status-pill.is-ready {
	color: var(--vs-status-ready);
	border-color: var(--vs-chip-active-border);
}

.vs-status-pill.is-error {
	color: var(--vs-danger);
	border-color: rgba(239, 68, 68, 0.45);
}

.vs-status-pill.is-faded {
	opacity: 0;
	transform: translateY(-6px);
}

.vs-mobile-nav {
	display: none;
}

.vs-demo-note {
	font-size: 11px;
	color: var(--vs-demo-note);
	margin-top: 4px;
}

.vs-theme-toggle {
	font-size: 22px;
	line-height: 1;
}

.vs-theme-toggle.is-light {
	color: var(--vs-accent);
}

@media (max-width: 980px) {
	:root {
		/* Never let the rail eat most of a tablet viewport */
		--vs-panel-width: min(340px, 40vw);
	}

	.vs-change-showroom .vs-btn-label {
		display: none;
	}

	.vs-change-showroom .vs-btn-label-short {
		display: inline;
	}

	.vs-desktop-only {
		display: none !important;
	}

	.vs-btn-label {
		display: none;
	}

	.vs-cta-btn .vs-cta-full {
		display: none;
	}

	.vs-cta-btn .vs-cta-short {
		display: inline;
	}

	.vs-cta-btn {
		padding: 8px 10px;
		font-size: 12px;
		white-space: nowrap;
		flex-shrink: 0;
	}

	.vs-topbar {
		padding: 0 10px 0 0;
		gap: 8px;
	}

	.vs-top-actions {
		gap: 6px;
		min-width: 0;
		flex-shrink: 0;
	}

	/* Full-height logo tile + store name; logo SVG is side-trimmed */
	.vs-brand {
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
		gap: 8px;
		align-self: stretch;
	}

	.vs-brand img {
		height: 100%;
		width: auto;
		max-width: none;
		object-fit: contain;
		object-position: left center;
		flex-shrink: 0;
	}

	.vs-brand-meta {
		display: flex;
		min-width: 0;
		flex: 1 1 auto;
		max-width: none;
	}

	.vs-brand-meta strong {
		font-size: 12px;
	}

	.vs-brand-meta span {
		font-size: 10px;
	}

	/* Collapse secondary chrome into More — keeps Book free + logo readable */
	.vs-inline-tool {
		display: none !important;
	}

	.vs-more-wrap {
		display: block;
	}

	.vs-context {
		left: 12px;
		right: 12px;
		bottom: 72px;
		flex-direction: column;
		align-items: stretch;
	}

	.vs-journey-bar {
		bottom: 150px;
	}
}

@media (max-width: 380px) {
	/* Ultra-narrow: keep locality, drop the subtitle line */
	.vs-brand-meta span {
		display: none;
	}
}

@media (max-width: 1024px) {
	:root {
		--vs-topbar-h: 52px;
	}

	/* Guided tour chrome — top of tour (ceiling space), context stays at bottom */
	.vs-journey-bar {
		left: 10px;
		right: 10px;
		width: auto;
		transform: none;
		top: calc(var(--vs-topbar-h) + 8px);
		bottom: auto;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 12px;
		z-index: 35;
	}

	.vs-journey-bar-main {
		align-items: flex-start;
		gap: 10px;
	}

	.vs-journey-bar-thumb {
		width: 56px;
		height: 56px;
		border-radius: 12px;
	}

	.vs-journey-bar-copy strong {
		font-size: 15px;
		font-weight: 700;
	}

	.vs-journey-bar-progress {
		font-size: 11px;
		padding: 2px 8px;
		border-radius: 999px;
		background: var(--vs-hover);
		border: 1px solid var(--vs-border);
		color: var(--vs-text);
	}

	.vs-journey-bar-meta {
		margin-top: 4px;
		font-size: 12.5px;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.vs-journey-bar-actions {
		display: grid;
		grid-template-columns: 1fr 1.35fr 1fr;
		gap: 8px;
		width: 100%;
	}

	.vs-journey-bar-actions .vs-btn {
		justify-content: center;
		width: 100%;
		padding: 10px 8px;
		font-size: 13px;
		border-radius: 12px;
	}

	.vs-app {
		height: 100dvh;
		max-height: 100dvh;
		overflow: hidden;
	}

	.vs-panel {
		/* Full-height sheet under the topbar so Explore cards are usable */
		top: var(--vs-topbar-h);
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: auto;
		max-height: none;
		border-right: 0;
		border-top: 1px solid var(--vs-border);
		border-radius: 16px 16px 0 0;
		transform: translateY(110%);
		transition: transform 0.22s ease, visibility 0s linear 0.22s;
		z-index: 38;
		padding-bottom: env(safe-area-inset-bottom, 0);
		/* Avoid scrollIntoView / focus scrolling the off-screen sheet into the page */
		overflow: hidden;
		overscroll-behavior: contain;
		visibility: hidden;
		pointer-events: none;
	}

	.vs-panel.is-dragging {
		transition: none;
	}

	.vs-app.is-panel-open-mobile .vs-panel {
		transform: translateY(0);
		visibility: visible;
		pointer-events: auto;
		transition: transform 0.22s ease, visibility 0s linear 0s;
	}

	.vs-app.is-panel-collapsed .vs-panel,
	.vs-app:not(.is-panel-open-mobile) .vs-panel {
		transform: translateY(110%);
		visibility: hidden;
		pointer-events: none;
	}

	.vs-panel-toggle {
		display: none;
	}

	.vs-sheet-handle {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 0 4px;
		cursor: grab;
		touch-action: none;
		flex-shrink: 0;
	}

	.vs-sheet-grip {
		width: 44px;
		height: 4px;
		border-radius: 999px;
		background: rgba(127, 127, 127, 0.45);
	}

	.vs-sheet-toolbar {
		display: grid;
		grid-template-columns: 40px 1fr;
		align-items: center;
		gap: 4px;
		padding: 0 8px 0 4px;
		border-bottom: 1px solid var(--vs-border);
		flex-shrink: 0;
	}

	.vs-btn.vs-sheet-close {
		display: inline-flex !important;
		width: 36px;
		height: 36px;
		border-radius: 10px;
		font-size: 14px;
	}

	.vs-sheet-toolbar .vs-tabs {
		border-bottom: 0;
		padding: 8px 0;
	}

	.vs-panel-body {
		min-height: 0;
		flex: 1 1 auto;
	}

	/* Explore: search/tags stay, but capped so the card list always has room */
	.vs-app.is-tab-explore .vs-search {
		max-height: min(34vh, 260px);
		overflow: auto;
		padding-bottom: 8px;
		margin-bottom: 0;
		flex-shrink: 0;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		border-bottom: 1px solid var(--vs-border);
		scrollbar-width: thin;
	}

	.vs-app.is-tab-explore .vs-search-label {
		display: none;
	}

	.vs-app.is-tab-explore .vs-search .vs-chips {
		max-height: none;
		overflow: visible;
	}

	.vs-app.is-tab-explore .vs-search input {
		padding: 10px 34px 10px 12px;
		font-size: 14px;
	}

	.vs-card-list {
		min-height: 0;
		flex: 1 1 auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 12px;
	}

	/* Guided / Shortlist: give the list the full sheet once search is hidden */
	.vs-app:not(.is-tab-explore) .vs-panel-body {
		padding-top: 8px;
	}

	.vs-app:not(.is-tab-explore) .vs-results-label {
		padding-top: 2px;
		font-size: 13px;
		font-weight: 650;
		color: var(--vs-text);
	}

	/* Full-width dock covers any residual Matterport bottom chrome */
	.vs-mobile-nav {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 36;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
		border-radius: 16px 16px 0 0;
		background: var(--vs-panel);
		border: 1px solid var(--vs-border);
		border-bottom: 0;
		backdrop-filter: blur(16px);
		box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.28);
	}

	.vs-app.is-panel-open-mobile .vs-mobile-nav {
		display: none !important;
	}

	.vs-mobile-nav .vs-btn {
		justify-content: center;
		border-radius: 12px;
		padding: 12px 8px;
		font-size: 12px;
		position: relative;
	}

	.vs-mobile-shortlist-count {
		position: absolute;
		top: 4px;
		right: 8px;
	}

	.vs-context {
		left: 10px;
		right: 10px;
		bottom: calc(72px + env(safe-area-inset-bottom, 0px));
		flex-direction: row;
		align-items: center;
		gap: 8px;
		padding: 10px 12px;
		z-index: 34;
	}

	.vs-context-main {
		min-width: 0;
		flex: 1 1 auto;
	}

	.vs-context-main strong {
		font-size: 13px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.vs-context-main span {
		display: block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.vs-context-actions {
		flex: 0 0 auto;
		flex-wrap: nowrap;
		justify-content: flex-end;
	}

	.vs-context-actions .vs-btn {
		padding: 7px 10px;
		font-size: 12px;
	}

	/* Don't stack context + explore sheet */
	.vs-app.is-panel-open-mobile .vs-context {
		display: none !important;
	}

	.vs-status-pill {
		top: calc(var(--vs-topbar-h) + 8px);
		right: 10px;
		font-size: 11px;
		padding: 6px 10px;
	}
}

/* Pricing modal */
.vs-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

/* Pricing must sit above Compare (same .vs-modal base, later in DOM otherwise wins) */
#vs-pricing-modal {
	z-index: 100;
}

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

.vs-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
}

.vs-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(900px, 100%);
	max-height: min(92vh, 960px);
	display: flex;
	flex-direction: column;
	background: var(--vs-surface);
	border: 1px solid var(--vs-border);
	border-radius: 16px;
	box-shadow: var(--vs-shadow);
	overflow: hidden;
}

.vs-modal-header,
.vs-modal-footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--vs-border);
}

.vs-modal-footer {
	align-items: center;
	border-bottom: 0;
	border-top: 1px solid var(--vs-border);
	flex-wrap: wrap;
}

.vs-modal-header strong {
	display: block;
	font-size: 18px;
}

.vs-pricing-header {
	align-items: center;
	gap: 16px;
}

.vs-pricing-header-main {
	flex: 1 1 auto;
	min-width: 0;
}

.vs-pricing-kitchen-name {
	display: block;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.vs-pricing-header .vs-modal-subtitle {
	margin: 5px 0 0;
	font-size: 13px;
	color: var(--vs-muted);
}

.vs-pricing-header-aside {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.vs-pricing-eyebrow {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--vs-muted);
	white-space: nowrap;
}

.vs-modal-subtitle {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--vs-muted);
}

.vs-modal-body {
	flex: 1;
	overflow: auto;
	padding: 16px 18px;
}

.vs-pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.vs-pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	border-radius: 14px;
	border: 1px solid var(--vs-border);
	background: var(--vs-hover);
	transition: border-color 0.18s ease, transform 0.18s ease;
	overflow: hidden;
	min-height: 248px;
}

.vs-pricing-card:hover {
	border-color: var(--vs-chip-active-border);
	transform: translateY(-1px);
}

.vs-pricing-card-copy {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
	max-width: 54%;
	min-width: 0;
}

/* Diagram floats in the card background — top right, does not steal layout space */
.vs-pricing-icon {
	position: absolute;
	top: 8px;
	right: 6px;
	width: 46%;
	height: 140px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	pointer-events: none;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	/* Soft fade so text on the left stays readable */
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.vs-pricing-icon svg,
.vs-kitchen-svg {
	width: 100%;
	height: 100%;
	display: block;
	overflow: visible;
}

.vs-pricing-card[data-size="medium"] .vs-pricing-icon {
	width: 50%;
}

.vs-pricing-card[data-size="large"] .vs-pricing-icon,
.vs-pricing-card[data-size="xl"] .vs-pricing-icon {
	width: 54%;
}

/* Solid cabinet bodies — fronts face the camera */
.vs-k-face {
	stroke: #1f2328;
	stroke-width: 1.5;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

.vs-k-face-top {
	fill: #f7f8f9;
}

.vs-k-face-front {
	fill: #e4e7eb;
}

.vs-k-face-side {
	fill: #aeb4bc;
}

.vs-k-face-inset {
	fill: #8e959e;
	stroke: #1f2328;
}

.vs-k-worktop .vs-k-face-top {
	fill: #cfd4da;
}

.vs-k-worktop .vs-k-face-front {
	fill: #b4bac2;
}

.vs-k-worktop .vs-k-face-side {
	fill: #9399a2;
}

.vs-k-island .vs-k-face-top {
	fill: #e7f8ee;
}

.vs-k-island .vs-k-face-front {
	fill: #b7e4c7;
}

.vs-k-island .vs-k-face-side {
	fill: #6fbf8f;
}

.vs-k-detail {
	fill: none;
	stroke: #1f2328;
	stroke-width: 1.35;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
	opacity: 0.85;
}

.vs-k-seam {
	opacity: 0.45;
}

.vs-pricing-grid .vs-k-part {
	opacity: 1;
	transform: none;
}

.vs-pricing-grid.is-building .vs-k-part {
	opacity: 0;
	transform: translateY(8px);
	animation: vs-kitchen-build 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc((var(--vs-card-i, 0) * 0.12s) + (var(--i, 0) * 0.05s));
}

@keyframes vs-kitchen-build {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.vs-pricing-card h3 {
	margin: 0;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--vs-accent);
}

.vs-pricing-price {
	margin: 6px 0 0;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.vs-pricing-price small {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 500;
	color: var(--vs-muted);
	letter-spacing: 0;
}

.vs-pricing-meta {
	margin: 0;
	font-size: 12px;
	color: var(--vs-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.vs-pricing-layout {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.vs-pricing-includes {
	position: relative;
	z-index: 1;
	max-width: 62%;
	margin: auto 0 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	line-height: 1.45;
	color: var(--vs-muted);
}

.vs-pricing-includes li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 3px;
}

.vs-pricing-includes li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vs-accent);
	opacity: 0.75;
}

.vs-pricing-disclaimer {
	margin: 0;
	flex: 1;
	min-width: 200px;
	font-size: 11px;
	line-height: 1.4;
	color: var(--vs-muted);
}

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

	.vs-pricing-card {
		min-height: 220px;
	}

	.vs-pricing-card-copy {
		max-width: 58%;
	}

	.vs-pricing-icon,
	.vs-pricing-card[data-size="medium"] .vs-pricing-icon,
	.vs-pricing-card[data-size="large"] .vs-pricing-icon,
	.vs-pricing-card[data-size="xl"] .vs-pricing-icon {
		width: 50%;
		height: 130px;
	}

	.vs-modal-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.vs-modal-footer .vs-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.vs-pricing-grid.is-building .vs-k-part {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Pitch polish: coach, handoff, compare, insights, toast */
.vs-dialog-sm {
	width: min(520px, 100%);
	max-height: min(88vh, 720px);
}

.vs-compare-dialog {
	width: min(980px, 100%);
}

.vs-coach {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	pointer-events: auto;
	background: rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(2px);
}

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

.vs-coach-backdrop {
	display: block;
	position: absolute;
	inset: 0;
}

.vs-coach-card {
	position: relative;
	z-index: 1;
	pointer-events: auto;
	width: min(400px, calc(100vw - 32px));
	padding: 20px 20px 16px;
	border-radius: 14px;
	background: var(--vs-panel);
	border: 1px solid var(--vs-border);
	box-shadow: var(--vs-shadow);
}

.vs-coach-step {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--vs-muted);
}

.vs-coach-card strong {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
}

.vs-coach-card p {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--vs-muted);
}

.vs-coach-actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}

.vs-toast {
	position: fixed;
	left: 50%;
	bottom: 88px;
	transform: translateX(-50%);
	z-index: 95;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--vs-surface-elevated, var(--vs-surface));
	border: 1px solid var(--vs-border);
	box-shadow: var(--vs-shadow);
	font-size: 13px;
	font-weight: 600;
	pointer-events: none;
}

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

.vs-field-label {
	display: block;
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 650;
}

.vs-field-label span {
	font-weight: 500;
	color: var(--vs-muted);
}

.vs-field-input {
	width: 100%;
	margin-bottom: 12px;
	appearance: none;
	border: 1px solid var(--vs-border);
	background: var(--vs-input, rgba(0, 0, 0, 0.2));
	color: var(--vs-text);
	border-radius: 10px;
	padding: 11px 12px;
	font: inherit;
	font-size: 14px;
}

.vs-field-hint {
	margin: 4px 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--vs-muted);
}

.vs-email-preview {
	margin: 0;
	padding: 12px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid var(--vs-border);
	font-size: 12px;
	line-height: 1.45;
	white-space: pre-wrap;
	max-height: 180px;
	overflow: auto;
	color: var(--vs-text);
}

.vs-handoff-list {
	margin: 0;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.5;
}

.vs-handoff-list li + li {
	margin-top: 4px;
}

.vs-handoff-footer {
	justify-content: flex-end;
}

.vs-shortlist-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 12px;
	padding: 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--vs-border);
}

.vs-shortlist-toolbar .vs-btn {
	flex: 1 1 auto;
	min-height: 40px;
}

.vs-card-compare {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	font-size: 12px;
	color: var(--vs-muted);
}

.vs-card-compare input {
	width: 16px;
	height: 16px;
}

.vs-compare-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.vs-compare-col {
	padding: 14px;
	border-radius: 12px;
	border: 1px solid var(--vs-border);
	background: rgba(255, 255, 255, 0.02);
}

.vs-compare-col h3 {
	margin: 0 0 10px;
	font-size: 15px;
}

.vs-compare-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 6px 0;
	border-bottom: 1px solid var(--vs-border);
	font-size: 12px;
}

.vs-compare-row span:first-child {
	color: var(--vs-muted);
}

.vs-compare-row span:last-child {
	text-align: right;
	font-weight: 600;
}

.vs-compare-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.vs-pricing-compare {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.vs-pricing-compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.vs-pricing-compare-table th,
.vs-pricing-compare-table td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--vs-border);
	text-align: left;
	vertical-align: top;
}

.vs-pricing-compare-table thead th {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--vs-text);
	background: var(--vs-hover);
	position: sticky;
	top: 0;
	z-index: 1;
}

.vs-pricing-compare-table tbody th {
	font-weight: 650;
	color: var(--vs-muted);
	white-space: nowrap;
	width: 6.5rem;
}

.vs-pricing-compare-table td strong {
	display: block;
	font-size: 15px;
	font-weight: 750;
	color: var(--vs-text);
}

.vs-pricing-compare-table td span {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	color: var(--vs-muted);
}

.vs-pricing-compare-table .is-focus {
	box-shadow: inset 0 0 0 1px rgba(0, 132, 61, 0.45);
	background: rgba(0, 132, 61, 0.08);
}

@media (max-width: 720px) {
	.vs-pricing-compare-table th,
	.vs-pricing-compare-table td {
		padding: 8px 8px;
		font-size: 12px;
	}

	.vs-pricing-compare-table thead th {
		min-width: 7.5rem;
	}

	.vs-pricing-compare-table td strong {
		font-size: 14px;
	}
}

.vs-insights-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.vs-insights-stat {
	padding: 12px;
	border-radius: 12px;
	border: 1px solid var(--vs-border);
	background: rgba(255, 255, 255, 0.02);
}

.vs-insights-stat strong {
	display: block;
	font-size: 22px;
	line-height: 1.1;
}

.vs-insights-stat span {
	font-size: 11px;
	color: var(--vs-muted);
}

.vs-insights-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}

.vs-insights-table th,
.vs-insights-table td {
	padding: 8px 6px;
	border-bottom: 1px solid var(--vs-border);
	text-align: left;
	vertical-align: top;
}

.vs-insights-table th {
	color: var(--vs-muted);
	font-weight: 650;
}

.vs-change-showroom {
	min-height: 40px;
}

.vs-mobile-insights {
	display: none;
}

@media (max-width: 1180px) {
	.vs-cta-btn .vs-cta-full {
		display: none;
	}

	.vs-cta-btn .vs-cta-short {
		display: inline;
	}
}

@media (max-width: 980px) {
	.vs-toast {
		bottom: 96px;
	}
}

@media (max-width: 1024px) {
	.vs-shortlist-toolbar {
		position: sticky;
		top: 0;
		z-index: 2;
		background: var(--vs-panel);
	}

	.vs-handoff-footer {
		flex-direction: column;
		align-items: stretch;
	}
}
