	/**
	* Temu-style variant picker modal — layout/spacing aligned to Temu quick-view.
	*/

	.vv-vm {
		--vv-vm-orange: #ff6a00;
		--vv-vm-orange-deep: #fb7701;
		--vv-vm-green: #00860b;
		--vv-vm-green-bar: #1f8a3b;
		--vv-vm-text: #222;
		--vv-vm-muted: #757575;
		--vv-vm-line: #e8e8e8;
		position: fixed;
		inset: 0;
		z-index: 100060;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
		box-sizing: border-box;
		font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	}

	.vv-vm[hidden] {
		display: none !important;
	}

	.vv-vm__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		cursor: pointer;
	}

	.vv-vm__dialog {
		position: relative;
		z-index: 1;
		width: min(980px, 100%);
		max-width: 100%;
		max-height: min(94vh, 760px);
		background: #fff;
		border-radius: 10px;
		box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
		overflow: hidden;
		display: flex;
		flex-direction: column;
		/* Opacity only — no scale (avoids “grows from small” feel). */
		animation: vv-vm-fade 0.14s ease;
		box-sizing: border-box;
	}

	/* Booting: hide the real dialog; spinner is a separate floating chip. */
	.vv-vm--booting .vv-vm__backdrop {
		background: rgba(0, 0, 0, 0.28);
		cursor: default;
	}

	.vv-vm--booting .vv-vm__dialog {
		display: none !important;
	}

	.vv-vm__boot-float {
		position: relative;
		z-index: 2;
		width: 88px;
		height: 88px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		border-radius: 18px;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
		animation: vv-vm-fade 0.14s ease;
	}

	@keyframes vv-vm-fade {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}

	.vv-vm__close {
		position: absolute;
		top: 10px;
		right: 12px;
		z-index: 6;
		width: 36px;
		height: 36px;
		margin: 0;
		padding: 0;
		border: 1px solid rgba(40, 36, 32, 0.16);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.94);
		box-shadow: 0 1px 2px rgba(40, 36, 32, 0.12);
		color: #2c2c2c;
		line-height: 0;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		-webkit-appearance: none;
		appearance: none;
	}

	.vv-vm__close:hover {
		background: #fff;
		border-color: rgba(40, 36, 32, 0.28);
	}

	.vv-vm__inner {
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		flex: 1;
		min-height: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	.vv-vm__loading {
		padding: 72px 24px;
		text-align: center;
		color: var(--vv-vm-muted);
		font-size: 15px;
	}

	.vv-vm__boot-spin {
		width: 28px;
		height: 28px;
		border: 2.5px solid rgba(255, 106, 0, 0.18);
		border-top-color: var(--vv-vm-orange);
		border-radius: 50%;
		animation: vv-vm-spin 0.65s linear infinite;
	}

	@keyframes vv-vm-spin {
		to {
			transform: rotate(360deg);
		}
	}

	.vv-vm__grid {
		display: grid;
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
		gap: 0;
		min-height: 480px;
		align-items: stretch;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	/* —— Left gallery —— */
	.vv-vm__media {
		padding: 28px 22px 24px 28px;
		background: #fff;
		border-right: 1px solid var(--vv-vm-line);
		display: flex;
		flex-direction: column;
		gap: 14px;
		min-width: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	.vv-vm__main-img-wrap {
		position: relative;
		width: 100%;
		aspect-ratio: 1 / 1;
		border-radius: 4px;
		overflow: hidden;
		background-color: #f0f0f0;
		touch-action: pan-y;
		cursor: grab;
		user-select: none;
	}

	.vv-vm__main-img-wrap:active {
		cursor: grabbing;
	}

	.vv-vm__slider {
		display: flex;
		width: 100%;
		height: 100%;
		will-change: transform;
		touch-action: pan-y;
	}

	.vv-vm__slide {
		position: relative;
		flex: 0 0 100%;
		width: 100%;
		height: 100%;
		background-color: #f0f0f0;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}

	.vv-vm__slide-img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
		opacity: 0;
		transition: opacity 0.15s ease;
		pointer-events: none;
		user-select: none;
		-webkit-user-drag: none;
	}

	.vv-vm__slide-img.is-ready {
		opacity: 1;
	}

	.vv-vm__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 5;
		width: 36px;
		height: 36px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.92);
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
		color: #555;
		line-height: 0;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		-webkit-appearance: none;
		appearance: none;
	}

	.vv-vm__icon {
		display: block;
		width: 14px;
		height: 14px;
		flex-shrink: 0;
	}

	.vv-vm__nav:hover {
		background: #fff;
		color: #111;
	}

	.vv-vm__nav--prev {
		left: 10px;
	}

	.vv-vm__nav--next {
		right: 10px;
	}

	.vv-vm__nav[hidden] {
		display: none !important;
	}

	.vv-vm__thumbs-wrap {
		margin-top: 8px;
		min-width: 0;
		width: 100%;
	}

	.vv-vm__thumbs {
		display: grid;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 8px;
		align-items: stretch;
		padding: 2px 0;
		overflow: visible;
		width: 100%;
	}

	.vv-vm__thumb {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		padding: 0;
		border: 1px solid #ddd;
		border-radius: 4px;
		overflow: hidden;
		background: #fff;
		cursor: pointer;
		-webkit-user-drag: none;
		box-sizing: border-box;
	}

	.vv-vm__thumb.is-on {
		border-color: #222;
		border-width: 2px;
		box-shadow: none;
	}

	.vv-vm__thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		pointer-events: none;
		-webkit-user-drag: none;
	}

	/* —— Right column —— */
	.vv-vm__info {
		padding: 26px 32px 22px 24px;
		display: flex;
		flex-direction: column;
		gap: 12px;
		min-width: 0;
		max-width: 100%;
		background: #fff;
		box-sizing: border-box;
	}

	.vv-vm__title {
		margin: 0;
		padding-right: 28px;
		font-size: 22px;
		font-weight: 700;
		line-height: 1.25;
		letter-spacing: -0.02em;
		color: var(--vv-vm-text);
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		word-break: break-word;
	}

	.vv-vm__story {
		margin: 0;
		padding-right: 8px;
		font-size: 13px;
		font-weight: 400;
		line-height: 1.5;
		color: #5c5c5c;
		display: -webkit-box;
		-webkit-line-clamp: 5;
		-webkit-box-orient: vertical;
		overflow: hidden;
		word-break: break-word;
	}

	.vv-vm__meta {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 6px 8px;
		margin: 0;
		font-size: 13px;
		color: var(--vv-vm-muted);
		line-height: 1.35;
	}

	.vv-vm__meta-sep {
		opacity: 0.55;
	}

	.vv-vm__seller {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		color: var(--vv-vm-muted);
	}

	.vv-vm__seller-text {
		font-weight: 500;
	}

	.vv-vm__verified {
		display: inline-flex;
		align-items: center;
		flex: 0 0 auto;
		line-height: 0;
	}

	.vv-vm__verified-icon {
		display: block;
		width: 15px;
		height: 15px;
	}

	.vv-vm__trust {
		display: flex;
		align-items: center;
		gap: 8px;
		margin: 0;
		padding: 8px 12px;
		border-radius: 4px;
		background: var(--vv-vm-green-bar);
		color: #fff;
		font-size: 12.5px;
		font-weight: 600;
		line-height: 1.35;
	}

	.vv-vm__trust-icon {
		flex: 0 0 auto;
		width: 16px;
		height: 16px;
		opacity: 0.95;
	}

	.vv-vm__rating {
		display: inline-flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 6px 8px;
		margin: 0;
		padding: 0;
		text-decoration: none;
		color: inherit;
		max-width: 100%;
	}

	a.vv-vm__rating:hover .vv-vm__rating-count,
	a.vv-vm__rating:hover .vv-vm__rating-label {
		text-decoration: underline;
	}

	.vv-vm__stars {
		position: relative;
		display: inline-block;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0.5px;
		color: #d5d5d5;
		flex: 0 0 auto;
	}

	.vv-vm__stars-base,
	.vv-vm__stars-fill {
		display: block;
		font-family: Arial, "Segoe UI Symbol", sans-serif;
	}

	.vv-vm__stars-fill {
		position: absolute;
		inset: 0 auto 0 0;
		overflow: hidden;
		white-space: nowrap;
		color: #f5a623;
	}

	.vv-vm__stars--sm {
		font-size: 12px;
	}

	.vv-vm__rating-avg {
		font-size: 14px;
		font-weight: 700;
		color: var(--vv-vm-text);
		line-height: 1;
	}

	.vv-vm__rating-count,
	.vv-vm__rating-label {
		font-size: 12.5px;
		color: var(--vv-vm-muted);
		line-height: 1;
	}

	.vv-vm__rating-label {
		display: none;
	}

	.vv-vm__proof {
		display: none;
	}

	.vv-vm__guarantees {
		display: none !important;
	}

	.vv-vm__reviews {
		display: none;
		margin: 2px 0 0;
		padding: 12px 0 2px;
		border-top: 1px solid var(--vv-vm-line);
	}

	.vv-vm__reviews-head {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 10px;
	}

	.vv-vm__reviews-head .vv-vm__section-label {
		margin: 0;
	}

	.vv-vm__reviews-more {
		flex: 0 0 auto;
		font-size: 12.5px;
		font-weight: 600;
		color: #1677ff;
		text-decoration: none;
		white-space: nowrap;
	}

	.vv-vm__reviews-more:hover {
		text-decoration: underline;
	}

	.vv-vm__reviews-summary {
		display: flex;
		align-items: center;
		gap: 6px 8px;
		margin: 0 0 8px;
	}

	.vv-vm__reviews-score {
		font-size: 28px;
		font-weight: 800;
		color: var(--vv-vm-text);
		line-height: 1;
		letter-spacing: -0.02em;
	}

	.vv-vm__real-banner {
		display: flex;
		align-items: center;
		gap: 7px;
		margin: 0 0 10px;
		padding: 8px 10px;
		border-radius: 4px;
		background: #e8f6ec;
		color: var(--vv-vm-green);
		font-size: 12px;
		font-weight: 700;
		line-height: 1.35;
	}

	.vv-vm__real-icon {
		flex: 0 0 auto;
		display: block;
	}

	.vv-vm__review-photos {
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin: 0 0 10px;
		padding-bottom: 2px;
	}

	.vv-vm__review-photos::-webkit-scrollbar {
		display: none;
	}

	.vv-vm__review-photo {
		flex: 0 0 auto;
		width: 52px;
		height: 52px;
		padding: 0;
		border: 0;
		border-radius: 6px;
		overflow: hidden;
		background: #eee;
		cursor: pointer;
		-webkit-appearance: none;
		appearance: none;
	}

	.vv-vm__review-photo:focus-visible,
	.vv-vm__snippet-shot:focus-visible {
		outline: 2px solid var(--vv-vm-orange);
		outline-offset: 2px;
	}

	.vv-vm__review-photo img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.vv-vm__snippets {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.vv-vm__snippet {
		position: relative;
		padding: 0 0 12px;
		border: 0;
		border-bottom: 1px solid #f0f0f0;
		border-radius: 0;
		background: transparent;
		min-width: 0;
	}

	.vv-vm__snippet:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.vv-vm__snippet-who {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 6px;
	}

	.vv-vm__snippet-avatar {
		flex: 0 0 auto;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		overflow: hidden;
		background: #e8ece9;
	}

	.vv-vm__snippet-avatar img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.vv-vm__snippet-avatar--letter {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 13px;
		font-weight: 700;
		color: #2f5c4a;
	}

	.vv-vm__snippet-who-text {
		min-width: 0;
		flex: 1 1 auto;
	}

	.vv-vm__snippet-name-row {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 6px 8px;
	}

	.vv-vm__snippet-author {
		font-size: 13px;
		font-weight: 700;
		color: var(--vv-vm-text);
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		min-width: 0;
	}

	.vv-vm__snippet-vp {
		font-size: 11px;
		font-weight: 700;
		color: #c45500;
		line-height: 1.2;
	}

	.vv-vm__snippet-meta {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 4px 6px;
		margin-top: 2px;
		font-size: 11.5px;
		color: var(--vv-vm-muted);
		line-height: 1.3;
	}

	.vv-vm__snippet-flag {
		margin-right: 2px;
	}

	.vv-vm__snippet-dot {
		opacity: 0.7;
	}

	.vv-vm__snippet-rate {
		display: flex;
		align-items: center;
		gap: 6px;
		margin: 0 0 4px;
	}

	.vv-vm__snippet-grade {
		font-size: 12px;
		font-weight: 700;
		color: #ff6a00;
		line-height: 1;
	}

	.vv-vm__snippet-bought {
		margin: 0 0 4px;
		font-size: 12px;
		color: #555;
		line-height: 1.35;
	}

	.vv-vm__snippet-title {
		margin: 0 0 2px;
		font-size: 13px;
		font-weight: 700;
		color: var(--vv-vm-text);
		line-height: 1.3;
	}

	.vv-vm__snippet-text {
		margin: 0;
		font-size: 12.5px;
		color: #333;
		line-height: 1.45;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.vv-vm__snippet-shots {
		display: flex;
		flex-wrap: nowrap;
		gap: 6px;
		margin-top: 8px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.vv-vm__snippet-shots::-webkit-scrollbar {
		display: none;
	}

	.vv-vm__snippet-shot {
		flex: 0 0 auto;
		width: 56px;
		height: 56px;
		padding: 0;
		border: 0;
		border-radius: 6px;
		overflow: hidden;
		background: #eee;
		cursor: pointer;
		-webkit-appearance: none;
		appearance: none;
	}

	.vv-vm__snippet-shot img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.vv-vm__secure {
		display: flex;
		align-items: center;
		gap: 7px;
		margin: 4px 0 0;
		padding: 0;
		color: var(--vv-vm-green);
		font-size: 12px;
		font-weight: 600;
		line-height: 1.35;
	}

	.vv-vm__secure-icon {
		flex: 0 0 auto;
		display: block;
	}

	.vv-vm__price-row {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 8px 12px;
		margin: 2px 0 2px;
	}

	.vv-vm__price-now {
		font-size: 28px;
		font-weight: 800;
		color: var(--vv-vm-orange);
		line-height: 1.1;
		letter-spacing: -0.02em;
	}

	.vv-vm__price-now .amount,
	.vv-vm__price-now .woocommerce-Price-amount,
	.vv-vm__price-now .woocommerce-Price-currencySymbol {
		color: inherit !important;
		font-weight: inherit;
		font-size: inherit;
	}

	.vv-vm__price-was {
		font-size: 13px;
		color: #999;
		font-weight: 400;
	}

	.vv-vm__price-was del {
		text-decoration: line-through;
		color: inherit;
	}

	.vv-vm__off {
		display: inline-block;
		padding: 2px 7px;
		border: 1px solid var(--vv-vm-orange);
		border-radius: 2px;
		color: var(--vv-vm-orange);
		font-size: 12px;
		font-weight: 700;
		line-height: 1.35;
		background: #fff;
	}

	.vv-vm__off--flash {
		background: rgba(232, 93, 4, 0.08);
	}

	.vv-vm__block {
		margin: 0;
	}

	.vv-vm__deal {
		border: 1px solid var(--vv-vm-orange);
		border-radius: 6px;
		overflow: hidden;
		background: #fff;
	}

	.vv-vm__deal-head {
		background: var(--vv-vm-orange);
		color: #fff;
		font-size: 13px;
		font-weight: 700;
		font-style: italic;
		padding: 7px 12px;
		letter-spacing: 0.01em;
	}

	.vv-vm__deal-body {
		padding: 12px 12px 14px;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.vv-vm__section-label {
		margin: 0 0 10px;
		font-size: 14px;
		font-weight: 700;
		color: var(--vv-vm-text);
	}

	.vv-vm__looks {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.vv-vm__look {
		position: relative;
		width: 92px;
		padding: 0;
		border: 1px solid #d0d0d0;
		border-radius: 4px;
		background: #fff;
		cursor: pointer;
		text-align: left;
		overflow: hidden;
		transition: border-color 0.12s ease;
	}

	.vv-vm__look:hover {
		border-color: #999;
	}

	.vv-vm__look.is-on {
		border-color: #222;
		border-width: 2px;
		box-sizing: border-box;
	}

	.vv-vm__look-num {
		position: absolute;
		top: 4px;
		left: 4px;
		z-index: 1;
		min-width: 16px;
		height: 16px;
		padding: 0 3px;
		border-radius: 2px;
		background: rgba(0, 0, 0, 0.55);
		color: #fff;
		font-size: 10px;
		font-weight: 700;
		line-height: 16px;
		text-align: center;
	}

	.vv-vm__look-img {
		width: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		display: block;
		background: #f3f3f3;
	}

	.vv-vm__look-fallback {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		aspect-ratio: 1 / 1;
		background: #f0f0f0;
		color: #888;
		font-size: 18px;
		font-weight: 700;
	}

	.vv-vm__look-name {
		display: block;
		padding: 5px 6px 7px;
		font-size: 11px;
		line-height: 1.3;
		color: #333;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		border-top: 1px solid #f0f0f0;
	}

	.vv-vm__styles {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.vv-vm__style {
		padding: 8px 12px;
		border: 1px solid #cfcfcf;
		border-radius: 4px;
		background: #fff;
		font-size: 13px;
		font-weight: 600;
		color: #333;
		cursor: pointer;
		line-height: 1.25;
		text-align: center;
		white-space: normal;
		max-width: 100%;
	}

	.vv-vm__style.is-on {
		border-color: #222;
		border-width: 2px;
		color: #111;
		background: #fff;
		padding: 7px 11px;
	}

	.vv-vm__benefits {
		margin: 4px 0 0;
	}

	.vv-vm__service-label {
		margin: 0 0 8px;
		font-size: 14px;
		font-weight: 700;
		color: var(--vv-vm-text);
	}

	.vv-vm__pills {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
	}

	.vv-vm__pill {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		width: auto;
		max-width: 100%;
		flex: 0 1 auto;
		box-sizing: border-box;
		padding: 6px 12px;
		border-radius: 999px;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.3;
		white-space: nowrap;
		background: #fff;
		border: 1px solid var(--vv-vm-green);
		color: var(--vv-vm-green);
	}

	.vv-vm__pill-check {
		flex: 0 0 auto;
		display: block;
	}

	.vv-vm__pill--arrive,
	.vv-vm__pill--ship {
		border: 1px solid var(--vv-vm-green);
		color: var(--vv-vm-green);
	}

	/* Long kit line may wrap once if space is tight; still hug content. */
	.vv-vm__benefits.is-kit .vv-vm__pill {
		white-space: normal;
	}

	@media (min-width: 720px) {
		.vv-vm__benefits.is-digital .vv-vm__pills {
			flex-direction: row;
			flex-wrap: wrap;
			align-items: center;
			gap: 8px;
		}

		.vv-vm__benefits.is-digital .vv-vm__pill {
			width: auto;
			max-width: 100%;
		}
	}

	.vv-vm__qty-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-top: 8px;
		flex-wrap: nowrap;
	}

	.vv-vm__qty-hint {
		display: none;
		margin: 6px 0 0;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.35;
		color: #c2410c;
	}

	.vv-vm__qty-hint.is-on {
		display: block;
	}

	.vv-vm__qty-label {
		font-size: 14px;
		font-weight: 700;
		color: var(--vv-vm-text);
		flex: 0 0 auto;
	}

	/* Calm compact qty: one quiet pill, equal ±, no loud accent */
	.vv-vm__qty-ctrl {
		display: inline-flex;
		align-items: center;
		height: 34px;
		padding: 0 2px;
		border: 1px solid #e5e5e5;
		border-radius: 999px;
		background: #fff;
		flex: 0 0 auto;
		box-sizing: border-box;
		overflow: hidden;
		-webkit-tap-highlight-color: transparent;
	}

	.vv-vm__qty-btn {
		position: relative;
		box-sizing: border-box;
		width: 30px;
		height: 30px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: transparent;
		color: #333;
		font-size: 0;
		line-height: 0;
		cursor: pointer;
		appearance: none;
		-webkit-appearance: none;
		transition: background 0.14s ease, color 0.14s ease;
		touch-action: manipulation;
		user-select: none;
		flex: 0 0 30px;
	}

	.vv-vm__qty-btn::before,
	.vv-vm__qty-btn::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		background: currentColor;
		border-radius: 1px;
		transform: translate(-50%, -50%);
		pointer-events: none;
	}

	.vv-vm__qty-btn::before {
		width: 10px;
		height: 1.5px;
	}

	.vv-vm__qty-btn--plus::after {
		width: 1.5px;
		height: 10px;
	}

	.vv-vm__qty-btn--plus {
		color: #333;
		background: transparent;
	}

	.vv-vm__qty-btn:hover:not(:disabled) {
		background: #f3f3f3;
		color: #111;
	}

	.vv-vm__qty-btn--plus:hover:not(:disabled) {
		background: #f3f3f3;
		color: #111;
	}

	.vv-vm__qty-btn:active:not(:disabled) {
		background: #ebebeb;
	}

	.vv-vm__qty-btn:disabled {
		color: #cfcfcf;
		background: transparent;
		opacity: 1;
		cursor: default;
	}

	/* Beat Blocksy/Woo global input[type=number] border+height (double box). */
	.vv-vm input.vv-vm__qty-val[type="number"],
	.vv-vm .vv-vm__qty-val {
		box-sizing: border-box;
		width: 2rem !important;
		min-width: 1.75rem !important;
		max-width: 2.5rem !important;
		height: 30px !important;
		min-height: 0 !important;
		max-height: 30px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-width: 0 !important;
		border-radius: 0 !important;
		outline: none !important;
		background: transparent !important;
		box-shadow: none !important;
		text-align: center;
		font-size: 14px;
		font-weight: 650;
		color: #222;
		line-height: 30px !important;
		letter-spacing: -0.02em;
		-webkit-appearance: none;
		-moz-appearance: textfield;
		appearance: textfield;
	}

	.vv-vm .vv-vm__qty-val::-webkit-outer-spin-button,
	.vv-vm .vv-vm__qty-val::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	.vv-vm .vv-vm__qty-val:focus {
		outline: none !important;
		box-shadow: none !important;
		border: 0 !important;
		background: transparent !important;
		color: #111;
	}

	.vv-vm__actions {
		margin: 2px 0 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.vv-vm__cta {
		width: 100%;
		height: 48px;
		border: 0;
		border-radius: 999px;
		background: var(--vv-vm-orange-deep);
		color: #fff;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0.01em;
		cursor: pointer;
		transition: background 0.15s ease, opacity 0.15s ease;
	}

	.vv-vm__cta:hover:not(:disabled) {
		background: #e86800;
	}

	.vv-vm__cta:disabled,
	.vv-vm__cta.is-disabled {
		opacity: 0.45;
		cursor: not-allowed;
	}

	.vv-vm__cta.is-busy {
		opacity: 0.7;
		pointer-events: none;
	}

	.vv-vm__stepper {
		display: flex;
		align-items: center;
		gap: 4px;
		width: 100%;
		min-height: 52px;
		padding: 6px;
		border: 0;
		border-radius: 999px;
		background: var(--vv-vm-orange-deep);
		color: #fff;
		overflow: hidden;
		box-sizing: border-box;
	}

	.vv-vm__stepper.is-busy {
		opacity: 0.75;
		pointer-events: none;
	}

	.vv-vm__stepper-btn {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		align-self: center;
		position: relative;
		border: 0;
		border-radius: 999px;
		background: #fff;
		color: #1a1a1a;
		font-size: 0;
		line-height: 0;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
		transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
	}

	.vv-vm__stepper-btn:hover {
		background: #fff;
		color: #000;
		transform: scale(1.04);
	}

	.vv-vm__stepper-btn:active {
		transform: scale(0.96);
		background: #f3f3f3;
	}

	.vv-vm__stepper-btn:disabled {
		opacity: 0.45;
		cursor: not-allowed;
		transform: none;
		box-shadow: none;
	}

	/* Draw + / − geometrically so glyphs don't sit optically high/left. */
	.vv-vm__stepper-btn span {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		border: 0;
	}

	.vv-vm__stepper-btn::before,
	.vv-vm__stepper-btn::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		background: currentColor;
		border-radius: 1px;
		transform: translate(-50%, -50%);
		pointer-events: none;
	}

	.vv-vm__stepper-btn::before {
		width: 14px;
		height: 2.5px;
	}

	.vv-vm__stepper-btn--plus::after {
		width: 2.5px;
		height: 14px;
	}

	.vv-vm__stepper-mid {
		flex: 1;
		min-width: 0;
		text-align: center;
		padding: 4px 6px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1px;
		pointer-events: none;
		background: transparent;
	}

	.vv-vm__stepper-count {
		font-size: 16px;
		font-weight: 800;
		line-height: 1.2;
		color: #fff;
	}

	.vv-vm__stepper-name {
		font-size: 12px;
		font-weight: 500;
		line-height: 1.25;
		color: rgba(255, 255, 255, 0.95);
		max-width: 100%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.vv-vm__details {
		align-self: flex-start;
		margin-top: 2px;
		font-size: 13px;
		color: #333;
		text-decoration: none;
	}

	.vv-vm__details:hover {
		color: var(--vv-vm-orange);
		text-decoration: underline;
	}

	/*
	 * Scroll lock is JS-only (wheel/touch/scroll freeze). Do NOT use overflow:hidden
	 * or padding-right/--vv-sbw here — removing the scrollbar (or faking its width)
	 * is what shifted Grand Opening / the whole shop left-right.
	 */
	html.vv-vm-open,
	body.vv-vm-open {
		overscroll-behavior: none;
	}

	.vv-vm__dialog,
	.vv-vm__inner {
		touch-action: pan-y;
	}

	[data-vv-vm-main-wrap] {
		touch-action: pan-y;
	}

	@media (max-width: 719px) {
		.vv-vm {
			padding: 0;
			padding-top: max(64px, calc(env(safe-area-inset-top, 0px) + 36px));
			align-items: flex-end;
			width: 100%;
			max-width: 100vw;
			overflow-x: hidden;
			box-sizing: border-box;
		}

		.vv-vm__dialog {
			width: 100%;
			max-width: 100vw;
			height: auto;
			max-height: 78vh;
			max-height: 74svh;
			min-height: 0;
			border-radius: 14px 14px 0 0;
			animation: vv-vm-up 0.24s ease;
			overflow: hidden;
			flex: 0 1 auto;
		}

		.vv-vm--booting {
			align-items: center;
			justify-content: center;
			padding: 20px;
		}

		@keyframes vv-vm-up {
			from {
				transform: translateY(40px);
				opacity: 0.65;
			}
			to {
				transform: none;
				opacity: 1;
			}
		}

		.vv-vm__inner {
			overflow-x: hidden;
			overflow-y: auto;
			width: 100%;
			max-width: 100%;
			min-height: 0;
			flex: 1 1 auto;
			-webkit-overflow-scrolling: touch;
		}

		.vv-vm__grid {
			display: flex;
			flex-direction: column;
			grid-template-columns: none;
			width: 100%;
			max-width: 100%;
			min-height: 0;
		}

		.vv-vm__media,
		.vv-vm__info,
		.vv-vm__deal,
		.vv-vm__deal-body,
		.vv-vm__block,
		.vv-vm__actions,
		.vv-vm__price-row,
		.vv-vm__trust,
		.vv-vm__rating,
		.vv-vm__reviews,
		.vv-vm__proof,
		.vv-vm__secure {
			width: 100%;
			max-width: 100%;
			min-width: 0;
			box-sizing: border-box;
		}

		/* Mobile-only: PDP reviews + Temu-style social proof in the picker. */
		.vv-vm__reviews {
			display: block;
		}

		.vv-vm__proof {
			display: flex;
			align-items: center;
			gap: 7px;
			margin: 0;
			padding: 8px 10px;
			border-radius: 4px;
			background: #e8f6ec;
			color: var(--vv-vm-green);
			font-size: 12px;
			font-weight: 700;
			line-height: 1.35;
			text-decoration: none;
		}

		a.vv-vm__proof:hover {
			text-decoration: underline;
		}

		.vv-vm__proof-icon {
			flex: 0 0 auto;
			display: block;
		}

		.vv-vm__media {
			padding: 12px 12px 8px;
			border-right: 0;
			border-bottom: 1px solid var(--vv-vm-line);
		}

		.vv-vm__main-img-wrap {
			width: 100%;
			max-width: 100%;
			max-height: none;
			margin: 0;
			aspect-ratio: 1 / 1;
		}

		.vv-vm__thumbs-wrap {
			width: 100%;
			max-width: 100%;
		}

		.vv-vm__thumbs {
			display: flex;
			flex-wrap: nowrap;
			grid-template-columns: none;
			width: 100%;
			max-width: 100%;
			gap: 6px;
			overflow-x: auto;
			overflow-y: hidden;
			-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
		}

		.vv-vm__thumbs::-webkit-scrollbar {
			display: none;
		}

		.vv-vm__thumb {
			flex: 0 0 48px;
			width: 48px;
			height: 48px;
			aspect-ratio: 1 / 1;
		}

		.vv-vm__info {
			padding: 12px 14px 18px;
			gap: 10px;
		}

		.vv-vm__title {
			font-size: 20px;
			-webkit-line-clamp: 2;
			padding-right: 36px;
			max-width: 100%;
		}

		.vv-vm__story {
			font-size: 12.5px;
			-webkit-line-clamp: 4;
			padding-right: 4px;
		}

		.vv-vm__price-row {
			gap: 6px 8px;
		}

		.vv-vm__price-now {
			font-size: 22px;
		}

		.vv-vm__deal-body {
			padding: 10px;
			gap: 10px;
		}

		.vv-vm__looks {
			width: 100%;
			gap: 8px;
		}

		.vv-vm__look {
			width: calc((100% - 16px) / 3);
			max-width: 96px;
			flex: 0 0 auto;
			box-sizing: border-box;
		}

		.vv-vm__look.is-on {
			margin: 0;
		}

		.vv-vm__styles {
			width: 100%;
			flex-wrap: nowrap;
			gap: 6px;
		}

		.vv-vm__style {
			flex: 1 1 0;
			min-width: 0;
			box-sizing: border-box;
			padding: 7px 4px;
			font-size: 11.5px;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}

		.vv-vm__style.is-on {
			padding: 6px 3px;
		}

		.vv-vm__pills {
			width: 100%;
		}

		.vv-vm__pill {
			font-size: 11px;
			padding: 5px 10px;
			width: auto;
			max-width: 100%;
			white-space: nowrap;
			box-sizing: border-box;
		}

		.vv-vm__benefits.is-kit .vv-vm__pill {
			white-space: normal;
		}

		.vv-vm__qty-row {
			width: 100%;
		}

		.vv-vm__qty-ctrl {
			height: 36px;
			padding: 0 3px;
		}

		.vv-vm__qty-btn {
			width: 32px;
			height: 32px;
			flex-basis: 32px;
		}

		.vv-vm input.vv-vm__qty-val[type="number"],
		.vv-vm .vv-vm__qty-val {
			width: 2rem !important;
			min-width: 1.85rem !important;
			height: 32px !important;
			max-height: 32px !important;
			line-height: 32px !important;
			font-size: 15px;
		}

		.vv-vm__stepper {
			width: 100%;
			max-width: 100%;
			box-sizing: border-box;
		}

		.vv-vm__rating-label {
			display: inline;
		}

		.vv-vm__rating-count {
			display: none;
		}

		.vv-vm__snippet {
			padding: 0 0 12px;
		}

		.vv-vm__snippet-text {
			-webkit-line-clamp: 3;
		}

		.vv-vm__reviews {
			padding-top: 10px;
		}

		.vv-vm__reviews-score {
			font-size: 26px;
		}

		.vv-vm__close {
			position: absolute;
			top: 10px;
			right: 10px;
			z-index: 8;
			background: rgba(255, 255, 255, 0.96);
			border: 1px solid rgba(40, 36, 32, 0.18);
			box-shadow: 0 1px 3px rgba(40, 36, 32, 0.16);
		}

		.vv-vm__nav {
			width: 32px;
			height: 32px;
		}

		.vv-vm__close .vv-vm__icon,
		.vv-vm__nav .vv-vm__icon {
			width: 13px;
			height: 13px;
		}
	}

	.vv-vm__ugc-lb {
		position: fixed;
		inset: 0;
		z-index: 40;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 56px 16px 24px;
		box-sizing: border-box;
		background: rgba(10, 9, 8, 0.94);
		touch-action: none;
	}

	.vv-vm__ugc-lb.is-reel {
		padding: 48px 12px 24px;
		background: rgba(10, 9, 8, 0.94);
	}

	.vv-vm__ugc-lb[hidden] {
		display: none !important;
	}

	.vv-vm__ugc-lb img,
	.vv-vm__ugc-lb-video {
		display: block;
		max-width: min(96vw, 920px);
		max-height: min(86vh, calc(100% - 8px));
		width: auto;
		height: auto;
		object-fit: contain;
		border-radius: 4px;
		background: #111;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
		user-select: none;
		-webkit-user-drag: none;
	}

	.vv-vm__ugc-lb img[hidden],
	.vv-vm__ugc-lb-video[hidden] {
		display: none !important;
	}

	.vv-vm__ugc-lb-video {
		width: min(96vw, 720px);
	}

	.vv-vm__ugc-lb.is-waiting-video .vv-vm__ugc-lb-video {
		position: absolute;
		width: 1px;
		height: 1px;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
	}

	.vv-vm__ugc-lb.is-waiting-video img {
		width: auto;
		height: min(86vh, calc(100% - 8px));
		max-width: min(92vw, 920px);
		max-height: min(86vh, calc(100% - 8px));
		object-fit: contain;
	}

	.vv-vm__ugc-lb.is-playing-video .vv-vm__ugc-lb-video {
		width: auto;
		height: min(86vh, calc(100% - 8px));
		max-width: min(92vw, 920px);
		max-height: min(86vh, calc(100% - 8px));
		object-fit: contain;
	}

	.vv-vm__ugc-lb-play {
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 3;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 64px;
		height: 64px;
		margin: 0;
		padding: 0;
		transform: translate(-50%, -50%);
		border: 0;
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.55);
		cursor: pointer;
	}

	.vv-vm__ugc-lb-play[hidden] {
		display: none !important;
	}

	.vv-vm__ugc-lb-play::after {
		content: "";
		display: block;
		width: 0;
		height: 0;
		margin: 0 0 0 2px;
		border-style: solid;
		border-width: 11px 0 11px 18px;
		border-color: transparent transparent transparent #fff;
	}

	.vv-vm__ugc-lb-play.is-buffer {
		pointer-events: none;
	}

	.vv-vm__ugc-lb-play.is-buffer::after {
		display: none;
	}

	.vv-vm__ugc-lb-play.is-buffer::before {
		content: "";
		display: block;
		width: 22px;
		height: 22px;
		border: 2.5px solid rgba(255, 255, 255, 0.28);
		border-top-color: #fff;
		border-radius: 50%;
		animation: vv-vm-ugc-buffer 0.7s linear infinite;
	}

	@keyframes vv-vm-ugc-buffer {
		to {
			transform: rotate(360deg);
		}
	}

	.vv-vm__review-video {
		position: relative;
	}

	.vv-vm__review-video-fallback {
		display: block;
		width: 100%;
		height: 100%;
		background: #2a2a2a;
	}

	.vv-vm__review-video-play {
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 1;
		width: 22px;
		height: 22px;
		margin: 0;
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.62);
		color: #fff;
		font-size: 9px;
		line-height: 22px;
		text-align: center;
		transform: translate(-50%, -50%);
		pointer-events: none;
	}

	.vv-vm__review-video-dur {
		position: absolute;
		right: 3px;
		bottom: 3px;
		z-index: 1;
		padding: 1px 4px;
		border-radius: 3px;
		background: rgba(0, 0, 0, 0.7);
		color: #fff;
		font-size: 9px;
		font-weight: 700;
		line-height: 1.2;
		pointer-events: none;
	}

	.vv-vm__ugc-lb-close,
	.vv-vm__ugc-lb-nav {
		position: absolute;
		z-index: 5;
		width: 40px;
		height: 40px;
		margin: 0;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.28);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.96);
		color: #222;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 0;
		-webkit-appearance: none;
		appearance: none;
	}

	.vv-vm__ugc-lb-close .vv-vm__icon,
	.vv-vm__ugc-lb-nav .vv-vm__icon {
		display: block;
		width: 16px;
		height: 16px;
		flex: none;
	}

	.vv-vm__ugc-lb-close {
		top: max(12px, env(safe-area-inset-top, 0px));
		right: 12px;
	}

	.vv-vm__ugc-lb-nav--prev {
		left: 10px;
		top: 50%;
		margin-top: -20px;
	}

	.vv-vm__ugc-lb-nav--next {
		right: 10px;
		top: 50%;
		margin-top: -20px;
	}

	.vv-vm__ugc-lb-nav[hidden] {
		display: none !important;
	}
