/* =========================================================
   VRIDEXA FRONTEND - Propharm-style homepage
   ========================================================= */

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

:root {
	--vx-blue: #1FB6E5;
	--vx-blue-dark: #1290BC;
	--vx-blue-light: #E5F6FB;
	--vx-orange: #F39C12;
	--vx-orange-dark: #D97F0E;
	--vx-mint: #A8DAB5;
	--vx-mint-dark: #7BC096;
	--vx-pink: #E91E63;
	--vx-green-tag: #4CAF50;
	--vx-yellow: #FFC107;
	--vx-text: #2D3748;
	--vx-muted: #718096;
	--vx-light: #A0AEC0;
	--vx-border: #E2E8F0;
	--vx-bg: #FFFFFF;
	--vx-soft: #F7FAFC;
	--vx-peach: #FCC79B;
	--vx-peach-light: #FDE5D0;
	--vx-tile-mint: #C5E8C8;
	--vx-tile-mint-light: #DDF0DE;
	--vx-tile-gray: #DCE3E6;
	--vx-tile-lavender: #E5D9E8;
	--vx-shadow: 0 4px 16px rgba(31, 38, 47, 0.08);
	--vx-shadow-lg: 0 12px 32px rgba(31, 38, 47, 0.1);
	--vx-radius: 8px;
	--vx-radius-lg: 16px;
	--vx-font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--vx-script: "Caveat", cursive;
}

body.vx-front {
	margin: 0;
	font-family: var(--vx-font);
	font-size: 15px;
	line-height: 1.55;
	color: var(--vx-text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
body.vx-front a { color: var(--vx-blue); text-decoration: none; transition: color 0.18s ease; }
body.vx-front a:hover { color: var(--vx-blue-dark); }
body.vx-front img { max-width: 100%; height: auto; display: block; }
body.vx-front button { font-family: inherit; cursor: pointer; }
body.vx-front h1, body.vx-front h2, body.vx-front h3, body.vx-front h4 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
body.vx-front ul { list-style: none; margin: 0; padding: 0; }

.vx-wrap { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1025px) { .vx-wrap { padding: 0 32px; } }

/* -- Top stripe ------------------------------------------- */
.vx-stripe {
	background: var(--vx-blue);
	color: #fff;
	font-size: 13px;
	padding: 8px 0;
}
.vx-stripe__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.vx-stripe__msg {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.95);
}
.vx-stripe__right {
	display: none;
	gap: 18px;
}
.vx-stripe__right a {
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 500;
}
.vx-stripe__right a:hover { color: #fff; }
@media (min-width: 1025px) {
	.vx-stripe__right { display: flex; }
}

/* -- Header ----------------------------------------------- */
.vx-hd {
	background: #fff;
	padding: 18px 0;
	border-bottom: 1px solid var(--vx-border);
}
.vx-hd__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
}
@media (min-width: 1025px) {
	.vx-hd__inner { grid-template-columns: auto 1fr auto; gap: 32px; }
}

.vx-hd__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--vx-text);
	font-weight: 800;
	font-size: 24px;
	letter-spacing: -0.02em;
}
.vx-hd__logo:hover { color: var(--vx-blue); }
.vx-hd__logo-mark { display: flex; }
.vx-hd__logo-text { line-height: 1; }
.custom-logo-link img { max-height: 48px; width: auto; }

.vx-hd__search {
	display: none;
	background: var(--vx-soft);
	border: 1px solid var(--vx-border);
	border-radius: 999px;
	overflow: hidden;
}
@media (min-width: 1025px) {
	.vx-hd__search { display: flex; align-items: stretch; max-width: 720px; }
}
.vx-hd__search-cat {
	border: none;
	background: transparent;
	padding: 0 18px;
	font-family: inherit;
	font-size: 14px;
	color: var(--vx-muted);
	border-right: 1px solid var(--vx-border);
	cursor: pointer;
	min-width: 130px;
	max-width: 160px;
}
.vx-hd__search-cat:focus { outline: none; }
.vx-hd__search-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 18px;
	font-family: inherit;
	font-size: 14px;
	min-width: 0;
}
.vx-hd__search-input:focus { outline: none; }
.vx-hd__search-btn {
	background: var(--vx-orange);
	color: #fff;
	border: none;
	padding: 0 22px;
	display: flex;
	align-items: center;
	border-radius: 0 999px 999px 0;
	transition: background 0.2s ease;
}
.vx-hd__search-btn:hover { background: var(--vx-orange-dark); }

.vx-hd__support {
	display: none;
	align-items: center;
	gap: 10px;
}
@media (min-width: 1025px) {
	.vx-hd__support { display: flex; }
}
.vx-hd__support-text small {
	display: block;
	font-size: 11px;
	color: var(--vx-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.vx-hd__support-text strong {
	display: block;
	font-size: 16px;
	color: var(--vx-text);
	font-weight: 700;
}

.vx-hd__burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 40px; height: 40px;
	background: none;
	border: none;
	padding: 8px;
}
.vx-hd__burger span {
	display: block;
	height: 2px;
	background: var(--vx-text);
	border-radius: 2px;
}
@media (min-width: 1025px) {
	.vx-hd__burger { display: none; }
}

/* -- Mega menu -------------------------------------------- */
.vx-mega {
	background: #fff;
	border-bottom: 1px solid var(--vx-border);
	padding: 0;
	display: none;
}
@media (min-width: 1025px) {
	.vx-mega { display: block; }
}
.vx-mega__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}
.vx-mega__cats {
	background: var(--vx-blue);
	color: #fff;
	border: none;
	padding: 14px 22px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s ease;
}
.vx-mega__cats:hover { background: var(--vx-blue-dark); }
.vx-mega__nav ul {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}
.vx-mega__nav a {
	display: inline-block;
	padding: 18px 14px;
	color: var(--vx-text);
	font-weight: 500;
	font-size: 14px;
	position: relative;
	transition: color 0.2s ease;
}
.vx-mega__nav a:hover,
.vx-mega__nav .current a {
	color: var(--vx-blue);
}
.vx-mega__nav .current a::after {
	content: "";
	position: absolute;
	left: 14px; right: 14px; bottom: 12px;
	height: 2px;
	background: var(--vx-blue);
	border-radius: 2px;
}
.vx-tag-new {
	display: inline-block;
	background: var(--vx-green-tag);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
	margin-left: 4px;
	letter-spacing: 0.05em;
	vertical-align: middle;
	text-transform: uppercase;
}
.vx-mega__icons {
	display: flex;
	gap: 8px;
	align-items: center;
}
.vx-mega__icons a {
	width: 40px; height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vx-text);
	border-radius: 50%;
	transition: background 0.2s ease;
	position: relative;
}
.vx-mega__icons a:hover { background: var(--vx-blue-light); color: var(--vx-blue); }
.vx-cart-count {
	position: absolute;
	top: 4px; right: 4px;
	background: var(--vx-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	min-width: 18px; height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* -- HERO ------------------------------------------------- */
.vx-hero {
	background: linear-gradient(135deg, var(--vx-peach-light) 0%, var(--vx-peach) 100%);
	padding: 80px 0 60px;
	position: relative;
	overflow: hidden;
}
.vx-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
	pointer-events: none;
}
.vx-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
	min-height: 380px;
}
@media (min-width: 1025px) {
	.vx-hero__inner { grid-template-columns: 1fr 1fr; gap: 60px; min-height: 460px; }
	.vx-hero { padding: 100px 0 80px; }
}
.vx-hero__copy { z-index: 2; position: relative; }
.vx-hero__eyebrow {
	display: inline-block;
	color: var(--vx-text);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	opacity: 0.9;
}
.vx-hero__title {
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 800;
	color: #2D3748;
	margin: 0 0 28px;
	line-height: 1.05;
	max-width: 480px;
}
.vx-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--vx-mint);
	color: #1F4530;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	border: 2px solid var(--vx-mint);
	transition: all 0.25s ease;
}
.vx-hero__cta:hover {
	background: var(--vx-mint-dark);
	border-color: var(--vx-mint-dark);
	color: #fff;
	transform: translateX(4px);
}

.vx-hero__visual {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}
.vx-hero__box {
	width: 100%;
	max-width: 480px;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(160, 90, 44, 0.25));
	animation: vxFloat 4s ease-in-out infinite;
}
@keyframes vxFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.vx-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.7);
	border: none;
	width: 44px; height: 44px;
	border-radius: 50%;
	color: var(--vx-text);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	transition: all 0.2s ease;
}
.vx-hero__arrow:hover { background: #fff; box-shadow: var(--vx-shadow); }
.vx-hero__arrow--prev { left: 16px; }
.vx-hero__arrow--next { right: 16px; }
@media (min-width: 1025px) {
	.vx-hero__arrow--prev { left: 32px; }
	.vx-hero__arrow--next { right: 32px; }
}

.vx-hero__dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}
.vx-hero__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: rgba(45, 55, 72, 0.3);
	transition: all 0.2s ease;
}
.vx-hero__dot--on {
	background: var(--vx-text);
	width: 24px;
	border-radius: 4px;
}

/* -- Product finder ---------------------------------------- */
.vx-finder-wrap {
	background: var(--vx-peach);
	padding: 0 0 60px;
	margin-top: -40px;
	position: relative;
	z-index: 3;
}
.vx-finder {
	background: #fff;
	border-radius: var(--vx-radius-lg);
	padding: 20px 24px;
	box-shadow: var(--vx-shadow-lg);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}
.vx-finder__label {
	font-weight: 600;
	font-size: 14px;
	color: var(--vx-text);
	margin-right: 8px;
}
.vx-finder__select {
	flex: 1 1 140px;
	padding: 12px 16px;
	border: 1px solid var(--vx-border);
	border-radius: 999px;
	font-family: inherit;
	font-size: 14px;
	background: #fff;
	color: var(--vx-text);
	cursor: pointer;
	min-width: 0;
}
.vx-finder__select:focus { outline: none; border-color: var(--vx-blue); }
.vx-finder__or {
	font-size: 12px;
	font-weight: 700;
	color: var(--vx-muted);
	letter-spacing: 0.06em;
}
.vx-finder__input {
	flex: 1 1 140px;
	padding: 12px 16px;
	border: 1px solid var(--vx-border);
	border-radius: 999px;
	font-family: inherit;
	font-size: 14px;
	min-width: 0;
}
.vx-finder__input:focus { outline: none; border-color: var(--vx-blue); }
.vx-finder__btn {
	background: var(--vx-orange);
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.2s ease;
}
.vx-finder__btn:hover {
	background: var(--vx-orange-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(243, 156, 18, 0.35);
}

/* -- Category icons row ----------------------------------- */
.vx-cats {
	background: #fff;
	padding: 50px 0;
}
.vx-cats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (min-width: 768px) {
	.vx-cats__grid { grid-template-columns: repeat(6, 1fr); }
}
.vx-cats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: var(--vx-text);
	font-weight: 500;
	transition: color 0.2s ease;
}
.vx-cats__icon {
	width: 70px; height: 70px;
	background: var(--vx-blue-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vx-blue);
	transition: all 0.2s ease;
}
.vx-cats__item:hover .vx-cats__icon {
	background: var(--vx-blue);
	color: #fff;
	transform: translateY(-4px);
}
.vx-cats__label {
	font-size: 13px;
	font-weight: 500;
}

/* -- Promo grid (5 tiles) --------------------------------- */
.vx-promos {
	background: #fff;
	padding: 0 0 50px;
}
.vx-promos__grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: 200px;
	gap: 16px;
}
@media (min-width: 768px) {
	.vx-promos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1025px) {
	.vx-promos__grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 200px 200px;
		gap: 20px;
	}
	.vx-tile--tall {
		grid-column: 3;
		grid-row: 1 / span 2;
	}
}
.vx-tile {
	position: relative;
	border-radius: var(--vx-radius-lg);
	padding: 24px;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--vx-text);
	transition: all 0.25s ease;
	min-height: 200px;
}
.vx-tile:hover {
	transform: translateY(-4px);
	box-shadow: var(--vx-shadow-lg);
}
.vx-tile--peach { background: var(--vx-peach-light); }
.vx-tile--gray { background: var(--vx-tile-gray); }
.vx-tile--mint { background: var(--vx-tile-mint); }
.vx-tile--mint-light { background: var(--vx-tile-mint-light); }
.vx-tile--lavender { background: var(--vx-tile-lavender); }
.vx-tile__copy {
	flex: 1;
	min-width: 0;
	z-index: 2;
	position: relative;
}
.vx-tile__eyebrow {
	display: block;
	font-size: 12px;
	color: var(--vx-muted);
	font-weight: 500;
	margin-bottom: 6px;
}
.vx-tile__title {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--vx-text);
}
.vx-tile__title strong { color: var(--vx-blue-dark); font-weight: 800; }
.vx-tile__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--vx-mint);
	color: #1F4530;
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	transition: all 0.2s ease;
}
.vx-tile:hover .vx-tile__cta {
	background: var(--vx-mint-dark);
	color: #fff;
}
.vx-tile__art {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vx-tile__art--big { align-self: flex-end; margin-bottom: -24px; }
.vx-tile__bignum {
	position: absolute;
	right: 16px;
	bottom: -30px;
	font-size: 200px;
	font-weight: 900;
	color: rgba(44, 95, 63, 0.18);
	line-height: 0.8;
	z-index: 0;
}
.vx-tile__badge {
	position: absolute;
	top: 16px; left: 16px;
	background: var(--vx-pink);
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	z-index: 3;
}
.vx-tile__badge--orange { background: var(--vx-orange); }
.vx-tile--tall .vx-tile__copy { z-index: 3; position: relative; }
.vx-tile--tall .vx-tile__art--big {
	position: absolute;
	right: -20px; bottom: 0;
	width: 70%;
	margin-bottom: 0;
}

/* -- Section title ---------------------------------------- */
.vx-section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	text-align: center;
	margin: 0 0 32px;
	color: var(--vx-text);
}

/* -- Popular Categories ----------------------------------- */
.vx-pop {
	padding: 60px 0;
	background: #fff;
}
.vx-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
}
.vx-tab {
	padding: 10px 22px;
	background: transparent;
	border: 1px solid var(--vx-border);
	border-radius: 999px;
	color: var(--vx-muted);
	font-family: inherit;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.vx-tab:hover {
	border-color: var(--vx-blue);
	color: var(--vx-blue);
}
.vx-tab--on {
	background: var(--vx-blue);
	border-color: var(--vx-blue);
	color: #fff;
}

/* -- Product grid ----------------------------------------- */
.vx-pgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
@media (min-width: 640px) {
	.vx-pgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1025px) {
	.vx-pgrid { grid-template-columns: repeat(5, 1fr); gap: 20px; }
}
.vx-pgrid--mt { margin-top: 24px; }

/* Product card */
.vx-pc {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	transition: all 0.25s ease;
}
.vx-pc:hover {
	border-color: var(--vx-blue);
	box-shadow: var(--vx-shadow-lg);
	transform: translateY(-4px);
}
.vx-pc__badge {
	position: absolute;
	top: 12px; left: 12px;
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	z-index: 2;
}
.vx-pc__badge--sale { background: var(--vx-green-tag); }
.vx-pc__badge--new { background: var(--vx-green-tag); }
.vx-pc__badge--popular { background: var(--vx-pink); }
.vx-pc__thumb {
	display: block;
	background: var(--vx-soft);
	border-radius: var(--vx-radius);
	aspect-ratio: 1/1;
	overflow: hidden;
	margin-bottom: 8px;
}
.vx-pc__thumb img {
	width: 100%; height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}
.vx-pc:hover .vx-pc__thumb img { transform: scale(1.05); }
.vx-pc__cat {
	font-size: 11px;
	color: var(--vx-blue);
	font-weight: 500;
	margin: 0;
	text-transform: capitalize;
}
.vx-pc__cat a { color: var(--vx-blue); }
.vx-pc__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
	min-height: 36px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.vx-pc__title a { color: var(--vx-text); }
.vx-pc__title a:hover { color: var(--vx-blue); }
.vx-pc__rating {
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 13px;
}
.vx-star { color: #E2E8F0; }
.vx-star--on { color: var(--vx-yellow); }
.vx-pc__rcount {
	color: var(--vx-muted);
	font-size: 11px;
	margin-left: 4px;
}
.vx-pc__price {
	font-size: 16px;
	font-weight: 700;
	color: var(--vx-text);
	margin: 0;
}
.vx-pc__price del {
	color: var(--vx-light);
	font-weight: 400;
	font-size: 13px;
	margin-right: 4px;
}
.vx-pc__price ins {
	background: none;
	color: var(--vx-orange);
	font-weight: 700;
	text-decoration: none;
}
.vx-pc__price .woocommerce-Price-amount { color: inherit; }
.vx-pc__btn {
	margin-top: auto;
	padding: 10px 14px;
	background: var(--vx-soft);
	border: 1px solid var(--vx-border);
	border-radius: 999px;
	color: var(--vx-text);
	font-weight: 600;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: all 0.2s ease;
}
.vx-pc__btn:hover {
	background: var(--vx-blue);
	color: #fff;
	border-color: var(--vx-blue);
}

.vx-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px 20px;
	color: var(--vx-muted);
	background: var(--vx-soft);
	border-radius: var(--vx-radius);
}

/* -- Newest products strip -------------------------------- */
.vx-strip {
	padding: 50px 0;
	background: #fff;
}
.vx-strip__inner {
	background: linear-gradient(120deg, #B8E6E8 0%, #DEF2F4 100%);
	border-radius: var(--vx-radius-lg);
	padding: 28px 32px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.vx-strip__art { flex-shrink: 0; }
.vx-strip__copy { flex: 1; min-width: 240px; }
.vx-strip__badge {
	display: inline-block;
	background: var(--vx-orange);
	color: #fff;
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.vx-strip__msg {
	font-size: 16px;
	color: var(--vx-text);
	margin: 0;
	font-weight: 500;
}
.vx-strip__msg strong { font-weight: 700; }
.vx-strip__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--vx-mint);
	color: #1F4530;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.2s ease;
	flex-shrink: 0;
}
.vx-strip__cta:hover {
	background: var(--vx-mint-dark);
	color: #fff;
	transform: translateX(4px);
}

/* -- Featured section ------------------------------------- */
.vx-feat { padding: 30px 0 60px; background: #fff; }
.vx-feat__head {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 32px;
}
.vx-feat__title { margin: 0; }
.vx-feat__nav {
	position: absolute;
	right: 0;
	display: flex;
	gap: 8px;
}
.vx-feat__arrow {
	width: 36px; height: 36px;
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: 50%;
	color: var(--vx-text);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}
.vx-feat__arrow:hover {
	background: var(--vx-blue);
	border-color: var(--vx-blue);
	color: #fff;
}

/* -- Trust badges ----------------------------------------- */
.vx-trust {
	background: var(--vx-soft);
	padding: 50px 0;
}
.vx-trust__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
@media (min-width: 768px) {
	.vx-trust__grid { grid-template-columns: repeat(4, 1fr); }
}
.vx-trust__item {
	text-align: center;
}
.vx-trust__icon {
	width: 56px; height: 56px;
	margin: 0 auto 12px;
	background: var(--vx-blue-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vx-blue);
}
.vx-trust__item h4 {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 4px;
}
.vx-trust__item p {
	font-size: 13px;
	color: var(--vx-muted);
	margin: 0;
}

/* -- Footer ----------------------------------------------- */
.vx-ft {
	background: #1A2332;
	color: #B8C0CC;
	padding: 60px 0 24px;
}
.vx-ft__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 40px;
}
@media (min-width: 768px) {
	.vx-ft__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1025px) {
	.vx-ft__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
}
.vx-ft__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.vx-ft__logo strong {
	color: #fff;
	font-size: 20px;
	font-weight: 800;
}
.vx-ft__about {
	font-size: 14px;
	color: #8B96A5;
	line-height: 1.7;
	margin: 0 0 16px;
	max-width: 320px;
}
.vx-ft__contact p {
	font-size: 13px;
	margin: 0 0 6px;
	color: #B8C0CC;
}
.vx-ft__contact a { color: #fff; }
.vx-ft__col h4 {
	color: #fff;
	font-size: 15px;
	margin: 0 0 16px;
}
.vx-ft__col ul li { margin-bottom: 8px; }
.vx-ft__col ul a {
	color: #8B96A5;
	font-size: 13px;
}
.vx-ft__col ul a:hover { color: #fff; }
.vx-ft__news { display: flex; gap: 6px; margin-bottom: 14px; }
.vx-ft__news input {
	flex: 1;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	min-width: 0;
}
.vx-ft__news input::placeholder { color: rgba(255, 255, 255, 0.4); }
.vx-ft__news input:focus { outline: none; border-color: var(--vx-blue); }
.vx-ft__news button {
	background: var(--vx-blue);
	color: #fff;
	border: none;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 12px;
	transition: background 0.2s ease;
}
.vx-ft__news button:hover { background: var(--vx-blue-dark); }
.vx-ft__social { display: flex; gap: 8px; }
.vx-ft__social a {
	width: 32px; height: 32px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B8C0CC;
	transition: all 0.2s ease;
}
.vx-ft__social a:hover {
	background: var(--vx-blue);
	color: #fff;
}
.vx-ft__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.vx-ft__bottom p {
	margin: 0;
	font-size: 12px;
	color: #6B7585;
}
.vx-ft__pay { display: flex; gap: 6px; flex-wrap: wrap; }
.vx-ft__pay span {
	padding: 3px 10px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	color: #B8C0CC;
}

/* -- Animations ------------------------------------------- */
@keyframes vxFadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
.vx-hero__copy > * { animation: vxFadeUp 0.6s ease both; }
.vx-hero__copy > *:nth-child(1) { animation-delay: 0.1s; }
.vx-hero__copy > *:nth-child(2) { animation-delay: 0.2s; }
.vx-hero__copy > *:nth-child(3) { animation-delay: 0.3s; }

/* -- WC overrides for our cart count ---------------------- */
body.vx-front .woocommerce-Price-amount { color: inherit; }

/* =========================================================
   NEW HERO (vx-h2) - Editorial collage, no slider
   ========================================================= */
.vx-h2 {
	position: relative;
	background: linear-gradient(135deg, #FFF8F0 0%, #F0FBF4 50%, #F0F8FC 100%);
	padding: 70px 0 100px;
	overflow: hidden;
	isolation: isolate;
}
@media (min-width: 1025px) {
	.vx-h2 { padding: 90px 0 140px; }
}

/* Soft gradient blobs */
.vx-h2__blobs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.vx-h2__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.55;
}
.vx-h2__blob--peach {
	width: 480px; height: 480px;
	background: radial-gradient(circle, #FCC79B 0%, transparent 70%);
	top: -120px; right: -100px;
}
.vx-h2__blob--mint {
	width: 380px; height: 380px;
	background: radial-gradient(circle, #A8DAB5 0%, transparent 70%);
	bottom: -80px; left: 10%;
}
.vx-h2__blob--blue {
	width: 320px; height: 320px;
	background: radial-gradient(circle, #B8E0EC 0%, transparent 70%);
	top: 20%; left: -80px;
}

/* Decorative leaves */
.vx-h2__leaf {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}
.vx-h2__leaf--left {
	width: 60px; height: 90px;
	top: 10%; left: 4%;
	transform: rotate(-25deg);
	animation: vxLeafSway 6s ease-in-out infinite;
}
.vx-h2__leaf--right {
	width: 70px; height: 100px;
	bottom: 15%; right: 4%;
	transform: rotate(20deg);
	animation: vxLeafSway 7s ease-in-out infinite reverse;
}
@keyframes vxLeafSway {
	0%, 100% { transform: rotate(-25deg) translateY(0); }
	50% { transform: rotate(-15deg) translateY(-12px); }
}

.vx-h2__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}
@media (min-width: 1025px) {
	.vx-h2__inner { grid-template-columns: 1.05fr 1fr; gap: 60px; }
}

/* Copy column */
.vx-h2__copy { max-width: 580px; }

.vx-h2__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(46, 160, 74, 0.2);
	color: #1F4530;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.vx-h2__tag-dot {
	width: 8px; height: 8px;
	background: var(--vx-orange);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.2);
	animation: vxPulse 2s ease-in-out infinite;
}
@keyframes vxPulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.2); }
	50% { box-shadow: 0 0 0 8px rgba(243, 156, 18, 0.05); }
}
.vx-h2__tag strong { font-weight: 700; color: var(--vx-orange-dark); }

.vx-h2__title {
	font-family: var(--vx-font);
	font-size: clamp(2.4rem, 5.5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: #1A2332;
	margin: 0 0 24px;
}
.vx-h2__title em {
	font-family: "Fraunces", Georgia, serif;
	font-style: italic;
	font-weight: 600;
	color: var(--vx-orange);
	letter-spacing: -0.02em;
}
.vx-h2__title-line {
	display: block;
	color: #2D3748;
}

.vx-h2__sub {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	color: #4A5568;
	line-height: 1.65;
	margin: 0 0 32px;
	max-width: 540px;
}
.vx-h2__sub strong {
	color: #1A2332;
	font-weight: 600;
}

.vx-h2__ctas {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}
.vx-h2__btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: linear-gradient(135deg, #2EA04A 0%, #1F7A37 100%);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	box-shadow: 0 12px 32px rgba(46, 160, 74, 0.3);
	transition: all 0.25s ease;
	white-space: nowrap;
}
.vx-h2__btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(46, 160, 74, 0.4);
	color: #fff;
}
.vx-h2__btn-primary svg { transition: transform 0.25s ease; }
.vx-h2__btn-primary:hover svg { transform: translateX(4px); }

.vx-h2__btn-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #2D3748;
	font-weight: 600;
	font-size: 14px;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	transition: all 0.2s ease;
}
.vx-h2__btn-link:hover {
	color: var(--vx-orange-dark);
	border-bottom-color: var(--vx-orange);
}

.vx-h2__brands {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: #718096;
	flex-wrap: wrap;
}
.vx-h2__brands-label {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	font-size: 11px;
}
.vx-h2__brands-logos {
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #4A5568;
}

/* Visual collage */
.vx-h2__visual {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 1025px) {
	.vx-h2__visual { min-height: 540px; }
}

.vx-h2__card {
	position: relative;
	background: #fff;
	border-radius: 24px;
	padding: 24px;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.04),
		0 24px 48px -8px rgba(45, 55, 72, 0.18);
	width: 280px;
	z-index: 3;
	transform: rotate(-3deg);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vx-h2__card:hover {
	transform: rotate(0deg) translateY(-8px);
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.04),
		0 32px 60px -8px rgba(45, 55, 72, 0.25);
}
@media (min-width: 1025px) {
	.vx-h2__card { width: 320px; padding: 28px; }
}

.vx-h2__card-badge {
	position: absolute;
	top: 16px; right: 16px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: linear-gradient(135deg, #FFD580 0%, #F39C12 100%);
	color: #5A3A0E;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	z-index: 2;
}
.vx-h2__card-badge svg { color: #5A3A0E; }

.vx-h2__card-img {
	width: 100%;
	aspect-ratio: 1/1;
	background: linear-gradient(135deg, #FFF8F0 0%, #FCE8D0 100%);
	border-radius: 16px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.vx-h2__card-img svg { width: 75%; height: 75%; }

.vx-h2__card-meta { padding: 0 4px; }
.vx-h2__card-cat {
	display: block;
	font-size: 10px;
	font-weight: 800;
	color: var(--vx-orange);
	letter-spacing: 0.12em;
	margin-bottom: 6px;
}
.vx-h2__card-name {
	font-size: 16px;
	font-weight: 700;
	color: #1A2332;
	margin: 0 0 10px;
	line-height: 1.3;
}
.vx-h2__card-stars {
	display: flex;
	align-items: center;
	gap: 1px;
	font-size: 13px;
	color: var(--vx-yellow);
	margin-bottom: 12px;
}
.vx-h2__card-count {
	color: #718096;
	font-size: 11px;
	margin-left: 6px;
	font-weight: 500;
}
.vx-h2__card-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}
.vx-h2__card-price del {
	color: #A0AEC0;
	font-size: 14px;
	font-weight: 500;
}
.vx-h2__card-price ins {
	color: #1A2332;
	font-size: 22px;
	font-weight: 800;
	text-decoration: none;
	background: none;
}
.vx-h2__card-save {
	background: linear-gradient(135deg, #FF6B35 0%, #E85420 100%);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 999px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Floating chip cards */
.vx-h2__chip {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	padding: 12px 16px;
	border-radius: 14px;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.05),
		0 16px 32px -4px rgba(45, 55, 72, 0.15);
	z-index: 4;
	max-width: 200px;
	transition: transform 0.3s ease;
	animation: vxFloatY 5s ease-in-out infinite;
}
.vx-h2__chip:hover { transform: translateY(-4px) scale(1.03); }
.vx-h2__chip strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #1A2332;
	line-height: 1.2;
}
.vx-h2__chip small {
	display: block;
	font-size: 11px;
	color: #718096;
	margin-top: 2px;
}
.vx-h2__chip--ship {
	top: 8%; left: -8%;
	transform: rotate(-4deg);
	animation-delay: 0s;
}
.vx-h2__chip--auth {
	bottom: 8%; right: -4%;
	transform: rotate(3deg);
	animation-delay: 1s;
}
@media (max-width: 1024px) {
	.vx-h2__chip--ship { top: 0; left: 4%; }
	.vx-h2__chip--auth { bottom: 0; right: 4%; }
}
.vx-h2__chip-icon {
	width: 36px; height: 36px;
	background: linear-gradient(135deg, #FFE5D0 0%, #FCC79B 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #A05A2C;
	flex-shrink: 0;
}
.vx-h2__chip-icon--green {
	background: linear-gradient(135deg, #C5E8C8 0%, #A8DAB5 100%);
	color: #1F7A37;
}

@keyframes vxFloatY {
	0%, 100% { transform: rotate(-4deg) translateY(0); }
	50% { transform: rotate(-4deg) translateY(-10px); }
}
.vx-h2__chip--auth { animation-name: vxFloatY2; }
@keyframes vxFloatY2 {
	0%, 100% { transform: rotate(3deg) translateY(0); }
	50% { transform: rotate(3deg) translateY(-12px); }
}

/* Sparkle accents */
.vx-h2__sparkle {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	animation: vxSparkle 3s ease-in-out infinite;
}
.vx-h2__sparkle--1 {
	width: 28px; height: 28px;
	top: 18%; right: 18%;
	animation-delay: 0.3s;
}
.vx-h2__sparkle--2 {
	width: 20px; height: 20px;
	bottom: 28%; left: 12%;
	animation-delay: 1.2s;
}
@keyframes vxSparkle {
	0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
	50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

/* Wave bottom */
.vx-h2__wave {
	position: absolute;
	bottom: -1px; left: 0;
	width: 100%;
	height: 80px;
	z-index: 5;
}

/* Stagger entrance */
.vx-h2__copy > * { animation: vxFadeUp 0.7s ease both; }
.vx-h2__copy > *:nth-child(1) { animation-delay: 0.1s; }
.vx-h2__copy > *:nth-child(2) { animation-delay: 0.2s; }
.vx-h2__copy > *:nth-child(3) { animation-delay: 0.3s; }
.vx-h2__copy > *:nth-child(4) { animation-delay: 0.4s; }
.vx-h2__copy > *:nth-child(5) { animation-delay: 0.5s; }
.vx-h2__card { animation: vxFadeUp 0.8s 0.4s ease both; }
.vx-h2__chip--ship { animation-delay: 0.6s; }
.vx-h2__chip--auth { animation-delay: 0.7s; }


/* =========================================================
   CATEGORY BENTO GRID (vx-cb)
   ========================================================= */
.vx-cb {
	background: #fff;
	padding: 80px 0;
}

.vx-cb__head {
	text-align: center;
	margin-bottom: 56px;
}
.vx-cb__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--vx-orange);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.vx-cb__title {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	color: #1A2332;
	margin: 0;
	letter-spacing: -0.025em;
	line-height: 1.1;
}
.vx-cb__title em {
	font-family: "Fraunces", Georgia, serif;
	font-style: italic;
	font-weight: 600;
	color: var(--vx-orange);
}

/* Bento grid */
.vx-cb__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 768px) {
	.vx-cb__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1025px) {
	.vx-cb__grid {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: 280px 220px;
		gap: 20px;
	}
	.vx-cb__card--lg {
		grid-column: span 2;
		grid-row: span 1;
	}
	.vx-cb__card--wide {
		grid-column: span 2;
	}
}

/* Card base */
.vx-cb__card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 28px;
	border-radius: 24px;
	overflow: hidden;
	color: inherit;
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	min-height: 220px;
	isolation: isolate;
}
.vx-cb__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0);
	transition: background 0.3s ease;
	z-index: 0;
}
.vx-cb__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -8px rgba(45, 55, 72, 0.2);
}
.vx-cb__card:hover .vx-cb__card-art { transform: scale(1.08) rotate(-3deg); }
.vx-cb__card:hover .vx-cb__card-cta { gap: 10px; }

.vx-cb__card-copy {
	flex: 1;
	min-width: 0;
	z-index: 2;
	position: relative;
}
.vx-cb__card-tag {
	display: inline-block;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
	color: #1A2332;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.vx-cb__card-tag--light {
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.vx-cb__card-title {
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 800;
	color: #1A2332;
	margin: 0 0 6px;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
.vx-cb__card-title--white { color: #fff; }
.vx-cb__card-meta {
	font-size: 13px;
	color: #4A5568;
	margin: 0 0 16px;
	font-weight: 500;
}
.vx-cb__card-meta--light { color: rgba(255, 255, 255, 0.75); }
.vx-cb__card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #1A2332;
	font-size: 13px;
	font-weight: 700;
	transition: all 0.25s ease;
	border-bottom: 2px solid currentColor;
	padding-bottom: 2px;
}
.vx-cb__card-cta--small { font-size: 12px; }
.vx-cb__card-cta--white { color: #fff; }
.vx-cb__card-cta svg { transition: transform 0.25s ease; }
.vx-cb__card:hover .vx-cb__card-cta svg { transform: translateX(3px); }

.vx-cb__card-art {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 1;
}
.vx-cb__card-art svg {
	width: 180px;
	height: 180px;
	max-width: 100%;
	filter: drop-shadow(0 10px 24px rgba(45, 55, 72, 0.15));
}
.vx-cb__card-art--sm svg {
	width: 110px;
	height: 110px;
}

/* Color themes */
.vx-cb__card--green {
	background: linear-gradient(135deg, #C5E8C8 0%, #A8DAB5 60%, #E8F5EC 100%);
}
.vx-cb__card--green::after {
	content: "";
	position: absolute;
	width: 200px; height: 200px;
	background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
	top: -30px; right: -30px;
	border-radius: 50%;
	z-index: 0;
}
.vx-cb__card--peach {
	background: linear-gradient(135deg, #FFE5D0 0%, #FCC79B 100%);
}
.vx-cb__card--lavender {
	background: linear-gradient(135deg, #E5D9E8 0%, #D4C4DC 100%);
}
.vx-cb__card--blue {
	background: linear-gradient(135deg, #E0F2F8 0%, #B8E0EC 100%);
}
.vx-cb__card--mint {
	background: linear-gradient(135deg, #DDF0DE 0%, #B5E0BA 100%);
}
.vx-cb__card--dark {
	background: linear-gradient(135deg, #1A2332 0%, #2D3D52 50%, #1F4530 100%);
	color: #fff;
}
.vx-cb__card--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(46, 160, 74, 0.3), transparent 50%),
		radial-gradient(circle at 20% 80%, rgba(31, 182, 229, 0.2), transparent 50%);
	z-index: 0;
}

/* Brand pills (in dark wide card) */
.vx-cb__card-brands {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	max-width: 360px;
	z-index: 2;
	position: relative;
}
.vx-cb__brand-pill {
	display: inline-block;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: all 0.2s ease;
}
.vx-cb__card--dark:hover .vx-cb__brand-pill {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile tweaks */
@media (max-width: 767px) {
	.vx-cb__card {
		min-height: 180px;
		padding: 20px;
	}
	.vx-cb__card-art svg { width: 120px; height: 120px; }
	.vx-cb__card-art--sm svg { width: 80px; height: 80px; }
	.vx-cb__card-brands { max-width: 100%; }
}

/* =========================================================
   FINDER BAR override - now sits on white below new hero wave
   ========================================================= */
.vx-finder-wrap {
	background: #fff;
	margin-top: -60px;
	padding: 0 0 60px;
	position: relative;
	z-index: 6;
}
.vx-finder {
	box-shadow: 0 12px 40px -8px rgba(45, 55, 72, 0.18);
	border: 1px solid rgba(46, 160, 74, 0.08);
}

/* =========================================================
   HERO PRODUCT SLIDER (vx-hs)
   ========================================================= */
.vx-hs {
	position: relative;
	z-index: 3;
}
/* Fade between slides */
.vx-hs__slide {
	opacity: 0;
	position: absolute;
	top: 0; left: 0; right: 0;
	pointer-events: none;
	transition: opacity 0.55s ease;
}
.vx-hs__slide--on {
	opacity: 1;
	position: relative;
	pointer-events: auto;
}

/* Product image in hero card */
.vx-h2__card-img {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 16px;
	background: linear-gradient(135deg, #FFF8F0, #FCE8D0);
	display: flex;
	align-items: center;
	justify-content: center;
}
.vx-hs__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 12px;
}
.vx-hs__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vx-hs__placeholder svg { width: 75%; height: 75%; }

/* Price formatting inside hero card */
.vx-h2__card-price .woocommerce-Price-amount { color: inherit; }
.vx-h2__card-price del {
	color: #A0AEC0;
	font-size: 14px;
	font-weight: 500;
	text-decoration: line-through;
}
.vx-h2__card-price ins {
	font-size: 22px;
	font-weight: 800;
	color: #1A2332;
	text-decoration: none;
	background: none;
}

/* View product link inside hero card */
.vx-hs__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	padding: 10px 20px;
	background: linear-gradient(135deg, #2EA04A 0%, #1F7A37 100%);
	color: #fff;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	transition: all 0.25s ease;
	white-space: nowrap;
}
.vx-hs__cta:hover {
	transform: translateX(3px);
	box-shadow: 0 6px 20px rgba(46, 160, 74, 0.35);
	color: #fff;
}
.vx-hs__cta svg { transition: transform 0.25s ease; }
.vx-hs__cta:hover svg { transform: translateX(3px); }

/* Slider dots */
.vx-hs__dots {
	position: absolute;
	bottom: -24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 5;
}
.vx-hs__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: rgba(45, 55, 72, 0.2);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}
.vx-hs__dot--on {
	background: var(--vx-orange);
	width: 22px;
	border-radius: 4px;
}

/* =========================================================
   INNER PAGES - shared styles
   ========================================================= */
body.vx-inner-page { background: #fff; }

/* Page hero */
.vx-page-hero {
	background: linear-gradient(135deg, #F0FAF2, #FAFBF7);
	padding: 48px 0 56px;
	position: relative;
	overflow: hidden;
}
.vx-page-hero--sm { padding: 32px 0 40px; }
.vx-page-hero::after {
	content: "";
	position: absolute;
	top: -60px; right: -60px;
	width: 300px; height: 300px;
	background: radial-gradient(circle, rgba(46,160,74,0.08), transparent 70%);
	border-radius: 50%;
}
.vx-page-hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.vx-page-hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(50px);
}
.vx-page-hero__blob--1 {
	width: 320px; height: 320px;
	background: radial-gradient(circle, #A8DAB5 0%, transparent 70%);
	top: -80px; right: 10%;
	opacity: 0.5;
}
.vx-page-hero__blob--2 {
	width: 240px; height: 240px;
	background: radial-gradient(circle, #FCC79B 0%, transparent 70%);
	bottom: -60px; left: 5%;
	opacity: 0.45;
}
.vx-page-hero__title {
	font-size: clamp(1.75rem, 3.5vw, 3rem);
	font-weight: 800;
	color: #1A2332;
	margin: 12px 0 12px;
	letter-spacing: -0.025em;
	position: relative;
	z-index: 2;
}
.vx-page-hero__title em {
	font-family: "Fraunces", Georgia, serif;
	font-style: italic;
	color: var(--vx-orange);
}
.vx-page-hero__sub {
	color: #4A5568;
	font-size: 16px;
	max-width: 640px;
	margin: 0;
	position: relative;
	z-index: 2;
}
.vx-page-hero__count {
	font-size: 16px;
	font-weight: 500;
	color: var(--vx-muted);
	margin-left: 12px;
}

/* Breadcrumb */
.vx-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--vx-muted);
	margin-bottom: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}
.vx-breadcrumb a { color: var(--vx-muted); }
.vx-breadcrumb a:hover { color: var(--vx-blue); }
.vx-breadcrumb--light a,
.vx-breadcrumb--light { color: rgba(255,255,255,0.75); }
.vx-breadcrumb--light a:hover { color: #fff; }

/* =========================================================
   SHOP PAGE
   ========================================================= */
.vx-shop-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding: 40px 0 80px;
}
@media (min-width: 1025px) {
	.vx-shop-layout { grid-template-columns: 240px 1fr; gap: 40px; }
}
.vx-shop-sidebar {}
.vx-sidebar-widget {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius-lg);
	padding: 20px;
	margin-bottom: 20px;
}
.vx-sidebar-widget__title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 14px;
	color: #1A2332;
}
.vx-sidebar-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.vx-sidebar-list li { margin-bottom: 6px; }
.vx-sidebar-list a {
	color: var(--vx-muted);
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	transition: color 0.2s ease;
}
.vx-sidebar-list a:hover,
.vx-sidebar-list li.active a { color: var(--vx-blue); }
.vx-sidebar-list span {
	background: var(--vx-soft);
	border-radius: 999px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 600;
}
.vx-shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--vx-border-light);
	margin-bottom: 28px;
	flex-wrap: wrap;
	gap: 12px;
}
.vx-shop-toolbar__count { font-size: 14px; color: var(--vx-muted); }
.vx-pgrid--shop { grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .vx-pgrid--shop { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1025px) { .vx-pgrid--shop { grid-template-columns: repeat(4, 1fr); } }
.vx-shop-pagination { padding: 40px 0 20px; }
.vx-no-results {
	text-align: center;
	padding: 60px 20px;
	background: var(--vx-soft);
	border-radius: var(--vx-radius-lg);
}
.vx-no-results h3 { margin: 16px 0 8px; }
.vx-no-results p { color: var(--vx-muted); margin-bottom: 24px; }

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.vx-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding: 32px 0 40px;
}
@media (min-width: 1025px) {
	.vx-product-layout { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
}

/* Gallery */
.vx-product-gallery__main {
	position: relative;
	border-radius: var(--vx-radius-xl);
	overflow: hidden;
	background: var(--vx-soft);
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.vx-product-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 24px;
}
.vx-product-gallery__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; height: 100%;
}
.vx-product-gallery__badge {
	position: absolute;
	top: 16px; left: 16px;
	background: var(--vx-orange);
	color: #fff;
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}
.vx-product-gallery__thumbs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.vx-product-gallery__thumb {
	width: 72px; height: 72px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid var(--vx-border);
	background: var(--vx-soft);
	cursor: pointer;
	transition: border-color 0.2s ease;
	padding: 0;
}
.vx-product-gallery__thumb.active,
.vx-product-gallery__thumb:hover { border-color: var(--vx-blue); }
.vx-product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* Product info */
.vx-product-info__brand {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	color: var(--vx-orange);
	letter-spacing: 0.12em;
	margin-bottom: 8px;
}
.vx-product-info__title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 800;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
}
.vx-product-info__rating { display: flex; align-items: center; gap: 2px; margin-bottom: 16px; }
.vx-product-info__rating-count { color: var(--vx-muted); font-size: 13px; margin-left: 8px; }
.vx-product-info__price {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 16px;
}
.vx-product-info__price .woocommerce-Price-amount { color: #1A2332; }
.vx-product-info__price del .woocommerce-Price-amount { color: var(--vx-light); font-size: 18px; }
.vx-product-info__price ins { background: none; }
.vx-product-info__price ins .woocommerce-Price-amount { color: var(--vx-orange); }
.vx-product-info__short { font-size: 15px; color: #4A5568; line-height: 1.65; margin-bottom: 20px; }
.vx-product-info__meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.vx-product-info__meta-item { font-size: 13px; color: var(--vx-muted); }
.vx-stock { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: 13px; }
.vx-stock--in { color: var(--vx-green-tag); }
.vx-stock--out { color: var(--vx-orange-dark); }
.vx-product-info__trust {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--vx-border-light);
}
.vx-product-info__trust span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--vx-muted);
}
.vx-product-info__trust svg { color: var(--vx-blue); }

/* WC add to cart in our layout */
.vx-product-info .quantity { display: inline-flex; align-items: center; gap: 8px; margin-right: 12px; }
.vx-product-info .qty {
	width: 60px;
	text-align: center;
	border: 1px solid var(--vx-border);
	border-radius: 8px;
	padding: 10px;
	font-family: inherit;
	font-size: 15px;
}
.vx-product-info .single_add_to_cart_button {
	background: var(--vx-blue) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 14px 28px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	cursor: pointer;
	transition: all 0.25s ease;
}
.vx-product-info .single_add_to_cart_button:hover {
	background: var(--vx-blue-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(31, 182, 229, 0.3);
}

/* Product tabs */
.vx-product-tabs-wrap { padding: 40px 0; }
.vx-product-tabs {
	display: flex;
	gap: 4px;
	border-bottom: 1px solid var(--vx-border);
	margin-bottom: 28px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.vx-ptab {
	padding: 14px 22px;
	background: none;
	border: none;
	color: var(--vx-muted);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	position: relative;
	transition: color 0.2s ease;
}
.vx-ptab--on { color: var(--vx-blue); }
.vx-ptab--on::after {
	content: "";
	position: absolute;
	bottom: -1px; left: 0; right: 0;
	height: 2px;
	background: var(--vx-blue);
	border-radius: 2px 2px 0 0;
}
.vx-ptab-content { display: none; }
.vx-ptab-content--on { display: block; }
.vx-product-description { font-size: 16px; line-height: 1.75; color: #4A5568; }
.vx-product-description p { margin-bottom: 1em; }
.vx-product-attrs {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.vx-product-attrs th,
.vx-product-attrs td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--vx-border-light);
	text-align: left;
}
.vx-product-attrs th {
	font-weight: 600;
	color: #1A2332;
	width: 180px;
	background: var(--vx-soft);
}
.vx-related { padding: 40px 0 60px; }

/* =========================================================
   CART & CHECKOUT & ACCOUNT
   ========================================================= */
.vx-cart-layout,
.vx-checkout-layout,
.vx-account-wrap {
	padding: 40px 0 80px;
}
.vx-checkout-trust {
	display: flex;
	gap: 20px;
	margin-top: 12px;
	flex-wrap: wrap;
}
.vx-checkout-trust span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #4A5568;
}
.vx-checkout-form {}
.vx-thankyou {
	padding: 80px 20px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}
.vx-thankyou__icon {
	width: 80px; height: 80px;
	background: var(--vx-primary-light, #E8F5EC);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}
.vx-thankyou h1 { font-size: 2.5rem; margin-bottom: 12px; }
.vx-thankyou p { color: var(--vx-muted); margin-bottom: 32px; }
.vx-thankyou__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.vx-about-stats {
	background: #fff;
	border-bottom: 1px solid var(--vx-border-light);
	padding: 40px 0;
}
.vx-about-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	text-align: center;
}
@media (min-width: 768px) {
	.vx-about-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.vx-about-stats__item strong {
	display: block;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--vx-blue);
	letter-spacing: -0.02em;
}
.vx-about-stats__item span {
	font-size: 14px;
	color: var(--vx-muted);
	font-weight: 500;
	margin-top: 4px;
	display: block;
}
.vx-about-story {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding: 80px 0;
	align-items: center;
}
@media (min-width: 1025px) {
	.vx-about-story { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.vx-about-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--vx-orange);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.vx-about-story h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin: 0 0 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
}
.vx-about-story p { font-size: 16px; line-height: 1.7; color: #4A5568; margin-bottom: 16px; }
.vx-about-story__card {
	border-radius: var(--vx-radius-xl);
	overflow: hidden;
	box-shadow: var(--vx-shadow-lg);
}
.vx-about-values { background: var(--vx-soft); padding: 80px 0; }
.vx-about-values__head { text-align: center; margin-bottom: 56px; }
.vx-about-values__head h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0; letter-spacing: -0.02em; }
.vx-about-values__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
}
@media (min-width: 768px) { .vx-about-values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .vx-about-values__grid { grid-template-columns: repeat(3, 1fr); } }
.vx-value-card {
	background: #fff;
	border-radius: var(--vx-radius-lg);
	padding: 28px;
	transition: all 0.25s ease;
	border: 1px solid var(--vx-border-light);
}
.vx-value-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow); border-color: var(--vx-blue); }
.vx-value-card__icon {
	width: 56px; height: 56px;
	background: var(--vx-blue-light);
	border-radius: var(--vx-radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vx-blue);
	margin-bottom: 16px;
}
.vx-value-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.vx-value-card p { font-size: 14px; color: var(--vx-muted); margin: 0; }
.vx-about-brands { padding: 80px 0; }
.vx-brands-grid-simple {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 40px;
}
.vx-brand-pill-lrg {
	display: inline-block;
	padding: 12px 24px;
	background: var(--vx-soft);
	border: 1px solid var(--vx-border);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	color: #1A2332;
	letter-spacing: 0.04em;
	transition: all 0.2s ease;
}
.vx-brand-pill-lrg:hover { background: var(--vx-blue); color: #fff; border-color: var(--vx-blue); }
.vx-about-cta {
	background: linear-gradient(135deg, #1F7A37 0%, #1FB6E5 100%);
	padding: 60px 0;
}
.vx-about-cta__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}
@media (min-width: 1025px) { .vx-about-cta__inner { grid-template-columns: 1fr auto; } }
.vx-about-cta h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 0 0 8px; }
.vx-about-cta p { color: rgba(255,255,255,0.85); margin: 0; }
.vx-about-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.vx-contact-layout { padding: 48px 0; }
.vx-contact-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 56px;
}
@media (min-width: 1025px) { .vx-contact-cards { grid-template-columns: repeat(4, 1fr); } }
.vx-contact-card {
	background: #fff;
	border: 1px solid var(--vx-border-light);
	border-radius: var(--vx-radius-lg);
	padding: 24px;
	transition: all 0.2s ease;
}
.vx-contact-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow); border-color: var(--vx-blue); }
.vx-contact-card__icon {
	width: 48px; height: 48px;
	background: var(--vx-blue-light);
	border-radius: var(--vx-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vx-blue);
	margin-bottom: 14px;
}
.vx-contact-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.vx-contact-card p { font-size: 14px; color: var(--vx-muted); margin: 0 0 4px; }
.vx-contact-card__note { font-size: 12px; color: var(--vx-light); }
.vx-contact-form-wrap h2 { font-size: 1.75rem; font-weight: 800; margin: 0 0 8px; }
.vx-contact-form-wrap > p { color: var(--vx-muted); margin-bottom: 28px; }
.vx-contact-faq {
	background: var(--vx-soft);
	border-radius: var(--vx-radius-xl);
	padding: 40px;
	text-align: center;
}
.vx-contact-faq h2 { font-size: 1.5rem; margin: 0 0 8px; }
.vx-contact-faq p { color: var(--vx-muted); margin-bottom: 20px; }

/* Forms (shared) */
.vx-contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 760px; }
.vx-form-row { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 640px) {
	.vx-form-row--2 { flex-direction: row; }
	.vx-form-row--2 .vx-form-group { flex: 1; }
}
.vx-form-group { display: flex; flex-direction: column; gap: 6px; }
.vx-form-group label { font-size: 14px; font-weight: 600; color: #1A2332; }
.vx-form-group label span { color: var(--vx-orange); }
.vx-form-group input,
.vx-form-group select,
.vx-form-group textarea {
	padding: 12px 16px;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	font-family: inherit;
	font-size: 15px;
	color: var(--vx-text);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vx-form-group input:focus,
.vx-form-group select:focus,
.vx-form-group textarea:focus {
	outline: none;
	border-color: var(--vx-blue);
	box-shadow: 0 0 0 3px rgba(31, 182, 229, 0.1);
}
.vx-form-group textarea { resize: vertical; min-height: 120px; }
.vx-form-msg {
	padding: 14px 18px;
	border-radius: var(--vx-radius);
	font-size: 14px;
	font-weight: 500;
}
.vx-form-msg--ok { background: #E8F5EC; color: #1A4D2E; border: 1px solid #A8DAB5; }
.vx-form-msg--err { background: #FFF0F0; color: #B71C1C; border: 1px solid #FFCDD2; }

/* =========================================================
   WHOLESALE PAGE
   ========================================================= */
.vx-ws-hero {
	background: linear-gradient(135deg, #0E1A14, #1F4530);
	color: #fff;
	padding: 60px 0 80px;
	position: relative;
	overflow: hidden;
}
.vx-ws-hero__blobs { position: absolute; inset: 0; }
.vx-ws-hero__blobs span {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
}
.vx-ws-hero__blobs span:first-child {
	width: 400px; height: 400px;
	background: rgba(46,160,74,0.25);
	top: -100px; right: 10%;
}
.vx-ws-hero__blobs span:last-child {
	width: 300px; height: 300px;
	background: rgba(31,182,229,0.15);
	bottom: -80px; left: 5%;
}
.vx-ws-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}
@media (min-width: 1025px) { .vx-ws-hero__inner { grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; } }
.vx-ws-eyebrow {
	display: inline-block;
	background: rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.9);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 16px;
}
.vx-ws-hero h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
	letter-spacing: -0.025em;
}
.vx-ws-hero h1 em {
	font-family: "Fraunces", Georgia, serif;
	font-style: italic;
	color: #A8DAB5;
}
.vx-ws-hero p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
.vx-ws-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.vx-ws-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.vx-ws-hero__stats > div {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--vx-radius-lg);
	padding: 20px 16px;
	text-align: center;
}
.vx-ws-hero__stats strong {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}
.vx-ws-hero__stats span {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin-top: 4px;
}
.vx-ws-how { padding: 80px 0; }
.vx-ws-steps {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 48px;
}
.vx-ws-step {
	flex: 1;
	min-width: 160px;
	max-width: 200px;
	text-align: center;
	padding: 24px 16px;
}
.vx-ws-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--vx-blue);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	margin: 0 auto 16px;
}
.vx-ws-step h3 { font-size: 16px; margin: 0 0 8px; }
.vx-ws-step p { font-size: 13px; color: var(--vx-muted); margin: 0; }
.vx-ws-step__arrow { font-size: 24px; color: var(--vx-border); font-weight: 300; flex-shrink: 0; }
.vx-ws-benefits { background: var(--vx-soft); padding: 80px 0; }
.vx-ws-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 40px;
}
@media (min-width: 768px) { .vx-ws-benefits__grid { grid-template-columns: repeat(4, 1fr); } }
.vx-ws-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: var(--vx-radius);
	padding: 16px;
	font-size: 14px;
	font-weight: 500;
}
.vx-ws-benefit svg { color: var(--vx-green-tag); flex-shrink: 0; }
.vx-ws-mov { padding: 60px 0; }
.vx-ws-mov h2 { font-size: 1.75rem; font-weight: 800; margin: 0 0 24px; }
.vx-ws-form-wrap {
	padding: 60px 0 80px;
}
.vx-ws-form-card {
	background: #fff;
	border: 1px solid var(--vx-border-light);
	border-radius: var(--vx-radius-xl);
	padding: 40px;
	max-width: 840px;
	box-shadow: var(--vx-shadow);
}
.vx-ws-form-card h2 { font-size: 1.75rem; font-weight: 800; margin: 0 0 8px; }
.vx-ws-form-card > p { color: var(--vx-muted); margin-bottom: 28px; }

/* =========================================================
   BRANDS PAGE
   ========================================================= */
.vx-brands-page { padding: 48px 0 80px; }
.vx-brand-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding: 32px 0;
	border-bottom: 1px solid var(--vx-border-light);
	align-items: center;
}
@media (min-width: 1025px) {
	.vx-brand-row { grid-template-columns: 160px 1fr auto; gap: 40px; }
}
.vx-brand-row__logo {
	border-radius: var(--vx-radius-lg);
	width: 160px; height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vx-brand-row__name { font-size: 20px; font-weight: 900; letter-spacing: 0.06em; }
.vx-brand-row__title { font-size: 1.4rem; font-weight: 800; margin: 0 0 4px; }
.vx-brand-row__tagline { font-size: 14px; color: var(--vx-muted); font-style: italic; margin: 0 0 12px; }
.vx-brand-row__desc { font-size: 15px; line-height: 1.65; color: #4A5568; margin: 0 0 16px; }
.vx-brand-row__meta { display: flex; gap: 20px; font-size: 13px; color: var(--vx-muted); flex-wrap: wrap; }

/* =========================================================
   TRACK ORDER PAGE
   ========================================================= */
.vx-track-wrap { padding: 48px 0 80px; }
.vx-track-form-card {
	background: #fff;
	border: 1px solid var(--vx-border-light);
	border-radius: var(--vx-radius-xl);
	padding: 36px 40px;
	max-width: 680px;
	box-shadow: var(--vx-shadow);
	margin-bottom: 32px;
}
.vx-track-form { display: flex; flex-direction: column; gap: 20px; }
.vx-track-result {
	max-width: 680px;
	border-radius: var(--vx-radius-lg);
	padding: 24px;
	margin-bottom: 32px;
}
.vx-track-result--ok {
	background: #E8F5EC;
	border: 1px solid #A8DAB5;
}
.vx-track-result--err {
	background: #FFF0F0;
	border: 1px solid #FFCDD2;
	color: #B71C1C;
}
.vx-track-result h3 { margin: 0 0 16px; font-size: 1.25rem; color: #1A4D2E; }
.vx-track-result__row {
	display: flex;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	align-items: baseline;
}
.vx-track-result__row span { font-size: 13px; color: #4A5568; min-width: 100px; }
.vx-track-result__row strong { font-weight: 600; }
.vx-track-result__row ul { margin: 0; padding-left: 18px; }
.vx-track-result__row li { font-size: 14px; }
.vx-status { display: inline-block; padding: 4px 12px; background: var(--vx-blue); color: #fff; border-radius: 999px; font-size: 12px; }
.vx-track-help {
	max-width: 680px;
	background: var(--vx-soft);
	border-radius: var(--vx-radius-lg);
	padding: 24px;
}
.vx-track-help h3 { margin: 0 0 8px; font-size: 16px; }
.vx-track-help p { font-size: 14px; color: var(--vx-muted); margin: 0; }

/* =========================================================
   FAQ PAGE
   ========================================================= */
.vx-faq-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding: 40px 0;
}
@media (min-width: 1025px) {
	.vx-faq-layout { grid-template-columns: 220px 1fr; gap: 48px; }
}
.vx-faq-nav {
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: sticky;
	top: 100px;
	height: fit-content;
}
.vx-faq-nav a {
	padding: 10px 14px;
	border-radius: var(--vx-radius);
	font-size: 14px;
	font-weight: 500;
	color: var(--vx-muted);
	transition: all 0.2s ease;
	display: block;
}
.vx-faq-nav a:hover { background: var(--vx-blue-light); color: var(--vx-blue); }
.vx-faq-group { margin-bottom: 48px; }
.vx-faq-group__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 16px;
	color: #1A2332;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--vx-blue);
}
.vx-faq-item {
	border-bottom: 1px solid var(--vx-border-light);
}
.vx-faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 18px 0;
	background: none;
	border: none;
	text-align: left;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: #1A2332;
	cursor: pointer;
	gap: 12px;
}
.vx-faq-q:hover { color: var(--vx-blue); }
.vx-faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; }
.vx-faq-q[aria-expanded="true"] .vx-faq-chevron { transform: rotate(180deg); }
.vx-faq-a {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.3s ease;
}
.vx-faq-a p { font-size: 15px; line-height: 1.7; color: #4A5568; padding-bottom: 18px; margin: 0; }
.vx-faq-cta {
	background: var(--vx-soft);
	border-radius: var(--vx-radius-xl);
	padding: 40px;
}
.vx-faq-cta h2 { margin: 0 0 8px; }
.vx-faq-cta p { color: var(--vx-muted); margin-bottom: 20px; }

/* =========================================================
   SHIPPING POLICY PAGE
   ========================================================= */
.vx-policy-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding: 40px 0 80px;
}
@media (min-width: 1025px) {
	.vx-policy-layout { grid-template-columns: 200px 1fr; gap: 48px; }
}
.vx-policy-toc {
	position: sticky;
	top: 100px;
	height: fit-content;
}
.vx-policy-toc h3 { font-size: 14px; font-weight: 700; color: var(--vx-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.vx-policy-toc ul { list-style: none; margin: 0; padding: 0; }
.vx-policy-toc li { margin-bottom: 6px; }
.vx-policy-toc a { font-size: 14px; color: var(--vx-muted); }
.vx-policy-toc a:hover { color: var(--vx-blue); }
.vx-policy-content section { margin-bottom: 48px; }
.vx-policy-content h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 16px; color: #1A2332; }
.vx-policy-content p { font-size: 15px; line-height: 1.7; color: #4A5568; margin-bottom: 14px; }
.vx-policy-list { padding-left: 20px; }
.vx-policy-list li { font-size: 15px; color: #4A5568; margin-bottom: 8px; line-height: 1.6; }
.vx-policy-note { font-size: 13px; color: var(--vx-muted); font-style: italic; background: var(--vx-soft); padding: 12px 16px; border-radius: var(--vx-radius); }

/* =========================================================
   TABLE
   ========================================================= */
.vx-table-wrap { overflow-x: auto; }
.vx-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.vx-table th,
.vx-table td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--vx-border-light);
}
.vx-table thead th {
	background: #1A2332;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.03em;
}
.vx-table tbody tr:hover { background: var(--vx-soft); }

/* =========================================================
   404 PAGE
   ========================================================= */
.vx-404-wrap {
	padding: 80px 0;
	text-align: center;
}
.vx-404-code {
	font-size: clamp(6rem, 15vw, 12rem);
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, var(--vx-blue) 0%, var(--vx-orange) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.05em;
	margin-bottom: 16px;
}
.vx-404-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 12px; }
.vx-404-sub { color: var(--vx-muted); max-width: 480px; margin: 0 auto 32px; }
.vx-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.vx-404-search { margin-bottom: 56px; display: flex; justify-content: center; }
.vx-404-products { text-align: left; }
.vx-404-products h3 { text-align: center; margin-bottom: 28px; font-size: 1.25rem; }

/* Newsletter override for inner pages */
body.vx-inner-page .vx-newsletter {
	background: #1A2332;
	padding: 48px 0;
}
body.vx-inner-page .vx-newsletter__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
@media (min-width: 1025px) {
	body.vx-inner-page .vx-newsletter__inner { flex-direction: row; align-items: center; gap: 60px; }
}
body.vx-inner-page .vx-newsletter__title { color: #fff; margin: 0 0 6px; font-size: 1.5rem; }
body.vx-inner-page .vx-newsletter__sub { color: rgba(255,255,255,0.7); margin: 0; }
