/**
 * Viloer Product Page v1.1.0
 *
 * PART 1 — shared sections, values copied 1:1 from the approved design
 * export (breakpoints ≤767 / 768–1099 / ≥1100). Every selector is
 * prefixed with .vpp so it outranks Elementor kit / theme rules
 * (e.g. `.elementor img { height:auto }`, kit heading typography).
 * PART 2 — Hero Section v1.6.3 CSS, verbatim.
 * PART 3 — Bundle Selector v3.x CSS, verbatim.
 */

/* ================================================================
 * ROOT · design tokens (straight from the design :root).
 * ================================================================ */
.vpp {
	--vpp-ink: #1d1d1f;
	--vpp-ink-2: #2c2c2e;
	--vpp-gray: #86868b;
	--vpp-gray-2: #a1a1a6;
	--vpp-gray-lt: #d2d2d7;
	--vpp-line: rgba(0, 0, 0, .10);
	--vpp-hair: rgba(0, 0, 0, .07);
	--vpp-bg2: #f5f5f7;
	--vpp-green: #1a7a4f;
	--vpp-green-600: #176a45;
	--vpp-green-tint: rgba(26, 122, 79, .10);
	--vpp-green-deep: #0f3d2a;
	--vpp-green-deep-2: #0b3322;
	--vpp-mint: #e4f0e8;
	--vpp-mint-2: #d6e9dd;
	--vpp-mint-soft: #eef6f0;
	--vpp-mint-text: #b6e3c7;
	--vpp-coral: #f4593b;
	--vpp-coral-soft: #ffe3dc;
	--vpp-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
	--vpp-mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;

	--vpp-cw: 520px;
	--vpp-rail-w: 464px;
	--vpp-rail-top: 24px;

	--vpp-ugc-w: 200px;
	--vpp-ugc-h: 120px;
	--vpp-ugc-gap: 12px;
	--vpp-band-gap: 38px;

	font-family: var(--vpp-font);
	color: var(--vpp-ink);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

@media (min-width: 768px) {
	.vpp { --vpp-cw: 760px; }
}

@media (min-width: 1100px) {
	.vpp {
		--vpp-cw: 900px;
		--vpp-ugc-w: 244px;
		--vpp-ugc-h: 146px;
	}
}

/* ================================================================
 * THEME NEUTRALIZER — Hello theme + Elementor kit apply their own
 * a/button/input hover & focus colors (the unwanted pink hover wash).
 * We do NOT touch base backgrounds (that would wipe the CTA fills like
 * v1.0.0 did); we only cancel the theme's hover/focus recolor, then pin
 * each component's real background with .vpp-scoped rules that outrank
 * Hello's generic `a:hover` / `button:hover`.
 * ================================================================ */
.vpp a,
.vpp button,
.vpp a:link,
.vpp a:visited {
	text-decoration: none;
}

/* Cancel the theme recolor on links + non-component buttons. */
.vpp a:hover,
.vpp a:focus,
.vpp a:active,
.vpp button:focus {
	color: inherit;
	outline: none;
}

/* Transparent-by-design controls: force transparent through every state
 * so Hello's pink hover can't paint them. (0,3,0)+!important beats theme. */
.vpp .viloer-bundle__tile-head,
.vpp .viloer-bundle__tile-head:hover,
.vpp .viloer-bundle__tile-head:focus,
.vpp .viloer-bundle__tile-head:active,
.vpp .viloer-bundle__metalink,
.vpp .viloer-bundle__metalink:hover,
.vpp .viloer-bundle__metalink:focus,
.vpp .vpp-qa-tog,
.vpp .vpp-qa-tog:hover,
.vpp .vpp-qa-tog:focus,
.vpp .vpp-cf-nav:focus {
	background-color: transparent !important;
	box-shadow: none;
}

/* White-surface controls: keep them white through hover/focus. */
.vpp .viloer-bundle__size-btn,
.vpp .viloer-bundle__size-btn:hover,
.vpp .viloer-bundle__size-btn:focus,
.vpp .viloer-bundle__size-btn:active {
	background-color: #fff !important;
}

/* Size dropdown options: design mint hover. */
.vpp .viloer-bundle__size-option:hover,
.vpp .viloer-bundle__size-option:focus {
	background-color: var(--vpp-mint-soft, #eef6f0) !important;
}

/* The three solid CTAs: green base, darker-green on hover, always white
 * text — pinned so no theme state can wash them out. */
.vpp .viloer-bundle__cta,
.vpp .vpp-frev__btn {
	background-color: var(--vpp-green, #1a7a4f) !important;
	color: #fff !important;
	text-decoration: none;
}

.vpp .viloer-bundle__cta:hover,
.vpp .viloer-bundle__cta:focus,
.vpp .vpp-frev__btn:hover,
.vpp .vpp-frev__btn:focus {
	background-color: var(--vpp-green-600, #176a45) !important;
	color: #fff !important;
}

.vpp .viloer-bundle__cta.is-added {
	background-color: var(--vpp-ink, #1d1d1f) !important;
}

/* Hero pill: pistachio base kept through theme states (the widget's own
 * Elementor style controls still override this via inline selectors). */
.vpp .viloer-hero__btn {
	text-decoration: none;
}

/* Zero-specificity resets (:where) — they never beat component rules,
 * unlike v1.0.0 where `.vpp button` silently killed every button skin. */
.vpp *,
.vpp *::before,
.vpp *::after { box-sizing: border-box; }

.vpp :where(img) { display: block; max-width: 100%; }

.vpp :where(button) {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	padding: 0;
	color: inherit;
}

.vpp :where(a) { text-decoration: none; color: inherit; }

.vpp .vpp-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* Striped placeholder (from the design .ph). */
.vpp .vpp-ph {
	position: relative;
	background-color: #eef1f0 !important;
	background-image: repeating-linear-gradient(135deg, rgba(15, 61, 42, .05) 0 10px, rgba(15, 61, 42, .02) 10px 20px) !important;
}

/* ================================================================
 * SHELL · capped column + sticky rail (design .shell/.col-main/.col-buy).
 * ================================================================ */
.vpp .vpp-shell {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	background: #fff;
	color: var(--vpp-ink);
}

.vpp .vpp-main { min-width: 0; }

.vpp .vpp-main > .vpp-sec {
	max-width: var(--vpp-cw);
	margin-left: auto;
	margin-right: auto;
}

.vpp .vpp-main > .vpp-sec--full { max-width: none; }

/* Full-width lead hero (rendered above the shell when hero is first).
 * It spans the whole widget; the hero's own content wrapper handles the
 * centering, so this block must NOT constrain or offset it. */
.vpp .vpp-lead {
	width: 100%;
	margin: 0;
	padding: 0;
}

.vpp .vpp-lead > .vpp-sec--hero {
	max-width: none;
	margin: 0;
	width: 100%;
}
.vpp .vpp-rule {
	height: 1px;
	background: var(--vpp-hair);
	border: 0;
	margin: 0 24px;
}

.vpp .vpp-rail { display: none; }

/* Break the shell out of any narrow Elementor column/container padding so
 * the sticky-rail grid always has room. The widget is meant to sit in a
 * full-width section, but this keeps it robust if it doesn't. */
.elementor-widget-viloer_product_page .elementor-widget-container { padding: 0 !important; }

/* THE WIDGET ELEMENT ITSELF ALWAYS SPANS FULL WIDTH.
 * In Elementor flex containers (especially Direction: Row) elements get
 * auto/content width — which left the whole widget occupying only part
 * of the screen, so everything centered INSIDE it looked off-center on
 * the page. This pins the element to 100% no matter what the container
 * direction or the element's Width setting is. */
.elementor-widget-viloer_product_page {
	width: 100% !important;
	max-width: 100% !important;
	flex-grow: 1;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

@media (min-width: 1100px) {
	.vpp--has-rail .vpp-shell {
		display: grid;
		grid-template-columns: minmax(0, 1fr) var(--vpp-rail-w);
		/* NOTE: no align-items here. Grid default (stretch) lets the rail
		 * column run the full shell height, giving position:sticky room to
		 * travel. align-items:start (added in 1.2.0) collapsed the column
		 * to content height — which is exactly why the rail never stuck. */
	}

	.vpp--has-rail .vpp-main {
		border-right: 1px solid var(--vpp-hair);
		min-width: 0;
	}

	.vpp--has-rail .vpp-rail {
		display: block;
		background: var(--vpp-bg2);
	}

	.vpp .vpp-rail-in {
		position: sticky;
		top: var(--vpp-rail-top);
		padding: 24px;
	}

	/* Chromeless slot: the Bundle widget brings its own card (radius 30 +
	 * shadow — the approved ZIP look). Giving this wrapper its own white
	 * card produced a card-inside-a-card. */
	.vpp .vpp-rail-card {
		background: transparent;
		border: 0;
		border-radius: 0;
		padding: 0;
		box-shadow: none;
	}

		/* Inline buy box hides on desktop only after JS moved it to the rail. */
	.vpp--has-rail.vpp-rail-active .vpp-sec--bundle { display: none; }

	.vpp .vpp-rail-in.is-ping { animation: vppRailPing 1.1s ease-out 2; }
}

/* Bundle icons (ALL breakpoints): Elementor-rendered SVGs don't follow
 * `color` on their own — pin fill to currentColor so chips are green,
 * trust icons ink and the CTA icon white, exactly like the approved ZIP. */
.vpp .viloer-bundle__icon svg,
.vpp .viloer-bundle__stars svg {
	fill: currentColor;
}

/* Design railPing: inset ring flash, runs twice. */
@keyframes vppRailPing {
	0% { box-shadow: inset 0 0 0 0 rgba(26, 122, 79, 0); }
	30% { box-shadow: inset 0 0 0 3px rgba(26, 122, 79, .35); }
	100% { box-shadow: inset 0 0 0 0 rgba(26, 122, 79, 0); }
}

/* Elementor editor: everything inline + visible for easy editing —
 * unless the user turned on "Preview Sticky Rail in Editor". */
.elementor-editor-active .vpp:not(.vpp--editor-rail) .vpp-rail { display: none !important; }
.elementor-editor-active .vpp--has-rail:not(.vpp--editor-rail) .vpp-shell { display: block; }
.elementor-editor-active .vpp--has-rail:not(.vpp--editor-rail) .vpp-main { border-right: 0; }
.elementor-editor-active .vpp--has-rail:not(.vpp--editor-rail) .vpp-sec--bundle { display: block !important; }

/* ================================================================
 * SHARED HEADERS · design .f-kick / .f-h2 / .e-sub — all centered,
 * heading capped at 14ch + balanced = the two-line look.
 * ================================================================ */
.vpp .vpp-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.vpp .vpp-kick {
	font-family: var(--vpp-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--vpp-green);
	text-align: center;
}

.vpp .vpp-kick--lt { color: var(--vpp-mint-text); }

.vpp .vpp-h2 {
	font-family: var(--vpp-font);
	font-size: clamp(30px, 8.5vw, 38px);
	font-weight: 600;
	letter-spacing: -1.2px;
	line-height: 1.04;
	text-align: center;
	margin: 12px auto 0;
	max-width: 14ch;
	text-wrap: balance;
	color: var(--vpp-ink);
}

.vpp .vpp-h2--lt { color: #fff; }

.vpp .vpp-sub {
	font-family: var(--vpp-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--vpp-gray);
	text-align: center;
	margin: 14px auto 0;
	max-width: 32ch;
}

@media (min-width: 1100px) {
	.vpp .vpp-h2 { font-size: 44px; }
}

/* ================================================================
 * 2 · UGC WALL (design .ug) — edge-masked dual marquee.
 * ================================================================ */
.vpp .vpp-sec--ugc {
	padding: 56px 0 58px;
	background: #fff;
	overflow: hidden;
}

.vpp .vpp-sec--ugc .vpp-head { padding: 0 24px; }

.vpp .vpp-ugc-rows {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vpp .vpp-mq { overflow: hidden; }

.vpp .vpp-mq-track {
	display: flex;
	width: max-content;
	will-change: transform;
}

.vpp .vpp-mq-grp {
	display: flex;
	align-items: center;
	gap: var(--vpp-mq-gap, 12px);
	padding-right: var(--vpp-mq-gap, 12px);
	flex: 0 0 auto;
}

.vpp .vpp-ugc-row { --vpp-mq-gap: var(--vpp-ugc-gap); }

/* Edge mask on rows (design default; the toggle turns it off). */
.vpp-ugc-fade-yes .vpp .vpp-ugc-row {
	-webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
	mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.vpp .vpp-ugc-card {
	width: var(--vpp-ugc-w);
	height: var(--vpp-ugc-h);
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	background: var(--vpp-bg2);
	flex: 0 0 auto;
}

.vpp .vpp-ugc-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 1100px) {
	.vpp .vpp-sec--ugc { padding: 72px 0 74px; }
}

/* ================================================================
 * 3 · PROBLEM TICKER (design .f-band) + the new static label.
 * ================================================================ */
.vpp .vpp-band-wrap {
	background: var(--vpp-green);
	color: #fff;
	padding: 18px 0;
	display: flex;
	align-items: center;
}

.vpp .vpp-band-wrap--labeled { gap: 14px; }

.vpp .vpp-band__label {
	padding-left: 24px;
	font-family: var(--vpp-font);
	font-size: 14.5px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	flex: 0 0 auto;
}

.vpp .vpp-band {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	--vpp-mq-gap: var(--vpp-band-gap);
}

.vpp .vpp-band-wrap--labeled .vpp-band {
	-webkit-mask: linear-gradient(90deg, transparent, #000 5%);
	mask: linear-gradient(90deg, transparent, #000 5%);
}

.vpp .vpp-band__item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--vpp-font);
	font-size: 14.5px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}

.vpp .vpp-band__item .vpp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	color: rgba(255, 255, 255, .85);
	flex-shrink: 0;
}

.vpp .vpp-band__item .vpp-icon svg {
	width: 100%;
	height: 100%;
}

.vpp .vpp-band__item .vpp-icon i { font-size: 17px; }

/* ================================================================
 * 4 · FEATURED REVIEWS (design .f-tst) — dark scroll-snap strip.
 * ================================================================ */
.vpp .vpp-tst {
	background: var(--vpp-green-deep);
	color: #fff;
	padding: 56px 0;
}

.vpp .vpp-tst .vpp-head { padding: 0 24px; }

.vpp .vpp-tst__scroll {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 26px 24px 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.vpp .vpp-tst__scroll::-webkit-scrollbar { display: none; }

.vpp .vpp-tst__scroll.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	user-select: none;
}

.vpp .vpp-tcard {
	scroll-snap-align: center;
	flex: 0 0 84%;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 22px;
	padding: 24px;
}

.vpp .vpp-tcard__stars {
	color: var(--vpp-mint-text);
	display: flex;
	gap: 2px;
}

.vpp .vpp-tcard__txt {
	font-family: var(--vpp-font);
	font-size: 17px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: -.2px;
	margin: 14px 0 18px;
	color: #fff;
	text-wrap: pretty;
}

.vpp .vpp-tcard__meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Hardened: beats `.elementor img { height:auto }` — always a circle. */
.vpp .vpp-tcard__av {
	width: 42px;
	height: 42px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, .35);
	flex-shrink: 0;
}

.vpp .vpp-tcard__who {
	font-size: 13.5px;
	font-weight: 600;
	color: #fff;
}

.vpp .vpp-tcard__loc {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .6);
	margin-top: 1px;
}

@media (min-width: 768px) {
	.vpp .vpp-tcard { flex: 0 0 350px; }
	.vpp .vpp-tst__scroll { padding: 26px 32px 8px; }
}

@media (min-width: 1100px) {
	.vpp .vpp-tst { padding: 72px 0; }
	.vpp .vpp-tst__scroll { padding: 30px 48px 8px; }
}

/* ================================================================
 * 5 · MEDIA COVERFLOW (design .gs) — stage, cards, controls.
 * ================================================================ */
.vpp .vpp-sec--coverflow {
	padding: 56px 0 60px;
	overflow: hidden;
}

.vpp .vpp-sec--coverflow .vpp-head { padding: 0 24px; }

.vpp .vpp-sec--coverflow .vpp-h2 { max-width: 12ch; }

.vpp .vpp-cf-stage {
	position: relative;
	height: 355px;
	margin-top: 34px;
	perspective: 950px;
	touch-action: pan-y;
	cursor: grab;
	outline: none;
}

.vpp .vpp-cf-stage:active { cursor: grabbing; }

.vpp .vpp-cf-card {
	position: absolute;
	left: 50%;
	top: 0;
	width: 250px;
	max-width: 68vw;
	height: 350px;
	margin-left: -125px;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(180deg, #fafcf9 0%, #e0e9e0 52%, #9db09f 100%);
	box-shadow: 0 24px 50px -22px rgba(15, 50, 35, .35);
	will-change: transform;
}

.vpp .vpp-cf-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, #1d4434 0%, #0f3d2a 55%, #092b1d 100%);
	opacity: 0;
	transition: opacity .45s;
	pointer-events: none;
}

.vpp .vpp-cf-card.is-on::after { opacity: 1; }

/* Photo/GIF/video media stays ABOVE the tint (never washed). */
.vpp .vpp-cf-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
}

/* Opt-in: tint media on the active card. */
.vpp-cf-dimmedia-yes .vpp .vpp-cf-media { z-index: 0; }

.vpp .vpp-cf-icon {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	top: 68px;
	display: flex;
	justify-content: center;
	color: rgba(15, 61, 42, .16);
	transition: color .45s;
}

.vpp .vpp-cf-icon svg {
	width: 96px;
	height: 96px;
}

.vpp .vpp-cf-icon i { font-size: 96px; }

.vpp .vpp-cf-card.is-on .vpp-cf-icon { color: rgba(182, 227, 199, .55); }

/* Caption — LEFT aligned, exactly like the design .gs-cap. */
.vpp .vpp-cf-cap {
	position: absolute;
	z-index: 3;
	left: 20px;
	right: 20px;
	bottom: 20px;
	pointer-events: none;
}

.vpp .vpp-cf-kick {
	display: block;
	font-family: var(--vpp-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .8);
	transition: color .45s;
}

.vpp .vpp-cf-card.is-on .vpp-cf-kick { color: var(--vpp-mint-text); }

.vpp .vpp-cf-t {
	display: block;
	font-family: var(--vpp-font);
	font-size: 17.5px;
	font-weight: 700;
	letter-spacing: -.2px;
	color: #fff;
	margin-top: 6px;
	text-shadow: 0 1px 8px rgba(20, 40, 30, .35);
}

.vpp .vpp-cf-sub {
	text-align: center;
	font-family: var(--vpp-font);
	font-size: 15px;
	line-height: 1.5;
	color: var(--vpp-gray);
	margin: 22px auto 0;
	max-width: 34ch;
	min-height: 46px;
	padding: 0 24px;
}

.vpp .vpp-cf-ctrls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 20px;
}

.vpp .vpp-cf-nav {
	width: 46px;
	height: 46px;
	border-radius: 99px;
	background: #fff;
	color: var(--vpp-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 22px -8px rgba(15, 50, 35, .3), 0 1px 4px rgba(0, 0, 0, .06);
}

.vpp .vpp-cf-nav:active { transform: scale(.94); }

.vpp .vpp-cf-nav svg {
	width: 18px;
	height: 18px;
}

.vpp .vpp-cf-nav--prev svg { transform: scaleX(-1); }

.vpp .vpp-cf-nav[disabled] {
	opacity: .35;
	pointer-events: none;
}

.vpp .vpp-cf-dots {
	display: flex;
	align-items: center;
	gap: 7px;
}

.vpp .vpp-cf-dot {
	width: 6px;
	height: 6px;
	border-radius: 99px;
	background: var(--vpp-mint-2);
	transition: width .3s, background .3s;
}

.vpp .vpp-cf-dot.is-on {
	width: 22px;
	background: var(--vpp-green-deep);
}

/* ================================================================
 * 6 · FEATURE GRID (design .feat-grid — mint 2×2 → 4 across).
 * ================================================================ */
.vpp .vpp-sec--features { padding: 0 24px 56px; }

.vpp .vpp-feat-grid {
	margin: 30px auto 0;
	max-width: 380px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 1fr;
	gap: 12px;
}

.vpp .vpp-feat-card {
	background: var(--vpp-mint);
	border-radius: 20px;
	padding: 22px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.vpp .vpp-feat-card__ic {
	width: 50px;
	height: 50px;
	border-radius: 99px;
	background: #fff;
	color: var(--vpp-green);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	box-shadow: 0 4px 14px rgba(15, 61, 42, .08);
}

.vpp .vpp-feat-card__ic svg {
	width: 22px;
	height: 22px;
	fill: currentColor; /* Elementor renders FA as inline SVG with no fill → defaults to black without this */
}

.vpp .vpp-feat-card__ic i { font-size: 22px; }

.vpp .vpp-feat-card__t {
	font-family: var(--vpp-font);
	font-size: 15.5px;
	font-weight: 600;
	letter-spacing: -.2px;
}

.vpp .vpp-feat-card__b {
	font-family: var(--vpp-font);
	font-size: 13px;
	line-height: 1.45;
	color: var(--vpp-gray);
	margin-top: 5px;
}

@media (min-width: 768px) {
	.vpp .vpp-feat-grid { max-width: 560px; }
}

@media (min-width: 1100px) {
	.vpp .vpp-sec--features { padding: 0 48px 72px; }
	.vpp .vpp-feat-grid {
		max-width: 840px;
		grid-template-columns: repeat(4, 1fr);
	}
	.vpp .vpp-feat-card { padding: 26px 18px; }
}

/* ================================================================
 * 7 · BENTO GALLERY (design .e-grid).
 * ================================================================ */
.vpp .vpp-sec--bento { padding: 0 24px 56px; }

.vpp .vpp-bento-grid {
	margin: 30px auto 0;
	max-width: 380px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.vpp .vpp-bento-cell {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--vpp-bg2);
	display: flex;
}

.vpp .vpp-bento-cell--wide {
	grid-column: span 2;
	aspect-ratio: 2 / 1;
}

.vpp .vpp-bento-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vpp .vpp-bento-label {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 14px 16px;
	font-family: var(--vpp-font);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--vpp-ink);
	align-self: flex-end;
}

.vpp .vpp-bento-cell--overlay .vpp-bento-label {
	color: #fff;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .45));
}

.vpp .vpp-bento-cell--overlay.vpp-bento-pos-top .vpp-bento-label {
	align-self: flex-start;
	background: linear-gradient(0deg, transparent, rgba(0, 0, 0, .45));
}

.vpp .vpp-bento-cell--overlay.vpp-bento-pos-center .vpp-bento-label {
	align-self: center;
	text-align: center;
	background: none;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

.vpp .vpp-bento-cell--text {
	align-items: center;
	justify-content: center;
	text-align: center;
}

.vpp .vpp-bento-cell--text .vpp-bento-label {
	align-self: center;
	font-size: 16px;
}

@media (min-width: 768px) {
	.vpp .vpp-bento-grid { max-width: 560px; }
}

@media (min-width: 1100px) {
	.vpp .vpp-sec--bento { padding: 0 48px 72px; }
	.vpp .vpp-bento-grid { max-width: 720px; }
}

/* ================================================================
 * 8 · BUY BOX SHELL — the design .sale wrapper; the widget inside is
 * the verbatim Bundle Selector (PART 3 below).
 * ================================================================ */
.vpp .vpp-sec--bundle { padding: 54px 22px 58px; }

.vpp .vpp-sale-home {
	max-width: 480px;
	margin: 0 auto;
}

.vpp .vpp-rail-card .vpp-sale-home,
.vpp .vpp-rail-card .vpp-sale-root { max-width: none; }

/* ================================================================
 * 9 · FAQ (design .qa-sec / .q1) — mint panel accordion, centered head.
 * ================================================================ */
.vpp .vpp-sec--faq { padding: 6px 12px; }

.vpp .vpp-qa-panel {
	background: #e8f0ea;
	border-radius: 32px;
	padding: 32px 16px 26px;
}

.vpp .vpp-qa-panel .vpp-h2 {
	font-size: clamp(25px, 7vw, 31px);
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1.07;
	margin: 10px auto 0;
	max-width: none;
}

.vpp .vpp-qa-list {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin: 20px auto 0;
}

.vpp .vpp-qa-item {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 26px -16px rgba(15, 61, 42, .28);
	overflow: hidden;
}

.vpp .vpp-qa-tog {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 13px;
	font-family: var(--vpp-font);
	padding: 18px;
	text-align: left;
	color: var(--vpp-ink);
}

.vpp .vpp-qa-q {
	flex: 1;
	font-size: 15.5px;
	font-weight: 600;
	letter-spacing: -.2px;
	line-height: 1.3;
}

.vpp .vpp-qa-ic {
	width: 30px;
	height: 30px;
	border-radius: 99px;
	background: var(--vpp-mint);
	color: var(--vpp-green-600);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s, color .2s;
}

.vpp .vpp-qa-item.is-open .vpp-qa-ic {
	background: var(--vpp-green) !important;
	color: #fff !important;
}

.vpp .vpp-qa-ic svg {
	width: 15px;
	height: 15px;
}

.vpp .vpp-qa-minus { display: none; }

.vpp .vpp-qa-item.is-open .vpp-qa-minus { display: block; }

.vpp .vpp-qa-item.is-open .vpp-qa-plus { display: none; }

.vpp .vpp-qa-a {
	height: 0;
	overflow: hidden;
	transition: height .26s ease;
}

.vpp .vpp-qa-item.is-open .vpp-qa-a { height: auto; }

.vpp .vpp-qa-a p {
	font-family: var(--vpp-font);
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--vpp-gray);
	margin: 0;
	padding: 0 18px 18px;
}

@media (min-width: 768px) {
	.vpp .vpp-sec--faq { padding: 6px 24px; }
	.vpp .vpp-qa-panel { padding: 40px 28px 32px; }
	.vpp .vpp-qa-list { max-width: 620px; }
}

@media (min-width: 1100px) {
	.vpp .vpp-qa-panel { padding: 52px 36px 40px; }
}

/* ================================================================
 * 10 · SIZE GUIDE (design .e-sec + .e-size + .e-tbl).
 * ================================================================ */
.vpp .vpp-sec--sizeguide { padding: 56px 24px; }

.vpp .vpp-size-card {
	margin: 30px auto 0;
	max-width: 400px;
	background: var(--vpp-bg2);
	border-radius: 26px;
	padding: 28px 22px;
}

.vpp .vpp-size-sub { margin-top: 0; }

.vpp .vpp-size-img {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	margin: 18px 0;
	background: #eef1f0;
}

.vpp .vpp-size-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vpp .vpp-size-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	background: transparent;
}

.vpp .vpp-size-table tr,
.vpp .vpp-size-table thead,
.vpp .vpp-size-table tbody {
	background: transparent;
	border: 0;
}

.vpp .vpp-size-table th,
.vpp .vpp-size-table td {
	font-family: var(--vpp-font);
	padding: 12px 8px !important;
	text-align: center;
	font-size: 14.5px;
	border: 0 !important;
	border-top: 1px solid var(--vpp-hair) !important;
	color: var(--vpp-ink);
	background: transparent;
}

.vpp .vpp-size-table thead th {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--vpp-gray);
	border-top: 0 !important;
}

.vpp .vpp-size-table td:first-child {
	font-weight: 700;
	color: var(--vpp-green);
}

.vpp .vpp-size-note {
	font-size: 12.5px;
	color: var(--vpp-gray);
	text-align: center;
	margin: 14px 0 0;
}

@media (min-width: 768px) {
	.vpp .vpp-size-card {
		max-width: 560px;
		padding: 32px 30px;
	}
}

@media (min-width: 1100px) {
	.vpp .vpp-sec--sizeguide { padding: 72px 48px; }
}

/* ================================================================
 * 11 · CUSTOMER REVIEWS (design .f-rev).
 * ================================================================ */
.vpp .vpp-sec--reviews { padding: 56px 24px 64px; }

.vpp .vpp-frev {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.vpp .vpp-frev__top {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
}

.vpp .vpp-frev__big {
	font-family: var(--vpp-font);
	font-size: 50px;
	font-weight: 600;
	letter-spacing: -1.5px;
	line-height: 1;
	color: var(--vpp-ink);
}

.vpp .vpp-frev__stars {
	color: var(--vpp-green);
	display: flex;
	gap: 2px;
}

.vpp .vpp-frev__cap {
	font-size: 13px;
	color: var(--vpp-gray);
	margin-top: 4px;
}

.vpp .vpp-frev__cta {
	text-align: center;
	margin: 24px 0 0;
	align-self: stretch;
}

.vpp .vpp-frev__btn {
	width: auto;
	max-width: 100%;
}

.vpp .vpp-frev__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 54px;
	padding: 0 30px;
	border-radius: 999px;
	background: var(--vpp-green);
	color: #fff;
	font-family: var(--vpp-font);
	font-size: 16px;
	font-weight: 600;
	transition: transform .15s, background-color .2s;
}

.vpp .vpp-frev__btn:hover { background: var(--vpp-green-600) !important; color: #fff !important; }

.vpp .vpp-frev__btn:active { transform: scale(.97); }

.vpp .vpp-frev__bars {
	margin: 28px auto 0;
	width: 100%;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.vpp .vpp-frev__bar {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--vpp-gray);
}

.vpp .vpp-frev__n {
	width: 10px;
	text-align: right;
	color: var(--vpp-ink);
	font-weight: 600;
}

.vpp .vpp-frev__bar-star {
	display: flex;
	color: var(--vpp-green);
}

.vpp .vpp-frev__track {
	flex: 1;
	height: 7px;
	border-radius: 99px;
	background: var(--vpp-mint);
	overflow: hidden;
}

.vpp .vpp-frev__fill {
	display: block;
	height: 100%;
	border-radius: 99px;
	background: var(--vpp-green);
}

.vpp .vpp-frev__num {
	width: 36px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.vpp .vpp-frev__cards {
	margin: 28px auto 0;
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.vpp .vpp-rc {
	background: var(--vpp-mint-soft);
	border-radius: 20px;
	padding: 20px;
	text-align: left;
}

.vpp .vpp-rc__stars {
	color: var(--vpp-green);
	display: flex;
	gap: 2px;
}

.vpp .vpp-rc__t {
	font-family: var(--vpp-font);
	font-size: 16.5px;
	font-weight: 600;
	margin: 11px 0 6px;
	letter-spacing: -.3px;
	color: var(--vpp-ink);
}

.vpp .vpp-rc__b {
	font-family: var(--vpp-font);
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--vpp-ink-2);
}

.vpp .vpp-rc__b p { margin: 0 0 8px; }

.vpp .vpp-rc__b p:last-child { margin-bottom: 0; }

.vpp .vpp-rc__ft {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
}

.vpp .vpp-rc__who {
	font-size: 13px;
	font-weight: 600;
	color: var(--vpp-ink);
}

.vpp .vpp-rc__loc {
	font-size: 12px;
	color: var(--vpp-gray);
}

.vpp .vpp-rc__ver {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--vpp-green);
	background: #fff;
	padding: 5px 10px;
	border-radius: 99px;
	white-space: nowrap;
}

@media (min-width: 1100px) {
	.vpp .vpp-frev__cards {
		max-width: 840px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

/* Reviewer photos inside review cards. */
.vpp .vpp-rc__imgs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.vpp .vpp-rc__img {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: var(--vpp-bg2);
	flex: 0 0 auto;
}

.vpp .vpp-rc__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ================================================================
 * MOTION SAFETY.
 * ================================================================ */
@media (prefers-reduced-motion: reduce) {
	.vpp .vpp-mq-track { transform: none !important; }
	.vpp .vpp-cf-card { transition: none !important; }
}

/* ================================================================
 * PART 2 — VILOER HERO SECTION v1.6.3 CSS (VERBATIM from the ZIP).
 * ================================================================ */
/* =============================================
   Viloer Hero Section – v1.6.3
   ============================================= */

/* ── Base Layout ── */
.viloer-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Split layout */
.viloer-hero--split { flex-direction: row; }
.viloer-hero--split .viloer-hero__bg { position: relative; height: auto; min-height: 100%; }
.viloer-hero--split .viloer-hero__content { justify-content: center; }

/* ── Background Image ── */
.viloer-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	--vlr-img-x: 50%;
	--vlr-img-y: 50%;
	--vlr-img-zoom: 100;
}

.viloer-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--vlr-img-x) var(--vlr-img-y);
	transform: scale(calc(var(--vlr-img-zoom) / 100));
	transform-origin: var(--vlr-img-x) var(--vlr-img-y);
}

/* ── Fade Overlays ── */
.viloer-hero__fade {
	position: absolute;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 1;
}
.viloer-hero__fade--top { top: 0; height: 20%; }
.viloer-hero__fade--bottom { bottom: 0; height: 55%; }

/* ── Content ── */
.viloer-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Guarantee the hero content is centered in the full-width lead layout.
 * .vpp scope (0,2,0)+ beats the base rules; explicit alignment controls
 * still win via their {{WRAPPER}} inline selectors. */
/* Centering guarantee for the hero. Uses !important because Elementor
 * emits the saved alignment controls as {{WRAPPER}} inline <style> that
 * loads AFTER this file and ties on specificity — without !important a
 * stale saved "left" value would keep winning. The design is always
 * centered, so this is the correct default. */
.vpp .viloer-hero { align-items: center !important; }
.vpp .viloer-hero__content {
	margin-left: auto !important;
	margin-right: auto !important;
	align-items: center !important;
}
.vpp .viloer-hero__heading { text-align: center !important; }
.vpp .viloer-hero__features {
	align-self: center !important;
	width: auto !important;
	max-width: min(100%, 380px);
	margin-left: auto !important;
	margin-right: auto !important;
}
.vpp .viloer-hero__btn-wrap { justify-content: center !important; }
.vpp .viloer-hero__social { justify-content: center !important; }

/* ── Floating Product Image ── */
.viloer-hero__product-wrap {
	display: flex;
	width: 100%;
	--vlr-float-dist: 8px;
	--vlr-float-speed: 3s;
}

.viloer-hero__product-wrap--float {
	animation: vlrFloat var(--vlr-float-speed) ease-in-out infinite;
	will-change: transform;
}

.viloer-hero__product-img {
	display: block;
	height: auto;
}

@keyframes vlrFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(calc(var(--vlr-float-dist) * -1)); }
}

.elementor-editor-active .viloer-hero__product-wrap--float {
	animation: vlrFloat var(--vlr-float-speed) ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.viloer-hero[data-reduced-motion="1"] .viloer-hero__product-wrap--float {
		animation: none !important;
	}
}

/* ── Heading ── */
.viloer-hero__heading {
	margin: 0 0 24px;
	text-align: center;
	word-break: break-word;
}

/* ── Features ── */
.viloer-hero__features {
	display: inline-flex;
	flex-direction: column;
	gap: 17px;
	width: auto;
	max-width: 100%;
	margin: 0 auto 28px;
	box-sizing: border-box;
	/* rows share one left edge; the block itself stays centered */
	align-items: flex-start;
	text-align: left;
}

.viloer-hero__features--horizontal {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.viloer-hero__feature {
	justify-content: flex-start;
	text-align: left;
}
.viloer-hero__features--horizontal .viloer-hero__feature {
	flex: 1 1 0%;
	min-width: 0;
	flex-direction: column;
	text-align: center;
}

.viloer-hero__feature {
	display: flex;
	align-items: center;
	text-align: left;
}

.viloer-hero__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	line-height: 1;
}
.viloer-hero__feature-icon svg { width: 1em; height: 1em; }
.viloer-hero__feature-text { line-height: 1.5; }

/* ── Button ── */
.viloer-hero__btn-wrap {
	display: flex;
	justify-content: center;
	width: 100%;
}

.viloer-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, filter 0.2s ease;
	box-sizing: border-box;
	line-height: 1.3;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.viloer-hero__btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.04);
}
.viloer-hero__btn:active {
	transform: translateY(0) scale(0.97);
	filter: brightness(0.96);
	transition-duration: 0.08s;
}

@media (hover: none) {
	.viloer-hero__btn:hover { transform: none; filter: none; }
	.viloer-hero__btn:active { transform: scale(0.96); filter: brightness(0.94); }
}

.viloer-hero__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
	transition: transform 0.2s ease;
}
.viloer-hero__btn:hover .viloer-hero__btn-icon { transform: translateX(3px); }
.viloer-hero__btn:active .viloer-hero__btn-icon { transform: translateX(1px); }

.viloer-hero__btn-icon svg { width: 1em; height: 1em; }
.viloer-hero__btn-text { white-space: nowrap; }

/* ── Social Proof ── */
.viloer-hero__social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 4;
}

.viloer-hero__avatars {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.viloer-hero__avatar {
	display: block;
	flex-shrink: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-style: solid;
	border-width: 2px;
	border-color: #fff;
	box-sizing: border-box;
}

.viloer-hero__social-text {
	display: flex;
	flex-direction: column;
	flex: 0 1 auto;
	min-width: 0;
}

.viloer-hero__social-top {
	line-height: 1.2;
}

.viloer-hero__social-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.viloer-hero__stars {
	display: inline-flex;
	align-items: center;
}

.viloer-hero__star {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}
.viloer-hero__star svg { display: block; }

.viloer-hero__social-link {
	transition: color 0.2s ease;
}

/* ── Animations ── */
.viloer-hero__anim { opacity: 0; }
.viloer-hero__anim.viloer-hero--visible { animation-fill-mode: forwards; }

.elementor-editor-active .viloer-hero__anim,
.elementor-editor-preview .viloer-hero__anim {
	opacity: 1 !important;
	transform: none !important;
	animation: none !important;
}

.viloer-hero:not([data-vlr-init]) .viloer-hero__anim {
	animation: vlrFallback 0s 3s forwards;
}
@keyframes vlrFallback { to { opacity: 1; } }

@keyframes vlrFadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes vlrFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes vlrSlideLeft {
	from { opacity: 0; transform: translateX(24px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes vlrSlideRight {
	from { opacity: 0; transform: translateX(-24px); }
	to   { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
	.viloer-hero[data-reduced-motion="1"] .viloer-hero__anim {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
}

/* ── Mobile fallback ── */
@media (max-width: 767px) {
	.viloer-hero--split { flex-direction: column !important; }
	.viloer-hero--split .viloer-hero__bg { position: absolute !important; width: 100% !important; flex: none !important; }
	.viloer-hero--split .viloer-hero__content { width: 100% !important; flex: none !important; }
	.viloer-hero__features--horizontal { flex-direction: column !important; }
	.viloer-hero__features--horizontal .viloer-hero__feature { flex: none !important; flex-direction: row !important; text-align: left !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.viloer-hero--split { flex-direction: column !important; }
	.viloer-hero--split .viloer-hero__bg { position: absolute !important; width: 100% !important; flex: none !important; }
	.viloer-hero--split .viloer-hero__content { width: 100% !important; flex: none !important; }
}

/* ================================================================
 * PART 2c — HERO BACKGROUND FILL MODES (768px+).
 * Solves the portrait-photo-on-wide-desktop problem generically:
 *  - blur  → a blurred, slightly saturated copy of the SAME photo
 *            stretches edge-to-edge as an ambient canvas; the sharp
 *            photo sits on top, fully visible, never cropped.
 *  - fade  → the full photo is contained and its sides melt into a
 *            configurable background color via a mask.
 *  - cover → the original fill-and-crop behavior.
 * Mobile (<768px) always keeps Cover — it already reads perfectly.
 * ================================================================ */
.vpp .viloer-hero__img-canvas { display: none; }
.vpp .viloer-hero__canvas-veil { display: none; }

.vpp .viloer-hero__fade { z-index: 3; }

/* Fill modes apply at EVERY breakpoint (mobile included) so desktop and
 * mobile stay in sync; all sliders are responsive for per-breakpoint
 * tuning (e.g. Fade Width 0 on mobile = full-bleed there). */

/* -- Blur Canvas -- */
.vpp .viloer-hero__bg--fill-blur .viloer-hero__img-canvas {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: translate(-50%, -50%) scale(var(--vlr-canvas-zoom, 1.8));
	filter: blur(var(--vlr-canvas-blur, 90px)) saturate(1.05);
	z-index: 0;
}

/* Color veil that pushes the canvas back so faces/details recede. */
.vpp .viloer-hero__bg--fill-blur .viloer-hero__canvas-veil {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: #fff;
	opacity: .3;
	pointer-events: none;
}

.vpp .viloer-hero__bg--fill-blur .viloer-hero__img {
	position: relative;
	z-index: 2;
	object-fit: contain;
}

/* -- Soft Fade -- */
.vpp .viloer-hero__bg--fill-fade { background-color: #fff; }

.vpp .viloer-hero__bg--fill-fade .viloer-hero__img {
	position: absolute;
	top: 0;
	height: 100%;
	object-fit: contain;
	--vlr-fade-w: 16%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 var(--vlr-fade-w), #000 calc(100% - var(--vlr-fade-w)), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 var(--vlr-fade-w), #000 calc(100% - var(--vlr-fade-w)), transparent 100%);
}

/* -- Image position (X/Y sliders; the fade mask sits on the element box,
 *    so it stays put while the photo moves behind it). -- */
.vpp .viloer-hero__img {
	object-position: var(--vlr-pos-x, 50%) var(--vlr-pos-y, 50%);
}

/* ================================================================
 * PART 3 — VILOER BUNDLE SELECTOR CSS (VERBATIM from the ZIP).
 * ================================================================ */
/**
 * Viloer Bundle Widget - frontend styles
 * v3.0.0 - editorial visual refresh (Apple-like)
 *
 * Palette:
 *   --vp-ink:        #1d1d1f   near-black text
 *   --vp-gray:       #86868b   secondary text
 *   --vp-gray-lt:    #d2d2d7   hairline borders
 *   --vp-line:       rgba(0,0,0,0.10) dividers
 *   --vp-bg:         #ffffff   card background
 *   --vp-bg2:        #f5f5f7   recessed surfaces
 *   --vp-green:      #1a7a4f   brand accent / buy color
 *   --vp-coral:      #f4593b   urgency accent
 */

.viloer-bundle-widget {
	--vp-ink: #1d1d1f;
	--vp-gray: #86868b;
	--vp-gray-lt: #d2d2d7;
	--vp-line: rgba(0, 0, 0, 0.10);
	--vp-bg: #ffffff;
	--vp-bg2: #f5f5f7;
	--vp-green: #1a7a4f;
	--vp-green-tint: rgba(26, 122, 79, 0.10);
	--vp-green-tint-soft: rgba(26, 122, 79, 0.08);
	--vp-coral: #f4593b;
	--vp-coral-soft: #ffe3dc;

	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	color: var(--vp-ink);
	font-family: inherit;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	box-sizing: border-box;
}

.viloer-bundle-widget *,
.viloer-bundle-widget *::before,
.viloer-bundle-widget *::after {
	box-sizing: border-box;
}

/* ---- The widget card (white box) ------------------------------------- */

.viloer-bundle-widget__card {
	width: 100%;
	background: var(--vp-bg);
	border-radius: 0;
	overflow: hidden;
	padding: 26px 18px 40px;
}

@media (min-width: 600px) {
	.viloer-bundle-widget__card {
		border-radius: 30px;
		box-shadow: 0 36px 90px -28px rgba(20, 40, 30, 0.28), 0 2px 10px rgba(0, 0, 0, 0.04);
		padding: 40px 40px 46px;
	}
}

.viloer-bundle-widget__grid {
	display: flex;
	flex-direction: column;
}

.viloer-bundle__icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

.viloer-bundle__icon svg,
.viloer-bundle__icon i {
	display: block;
	width: 100%;
	height: 100%;
}

/* Main divider between masthead and buy box */
.viloer-bundle__rule-main {
	height: 1px;
	background: var(--vp-line);
	border: none;
	margin: 28px 0;
	width: 100%;
}

/* =======================================================================
   MASTHEAD (centered editorial)
   ======================================================================= */

.viloer-bundle__info {
	text-align: center;
}

.viloer-bundle__lowstock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--vp-coral-soft);
	color: var(--vp-coral);
	border-radius: 999px;
	padding: 6px 13px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.1px;
}

.viloer-bundle__lowstock-dot {
	width: 7px;
	height: 7px;
	border-radius: 9px;
	background: var(--vp-coral);
	animation: viloer-vpk-pulse 1.5s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes viloer-vpk-pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(244, 89, 59, 0.45); }
	50%      { opacity: 0.55; box-shadow: 0 0 0 6px rgba(244, 89, 59, 0); }
}

.viloer-bundle__title {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -1.4px;
	line-height: 1.04;
	margin: 16px auto 0;
	max-width: 300px;
	color: var(--vp-ink);
}

.viloer-bundle__rating {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 16px;
}

.viloer-bundle__stars {
	display: inline-flex;
	gap: 1.5px;
	color: var(--vp-green);
}

.viloer-bundle__rating-score {
	font-size: 14.5px;
	font-weight: 600;
}

.viloer-bundle__rating-count {
	font-size: 14px;
	color: var(--vp-gray);
}

.viloer-bundle__meta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 22px;
	margin-top: 18px;
}

.viloer-bundle__meta-divider {
	width: 1px;
	height: 34px;
	background: var(--vp-line);
}

.viloer-bundle__metalink {
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: inherit;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-decoration: none;
}

.viloer-bundle__metalink-top {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--vp-ink);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.2px;
}

.viloer-bundle__metalink .viloer-bundle__chev {
	color: var(--vp-gray);
}

.viloer-bundle__metalink-sub {
	font-size: 12.5px;
	color: var(--vp-gray);
	font-weight: 400;
}

/* Benefits chips - 2x2 grid */
.viloer-bundle__benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 22px auto 0;
	max-width: 360px;
}

.viloer-bundle__chip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 999px;
	background: var(--vp-green-tint-soft);
	color: var(--vp-ink);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -0.1px;
}

.viloer-bundle__chip .viloer-bundle__icon {
	color: var(--vp-green);
}

/* =======================================================================
   BUNDLE / BUY BOX
   ======================================================================= */

.viloer-bundle__buy {
	position: relative;
}

.viloer-bundle__hero {
	text-align: center;
}

.viloer-bundle__hero-eyebrow {
	font-size: 13px;
	font-weight: 600;
	color: var(--vp-green);
}

.viloer-bundle__hero-title {
	font-size: 38px;
	font-weight: 600;
	letter-spacing: -1.3px;
	line-height: 1.03;
	margin: 8px 0 0;
	color: var(--vp-ink);
}

.viloer-bundle__hero-sub {
	font-size: 16px;
	line-height: 1.45;
	color: var(--vp-gray);
	font-weight: 400;
	margin: 12px auto 0;
	max-width: 300px;
}

.viloer-bundle__tiles {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-top: 24px;
}

/* ---- Tile ------------------------------------------------------------- */

.viloer-bundle__tile {
	background: var(--vp-bg2);
	border: 1px solid transparent;
	border-radius: 20px;
	overflow: hidden;
	transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.viloer-bundle__tile.is-selected {
	background: #fff;
	border: 2px solid var(--vp-green);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.viloer-bundle__tile-head {
	width: 100%;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	display: flex;
	align-items: center;
	gap: 13px;
	background: transparent;
	border: none;
	padding: 13px;
}

.viloer-bundle__thumb {
	width: 70px;
	height: 70px;
	border-radius: 14px;
	flex-shrink: 0;
	background: #fff center / cover no-repeat;
	box-shadow: inset 0 0 0 1px rgba(19, 50, 42, 0.07);
}

.viloer-bundle__tile-info {
	flex: 1;
	min-width: 0;
}

.viloer-bundle__tile-row1 {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.viloer-bundle__tile-name {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.3px;
	color: var(--vp-ink);
}

.viloer-bundle__tile-tag {
	font-size: 11px;
	font-weight: 600;
	color: var(--vp-green);
	background: var(--vp-green-tint);
	padding: 2px 8px;
	border-radius: 999px;
	white-space: nowrap;
}

.viloer-bundle__tile-per {
	font-size: 12.5px;
	color: var(--vp-gray);
	margin-top: 3px;
}

.viloer-bundle__tile-prices {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin-top: 5px;
}

.viloer-bundle__tile-price {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.3px;
	color: var(--vp-ink);
}

.viloer-bundle__tile-was {
	font-size: 12px;
	color: var(--vp-gray);
	text-decoration: line-through;
}

.viloer-bundle__tile-off {
	font-size: 12px;
	color: var(--vp-green);
	font-weight: 600;
}

.viloer-bundle__tile-radio {
	width: 22px;
	height: 22px;
	border-radius: 99px;
	flex-shrink: 0;
	border: 1.5px solid var(--vp-gray-lt);
	background: transparent;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.viloer-bundle__tile.is-selected .viloer-bundle__tile-radio {
	border-color: var(--vp-green);
	background: var(--vp-green);
}

.viloer-bundle__tile-check {
	display: none;
}

.viloer-bundle__tile.is-selected .viloer-bundle__tile-check {
	display: inline-block;
}

/* ---- Tile expand (size pickers) --------------------------------------- */

.viloer-bundle__tile-expand {
	padding: 0 13px 15px;
	animation: viloer-vpk-pop 0.22s ease;
}

.viloer-bundle__tile:not(.is-selected) .viloer-bundle__tile-expand {
	display: none;
}

.viloer-bundle__tile-rule {
	height: 1px;
	background: var(--vp-line);
	border: none;
	margin: 0 0 13px;
}

.viloer-bundle__tile-expandhdr {
	display: flex;
	align-items: center;
	margin-bottom: 11px;
}

.viloer-bundle__tile-expandhdr .ttl {
	font-size: 13px;
	font-weight: 600;
	color: var(--vp-ink);
}

.viloer-bundle__tile-counter {
	margin-left: auto;
	font-size: 12px;
	font-weight: 600;
	color: var(--vp-green);
}

.viloer-bundle__sizes {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

/* ---- Inline-expanding size field -------------------------------------- */

.viloer-bundle__size {
	position: relative;
}

.viloer-bundle__size-btn {
	width: 100%;
	min-height: 48px;
	border-radius: 13px;
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--vp-gray-lt);
	transition: border-color 0.15s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 14px;
	font-family: inherit;
}

.viloer-bundle__size-btn.is-empty,
.viloer-bundle__size-btn.is-open {
	border: 2px solid var(--vp-green);
	padding: 0 13px;
}

.viloer-bundle__size-left {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.viloer-bundle__size-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--vp-gray);
}

.viloer-bundle__size-value {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--vp-ink);
}

.viloer-bundle__size-btn.is-empty .viloer-bundle__size-value {
	color: var(--vp-green);
}

.viloer-bundle__size-chev {
	color: var(--vp-gray);
	transition: transform 0.2s;
}

.viloer-bundle__size-btn.is-empty .viloer-bundle__size-chev,
.viloer-bundle__size-btn.is-open .viloer-bundle__size-chev {
	color: var(--vp-green);
}

.viloer-bundle__size-btn.is-open .viloer-bundle__size-chev {
	transform: rotate(180deg);
}

.viloer-bundle__size-btn.is-flash {
	animation: viloer-vpk-ring 1.1s ease-out 2;
}

.viloer-bundle__size-list {
	margin-top: 7px;
	padding: 6px;
	border-radius: 13px;
	background: var(--vp-bg2);
	display: flex;
	flex-direction: column;
	gap: 4px;
	animation: viloer-vpk-pop 0.18s ease;
}

.viloer-bundle__size-list[hidden] {
	display: none;
}

.viloer-bundle__size-opt {
	width: 100%;
	height: 44px;
	border: none;
	cursor: pointer;
	border-radius: 10px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 13px;
	font-family: inherit;
	transition: background 0.12s;
}

.viloer-bundle__size-opt:hover {
	background: rgba(0, 0, 0, 0.04);
}

.viloer-bundle__size-opt.is-on {
	background: #fff;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.viloer-bundle__size-optl {
	display: inline-flex;
	align-items: baseline;
	gap: 9px;
}

.viloer-bundle__size-opt .sz {
	font-size: 15.5px;
	font-weight: 600;
	color: var(--vp-ink);
}

.viloer-bundle__size-opt.is-on .sz {
	font-weight: 700;
}

.viloer-bundle__size-opt .hint {
	font-size: 11.5px;
	color: var(--vp-gray);
	font-weight: 400;
}

.viloer-bundle__size-optcheck {
	display: none;
	color: var(--vp-green);
}

.viloer-bundle__size-opt.is-on .viloer-bundle__size-optcheck {
	display: inline-block;
}

/* ---- CTA -------------------------------------------------------------- */

.viloer-bundle__cta {
	margin-top: 20px;
	width: 100%;
	height: 54px;
	border-radius: 980px;
	border: none;
	cursor: pointer;
	background: var(--vp-green) !important;
	color: #fff !important;
	font-family: inherit;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: -0.2px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transition: background 0.2s;
}

.viloer-bundle__cta:hover,
.viloer-bundle__cta:focus {
	background: #15633f !important;
	color: #fff !important;
}

.viloer-bundle__cta.is-added {
	background: var(--vp-ink) !important;
}

.viloer-bundle__cta[disabled],
.viloer-bundle__cta.is-loading {
	opacity: 0.8;
	cursor: wait;
}

.viloer-bundle__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.viloer-bundle__cta-icon svg,
.viloer-bundle__cta-icon i {
	width: 18px;
	height: 18px;
}

.viloer-bundle__cta-price {
	white-space: nowrap;
}

/* ---- Trust badges ----------------------------------------------------- */

.viloer-bundle__trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 14px;
}

.viloer-bundle__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--vp-gray);
	line-height: 1;
}

.viloer-bundle__trust-item .viloer-bundle__icon {
	color: var(--vp-ink);
}

/* ---- Toast ------------------------------------------------------------ */

.viloer-bundle__toast {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 92px;
	z-index: 60;
	animation: viloer-vpk-fade 0.2s ease;
}

.viloer-bundle__toast[hidden] {
	display: none;
}

.viloer-bundle__toast-body {
	background: var(--vp-ink);
	color: #fff;
	border-radius: 15px;
	padding: 13px 16px;
	display: flex;
	align-items: center;
	gap: 11px;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.viloer-bundle__toast-bang {
	width: 26px;
	height: 26px;
	border-radius: 99px;
	flex-shrink: 0;
	background: var(--vp-coral);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 15px;
}

.viloer-bundle__toast-msg {
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.35;
}

.viloer-bundle__toast-arrow {
	width: 14px;
	height: 14px;
	background: var(--vp-ink);
	transform: rotate(45deg);
	margin: -7px auto 0;
	border-radius: 2px;
}

/* ---- Status message (a11y, visually replaced by toast) ---------------- */

.viloer-bundle__message {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ---- Animations ------------------------------------------------------- */

@keyframes viloer-vpk-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes viloer-vpk-pop  { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes viloer-vpk-ring {
	0%   { box-shadow: 0 0 0 0 rgba(26, 122, 79, 0.30); }
	70%  { box-shadow: 0 0 0 9px rgba(26, 122, 79, 0); }
	100% { box-shadow: 0 0 0 0 rgba(26, 122, 79, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.viloer-bundle__lowstock-dot,
	.viloer-bundle__tile-expand,
	.viloer-bundle__size-list,
	.viloer-bundle__toast {
		animation: none;
	}
}

/* ================================================================
 * PART 4 — BUY BOX SIZE-FIELD GRID (all breakpoints).
 * Symmetric packing by field count: 1 → full row · 2 → half/half ·
 * 3 → thirds · 4+ → two per row (odd counts: the last field spans
 * the full row so nothing dangles alone in a half-empty line).
 * ================================================================ */
.vpp .viloer-bundle__sizes {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.vpp .viloer-bundle__sizes > .viloer-bundle__size {
	min-width: 0;
}

.vpp .viloer-bundle__sizes .viloer-bundle__size-btn {
	width: 100%;
}

.vpp .viloer-bundle__sizes[data-vb-count="2"] { grid-template-columns: 1fr 1fr; }

.vpp .viloer-bundle__sizes[data-vb-count="3"] { grid-template-columns: repeat(3, 1fr); }

.vpp .viloer-bundle__sizes[data-vb-count="4"],
.vpp .viloer-bundle__sizes[data-vb-count="5"],
.vpp .viloer-bundle__sizes[data-vb-count="6"],
.vpp .viloer-bundle__sizes[data-vb-count="7"],
.vpp .viloer-bundle__sizes[data-vb-count="8"],
.vpp .viloer-bundle__sizes[data-vb-count="9"],
.vpp .viloer-bundle__sizes[data-vb-count="10"] { grid-template-columns: 1fr 1fr; }

.vpp .viloer-bundle__sizes[data-vb-count="5"] > .viloer-bundle__size:last-child,
.vpp .viloer-bundle__sizes[data-vb-count="7"] > .viloer-bundle__size:last-child,
.vpp .viloer-bundle__sizes[data-vb-count="9"] > .viloer-bundle__size:last-child { grid-column: span 2; }

/* Compact fields when sharing a row. */
.vpp .viloer-bundle__sizes:not([data-vb-count="1"]) .viloer-bundle__size-btn {
	padding-left: 12px;
	padding-right: 12px;
}

.vpp .viloer-bundle__sizes[data-vb-count="3"] .viloer-bundle__size-btn {
	padding-left: 10px;
	padding-right: 10px;
}

.vpp .viloer-bundle__sizes[data-vb-count="3"] .viloer-bundle__size-value {
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
