/* =========================================================================
   VividVet Pro — Isolated design system
   -------------------------------------------------------------------------
   Everything is namespaced under `.vv` so the active theme / Elementor can
   never bleed into the brand UI, and the brand UI never leaks out.
   BEM naming throughout. Brand palette: Black / Green / Gold-Orange / White.
   ========================================================================= */

/* ----------------------------------------------------------------------- */
/* 1. Design tokens                                                        */
/* ----------------------------------------------------------------------- */
.vv {
	/* Brand colors — green sampled from the VividVet Pro logo (#649c38 leaf green) */
	--vv-green:        #649c38;
	--vv-green-dark:   #3f6b21;
	--vv-green-soft:   #edf6e3;
	/* Green is the primary accent (pure logo scheme) */
	--vv-gold:         var(--vv-green);
	--vv-gold-dark:    var(--vv-green-dark);
	--vv-orange:       var(--vv-green);

	/* Premium gold gradient — sampled from the product label "BRAIN + IMMUNE".
	   Used ONLY on titles/headings to echo the packaging. */
	--vv-gold-gradient: linear-gradient(175deg, #e0b86a 0%, #c79c52 46%, #9a7330 100%);
	--vv-gold-solid:    #b1863a; /* fallback for non-gradient-text browsers */
	--vv-black:        #0f1512;
	--vv-ink:          #16201b;
	--vv-white:        #ffffff;
	--vv-cream:        #f7f5ee;
	--vv-cream-2:      #fbf8f1;

	/* Semantic */
	--vv-bg:           var(--vv-white);
	--vv-text:         #283330;
	--vv-muted:        #5d6b64;
	--vv-heading:      var(--vv-black);
	--vv-border:       #e7e3d8;

	/* Amazon button — green (high visibility, no yellow) */
	--vv-amazon:       linear-gradient(180deg, #74b343 0%, #649c38 100%);
	--vv-amazon-hover: linear-gradient(180deg, #5c9233 0%, #3f6b21 100%);
	--vv-amazon-text:  #ffffff;

	/* Radii */
	--vv-r-sm: 10px;
	--vv-r:    16px;
	--vv-r-lg: 24px;
	--vv-r-xl: 32px;
	--vv-r-pill: 999px;

	/* Shadows */
	--vv-shadow-sm: 0 2px 8px rgba(15, 21, 18, .06);
	--vv-shadow:    0 14px 40px rgba(15, 21, 18, .10);
	--vv-shadow-lg: 0 30px 70px rgba(15, 21, 18, .16);
	--vv-shadow-gold: 0 12px 30px rgba(100, 156, 56, .42);

	/* Spacing scale (8px system) */
	--vv-s1: 8px;  --vv-s2: 16px; --vv-s3: 24px; --vv-s4: 32px;
	--vv-s5: 40px; --vv-s6: 48px; --vv-s7: 64px; --vv-s8: 80px;

	/* Type */
	--vv-font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--vv-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--vv-transition: all .3s ease;
	--vv-container: 1200px;
}

/* ----------------------------------------------------------------------- */
/* 2. Reset within the brand wrapper                                       */
/* ----------------------------------------------------------------------- */
.vv,
.vv * {
	box-sizing: border-box;
}

.vv {
	font-family: var(--vv-font-body);
	color: var(--vv-text);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.vv h1, .vv h2, .vv h3, .vv h4, .vv h5, .vv h6 {
	font-family: var(--vv-font-head);
	color: var(--vv-heading);
	line-height: 1.15;
	margin: 0 0 .4em;
	font-weight: 800;
	letter-spacing: -.01em;
}

.vv p { margin: 0 0 1em; }
.vv p:last-child { margin-bottom: 0; }

.vv a {
	color: var(--vv-green);
	text-decoration: none;
	transition: var(--vv-transition);
}

.vv img {
	max-width: 100%;
	height: auto;
	display: block;
}

.vv ul { list-style: none; margin: 0; padding: 0; }

/* Hard override against theme / Elementor color bleed (blue/pink etc.) */
.elementor-page .vv,
.e-con .vv,
.elementor-widget-container .vv {
	color: var(--vv-text);
}

/* ----------------------------------------------------------------------- */
/* 3. Shared building blocks                                               */
/* ----------------------------------------------------------------------- */
.vv-container {
	width: 100%;
	max-width: var(--vv-container);
	margin: 0 auto;
	padding-inline: var(--vv-s3);
}

.vv-grid {
	display: grid;
	grid-template-columns: repeat(var(--vv-cols, 3), minmax(0, 1fr));
	gap: 24px;
}

.vv-eyebrow {
	display: inline-block;
	font-family: var(--vv-font-head);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--vv-green);
	background: var(--vv-green-soft);
	padding: 6px 14px;
	border-radius: var(--vv-r-pill);
	margin-bottom: var(--vv-s2);
}

.vv-stars { color: var(--vv-gold); letter-spacing: 2px; font-size: 16px; }

.vv-check {
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--vv-green);
}
/* CSS-drawn checkmark (no emoji / no font dependency) */
.vv-check::after {
	content: "";
	width: 5px; height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translateY(-1px) rotate(45deg);
}

/* Elementor icon rendering — normalise <i> (font) and <svg> sizing/colour */
.vv [class*="__icon"] svg,
.vv .vv-hero__float-icon svg,
.vv .vv-pill__icon svg {
	width: 1em; height: 1em;
	fill: currentColor;
}
.vv .e-font-icon-svg { fill: currentColor; }

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

/* ----------------------------------------------------------------------- */
/* 4. Buttons                                                              */
/* ----------------------------------------------------------------------- */
.vv .vv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--vv-font-head);
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	padding: 15px 28px;
	border-radius: var(--vv-r-pill);
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--vv-transition);
	text-align: center;
	white-space: nowrap;
}

.vv .vv-btn--lg { padding: 18px 36px; font-size: 17px; }

/* Amazon — the hero CTA, deliberately high-visibility gold/orange */
.vv .vv-btn--amazon {
	background: var(--vv-amazon);
	color: var(--vv-amazon-text) !important;
	box-shadow: var(--vv-shadow-gold);
	border-color: rgba(0,0,0,.04);
}
.vv .vv-btn--amazon:hover,
.vv .vv-btn--amazon:focus {
	background: var(--vv-amazon-hover);
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(100, 156, 56, .50);
	color: var(--vv-amazon-text) !important;
}
.vv .vv-btn__cart { font-size: 1.15em; }

/* Ghost / secondary */
.vv .vv-btn--ghost {
	background: transparent;
	color: var(--vv-green-dark) !important;
	border-color: var(--vv-green);
}
.vv .vv-btn--ghost:hover {
	background: var(--vv-green-dark);
	border-color: var(--vv-green-dark);
	color: #fff !important;
	transform: translateY(-3px);
}

/* ----------------------------------------------------------------------- */
/* Anti-bleed: the active theme / Elementor global kit uses a PINK accent   */
/* that leaks onto buttons. Neutralise it for any unbranded button/link.   */
/* (Branded buttons set their own colours and are excluded.)               */
/* ----------------------------------------------------------------------- */
.vv button:not(.vv-btn):not(.vv-burger):not(.vv-drawer__close):not(.vv-faq__q),
.vv input[type="submit"]:not(.vv-btn) {
	background-color: transparent !important;
	box-shadow: none !important;
}
.vv a:not(.vv-btn):hover { color: var(--vv-green); }

/* ======================================================================= */
/* 5. HEADER                                                               */
/* ======================================================================= */
.vv-header { position: relative; z-index: 1000; }

.vv-header.is-sticky { position: sticky; top: 0; }

.vv-header__bar {
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid var(--vv-border);
	transition: var(--vv-transition);
}
.vv-header.is-scrolled .vv-header__bar { box-shadow: var(--vv-shadow-sm); }

.vv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--vv-s3);
	max-width: var(--vv-container);
	margin: 0 auto;
	padding: 14px var(--vv-s3);
}
.vv-header.is-full .vv-header__bar { width: 100%; }

.vv-header__logo { display: inline-flex; align-items: center; }
.vv-header__logo-text {
	font-family: var(--vv-font-head);
	font-weight: 800;
	font-size: 24px;
	color: var(--vv-black) !important;
	letter-spacing: -.02em;
}
.vv-header__logo-accent { color: var(--vv-gold) !important; }

.vv-header__nav { display: flex; align-items: center; gap: 28px; }
.vv-header__link {
	position: relative;
	font-family: var(--vv-font-head);
	font-weight: 600;
	font-size: 15px;
	color: var(--vv-ink) !important;
	padding: 6px 0;
}
.vv-header__link::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--vv-gold);
	border-radius: 2px;
	transition: width .3s ease;
}
.vv-header__link:hover { color: var(--vv-green) !important; }
.vv-header__link:hover::after { width: 100%; }

.vv-header__actions { display: flex; align-items: center; gap: var(--vv-s2); }
.vv-header__cta { padding: 11px 22px; font-size: 15px; }

/* Hamburger */
.vv-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	padding: 0;
	background: var(--vv-green-soft);
	border: none;
	border-radius: var(--vv-r-sm);
	cursor: pointer;
}
/* Guard: stop theme / Elementor global accent (pink) bleeding into the burger */
.vv .vv-burger,
.vv .vv-burger:hover,
.vv .vv-burger:focus,
.vv .vv-burger:active {
	background: var(--vv-green-soft) !important;
	border: none !important;
	box-shadow: none !important;
}
.vv .vv-burger span { background: var(--vv-green-dark) !important; }
.vv .vv-burger:focus-visible { outline: 2px solid var(--vv-green); outline-offset: 2px; }
.vv-burger span {
	display: block;
	width: 22px; height: 2.5px;
	margin: 0 auto;
	background: var(--vv-green-dark);
	border-radius: 2px;
	transition: var(--vv-transition);
}
.vv-burger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.vv-burger.is-active span:nth-child(2) { opacity: 0; }
.vv-burger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------------------------------------------------------------------- */
/* 6. OFF-CANVAS DRAWER (mobile)                                           */
/* ----------------------------------------------------------------------- */
.vv-drawer {
	position: fixed;
	top: 0; right: 0;
	width: min(86vw, 360px);
	height: 100dvh;
	background: var(--vv-white);
	box-shadow: var(--vv-shadow-lg);
	z-index: 1100;
	transform: translateX(105%);
	transition: transform .38s cubic-bezier(.16,1,.3,1);
	display: flex;
	flex-direction: column;
	padding: var(--vv-s3);
	overflow-y: auto;
}
.vv-drawer.is-open { transform: translateX(0); }

.vv-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: var(--vv-s2);
	border-bottom: 1px solid var(--vv-border);
	margin-bottom: var(--vv-s2);
}
.vv-drawer__title { font-family: var(--vv-font-head); font-weight: 800; font-size: 20px; color: var(--vv-black); }
.vv-drawer__close {
	width: 40px; height: 40px;
	font-size: 28px; line-height: 1;
	background: var(--vv-cream);
	border: none; border-radius: var(--vv-r-sm);
	color: var(--vv-ink); cursor: pointer;
	transition: var(--vv-transition);
}
.vv-drawer__close:hover { background: var(--vv-green); color: #fff; }
/* Guard against theme/kit accent (pink) bleed on the close button */
.vv .vv-drawer__close,
.vv .vv-drawer__close:focus,
.vv .vv-drawer__close:active { background: var(--vv-cream) !important; box-shadow: none !important; color: var(--vv-ink) !important; }
.vv .vv-drawer__close:hover { background: var(--vv-green) !important; color: #fff !important; }

.vv-drawer__nav { display: flex; flex-direction: column; }
.vv-drawer__link {
	font-family: var(--vv-font-head);
	font-weight: 600;
	font-size: 17px;
	color: var(--vv-ink) !important;
	padding: 14px 12px;
	border-radius: var(--vv-r-sm);
	transition: var(--vv-transition);
}
.vv-drawer__link:hover { background: var(--vv-green-soft); color: var(--vv-green-dark) !important; padding-left: 18px; }

.vv-drawer__cta { margin-top: auto; padding-top: var(--vv-s3); }
.vv-drawer__cta .vv-btn { width: 100%; }

.vv-drawer__overlay {
	position: fixed; inset: 0;
	background: rgba(15, 21, 18, .5);
	backdrop-filter: blur(2px);
	z-index: 1090;
	opacity: 0; visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
}
.vv-drawer__overlay.is-open { opacity: 1; visibility: visible; }

body.vv-no-scroll { overflow: hidden; }

/* ======================================================================= */
/* 7. HERO                                                                 */
/* ======================================================================= */
.vv-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(1200px 600px at 85% -10%, var(--vv-green-soft), transparent 60%),
		linear-gradient(180deg, var(--vv-cream-2), var(--vv-white));
	display: flex;
	align-items: center;
}
.vv-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: var(--vv-s7);
	width: 100%;
	max-width: var(--vv-container);
	margin: 0 auto;
	padding: var(--vv-s8) var(--vv-s3);
	position: relative;
	z-index: 2;
}
.vv-hero__grid > * { direction: ltr; }
.vv-hero__content > * + * { margin-top: var(--vv-s3); }
.vv-hero__eyebrow {
	display: inline-block;
	font-family: var(--vv-font-head);
	font-weight: 700;
	font-size: 14px;
	color: var(--vv-green-dark);
	background: #fff;
	border: 1px solid var(--vv-border);
	box-shadow: var(--vv-shadow-sm);
	padding: 8px 16px;
	border-radius: var(--vv-r-pill);
}
.vv-hero__title {
	font-size: clamp(2.1rem, 4.2vw, 3.6rem);
	color: var(--vv-black);
	margin: 0;
}
.vv-hero__sub {
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	color: var(--vv-muted);
	max-width: 540px;
}
.vv-hero__actions { display: flex; flex-wrap: wrap; gap: var(--vv-s2); }
.vv-hero__trust { display: grid; grid-template-columns: repeat(2, max-content); gap: 14px 30px; margin-top: var(--vv-s4); }
.vv-hero__trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--vv-ink); }
.vv-hero__trust .vv-check { width: 18px; height: 18px; }
.vv-hero__trust .vv-check::after { width: 4px; height: 8px; border-width: 0 2px 2px 0; }
.vv-hero__rating { display: flex; align-items: center; gap: 10px; }
.vv-hero__rating-text { font-size: 14px; color: var(--vv-muted); font-weight: 600; }
.vv-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.vv-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff;
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-r-pill);
	padding: 8px 16px;
	font-size: 14px; font-weight: 600;
	color: var(--vv-ink);
	box-shadow: var(--vv-shadow-sm);
}
.vv-pill__icon { display: inline-flex; align-items: center; font-size: 14px; color: var(--vv-green); }

.vv-hero__media { position: relative; display: grid; place-items: center; }
.vv-hero__img {
	position: relative; z-index: 2;
	border-radius: var(--vv-r-xl);
	max-height: 560px;
	filter: drop-shadow(0 30px 50px rgba(15,21,18,.18));
}
.vv-hero__float-badge {
	position: absolute;
	bottom: 8%; left: -4%;
	z-index: 3;
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff;
	color: var(--vv-ink);
	font-weight: 700; font-size: 14px;
	padding: 12px 18px;
	border-radius: var(--vv-r-pill);
	box-shadow: var(--vv-shadow);
	animation: vv-float 4s ease-in-out infinite;
}
.vv-hero__float-icon { display: inline-flex; align-items: center; font-size: 16px; color: var(--vv-gold); }
.vv-hero__blob {
	position: absolute;
	width: 460px; height: 460px;
	right: -60px; top: 50%;
	transform: translateY(-50%);
	background: var(--vv-green-soft);
	border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
	z-index: 1;
	animation: vv-morph 14s ease-in-out infinite;
}
.vv-hero__blob--2 {
	width: 200px; height: 200px;
	right: auto; left: 4%; top: 18%;
	background: rgba(100,156,56,.16);
	animation-duration: 18s;
}
@keyframes vv-morph {
	0%,100% { border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%; }
	50%     { border-radius: 60% 40% 38% 62% / 54% 60% 40% 46%; }
}
@keyframes vv-float {
	0%,100% { transform: translateY(0); }
	50%     { transform: translateY(-10px); }
}

/* ======================================================================= */
/* 8. SECTION SCAFFOLD (heads shared by benefits/ingredients/reviews/etc.) */
/* ======================================================================= */
.vv-benefits, .vv-ingredients, .vv-reviews, .vv-faq, .vv-contact { padding: var(--vv-s8) 0; }
.vv-benefits { background: var(--vv-white); }
.vv-ingredients { background: var(--vv-cream); }
.vv-reviews { background: var(--vv-white); }
.vv-faq { background: var(--vv-cream-2); }
.vv-contact { background: var(--vv-white); }

.vv-benefits__head, .vv-ingredients__head, .vv-reviews__head, .vv-faq__head, .vv-contact__head {
	max-width: 680px;
	margin: 0 auto var(--vv-s6);
	text-align: center;
}
.vv-benefits__title, .vv-ingredients__title, .vv-reviews__title, .vv-faq__title, .vv-contact__title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.vv-benefits__subtitle, .vv-ingredients__subtitle, .vv-reviews__subtitle, .vv-faq__subtitle, .vv-contact__subtitle {
	color: var(--vv-muted); font-size: 1.08rem;
}

/* ----------------------------- Benefit cards -------------------------- */
.vv-benefit-card {
	background: #fff;
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-r-lg);
	padding: var(--vv-s4);
	box-shadow: var(--vv-shadow-sm);
	transition: var(--vv-transition);
	text-align: left;
}
.vv-benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--vv-shadow);
	border-color: transparent;
}
.vv-benefit-card__icon {
	display: inline-grid; place-items: center;
	width: 64px; height: 64px;
	font-size: 28px;
	color: var(--vv-green);
	background: var(--vv-green-soft);
	border-radius: var(--vv-r);
	margin-bottom: var(--vv-s2);
	transition: var(--vv-transition);
}
.vv-benefit-card:hover .vv-benefit-card__icon { background: var(--vv-green); color: #fff; }
.vv-benefit-card__title { font-size: 1.2rem; }
.vv-benefit-card__text { color: var(--vv-muted); font-size: .98rem; margin: 0; }

/* ---------------------------- Ingredient cards ------------------------ */
.vv-ingredient {
	background: #fff;
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-r-lg);
	padding: var(--vv-s3);
	text-align: center;
	box-shadow: var(--vv-shadow-sm);
	transition: var(--vv-transition);
}
.vv-ingredient:hover { transform: translateY(-6px); box-shadow: var(--vv-shadow); }
.vv-ingredient__media {
	width: 84px; height: 84px;
	margin: 0 auto var(--vv-s2);
	display: grid; place-items: center;
	background: var(--vv-green-soft);
	border-radius: 50%;
	overflow: hidden;
}
.vv-ingredient__icon { font-size: 34px; color: var(--vv-green); line-height: 1; display: inline-flex; }
.vv-ingredient__img { width: 100%; height: 100%; object-fit: cover; }
.vv-ingredient__name { font-size: 1.1rem; margin-bottom: 6px; }
.vv-ingredient__desc { color: var(--vv-muted); font-size: .92rem; margin: 0; }

/* ======================================================================= */
/* 9. PRODUCT                                                              */
/* ======================================================================= */
.vv-product { padding: var(--vv-s8) 0; background: var(--vv-green-soft); }
.vv-product__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--vv-s7);
	align-items: center;
}
.vv-product__grid > * { direction: ltr; }
.vv-product__media {
	position: relative;
	background: #fff;
	border-radius: var(--vv-r-xl);
	padding: var(--vv-s5);
	box-shadow: var(--vv-shadow);
	display: grid; place-items: center;
}
.vv-product__img { max-height: 460px; }
.vv-product__sticker {
	position: absolute; top: 18px; left: 18px;
	background: var(--vv-green);
	color: #ffffff;
	font-family: var(--vv-font-head);
	font-weight: 800; font-size: 13px;
	padding: 8px 16px;
	border-radius: var(--vv-r-pill);
	box-shadow: var(--vv-shadow-sm);
	transform: rotate(-6deg);
}
.vv-product__info > * + * { margin-top: var(--vv-s3); }
.vv-product__name { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.vv-product__rating { display: flex; align-items: center; gap: 10px; }
.vv-product__rating-text { color: var(--vv-muted); font-weight: 600; font-size: 14px; }
.vv-product__desc { color: var(--vv-muted); }
.vv-product__features { display: grid; gap: 12px; }
.vv-product__feature { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--vv-ink); }
.vv-product__price { font-family: var(--vv-font-head); font-weight: 800; font-size: 2rem; color: var(--vv-green-dark); }
.vv-product__buy { display: flex; align-items: center; flex-wrap: wrap; gap: var(--vv-s2); }
.vv-product__note { font-size: 13px; color: var(--vv-muted); }

/* ======================================================================= */
/* 10. REVIEWS                                                             */
/* ======================================================================= */
.vv-review {
	background: #fff;
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-r-lg);
	padding: var(--vv-s4);
	box-shadow: var(--vv-shadow-sm);
	display: flex; flex-direction: column; gap: var(--vv-s2);
	transition: var(--vv-transition);
}
.vv-review:hover { transform: translateY(-6px); box-shadow: var(--vv-shadow); }
.vv-review__quote { font-style: italic; color: var(--vv-ink); margin: 0; font-size: 1.02rem; border: 0; padding: 0; }
.vv-review__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.vv-review__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.vv-review__avatar--initial {
	display: grid; place-items: center;
	background: var(--vv-green); color: #fff;
	font-family: var(--vv-font-head); font-weight: 800; font-size: 18px;
}
.vv-review__meta { display: flex; flex-direction: column; }
.vv-review__author { font-family: var(--vv-font-head); font-weight: 700; color: var(--vv-black); }
.vv-review__role { font-size: 13px; color: var(--vv-muted); }

/* ======================================================================= */
/* 11. FAQ                                                                 */
/* ======================================================================= */
.vv-faq__list { display: flex; flex-direction: column; gap: var(--vv-s2); }
.vv-faq__item {
	background: #fff;
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-r);
	overflow: hidden;
	transition: var(--vv-transition);
}
.vv-faq__item.is-open { border-color: var(--vv-green); box-shadow: var(--vv-shadow-sm); }

/* Guard: stop the theme / Elementor global accent (pink) from bleeding into
   the FAQ question on hover / focus / active / open states. */
.vv .vv-faq__item .vv-faq__q,
.vv .vv-faq__item .vv-faq__q:hover,
.vv .vv-faq__item .vv-faq__q:focus,
.vv .vv-faq__item .vv-faq__q:active,
.vv .vv-faq__item.is-open .vv-faq__q {
	background: transparent !important;
	color: var(--vv-black) !important;
	box-shadow: none !important;
}
.vv .vv-faq__item.is-open .vv-faq__q { color: var(--vv-green-dark) !important; }
.vv .vv-faq__q:focus-visible { outline: 2px solid var(--vv-green); outline-offset: 2px; }

.vv-faq__qwrap { margin: 0; }
.vv-faq__q {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: var(--vv-s2);
	background: none; border: none; cursor: pointer;
	text-align: left;
	font-family: var(--vv-font-head); font-weight: 700; font-size: 1.06rem;
	color: var(--vv-black);
	padding: var(--vv-s3);
}
.vv-faq__icon {
	flex: 0 0 auto;
	position: relative;
	width: 26px; height: 26px;
	border: 2px solid var(--vv-green);
	border-radius: 50%;
	transition: var(--vv-transition);
}
.vv-faq__icon::before, .vv-faq__icon::after {
	content: ""; position: absolute; top: 50%; left: 50%;
	background: var(--vv-green);
	transform: translate(-50%, -50%);
	transition: var(--vv-transition);
}
.vv-faq__icon::before { width: 12px; height: 2px; }
.vv-faq__icon::after  { width: 2px; height: 12px; }
.vv-faq__item.is-open .vv-faq__icon { background: var(--vv-green); }
.vv-faq__item.is-open .vv-faq__icon::before,
.vv-faq__item.is-open .vv-faq__icon::after { background: #fff; }
.vv-faq__item.is-open .vv-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.vv-faq__panel { padding: 0 var(--vv-s3) var(--vv-s3); }
.vv-faq__a { color: var(--vv-muted); }
.vv-faq__a p:last-child { margin-bottom: 0; }

/* ======================================================================= */
/* 12. ABOUT                                                               */
/* ======================================================================= */
.vv-about { padding: var(--vv-s8) 0; background: var(--vv-white); }
.vv-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--vv-s7);
	align-items: center;
}
.vv-about__grid > * { direction: ltr; }
.vv-about__media { position: relative; }
.vv-about__img { border-radius: var(--vv-r-xl); box-shadow: var(--vv-shadow); width: 100%; object-fit: cover; }
.vv-about__badge {
	position: absolute; bottom: -24px; right: -16px;
	background: var(--vv-green);
	color: #fff;
	border-radius: var(--vv-r-lg);
	padding: var(--vv-s3);
	text-align: center;
	box-shadow: var(--vv-shadow);
	min-width: 130px;
}
.vv-about__badge-num { display: block; font-family: var(--vv-font-head); font-weight: 800; font-size: 1.8rem; color: #ffffff; }
.vv-about__badge-label { display: block; font-size: 13px; font-weight: 600; }
.vv-about__content > * + * { margin-top: var(--vv-s3); }
.vv-about__title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.vv-about__text { color: var(--vv-muted); }
.vv-about__values { display: grid; gap: 12px; }
.vv-about__value { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--vv-ink); }
.vv-about__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--vv-s3);
	margin-top: var(--vv-s7);
	padding: var(--vv-s4);
	background: var(--vv-cream);
	border-radius: var(--vv-r-lg);
}
.vv-stat { text-align: center; }
.vv-stat__num { display: block; font-family: var(--vv-font-head); font-weight: 800; font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--vv-green-dark); }
.vv-stat__label { display: block; color: var(--vv-muted); font-size: 14px; font-weight: 600; }

/* ======================================================================= */
/* 13. CTA BAND                                                            */
/* ======================================================================= */
.vv-cta { padding: var(--vv-s7) 0; background: var(--vv-white); }
.vv-cta__inner {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(600px 300px at 90% 10%, rgba(255,255,255,.14), transparent 60%),
		linear-gradient(135deg, var(--vv-green-dark), var(--vv-green));
	border-radius: var(--vv-r-xl);
	padding: var(--vv-s8) var(--vv-s5);
	text-align: center;
	box-shadow: var(--vv-shadow);
}
.vv-cta__inner > * + * { margin-top: var(--vv-s3); }
.vv-cta__eyebrow { display: inline-block; font-family: var(--vv-font-head); font-weight: 700; color: var(--vv-green-soft); letter-spacing: .04em; }
.vv-cta__title { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 760px; margin-inline: auto; }
.vv-cta__text { color: rgba(255,255,255,.88); max-width: 600px; margin-inline: auto; }
.vv-cta__actions { display: flex; justify-content: center; }
.vv-cta__note { display: block; color: rgba(255,255,255,.8); font-size: 14px; }

/* ======================================================================= */
/* 14. CONTACT                                                             */
/* ======================================================================= */
.vv-contact__grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: var(--vv-s5);
	align-items: stretch;
}
.vv-contact__info {
	background: var(--vv-green-dark);
	color: #fff;
	border-radius: var(--vv-r-lg);
	padding: var(--vv-s5);
	display: flex; flex-direction: column; gap: var(--vv-s3);
}
.vv-contact__info-title { color: #fff; font-size: 1.4rem; }
/* Info card is on dark green — force ALL its text white (beats base .vv h3) */
.vv .vv-contact__info,
.vv .vv-contact__info .vv-contact__info-title,
.vv .vv-contact__info .vv-contact__row,
.vv .vv-contact__info .vv-contact__row-label,
.vv .vv-contact__info .vv-contact__row-val,
.vv .vv-contact__info .vv-contact__info-note {
	color: #fff !important;
}
.vv-contact__row {
	display: flex; align-items: center; gap: 14px;
	color: #fff !important;
	padding: 12px;
	border-radius: var(--vv-r-sm);
	background: rgba(255,255,255,.08);
	transition: var(--vv-transition);
}
.vv-contact__row:hover { background: rgba(255,255,255,.16); }
.vv-contact__ico { font-size: 20px; }
.vv-contact__row-label { display: block; font-size: 12px; opacity: .75; text-transform: uppercase; letter-spacing: .06em; }
.vv-contact__row-val { display: block; font-weight: 700; }
.vv-contact__socials { display: flex; flex-direction: column; gap: 10px; }
.vv-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.vv-social {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,.12);
	color: #fff !important;
	padding: 10px 16px;
	border-radius: var(--vv-r-pill);
	font-weight: 600; font-size: 14px;
	transition: var(--vv-transition);
}
.vv-social:hover { transform: translateY(-3px); }
.vv-social--ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.vv-social--tk:hover { background: #000; }
.vv-contact__info-note { font-size: 14px; opacity: .8; margin: 0; }

.vv-contact__form {
	background: #fff;
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-r-lg);
	padding: var(--vv-s5);
	box-shadow: var(--vv-shadow-sm);
	display: flex; flex-direction: column; gap: var(--vv-s2);
}
.vv-field input, .vv-field textarea {
	width: 100%;
	font-family: var(--vv-font-body);
	font-size: 15px;
	color: var(--vv-ink);
	background: var(--vv-cream-2);
	border: 1.5px solid var(--vv-border);
	border-radius: var(--vv-r-sm);
	padding: 14px 16px;
	transition: var(--vv-transition);
}
.vv-field textarea { resize: vertical; min-height: 130px; }
.vv-field input:focus, .vv-field textarea:focus {
	outline: none;
	border-color: var(--vv-green);
	background: #fff;
	box-shadow: 0 0 0 4px var(--vv-green-soft);
}
.vv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.vv-contact__submit { margin-top: 6px; }
.vv-contact__submit.is-loading { opacity: .7; pointer-events: none; }
.vv-contact__feedback { margin: 4px 0 0; font-weight: 600; font-size: 14px; min-height: 1em; }
.vv-contact__feedback.is-success { color: var(--vv-green-dark); }
.vv-contact__feedback.is-error { color: #c0392b; }

/* ======================================================================= */
/* 15. FOOTER                                                              */
/* ======================================================================= */
.vv-footer {
	background: var(--vv-black);
	color: rgba(255,255,255,.74);
	padding: var(--vv-s8) 0 var(--vv-s4);
}
.vv-footer__top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: var(--vv-s6);
	padding-bottom: var(--vv-s6);
	border-bottom: 1px solid rgba(255,255,255,.10);
}
.vv-footer__logo, .vv-footer__logo-img { font-family: var(--vv-font-head); font-weight: 800; font-size: 26px; color: #fff !important; }
.vv-footer__tagline { margin: var(--vv-s2) 0; max-width: 360px; color: rgba(255,255,255,.66); }
.vv-footer__email { display: inline-block; color: var(--vv-gold) !important; font-weight: 600; margin-bottom: var(--vv-s2); }
.vv-socials--footer .vv-social { background: rgba(255,255,255,.10); }
.vv-footer__col-title { color: #fff !important; font-size: 1.05rem; margin-bottom: var(--vv-s2); }
.vv-footer__links { display: flex; flex-direction: column; gap: 12px; }
.vv-footer__link { color: rgba(255,255,255,.74) !important; font-size: 15px; }
.vv-footer__link:hover { color: var(--vv-gold) !important; padding-left: 4px; }
.vv-footer__bottom {
	display: flex; flex-direction: column; gap: 10px;
	padding-top: var(--vv-s4);
	text-align: center;
}
.vv-footer__disclaimer { font-size: 12px; color: rgba(255,255,255,.45); max-width: 820px; margin: 0 auto; }
.vv-footer__copy { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }

/* ======================================================================= */
/* 16. RESPONSIVE                                                          */
/* ======================================================================= */

/* Tablet ---------------------------------------------------------------- */
@media (max-width: 1024px) {
	.vv-hero__grid { gap: var(--vv-s5); }
	.vv-grid { grid-template-columns: repeat(var(--vv-cols-tablet, 2), minmax(0, 1fr)); }
	.vv-about__stats { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav breakpoint ------------------------------------------------- */
@media (max-width: 900px) {
	.vv-header__nav { display: none !important; }
	/* Amazon CTA is hidden in the bar on mobile — it lives in the off-canvas drawer only. */
	.vv-header__cta { display: none !important; }
	.vv-burger { display: flex !important; }
	.vv-header__inner { gap: var(--vv-s2); }

	.vv-hero__grid { grid-template-columns: 1fr; text-align: center; padding-top: var(--vv-s6); padding-bottom: var(--vv-s6); }
	.vv-hero__grid > * { direction: ltr !important; }
	.vv-hero__content { order: 2; }
	.vv-hero__media { order: 1; }
	.vv-hero__sub { margin-inline: auto; }
	.vv-hero__actions, .vv-hero__rating, .vv-hero__pills, .vv-hero__trust { justify-content: center; }
	.vv-hero__blob { right: 50%; transform: translate(50%, -50%); opacity: .5; }
	.vv-hero__float-badge { left: 4%; }

	.vv-product__grid, .vv-about__grid, .vv-contact__grid { grid-template-columns: 1fr; }
	.vv-product__grid > *, .vv-about__grid > * { direction: ltr !important; }
	.vv-about__badge { right: 16px; bottom: -20px; }
	.vv-footer__top { grid-template-columns: 1fr 1fr; }
	.vv-footer__brand { grid-column: 1 / -1; }
}

/* Small mobile ---------------------------------------------------------- */
@media (max-width: 640px) {
	.vv-grid { grid-template-columns: 1fr !important; }
	.vv-container { padding-inline: var(--vv-s2); }
	.vv-benefits, .vv-ingredients, .vv-reviews, .vv-faq, .vv-contact, .vv-about, .vv-product { padding: var(--vv-s6) 0; }
	.vv-about__stats { grid-template-columns: repeat(2, 1fr); padding: var(--vv-s3); }
	.vv-cta__inner { padding: var(--vv-s6) var(--vv-s3); }
	.vv .vv-btn { width: 100%; }
	.vv-hero__actions, .vv-product__buy, .vv-cta__actions { width: 100%; }
	.vv-footer__top { grid-template-columns: 1fr; gap: var(--vv-s4); }

	/* Hero rating: stars on top, text centered below */
	.vv-hero__rating { flex-direction: column; gap: 6px; }
	.vv-hero__rating-text { text-align: center; font-size: 13px; }

	/* Trust pills: 3 compact chips in a single row (icon on top, small text) */
	.vv-hero__pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
	.vv-pill {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		padding: 12px 6px;
		font-size: 11px;
		line-height: 1.25;
		text-align: center;
		border-radius: var(--vv-r);
	}
	.vv-pill__icon { font-size: 18px; }

	/* Trust badges: keep the 2x2 grid tidy & centered on phones */
	.vv-hero__trust { gap: 10px 16px; justify-content: center; }
	.vv-hero__trust-item { font-size: 12.5px; }
}

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

/* ======================================================================= */
/* 17. GOLD GRADIENT TITLES (echoes the product packaging)                 */
/* ----------------------------------------------------------------------- */
/* Applied to headings only — the rest of the UI stays green/black/white.  */
.vv .vv-hero__title-accent,
.vv .vv-benefits__title,
.vv .vv-ingredients__title,
.vv .vv-reviews__title,
.vv .vv-faq__title,
.vv .vv-contact__title,
.vv .vv-about__title,
.vv .vv-product__name,
.vv .vv-cta__title {
	color: var(--vv-gold-solid); /* fallback if background-clip:text unsupported */
	background: var(--vv-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Hero headline: base text black, only the highlighted span is gold */
.vv .vv-hero__title { color: var(--vv-heading); -webkit-text-fill-color: currentColor; }
.vv .vv-hero__title-accent {
	display: inline;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* Keep the gradient crisp on dark backgrounds (CTA band) */
.vv .vv-cta__title { filter: drop-shadow(0 1px 0 rgba(0,0,0,.15)); }
