/*
Theme Name: VV Textile
Theme URI: https://vvtextile.com
Author: VV Textile
Description: Small-run Indian womenswear storefront - WooCommerce ready, fully responsive, with catalogue/enquiry mode, wholesale pricing and WhatsApp built in.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vvtextile
Tags: e-commerce, custom-menu, custom-logo, featured-images, translation-ready
*/

/* =========================================================================
   1. Tokens - palette lifted from the VV Textile logo
   ====================================================================== */

:root {
	--vv-navy: #1b3560;
	--vv-navy-deep: #0f1f3c;
	--vv-navy-soft: #2b4a80;
	--vv-gold: #c69b4e;
	--vv-gold-light: #e2c185;
	--vv-cream: #f7efe2;
	--vv-sand: #eadcc4;
	--vv-ink: #14202e;
	--vv-muted: #7c7568;
	--vv-line: #e4d9c6;
	--vv-white: #fff;

	/* Kept so the wholesale plugin's fallbacks stay on-brand. */
	--vv-maroon: #1b3560;

	--vv-radius: 12px;
	--vv-radius-lg: 22px;
	--vv-shell: 1280px;

	--vv-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--vv-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--vv-shadow-sm: 0 2px 10px rgba(20, 32, 46, .06);
	--vv-shadow: 0 14px 38px rgba(20, 32, 46, .12);
	--vv-shadow-lg: 0 30px 70px rgba(20, 32, 46, .2);

	--vv-ease: cubic-bezier(.22, .61, .36, 1);

	--vv-weave: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c69b4e' stroke-opacity='.55' stroke-width='1'%3E%3Cpath d='M32 0 64 32 32 64 0 32Z'/%3E%3Ccircle cx='32' cy='32' r='9'/%3E%3Cpath d='M0 0h64v64H0z'/%3E%3C/g%3E%3C/svg%3E");
}

/* =========================================================================
   2. Base
   ====================================================================== */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--vv-white);
	color: var(--vv-ink);
	font-family: var(--vv-font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.vvt-locked { overflow: hidden; }

img, svg, video, iframe {
	max-width: 100%;
	display: block;
}

img { height: auto; }

a {
	color: var(--vv-navy);
	text-decoration: none;
	transition: color .2s var(--vv-ease);
}

a:hover { color: var(--vv-gold); }

h1, h2, h3, h4, h5 {
	font-family: var(--vv-font-display);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
	color: var(--vv-ink);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; }
em { font-style: italic; }

:focus-visible {
	outline: 3px solid var(--vv-gold);
	outline-offset: 3px;
	border-radius: 4px;
}

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

.vvt-skip {
	position: absolute;
	left: -9999px;
	z-index: 10000;
	padding: .8rem 1.2rem;
	background: var(--vv-navy);
	color: #fff;
	border-radius: 0 0 8px 0;
}

.vvt-skip:focus { left: 0; top: 0; color: #fff; }

/* =========================================================================
   3. Layout
   ====================================================================== */

.vvt-shell {
	width: min(100% - 2.5rem, var(--vv-shell));
	margin-inline: auto;
}

.vvt-section { padding: clamp(3.25rem, 7vw, 5.5rem) 0; }
.vvt-main--shop { padding-bottom: 4rem; }

/* =========================================================================
   4. Reveal animations
   ====================================================================== */

[data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .75s var(--vv-ease), transform .75s var(--vv-ease);
	will-change: opacity, transform;
}

[data-reveal].is-in { opacity: 1; transform: none; }

.vvt-word {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
}

.vvt-word__in {
	display: inline-block;
	transform: translateY(110%);
	transition: transform .85s var(--vv-ease);
}

[data-split].is-in .vvt-word__in { transform: none; }

/* =========================================================================
   5. Buttons
   ====================================================================== */

.vvt-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	padding: .9rem 1.9rem;
	border: 0;
	border-radius: 999px;
	background: var(--vv-navy);
	color: #fff !important;
	font-family: var(--vv-font-body);
	font-size: .92rem;
	font-weight: 600;
	letter-spacing: .02em;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: background .22s var(--vv-ease), transform .22s var(--vv-ease), box-shadow .22s var(--vv-ease);
}

.vvt-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--vv-navy-deep);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(27, 53, 96, .3);
}

.vvt-btn--gold,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
	background: var(--vv-gold);
	color: var(--vv-ink) !important;
}

.vvt-btn--gold:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
	background: var(--vv-gold-light);
	color: var(--vv-ink) !important;
	box-shadow: 0 12px 28px rgba(198, 155, 78, .38);
}

.vvt-btn--ghost {
	background: transparent;
	color: #fff !important;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45);
}

.vvt-btn--ghost:hover {
	background: rgba(255, 255, 255, .1);
	color: #fff !important;
	box-shadow: inset 0 0 0 1.5px #fff;
}

.vvt-btn--outline {
	background: transparent;
	color: var(--vv-navy) !important;
	box-shadow: inset 0 0 0 1.5px var(--vv-navy);
}

.vvt-btn--outline:hover {
	background: var(--vv-navy);
	color: #fff !important;
}

.vvt-btn--wa {
	background: #25d366;
	color: #fff !important;
}

.vvt-btn--wa:hover {
	background: #1fb857;
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(37, 211, 102, .32);
}

.vvt-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--vv-ink);
	cursor: pointer;
	transition: background .2s, color .2s;
}

.vvt-iconbtn:hover { background: var(--vv-cream); color: var(--vv-navy); }

.vvt-eyebrow {
	display: inline-block;
	margin-bottom: 1rem;
	padding: .34rem 1rem;
	border-radius: 999px;
	background: var(--vv-cream);
	color: var(--vv-navy);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.vvt-eyebrow--light {
	background: rgba(255, 255, 255, .12);
	color: var(--vv-gold-light);
	box-shadow: inset 0 0 0 1px rgba(226, 193, 133, .35);
}

/* =========================================================================
   6. Topbar + header
   ====================================================================== */

.vvt-topbar {
	background: var(--vv-navy-deep);
	color: rgba(255, 255, 255, .82);
	font-size: .76rem;
	letter-spacing: .05em;
}

.vvt-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 36px;
	flex-wrap: wrap;
}

.vvt-topbar__msg { margin: 0; text-transform: uppercase; font-weight: 500; }
.vvt-topbar__links { display: flex; gap: 1.25rem; }
.vvt-topbar__links a { color: rgba(255, 255, 255, .82); }
.vvt-topbar__links a:hover { color: var(--vv-gold-light); }

.vvt-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid var(--vv-line);
	transition: transform .35s var(--vv-ease), box-shadow .3s var(--vv-ease);
}

.vvt-header.is-stuck { box-shadow: var(--vv-shadow-sm); }
.vvt-header.is-hidden { transform: translateY(-100%); }

.vvt-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 74px;
}

.vvt-header__brand { flex: 0 0 auto; }
.vvt-header__brand img { max-height: 56px; width: auto; }

.vvt-wordmark {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	color: var(--vv-ink);
}

.vvt-wordmark__mark {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--vv-navy), var(--vv-navy-deep));
	color: var(--vv-gold-light);
	font-family: var(--vv-font-display);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: .02em;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 1px rgba(226, 193, 133, .45);
}

.vvt-wordmark__lock { display: grid; line-height: 1.1; }

.vvt-wordmark__text {
	font-family: var(--vv-font-display);
	font-weight: 700;
	font-size: 1.28rem;
	letter-spacing: .01em;
}

.vvt-wordmark__tag {
	font-size: .58rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--vv-gold);
}

.vvt-footer .vvt-wordmark__tag { color: var(--vv-gold-light); }

@media (max-width: 420px) {
	.vvt-wordmark__tag { display: none; }
	.vvt-wordmark__text { font-size: 1.1rem; }
}

.vvt-nav { margin-inline-start: auto; }

.vvt-nav__list {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 0; padding: 0;
	list-style: none;
}

.vvt-nav__list li { position: relative; }

.vvt-nav__list a {
	display: inline-block;
	padding: .4rem 0;
	color: var(--vv-ink);
	font-size: .88rem;
	font-weight: 600;
	letter-spacing: .03em;
}

.vvt-nav__list > li > a::after {
	content: "";
	display: block;
	height: 2px; width: 0;
	margin-top: 4px;
	background: var(--vv-gold);
	transition: width .28s var(--vv-ease);
}

.vvt-nav__list > li:hover > a::after,
.vvt-nav__list > li.current-menu-item > a::after { width: 100%; }

.vvt-nav__list .sub-menu {
	position: absolute;
	top: 100%; left: -1rem;
	min-width: 220px;
	margin: 0; padding: .6rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	box-shadow: var(--vv-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .25s var(--vv-ease);
}

.vvt-nav__list li:hover > .sub-menu,
.vvt-nav__list li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: none;
}

.vvt-nav__list .sub-menu a { display: block; padding: .5rem 1.2rem; font-weight: 500; }
.vvt-nav__list .sub-menu a:hover { background: var(--vv-cream); color: var(--vv-navy); }

.vvt-header__actions {
	display: flex;
	align-items: center;
	gap: .3rem;
	margin-inline-start: auto;
}

.vvt-nav + .vvt-header__actions { margin-inline-start: 0; }

.vvt-account {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .5rem .85rem;
	border-radius: 999px;
	color: var(--vv-ink);
	font-size: .84rem;
	font-weight: 600;
}

.vvt-account:hover { background: var(--vv-cream); color: var(--vv-navy); }

.vvt-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	color: var(--vv-ink);
	transition: background .2s, color .2s;
}

.vvt-cart:hover { background: var(--vv-cream); color: var(--vv-navy); }

.vvt-cart__count {
	position: absolute;
	top: 3px; right: 1px;
	min-width: 19px; height: 19px;
	padding: 0 5px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--vv-navy);
	color: #fff;
	font-size: .68rem;
	font-weight: 700;
	line-height: 1;
}

.vvt-burger { display: none; flex-direction: column; gap: 5px; }

.vvt-burger span {
	display: block;
	width: 21px; height: 2px;
	background: var(--vv-ink);
	border-radius: 2px;
	transition: transform .3s var(--vv-ease), opacity .2s;
}

.vvt-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vvt-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vvt-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vvt-searchbar {
	border-top: 1px solid var(--vv-line);
	background: var(--vv-cream);
	padding: 1rem 0;
}

.vvt-searchform {
	display: flex;
	gap: .5rem;
	max-width: 620px;
	margin-inline: auto;
}

.vvt-searchform input[type="search"] {
	flex: 1;
	padding: .8rem 1.1rem;
	border: 1px solid var(--vv-line);
	border-radius: 999px;
	background: #fff;
	font: inherit;
	font-size: .95rem;
	color: var(--vv-ink);
}

.vvt-searchform input[type="search"]:focus {
	outline: 0;
	border-color: var(--vv-navy);
	box-shadow: 0 0 0 3px rgba(27, 53, 96, .12);
}

.vvt-searchform button {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--vv-navy);
	color: #fff;
	cursor: pointer;
	transition: background .2s;
}

.vvt-searchform button:hover { background: var(--vv-navy-deep); }

/* Drawer */
.vvt-drawer { position: fixed; inset: 0; z-index: 1000; }

.vvt-drawer__scrim {
	position: absolute;
	inset: 0;
	background: rgba(15, 31, 60, .55);
	opacity: 0;
	transition: opacity .3s var(--vv-ease);
}

.vvt-drawer.is-open .vvt-drawer__scrim { opacity: 1; }

.vvt-drawer__panel {
	position: absolute;
	top: 0; right: 0;
	z-index: 2;
	width: min(86vw, 340px);
	height: 100%;
	padding: 1.5rem;
	overflow-y: auto;
	background: #fff;
	box-shadow: var(--vv-shadow-lg);
	transform: translateX(100%);
	transition: transform .34s var(--vv-ease);
}

.vvt-drawer.is-open .vvt-drawer__panel { transform: none; }

.vvt-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--vv-line);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--vv-muted);
}

.vvt-drawer__close {
	border: 0;
	background: none;
	font-size: 1.9rem;
	line-height: 1;
	color: var(--vv-ink);
	cursor: pointer;
}

.vvt-drawer__list,
.vvt-drawer__list .sub-menu { margin: 0; padding: 0; list-style: none; }

.vvt-drawer__list a {
	display: block;
	padding: .8rem 0;
	border-bottom: 1px solid var(--vv-line);
	color: var(--vv-ink);
	font-size: 1rem;
	font-weight: 600;
}

.vvt-drawer__list .sub-menu a {
	padding-left: 1rem;
	font-weight: 500;
	font-size: .92rem;
	color: var(--vv-muted);
}

.vvt-drawer__cta { width: 100%; margin-top: 1.5rem; }

/* =========================================================================
   7. Hero
   ====================================================================== */

.vvt-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
	background:
		radial-gradient(120% 100% at 80% 0%, rgba(43, 74, 128, .9) 0%, transparent 62%),
		linear-gradient(160deg, var(--vv-navy-deep) 0%, var(--vv-navy) 60%, #16294c 100%);
	color: #fff;
}

.vvt-hero__weave {
	position: absolute;
	inset: 0;
	background-image: var(--vv-weave);
	background-size: 64px 64px;
	opacity: .13;
	animation: vvt-drift 60s linear infinite;
	pointer-events: none;
}

@keyframes vvt-drift { to { background-position: 640px 640px; } }

.vvt-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.vvt-hero__title {
	font-size: clamp(2.6rem, 6.5vw, 5rem);
	line-height: 1;
	color: #fff;
	margin-bottom: .45em;
}

.vvt-hero__text {
	max-width: 46ch;
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	color: rgba(255, 255, 255, .82);
	margin-bottom: 2rem;
}

.vvt-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Overlapping image stack */
.vvt-hero__stack {
	position: relative;
	padding-bottom: 3.5rem;
	padding-right: 3rem;
}

.vvt-hero__shot {
	margin: 0;
	border-radius: var(--vv-radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, .06);
}

.vvt-hero__shot--main {
	box-shadow: var(--vv-shadow-lg);
	transition: transform .4s var(--vv-ease);
	transform-style: preserve-3d;
}

.vvt-hero__shot--sub {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 44%;
	border: 5px solid var(--vv-navy-deep);
	box-shadow: var(--vv-shadow);
}

.vvt-hero__img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.vvt-hero__ph {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	background-image: var(--vv-weave);
	background-size: 56px 56px;
	background-color: rgba(255, 255, 255, .05);
}

.vvt-hero__seal {
	position: absolute;
	left: -18px;
	bottom: 22%;
	display: grid;
	place-items: center;
	width: 96px; height: 96px;
	border-radius: 50%;
	background: var(--vv-gold);
	color: var(--vv-ink);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
	padding: .5rem;
	box-shadow: var(--vv-shadow);
	animation: vvt-bob 5s ease-in-out infinite;
}

@keyframes vvt-bob {
	0%, 100% { transform: translateY(0) rotate(-6deg); }
	50% { transform: translateY(-9px) rotate(-2deg); }
}

/* =========================================================================
   8. Category rail
   ====================================================================== */

.vvt-rail-wrap {
	padding: clamp(1.75rem, 4vw, 2.75rem) 0;
	background: var(--vv-cream);
	border-bottom: 1px solid var(--vv-line);
}

.vvt-rail {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: .35rem;
	scrollbar-width: thin;
}

.vvt-rail::-webkit-scrollbar { height: 4px; }
.vvt-rail::-webkit-scrollbar-thumb { background: var(--vv-line); border-radius: 4px; }

.vvt-rail__item {
	flex: 0 0 auto;
	scroll-snap-align: start;
	display: flex;
	align-items: center;
	gap: .8rem;
	padding: .55rem 1.2rem .55rem .55rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--vv-line);
	color: var(--vv-ink);
	font-weight: 600;
	font-size: .92rem;
	transition: transform .25s var(--vv-ease), box-shadow .25s var(--vv-ease), border-color .25s;
}

.vvt-rail__item:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: var(--vv-shadow);
	color: var(--vv-navy);
}

.vvt-rail__img {
	width: 46px; height: 46px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--vv-sand);
	flex: 0 0 auto;
}

.vvt-rail__img img { width: 100%; height: 100%; object-fit: cover; }

.vvt-rail__count {
	font-size: .7rem;
	font-weight: 700;
	color: var(--vv-gold);
	background: var(--vv-cream);
	border-radius: 999px;
	padding: .1rem .5rem;
}

/* =========================================================================
   9. Section headings
   ====================================================================== */

.vvt-sec-head {
	max-width: 720px;
	margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.vvt-sec-head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.vvt-sec-head__title { margin-bottom: 0; }
.vvt-sec-head__title em { color: var(--vv-navy); font-style: italic; }

.vvt-sec-head__text {
	color: var(--vv-muted);
	font-size: 1.02rem;
	margin: .6rem 0 0;
}

.vvt-sec-head__link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-weight: 700;
	font-size: .88rem;
	letter-spacing: .03em;
	color: var(--vv-navy);
	padding-bottom: 2px;
	border-bottom: 2px solid var(--vv-gold);
}

.vvt-sec-head__link:hover { color: var(--vv-gold); }
.vvt-sec-head__link svg { transition: transform .25s var(--vv-ease); }
.vvt-sec-head__link:hover svg { transform: translateX(4px); }

.vvt-section__more { margin: 2.5rem 0 0; text-align: center; }

/* =========================================================================
   10. Product cards
   ====================================================================== */

.vvt-products ul.products,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem 1.4rem;
	margin: 0; padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; }

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	text-align: left;
}

.vvt-card { display: flex; flex-direction: column; }

.vvt-card__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--vv-radius-lg);
	background: var(--vv-cream);
	/* Matches the source photography, so the full look stays in frame. */
	aspect-ratio: 2 / 3;
}

.vvt-card__link { display: block; height: 100%; }

.vvt-card__img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .8s var(--vv-ease), opacity .45s var(--vv-ease);
}

.vvt-card__img--hover { position: absolute; inset: 0; opacity: 0; }
.vvt-card:hover .vvt-card__img--hover { opacity: 1; }
.vvt-card:hover .vvt-card__img { transform: scale(1.06); }

.vvt-card__badges {
	position: absolute;
	top: .7rem; left: .7rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .35rem;
	z-index: 2;
}

.vvt-badge {
	padding: .28rem .65rem;
	border-radius: 999px;
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	line-height: 1.4;
	backdrop-filter: blur(4px);
}

.vvt-badge--sale { background: var(--vv-navy); color: #fff; }
.vvt-badge--slab { background: var(--vv-gold); color: var(--vv-ink); }
.vvt-badge--new { background: rgba(255, 255, 255, .92); color: var(--vv-ink); }
.vvt-badge--out { background: #57504a; color: #fff; }

.vvt-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: .9rem .15rem 0;
}

.vvt-card__cat {
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--vv-gold);
}

.vvt-card__title {
	margin: .3rem 0 .2rem;
	font-family: var(--vv-font-body);
	font-size: .98rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0;
}

.vvt-card__title a { color: var(--vv-ink); }
.vvt-card__title a:hover { color: var(--vv-navy); }

.vvt-card__sku { font-size: .72rem; color: var(--vv-muted); }

.vvt-card__foot { margin-top: auto; padding-top: .7rem; }

.vvt-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .3rem;
	margin-bottom: .7rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--vv-ink);
}

.vvt-card__price:empty { display: none; }
.vvt-card__price del { font-size: .8rem; font-weight: 500; color: var(--vv-muted); }
.vvt-card__price ins { text-decoration: none; color: var(--vv-navy); }

.vvt-card .button {
	width: 100%;
	padding: .72rem 1rem;
	font-size: .84rem;
	background: transparent;
	color: var(--vv-navy) !important;
	box-shadow: inset 0 0 0 1.5px var(--vv-line);
}

.vvt-card .button:hover {
	background: var(--vv-navy);
	color: #fff !important;
	box-shadow: inset 0 0 0 1.5px var(--vv-navy);
	transform: none;
}

.vvt-card .added_to_cart {
	display: block;
	margin-top: .5rem;
	text-align: center;
	font-size: .8rem;
	font-weight: 600;
}

/* =========================================================================
   11. Video band
   ====================================================================== */

.vvt-video {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 7vw, 5rem) 0;
	background: linear-gradient(150deg, var(--vv-navy-deep), var(--vv-navy) 70%);
	color: #fff;
}

.vvt-video__weave {
	position: absolute;
	inset: 0;
	background-image: var(--vv-weave);
	background-size: 60px 60px;
	opacity: .1;
	pointer-events: none;
}

.vvt-video__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

.vvt-video h2 { color: #fff; }
.vvt-video p { color: rgba(255, 255, 255, .8); margin-bottom: 1.75rem; }

.vvt-video__frame {
	position: relative;
	border-radius: var(--vv-radius-lg);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: rgba(0, 0, 0, .3);
	box-shadow: var(--vv-shadow-lg);
}

.vvt-video__el {
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.vvt-video__ph {
	display: grid;
	place-items: center;
	height: 100%;
	padding: 2rem;
	text-align: center;
	background-image: var(--vv-weave);
	background-size: 56px 56px;
	color: rgba(255, 255, 255, .7);
	font-size: .9rem;
}

/* =========================================================================
   12. Marquee
   ====================================================================== */

.vvt-marquee {
	overflow: hidden;
	padding: .95rem 0;
	background: var(--vv-ink);
	color: var(--vv-cream);
	white-space: nowrap;
}

.vvt-marquee__track {
	display: inline-flex;
	align-items: center;
	gap: 1.6rem;
	animation: vvt-scroll 38s linear infinite;
}

.vvt-marquee:hover .vvt-marquee__track { animation-play-state: paused; }

@keyframes vvt-scroll { to { transform: translateX(-50%); } }

.vvt-marquee__item {
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.vvt-marquee__dot { color: var(--vv-gold); font-size: .8rem; }

/* =========================================================================
   13. Lookbook
   ====================================================================== */

.vvt-section--look { background: var(--vv-cream); }

.vvt-look {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: 1rem;
}

.vvt-look__cell {
	margin: 0;
	border-radius: var(--vv-radius-lg);
	overflow: hidden;
	background: var(--vv-sand);
	aspect-ratio: 3 / 4;
}

/* First and last run tall so the row reads as a composition, not a row of tiles. */
.vvt-look__cell:nth-child(1) { margin-top: 2rem; }
.vvt-look__cell:nth-child(3) { margin-top: 2rem; }

.vvt-look__cell img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .8s var(--vv-ease);
}

.vvt-look__cell:hover img { transform: scale(1.06); }

/* =========================================================================
   14. Trust bar
   ====================================================================== */

.vvt-trust {
	padding: clamp(2rem, 4vw, 3rem) 0;
	border-bottom: 1px solid var(--vv-line);
}

.vvt-trust__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin: 0; padding: 0;
	list-style: none;
}

.vvt-trust__list li {
	display: flex;
	align-items: center;
	gap: .9rem;
}

.vvt-trust__icon {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	flex: 0 0 auto;
	border-radius: 12px;
	background: var(--vv-cream);
	color: var(--vv-navy);
}

.vvt-trust__body { display: grid; }
.vvt-trust__body strong { font-size: .94rem; }
.vvt-trust__body small { font-size: .8rem; color: var(--vv-muted); }

/* =========================================================================
   15. Wholesale band + closing CTA
   ====================================================================== */

.vvt-wsband {
	position: relative;
	overflow: hidden;
	padding: clamp(2.75rem, 6vw, 4rem) 0;
	background: var(--vv-ink);
	color: #fff;
}

.vvt-wsband__weave {
	position: absolute;
	inset: 0;
	background-image: var(--vv-weave);
	background-size: 56px 56px;
	opacity: .12;
	pointer-events: none;
}

.vvt-wsband__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.vvt-wsband__copy { max-width: 640px; }
.vvt-wsband h2 { color: #fff; margin-bottom: .35em; }
.vvt-wsband p { margin: 0; color: rgba(255, 255, 255, .78); }

.vvt-section--close { padding-bottom: clamp(3.5rem, 7vw, 6rem); }

.vvt-close__inner {
	position: relative;
	overflow: hidden;
	padding: clamp(2.5rem, 6vw, 4.5rem);
	border-radius: var(--vv-radius-lg);
	background: linear-gradient(140deg, var(--vv-navy-deep), var(--vv-navy) 70%);
	color: #fff;
	text-align: center;
}

.vvt-close__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--vv-weave);
	background-size: 60px 60px;
	opacity: .12;
}

.vvt-close__inner > * { position: relative; z-index: 2; }
.vvt-close h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.vvt-close p { max-width: 56ch; margin-inline: auto; color: rgba(255, 255, 255, .8); }

.vvt-close__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	justify-content: center;
	margin-top: 1.75rem;
}

.vvt-close__actions .vvt-btn--outline {
	color: #fff !important;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .5);
}

.vvt-close__actions .vvt-btn--outline:hover { background: #fff; color: var(--vv-navy) !important; }

/* =========================================================================
   16. Page hero (inner pages)
   ====================================================================== */

.vvt-page-hero {
	position: relative;
	padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
	background: var(--vv-cream);
	border-bottom: 1px solid var(--vv-line);
}

.vvt-page-hero__title { margin: .3em 0 0; }

.vvt-page-hero__text {
	max-width: 68ch;
	margin-top: .75rem;
	color: var(--vv-muted);
}

.vvt-page-hero__text p:last-child { margin-bottom: 0; }

.vvt-crumbs,
.woocommerce .woocommerce-breadcrumb {
	margin: 0;
	font-size: .78rem;
	color: var(--vv-muted);
}

.vvt-crumbs a { color: var(--vv-muted); }
.vvt-crumbs a:hover { color: var(--vv-navy); }
.vvt-crumbs .sep { margin: 0 .5rem; opacity: .5; }
.vvt-crumbs--single { padding: 1.25rem 0 0; }

/* =========================================================================
   17. WooCommerce pages
   ====================================================================== */

.vvt-shop-layout { padding-top: 2.5rem; }

.vvt-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding-bottom: 1.5rem;
	margin-bottom: 1.75rem;
	border-bottom: 1px solid var(--vv-line);
}

.woocommerce .woocommerce-result-count {
	margin: 0;
	font-size: .86rem;
	color: var(--vv-muted);
}

.woocommerce .woocommerce-ordering select,
.vvt-main select {
	padding: .6rem 2.2rem .6rem .9rem;
	border: 1px solid var(--vv-line);
	border-radius: 999px;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237c7568' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 1rem center;
	appearance: none;
	font: inherit;
	font-size: .86rem;
	cursor: pointer;
}

.woocommerce .woocommerce-ordering { margin: 0; float: none; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 1rem 1.25rem;
	margin: 0 0 1.75rem;
	border: 0;
	border-left: 4px solid var(--vv-navy);
	border-radius: var(--vv-radius);
	background: var(--vv-cream);
	color: var(--vv-ink);
	font-size: .93rem;
	list-style: none;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { content: none; }

.woocommerce-message { border-left-color: #1a7f37; background: #eaf7ee; }
.woocommerce-error { border-left-color: #b32d2e; background: #fdecec; }

.woocommerce nav.woocommerce-pagination ul,
.vvt-main .navigation .nav-links {
	display: flex;
	justify-content: center;
	gap: .4rem;
	margin: 3rem 0 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li { border: 0; margin: 0; overflow: visible; }

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.vvt-main .nav-links .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding: 0 .7rem;
	border-radius: 999px;
	background: var(--vv-cream);
	color: var(--vv-ink);
	font-size: .9rem;
	font-weight: 600;
	transition: background .2s, color .2s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.vvt-main .nav-links a.page-numbers:hover { background: var(--vv-sand); color: var(--vv-navy); }

.woocommerce nav.woocommerce-pagination ul li span.current,
.vvt-main .nav-links .page-numbers.current { background: var(--vv-navy); color: #fff; }

/* Single product */
.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
	padding-top: 2rem;
}

/* Gallery: every shot in a grid rather than a slider. */
.woocommerce div.product .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0;
	opacity: 1 !important;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .7rem;
	margin: 0;
	padding: 0;
	transform: none !important;
	width: auto !important;
}

.woocommerce div.product .woocommerce-product-gallery__image {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	border-radius: var(--vv-radius-lg);
	overflow: hidden;
	background: var(--vv-cream);
}

/* A single shot should not sit lonely in half the column. */
.woocommerce div.product .woocommerce-product-gallery__image:only-child { grid-column: 1 / -1; }

.woocommerce div.product .woocommerce-product-gallery__image a { display: block; }

.woocommerce div.product .woocommerce-product-gallery__image img {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	display: block;
	transition: transform .7s var(--vv-ease);
}

.woocommerce div.product .woocommerce-product-gallery__image:hover img { transform: scale(1.03); }

/* Slider leftovers, in case WooCommerce ships them anyway. */
.woocommerce div.product .flex-control-thumbs,
.woocommerce div.product .flex-direction-nav { display: none !important; }

.woocommerce div.product .flex-viewport { overflow: visible !important; height: auto !important; }

.woocommerce div.product div.summary {
	width: 100% !important;
	float: none !important;
	margin: 0;
	position: sticky;
	top: 100px;
}

.woocommerce div.product .product_title {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	margin-bottom: .35em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .4rem;
	margin-bottom: 1.1rem;
	color: var(--vv-ink);
	font-size: 1.6rem;
	font-weight: 700;
}

.woocommerce div.product p.price:empty { display: none; }
.woocommerce div.product p.price del { font-size: 1rem; font-weight: 500; color: var(--vv-muted); }
.woocommerce div.product p.price ins { text-decoration: none; color: var(--vv-navy); }

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .75rem;
	margin: 1.5rem 0;
}

.woocommerce div.product form.cart .button { flex: 1; min-width: 190px; padding: 1rem 2rem; }

.woocommerce .quantity,
.vvt-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--vv-line);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.woocommerce .quantity input.qty {
	width: 62px; height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: center;
	font: inherit;
	font-weight: 600;
	-moz-appearance: textfield;
}

.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.vvt-qty-btn {
	width: 42px; height: 48px;
	border: 0;
	background: transparent;
	color: var(--vv-ink);
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.vvt-qty-btn:hover { background: var(--vv-cream); color: var(--vv-navy); }

.woocommerce div.product .product_meta {
	padding-top: 1.25rem;
	border-top: 1px solid var(--vv-line);
	font-size: .86rem;
	color: var(--vv-muted);
}

/* Enquiry mode block */
.vvt-enquire {
	margin: 1.5rem 0;
	padding: 1.4rem;
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius-lg);
	background: var(--vv-cream);
}

.vvt-enquire__lead {
	margin: 0 0 1.1rem;
	font-size: .96rem;
	color: var(--vv-ink);
}

.vvt-enquire__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.vvt-enquire__actions .vvt-btn { flex: 1 1 auto; }

.vvt-enquire__note {
	margin: .9rem 0 0;
	font-size: .8rem;
	color: var(--vv-muted);
}

.vvt-assure {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: .45rem;
}

.vvt-assure li {
	position: relative;
	padding-left: 1.5rem;
	font-size: .87rem;
	color: var(--vv-ink);
}

.vvt-assure li::before {
	content: "";
	position: absolute;
	left: 0; top: .45em;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--vv-gold);
}

.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; padding-top: 2rem; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	padding: 0 0 1rem;
	margin: 0 0 1.5rem;
	border-bottom: 1px solid var(--vv-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { content: none; }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0; padding: 0;
	border: 0;
	background: transparent;
	border-radius: 999px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: .6rem 1.3rem;
	border-radius: 999px;
	background: var(--vv-cream);
	color: var(--vv-ink);
	font-weight: 600;
	font-size: .88rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { background: var(--vv-navy); color: #fff; }

.woocommerce div.product .woocommerce-Tabs-panel table {
	width: 100%;
	max-width: 520px;
	border-collapse: collapse;
	margin-top: 1rem;
}

.woocommerce div.product .woocommerce-Tabs-panel table th,
.woocommerce div.product .woocommerce-Tabs-panel table td {
	border-bottom: 1px solid var(--vv-line);
	font-size: .92rem;
}

.woocommerce .related.products,
.woocommerce .upsells.products { grid-column: 1 / -1; padding-top: 2.5rem; }

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 { margin-bottom: 1.5rem; }

/* Cart / checkout / account */
.woocommerce-cart .vvt-main,
.woocommerce-checkout .vvt-main,
.woocommerce-account .vvt-main { padding-top: 2.5rem; }

.woocommerce table.shop_table {
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius-lg);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.woocommerce table.shop_table th {
	padding: 1rem 1.1rem;
	background: var(--vv-cream);
	font-size: .76rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--vv-muted);
}

.woocommerce table.shop_table td { padding: 1.1rem; border-top: 1px solid var(--vv-line); }
.woocommerce table.cart img { width: 72px; border-radius: 10px; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"] {
	width: 100%;
	height: auto;
	padding: .8rem 1rem;
	border: 1px solid var(--vv-line);
	border-radius: var(--vv-radius);
	background: #fff;
	font: inherit;
	font-size: .95rem;
	color: var(--vv-ink);
}

.woocommerce form .form-row label {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .03em;
	color: var(--vv-muted);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
	display: grid;
	gap: .25rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: .7rem 1rem;
	border-radius: var(--vv-radius);
	color: var(--vv-ink);
	font-weight: 600;
	font-size: .92rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	background: var(--vv-cream);
	color: var(--vv-navy);
}

/* =========================================================================
   18. Blog, prose, 404
   ====================================================================== */

.vvt-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem 1.5rem;
}

.vvt-post { display: flex; flex-direction: column; }

.vvt-post__media {
	display: block;
	border-radius: var(--vv-radius-lg);
	overflow: hidden;
	margin-bottom: 1rem;
}

.vvt-post__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .6s var(--vv-ease);
}

.vvt-post:hover .vvt-post__media img { transform: scale(1.05); }

.vvt-post__date {
	font-size: .74rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--vv-gold);
}

.vvt-post__title { margin: .35rem 0 .5rem; font-size: 1.2rem; }
.vvt-post__title a { color: var(--vv-ink); }
.vvt-post__title a:hover { color: var(--vv-navy); }
.vvt-post__excerpt { color: var(--vv-muted); font-size: .93rem; }
.vvt-post__more { margin-top: auto; font-weight: 700; font-size: .87rem; }

.vvt-prose { max-width: 74ch; font-size: 1.04rem; }
.vvt-prose h2, .vvt-prose h3 { margin-top: 1.8em; }
.vvt-prose img, .vvt-page__media img { border-radius: var(--vv-radius-lg); }
.vvt-page__media { margin: 0 0 2.5rem; }
.vvt-prose ul, .vvt-prose ol { padding-left: 1.3rem; }

.vvt-prose blockquote {
	margin: 2rem 0;
	padding: 1.2rem 1.6rem;
	border-left: 4px solid var(--vv-gold);
	background: var(--vv-cream);
	border-radius: 0 var(--vv-radius) var(--vv-radius) 0;
	font-family: var(--vv-font-display);
	font-size: 1.15rem;
	font-style: italic;
}

.vvt-postnav {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--vv-line);
	font-weight: 600;
	font-size: .9rem;
}

.vvt-404 { padding: clamp(4rem, 10vw, 8rem) 0; text-align: center; }

.vvt-404__code {
	display: block;
	font-family: var(--vv-font-display);
	font-size: clamp(5rem, 18vw, 11rem);
	font-weight: 700;
	line-height: 1;
	color: var(--vv-sand);
}

.vvt-404 p { max-width: 52ch; margin-inline: auto; color: var(--vv-muted); }
.vvt-404__search { margin: 2rem 0; }
.vvt-empty { padding: 3rem 0; text-align: center; color: var(--vv-muted); }

/* =========================================================================
   19. Footer
   ====================================================================== */

.vvt-footer {
	position: relative;
	overflow: hidden;
	background: var(--vv-ink);
	color: rgba(255, 255, 255, .72);
}

.vvt-footer__motif {
	position: absolute;
	inset: 0;
	background-image: var(--vv-weave);
	background-size: 72px 72px;
	opacity: .07;
	pointer-events: none;
}

.vvt-footer__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
	padding: clamp(3rem, 6vw, 4.5rem) 0 3rem;
}

.vvt-footer .vvt-wordmark { color: #fff; margin-bottom: 1rem; }

.vvt-footer .vvt-wordmark__mark {
	background: linear-gradient(135deg, var(--vv-gold), #a37d31);
	color: var(--vv-ink);
}

.vvt-footer__about { font-size: .91rem; max-width: 40ch; }
.vvt-footer__gstin { font-size: .8rem; color: rgba(255, 255, 255, .55); }
.vvt-footer__gstin span { color: var(--vv-gold-light); font-weight: 600; }

.vvt-widget__title {
	margin-bottom: 1.1rem;
	font-family: var(--vv-font-body);
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
}

.vvt-footer__list {
	margin: 0; padding: 0;
	list-style: none;
	display: grid;
	gap: .6rem;
	font-size: .91rem;
}

.vvt-footer__list a { color: rgba(255, 255, 255, .72); }
.vvt-footer__list a:hover { color: var(--vv-gold-light); }
.vvt-footer__list--contact li { line-height: 1.6; }
.vvt-footer .vvw-wa-btn { margin-top: 1.2rem; }

.vvt-footer__bar {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: .82rem;
}

.vvt-footer__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1.25rem 0;
}

.vvt-footer__bar p { margin: 0; }

.vvt-footer__legal {
	display: flex;
	gap: 1.25rem;
	margin: 0; padding: 0;
	list-style: none;
}

.vvt-footer__legal a { color: rgba(255, 255, 255, .6); }
.vvt-footer__legal a:hover { color: var(--vv-gold-light); }

/* =========================================================================
   20. Responsive
   ====================================================================== */

@media (max-width: 1100px) {

	.vvt-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

	.woocommerce ul.products,
	.vvt-products ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.vvt-posts { grid-template-columns: repeat(2, 1fr); }

	.vvt-trust__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {

	.vvt-nav { display: none; }
	.vvt-burger { display: inline-flex; }
	.vvt-account span { display: none; }

	.vvt-hero__inner { grid-template-columns: 1fr; }
	.vvt-hero__stack { order: -1; max-width: 480px; padding-right: 2.5rem; padding-bottom: 2.5rem; }
	.vvt-hero__seal { width: 78px; height: 78px; font-size: .6rem; left: -10px; }

	.vvt-video__inner { grid-template-columns: 1fr; }

	.vvt-look { grid-template-columns: repeat(2, 1fr); }
	.vvt-look__cell:nth-child(3) { margin-top: 0; }

	.woocommerce div.product { grid-template-columns: 1fr; }
	.woocommerce div.product div.summary { position: static; }
}

@media (max-width: 720px) {

	.vvt-topbar__msg { display: none; }
	.vvt-topbar__inner { justify-content: center; }

	.woocommerce ul.products,
	.vvt-products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem .8rem; }

	.vvt-card__title { font-size: .9rem; }
	.vvt-card__price { font-size: 1rem; }

	.vvt-posts,
	.vvt-footer__grid { grid-template-columns: 1fr; }

	.vvt-sec-head--row { align-items: flex-start; }

	.woocommerce div.product form.cart { gap: .6rem; }
	.woocommerce div.product form.cart .button { width: 100%; flex: 1 1 100%; }

	.vvt-enquire__actions .vvt-btn { flex: 1 1 100%; }

	.vvt-footer__bar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {

	.vvt-shell { width: min(100% - 1.75rem, var(--vv-shell)); }

	.vvt-trust__list { grid-template-columns: 1fr; }

	.vvt-hero__stack { padding-right: 2rem; }
	.vvt-hero__shot--sub { width: 48%; }
	.vvt-hero__seal { display: none; }

	.vvt-look { grid-template-columns: 1fr 1fr; gap: .7rem; }
	.vvt-look__cell:nth-child(1) { margin-top: 0; }
}

/* =========================================================================
   21. Reduced motion
   ====================================================================== */

@media (prefers-reduced-motion: reduce) {

	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}

	[data-reveal] { opacity: 1; transform: none; }
	.vvt-word__in { transform: none; }
	.vvt-marquee__track { animation: none; }
	.vvt-hero__seal { animation: none; }
}
