/* =========================================================================
   PeptideVerse — main stylesheet
   Tokens: teal #1FC6B9 · navy #172C45 · purple #8D6DE0 · ink #020202 · muted #7A7A7A
   Fonts:  Sora (headings) · Manrope (body) — self-hosted, variable
   ========================================================================= */

/* ---- Fonts ---- */
@font-face {
	font-family: 'Sora';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('../fonts/sora-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('../fonts/manrope-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Tokens ---- */
:root {
	--teal: #1FC6B9;
	--teal-d: #16a99e;
	--navy: #172C45;
	--navy-2: #1f3a5a;
	--purple: #8D6DE0;
	--ink: #020202;
	--muted: #7A7A7A;
	--line: #e6ebef;
	--bg: #ffffff;
	--bg-soft: #f5f8fa;
	--radius: 12px;          /* live uses 12px on cards, buttons and inputs */
	--radius-sm: 8px;        /* product-card buttons */
	--shadow: 0 10px 30px rgba(23, 44, 69, .08);
	--shadow-lg: 0 20px 50px rgba(23, 44, 69, .12);
	--container: 1300px;     /* live's Elementor container width */
	--grad: linear-gradient(90deg, #1FC6B9 0%, #8D6DE0 100%);
	--price: #975DC3;        /* live's product price purple */
	--band: #F0F0F0;         /* live's grey section background */
	--head: 'Sora', system-ui, sans-serif;
	--body: 'Manrope', system-ui, sans-serif;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.65;
	color: #33414f;
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-d); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.pv-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.pv-narrow { max-width: 820px; }
.pv-section { padding: 84px 0; }
.pv-skip { position: absolute; left: -9999px; }
.pv-skip:focus { left: 16px; top: 16px; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 1000; }

.pv-eyebrow {
	display: inline-block; font-family: var(--head); font-weight: 700; font-size: 13px;
	letter-spacing: .12em; text-transform: uppercase; color: var(--teal-d); margin-bottom: 14px;
}

/* Eyebrow pill — live wraps every section kicker in a bordered pill with a dot. */
.pv-pill {
	display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
	font-family: var(--head); font-weight: 400; font-size: 13px; line-height: 1;
	color: var(--navy); background: #fff; border: 1px solid rgba(0,0,0,.10);
	border-radius: 20px; padding: 8px 16px;
}
.pv-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex: none; }
.pv-pill--light { color: #F0F0F0; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); font-size: 14px; }
.pv-pill--light::before { background: #F0F0F0; }

.pv-h2 { font-size: clamp(28px, 3.1vw, 40px); font-weight: 600; }
.pv-section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.pv-section__sub { color: var(--muted); font-size: 18px; }
.pv-section__foot { text-align: center; margin-top: 44px; }

/* ---- Buttons ----
   Live's buttons are all one object: 14px/700 Manrope, 12px radius, label + arrow.
   Fills differ (gradient · teal · purple · bare text). */
.pv-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--body); font-weight: 700; font-size: 14px; line-height: 1;
	padding: 20px 25px 20px 30px; border-radius: var(--radius); cursor: pointer;
	border: 0; color: #fff;
	transition: filter .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
	white-space: nowrap;
}
.pv-btn__arrow { flex: none; }
.pv-btn--grad { background: var(--grad); color: #fff; }
.pv-btn--grad:hover { color: #fff; filter: brightness(1.08); }
.pv-btn--teal { background: var(--teal); color: #fff; }
.pv-btn--teal:hover { background: var(--purple); color: #fff; }
.pv-btn--purple { background: var(--purple); color: #fff; }
.pv-btn--purple:hover { background: var(--teal); color: #fff; }
.pv-btn--text { background: none; color: var(--navy); padding-left: 0; padding-right: 0; }
.pv-btn--text:hover { color: var(--purple); }
.pv-btn--sm { padding: 13px 20px; font-size: 13px; }

/* Older variants still used by inner pages — kept, restyled to the live kit. */
.pv-btn--primary { background: var(--grad); color: #fff; }
.pv-btn--primary:hover { color: #fff; filter: brightness(1.08); }
.pv-btn--ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.pv-btn--ghost:hover { border-color: var(--teal); color: var(--purple); }
.pv-btn--light { background: #fff; color: var(--navy); }
.pv-btn--light:hover { color: var(--purple); }
/* Card button — live measures 16px/700, padding 14px 20px, teal, radius 8 (CDP 2026-08-10). */
.pv-btn--cart { background: var(--teal); color: #fff; width: 100%; padding: 14px 20px; font-size: 16px; border-radius: var(--radius-sm); }
.pv-btn--cart:hover { background: var(--purple); color: #fff; }

/* ---- Header ---- */
/* --pv-chrome = height of the announcement bars stacked above the nav row.
   app.js remeasures it live, so every offset below follows automatically
   instead of being hard-coded in three places. The default here is what the
   first paint (and a no-JS visit) uses: the promo bar is off, so it is the
   RUO strip alone. Restore 100px if the promo bar is ever re-enabled. */
:root { --pv-promo-h: 55px; --pv-ruo-h: 45px; --pv-chrome: 45px; --pv-nav-h: 84px; }

.pv-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	background: #fff; border-bottom: 1px solid var(--line);
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Promo / coupon bar — live's own spec, copied rule for rule from the banner
   mu-plugin on peptideverse.com: 14px/500 on white, gradient-clipped offer text,
   dark code chip, grey separator, 55px tall. The one deliberate change is the
   code chip: here it is a BUTTON that copies the code to the clipboard. */
.pv-topbar { background: #fff; color: #1A2332; border-bottom: 1px solid #e5e7eb; }
.pv-topbar__inner { display: flex; align-items: center; justify-content: center; gap: 16px; position: relative; width: 100%; padding-block: 14px; }
.pv-topbar__text { margin: 0; font: 500 14px/1.5 var(--body); text-align: center; }
.pv-topbar .pv-grad {
	background: linear-gradient(90deg, #14b8a6, #8b5cf6);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
	font-weight: 800; font-size: 15px;
}
.pv-topbar .pv-sep { margin: 0 12px; color: #ccc; }
.pv-code {
	display: inline-flex; align-items: center; gap: 6px; vertical-align: baseline;
	background: #1A2332; color: #fff; padding: 3px 10px; border: 0; border-radius: 4px;
	font: 700 13px/1.5 var(--body); margin: 0 4px; cursor: pointer;
	transition: background .15s ease;
}
.pv-code:hover { background: #2b3a4d; }
.pv-code:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.pv-code__icon { opacity: .7; }
.pv-code.is-copied { background: var(--teal-d); }
.pv-code__status { position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%); font: 600 11px/1 var(--body); color: var(--teal-d); pointer-events: none; }
.pv-topbar__close { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: 0; font-size: 18px; line-height: 1; color: #999; cursor: pointer; padding: 4px 8px; }
.pv-topbar__close:hover { color: #1A2332; }
.pv-topbar.is-dismissed { display: none; }

/* RUO disclaimer strip — live spec: 45px, teal→purple gradient, white */
.pv-ruobar { height: var(--pv-ruo-h); display: flex; align-items: center; background: linear-gradient(90deg, #1FC6B9 0%, #8D6DE0 100%); color: #fff; }
.pv-ruobar__text { margin: 0; font: 500 13px/1.3 var(--body); text-align: center; }

@media (max-width: 900px) {
	:root { --pv-promo-h: auto; --pv-ruo-h: auto; }
	.pv-ruobar { height: auto; padding: 8px 0; }
	.pv-topbar__inner { padding-block: 10px; padding-right: 28px; }
	.pv-topbar__text { font-size: 12px; }
	.pv-topbar .pv-grad { font-size: 13px; }
	.pv-code { font-size: 11px; padding: 2px 7px; }
	.pv-topbar .pv-sep { margin: 0 6px; }
	.pv-ruobar__text { font-size: 11.5px; }
}
.pv-header--scrolled { box-shadow: 0 6px 24px rgba(23,44,69,.08); }
.pv-header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.pv-logo__text { font-family: var(--head); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -.02em; transition: color .25s ease; }
.pv-logo__text span { color: var(--teal); }
.pv-logo--img { display: inline-flex; align-items: center; }
.pv-header .pv-logo__img, .pv-header .custom-logo { max-height: 65px; width: auto; height: auto; }
.pv-nav { display: flex; align-items: center; gap: 28px; }
.pv-account + .pv-cart { margin-left: -12px; }
.pv-menu { display: flex; align-items: center; gap: 26px; list-style: none; }
/* Live's nav is uppercase Manrope at 14px. */
.pv-menu a { font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); position: relative; transition: color .25s ease; }
.pv-menu a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--teal); transition: width .2s ease; }
.pv-menu a:hover::after, .pv-menu .current-menu-item > a::after { width: 100%; }
.pv-cart, .pv-account { position: relative; color: var(--navy); display: inline-flex; transition: color .25s ease; }
.pv-cart:hover, .pv-account:hover { color: var(--teal-d); }
.pv-cart__count { position: absolute; top: -8px; right: -10px; background: var(--teal); color: #05201d; font: 700 11px/1 var(--head); min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; padding: 0 5px; }
.pv-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.pv-nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease, background .25s ease; }

/* Transparent overlay state — only on the hero page, only before scroll */
.pv-has-hero .pv-header { background: transparent; border-bottom-color: transparent; }
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-logo__text,
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-menu a,
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-cart,
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-account { color: #fff; }
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-nav-toggle span { background: #fff; }
.pv-has-hero .pv-header.pv-header--scrolled { background: #fff; border-bottom-color: var(--line); }

/* Non-hero pages: fixed solid header needs body offset (bars + nav row) */
body:not(.pv-has-hero) .pv-main { padding-top: calc(var(--pv-chrome) + var(--pv-nav-h)); }
/* Hero pages: the nav still overlays the hero, but the opaque bars must not —
   so the hero starts below them. */
.pv-has-hero .pv-main { padding-top: var(--pv-chrome); }

/* ---- Hero ----
   Live: full-bleed photo, 961px tall, tucked under the transparent nav, with a
   106deg navy overlay at .84 opacity. Content is flush-left in the 1300 container. */
.pv-hero { position: relative; isolation: isolate; min-height: 860px; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.pv-hero__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pv-hero__overlay { position: absolute; inset: 0; z-index: 1; opacity: .84;
	background: linear-gradient(106deg, #172C45 36%, rgba(23,44,69,.18) 73%); }
.pv-hero__inner { position: relative; z-index: 2; color: #fff; text-align: left; }
.pv-eyebrow--light { color: var(--teal); }
.pv-hero__title { font-family: var(--head); font-size: clamp(34px, 4.4vw, 60px); font-weight: 600; line-height: 1.2; letter-spacing: 0; color: #fff; max-width: 860px; margin-bottom: 24px; }
.pv-hero__lede { font-size: 16px; line-height: 24px; color: #F0F0F0; max-width: 688px; margin-bottom: 32px; }
.pv-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.pv-btn--outline-light { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.6); }
.pv-btn--outline-light:hover { background: #fff; color: var(--navy); }

/* ---- Section bands ---- */
.pv-band { padding: 80px 0; }
.pv-band--about { background: var(--band); }
.pv-band--products { background: #fff; }
.pv-band--approach { background: var(--band); }
.pv-band--faq { background: #fff; }
.pv-band--blog { background: #fff; }
.pv-band__text { color: #333; font-size: 16px; line-height: 26px; }
.pv-secthead { margin-bottom: 44px; }
.pv-secthead--center { text-align: center; max-width: 760px; margin-inline: auto; }
.pv-secthead--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.pv-secthead .pv-h2 { margin-bottom: 0; }

/* ---- Feature rows (About, What We Do, Approach) ---- */
.pv-featurerow { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 16px 0; }
.pv-featurerow h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; color: inherit; }
.pv-featurerow p { margin: 0; font-size: 14px; line-height: 22px; }
.pv-featurerow__ic { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.pv-featurerow__ic svg { width: 22px; height: 22px; }
.pv-featurerow__ic--teal { background: rgba(31,198,185,.14); color: var(--teal-d); }
.pv-featurerow__ic--purple { background: linear-gradient(135deg, rgba(141,109,224,.28), rgba(31,198,185,.22)); color: #C9B6F5; }
.pv-featurerow__ic--dark { background: var(--navy); color: #fff; }
.pv-featurerow--divided + .pv-featurerow--divided { border-top: 1px solid rgba(255,255,255,.12); }
.pv-featurerow--tight { padding: 12px 0; }

/* ---- About band ---- */
.pv-about { display: grid; grid-template-columns: 433px 1fr; gap: 56px; align-items: center; }
.pv-about__media img { width: 100%; height: 526px; object-fit: cover; border-radius: var(--radius); }
.pv-about__copy h3 { color: var(--ink); }
.pv-about__lower { display: grid; grid-template-columns: 1fr 262px; gap: 32px; align-items: end; margin-top: 8px; }
.pv-about__list .pv-btn { margin-top: 18px; }
.pv-about__media2 img { width: 100%; height: 249px; object-fit: cover; border-radius: var(--radius); }

/* ---- Products ---- */
.pv-grid { display: grid; gap: 26px; }
.pv-grid--products { grid-template-columns: repeat(4, 1fr); }
.pv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pv-grid--posts3 { grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }

/* Product card — live: white, 1px rgba(0,0,0,.2), 12px radius, 14px padding. */
.pv-card { background: #fff; border: 1px solid rgba(0,0,0,.2); border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; transition: box-shadow .18s ease, border-color .18s ease; }
.pv-card:hover { box-shadow: var(--shadow); border-color: rgba(0,0,0,.28); }
.pv-card__media { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 280 / 250; background: var(--bg-soft); }
.pv-card__media img { width: 100%; height: 100%; object-fit: cover; }
.pv-card__body { padding: 14px 0 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pv-card__title { font-family: var(--head); font-size: 18px; font-weight: 700; margin: 0; line-height: 1.3; }
.pv-card__title a { color: var(--ink); }
.pv-card__title a:hover { color: var(--purple); }
/* Live's card price is purple. Colour the wrapper, not just <bdi> — wp_kses_post()
   strips <bdi> out of WooCommerce's price HTML, so a bdi-only rule silently misses. */
.pv-card__price { font-weight: 700; color: var(--price); font-size: 16px; margin-top: auto; }
.pv-card__price bdi, .pv-card__price .pv-price, .pv-card__price ins { color: var(--price); text-decoration: none; }
.pv-card__price del { color: var(--muted); font-weight: 500; font-size: 14px; margin-right: 6px; }
.pv-card__price del bdi { color: var(--muted); }

/* ---- Feature tiles (inner pages) ---- */
.pv-feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; text-align: center; box-shadow: var(--shadow); }
.pv-feature__ic { font-size: 34px; margin-bottom: 12px; }
.pv-feature h3 { font-size: 20px; margin-bottom: 8px; }
.pv-feature p { color: var(--muted); margin: 0; }

/* ---- What We Do (navy band with hex pattern) ----
   Live layers a navy veil at 95% over the black hex-pattern photo, which is what
   lets a few hexes read through. Same construction here. */
.pv-band--what { position: relative; isolation: isolate; background-repeat: no-repeat; background-position: center; background-size: cover; color: #fff; }
.pv-band--what::before { content: ''; position: absolute; inset: 0; background: var(--navy); opacity: .95; z-index: 0; }
.pv-band--what > * { position: relative; z-index: 1; }
.pv-band--what .pv-h2, .pv-band--what h3 { color: #fff; }
.pv-band--what .pv-band__text { color: #D7DEE6; }
.pv-band--what .pv-featurerow p { color: #C2CCD8; }
.pv-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.pv-split__copy .pv-btn { margin-top: 10px; }

/* ---- Our Approach ---- */
.pv-approach { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.pv-approach__media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius); }
.pv-approach__card { background: #fff; border-radius: var(--radius); padding: 48px 44px; align-self: center; }
.pv-approach__card .pv-btn--text { margin-top: 12px; }

/* ---- FAQ ---- */
.pv-faq { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.pv-faq__copy { position: relative; }
.pv-faq__decor { margin-top: 24px; opacity: .9; }
.pv-faq__decor img { width: 100%; max-width: 400px; height: auto; }
.pv-faq__panel { background: var(--navy); border-radius: var(--radius); padding: 14px; }
.pv-accordion { display: grid; gap: 2px; }
.pv-acc__item { border-radius: var(--radius); overflow: hidden; }
.pv-acc__item + .pv-acc__item { border-top: 1px solid rgba(255,255,255,.08); }
.pv-acc__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: 0; padding: 16px 30px 16px 15px; cursor: pointer; font-family: var(--body); font-weight: 600; font-size: 16px; color: #fff; border-radius: var(--radius); }
.pv-acc__q svg { flex: none; transition: transform .2s ease; color: #fff; }
.pv-acc__item.is-open .pv-acc__q { background: var(--teal); }
.pv-acc__q[aria-expanded="true"] svg { transform: rotate(90deg); }
.pv-acc__a { padding: 4px 22px 20px 15px; color: #C2CCD8; font-size: 14px; line-height: 22px; }
.pv-acc__a p { margin: 0 0 .6em; }
.pv-acc__a p:last-child { margin-bottom: 0; }
.pv-acc__a a { color: var(--teal); }

/* ---- CTA band ---- */
.pv-cta { position: relative; isolation: isolate; padding: 90px 0; overflow: hidden; }
.pv-cta__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.pv-cta__overlay { position: absolute; inset: 0; z-index: 1; opacity: .84;
	background: linear-gradient(106deg, #172C45 50%, #8D6DE0 100%); }
.pv-cta__inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.pv-cta .pv-h2 { color: #fff; }
.pv-cta p { color: #E9EDF2; font-size: 16px; line-height: 26px; margin-bottom: 28px; }

/* ---- Blog / posts ----
   Live's cards have no border, background or padding: the look is the 12px-radius
   cover image, a date+time meta row, the title, the excerpt and a teal button. */
.pv-post { background: none; border: 0; border-radius: 0; }
.pv-post__media { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 413 / 300; background: var(--bg-soft); }
.pv-post__media img { width: 100%; height: 100%; object-fit: cover; }
.pv-post__body { padding: 18px 0 0; }
.pv-post__meta { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.pv-post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.pv-post__meta svg { width: 14px; height: 14px; }
.pv-post__date { font-family: var(--head); font-size: 13px; font-weight: 600; color: var(--teal-d); text-transform: uppercase; letter-spacing: .06em; }
.pv-post__body h3 { font-family: var(--head); font-size: 20px; font-weight: 600; margin: 0 0 10px; line-height: 1.35; color: #333; }
.pv-post__body h3 a { color: #333; }
.pv-post__body h3 a:hover { color: var(--purple); }
.pv-post__excerpt { color: var(--muted); font-size: 14px; line-height: 22px; margin-bottom: 16px; }

/* ---- Footer ----
   Live: black hex-pattern photo, then a black gradient veil on top, then content.
   Column headings are teal 24/700; the whole block sits above a solid teal RUO strip. */
.pv-footer {
	position: relative; isolation: isolate; color: #C9D2DC;
	background-color: #000; background-repeat: no-repeat; background-position: 100% 0; background-size: cover;
}
.pv-footer__veil { position: absolute; inset: 0; z-index: 0;
	background: linear-gradient(rgba(0,0,0,.77) 20%, rgba(0,0,0,.53) 60%, rgba(0,0,0,.72) 80%); }
.pv-footer__body { position: relative; z-index: 1; padding-top: 56px; }

.pv-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.pv-footer__logo { display: inline-block; }
.pv-footer__logo-img { max-height: 108px; width: auto; height: auto; }
.pv-logo__text--footer { color: #fff; display: inline-block; }

.pv-social { display: flex; align-items: center; gap: 12px; list-style: none; }
.pv-social__link { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06); transition: background .2s ease, border-color .2s ease, color .2s ease; }
.pv-social__link svg { width: 16px; height: 16px; }
a.pv-social__link:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.pv-social__link--empty { cursor: default; }

.pv-footer__grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1.15fr; gap: 40px; padding: 46px 0 40px; }
.pv-footer__col h2 { color: var(--teal); font-family: var(--head); font-size: 24px; font-weight: 700; margin-bottom: 18px; }
.pv-footer__col p { font-size: 15px; line-height: 24px; max-width: 320px; }
.pv-footer__col ul { list-style: none; display: grid; gap: 11px; }
.pv-footer__col a { color: #C9D2DC; font-size: 15px; }
.pv-footer__col a:hover { color: var(--purple); }
.pv-footer__col--about .pv-btn { margin-top: 8px; }

/* 🛑 The gap has to go on whichever element actually holds the fields.
   Ultimate Addons for CF7 (active on live) wraps every field of form 107 in a single
   `.uacf7-form-wrapper-container`, so a gap on `.wpcf7-form` had ONE child to space and
   did nothing — the email input and Submit button sat flush against each other (measured
   0px). 20px matches the `margin-bottom` the old footer form used, so the spacing the
   client is used to is preserved. Both selectors are listed so this holds whether or not
   that plugin is in play. */
.pv-footer__col--news .wpcf7-form,
.pv-footer__col--news .uacf7-form-wrapper-container { display: grid; gap: 20px; max-width: 300px; }
.pv-footer__col--news label { display: block; font-size: 0; }
.pv-footer__col--news input[type="email"], .pv-footer__col--news input[type="text"] {
	width: 100%; padding: 13px 16px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.25);
	background: #fff; color: var(--ink); font: 400 14px/1.2 var(--body);
}
.pv-footer__col--news input[type="submit"] {
	width: 100%; padding: 14px 16px; border: 0; border-radius: var(--radius); cursor: pointer;
	background: var(--grad); color: #fff; font: 700 14px/1 var(--body);
}
.pv-footer__col--news .wpcf7-spinner { display: none; }

.pv-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0 26px; font-size: 12.5px; text-align: center; }
.pv-footer__bar p { margin: 4px 0; }
.pv-footer__bar a { color: var(--teal); }
.pv-footer__bar a:hover { color: var(--purple); }
.pv-footer__note { color: rgba(255,255,255,.5); }

/* The RUO strip repeats below the footer — solid teal there, gradient in the header. */
.pv-ruobar--foot { background: var(--teal); height: auto; padding: 18px 0; }

/* ---- Prose (pages) ---- */
.pv-prose { font-size: 17px; color: #33414f; }
.pv-prose h2, .pv-prose h3 { margin-top: 1.6em; }
.pv-prose a { color: var(--teal-d); text-decoration: underline; }
.pv-pagination { margin-top: 40px; text-align: center; }
.pv-pagination a, .pv-pagination .current { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--line); margin: 0 3px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	.pv-grid--products { grid-template-columns: repeat(3, 1fr); }
	.pv-about { grid-template-columns: 320px 1fr; gap: 36px; }
	.pv-split { grid-template-columns: 1fr; gap: 40px; }
	.pv-faq { grid-template-columns: 1fr; gap: 40px; }
	.pv-approach__card { padding: 36px 30px; }
}
@media (max-width: 900px) {
	.pv-section { padding: 60px 0; }
	.pv-band { padding: 56px 0; }
	.pv-hero { min-height: 620px; padding: 100px 0 60px; }
	.pv-hero__grid, .pv-about__grid, .pv-what__grid { grid-template-columns: 1fr; gap: 36px; }
	.pv-about { grid-template-columns: 1fr; gap: 32px; }
	.pv-about__media img { height: 380px; }
	.pv-about__lower { grid-template-columns: 1fr; }
	.pv-about__media2 { max-width: 320px; }
	.pv-approach { grid-template-columns: 1fr; }
	.pv-approach__media img { min-height: 320px; }
	.pv-grid--posts3 { grid-template-columns: repeat(2, 1fr); }
	.pv-secthead--split { flex-direction: column; align-items: flex-start; gap: 20px; }
	.pv-hero__media { order: -1; }
	.pv-grid--3 { grid-template-columns: 1fr 1fr; }
	.pv-footer__grid { grid-template-columns: 1fr 1fr; }

	.pv-nav-toggle { display: flex; }
	.pv-nav { position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-160%); transition: transform .25s ease; padding: 8px 0 14px; }
	/* Mobile menu is a white panel — force dark text even on the transparent hero header */
	.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-menu a { color: var(--navy); }
	body.pv-nav-open .pv-nav { transform: translateY(0); }
	.pv-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.pv-menu li { border-top: 1px solid var(--line); }
	.pv-menu a { display: block; padding: 15px 24px; }
	.pv-menu a::after { display: none; }
	.pv-cart, .pv-account { padding: 15px 24px; }
	.pv-account + .pv-cart { margin-left: 0; }
	body.pv-nav-open .pv-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	body.pv-nav-open .pv-nav-toggle span:nth-child(2) { opacity: 0; }
	body.pv-nav-open .pv-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 640px) {
	body { font-size: 16px; }
	.pv-grid--products { grid-template-columns: 1fr 1fr; gap: 16px; }
	.pv-grid--3 { grid-template-columns: 1fr; }
	.pv-grid--posts3 { grid-template-columns: 1fr; }
	.pv-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.pv-hero__cta { flex-direction: column; align-items: stretch; }
	.pv-btn { width: 100%; }
	.pv-btn--text { width: auto; }
	.pv-hero__trust { width: 100%; }
	.pv-approach__card { padding: 28px 22px; }
	.pv-faq__panel { padding: 10px; }
	.pv-acc__q { font-size: 15px; padding: 14px 16px 14px 12px; }
}

/* =========================================================================
   v0.2.0 — inner pages: page hero, blog, search, 404, WooCommerce wrappers
   ========================================================================= */

/* ---- Page hero (every non-homepage template) ---- */
/* Live uses ONE shared photo hero on every inner page: page-hero-image.jpg under a
   106deg navy→violet gradient at .84. Replicated here (client: "same header with
   image"). The gradient is listed first so it paints OVER the photo. */
.pv-pagehero {
	background:
		linear-gradient(106deg, rgba(23,44,69,.84) 36%, rgba(25,0,88,.84) 73%),
		url('/wp-content/uploads/2025/10/page-hero-image.jpg') center/cover no-repeat;
	background-color: var(--navy); /* fallback if the photo is missing */
	color: #fff;
	min-height: 400px;
	display: flex; align-items: center;
	padding: 148px 0 56px; /* clears the fixed header */
}
.pv-pagehero__title {
	font-family: var(--head); font-weight: 700; color: #fff;
	font-size: clamp(30px, 4.2vw, 46px); line-height: 1.15; margin: 0;
	max-width: 20ch;
}
.pv-pagehero__sub {
	margin: 12px 0 0; max-width: 62ch;
	font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.78);
}
.pv-crumbs {
	font-size: 13px; letter-spacing: .02em; margin: 0 0 14px;
	color: rgba(255,255,255,.6);
}
.pv-crumbs a { color: rgba(255,255,255,.82); text-decoration: none; }
.pv-crumbs a:hover { color: var(--teal); }
.pv-crumbs span { margin: 0 8px; }
.pv-crumbs > span:last-child { margin: 0; color: #fff; }

/* A page hero already provides the header offset, so cancel the generic one. */
body:not(.pv-has-hero) .pv-main > .pv-pagehero:first-child { margin-top: calc(var(--pv-nav-h) * -1); }

/* ---- Blog grid ----
   Card styling itself lives with the homepage blog band above; archive, search
   and related-posts reuse the identical card so the two never drift. */
.pv-grid--posts { display: grid; gap: 30px 26px; grid-template-columns: repeat(3, 1fr); }
.pv-post__media--empty { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-soft), #e9eef2); }
.pv-post__title { font-family: var(--head); font-size: 20px; font-weight: 600; line-height: 1.35; margin: 0 0 10px; color: #333; }
.pv-post__title a { color: #333; text-decoration: none; }
.pv-post__title a:hover { color: var(--purple); }

/* ---- Single post ---- */
.pv-article { max-width: 760px; margin: 0 auto; }
.pv-article__meta {
	display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
	font-size: 13px; color: var(--muted); margin-bottom: 22px;
}
.pv-article__figure { margin: 0 0 32px; border-radius: var(--radius); overflow: hidden; }
.pv-article__figure img { width: 100%; height: auto; display: block; }

/* ---- Search ---- */
.pv-searchform { display: flex; gap: 10px; max-width: 560px; }
.pv-searchform__input {
	flex: 1 1 auto; font-family: var(--body); font-size: 15px;
	padding: 13px 18px; border: 1px solid var(--line); border-radius: 999px;
	background: #fff; color: var(--ink); min-width: 0;
}
.pv-searchform__input:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: transparent; }
.pv-searchform-wrap { margin-bottom: 34px; }
.pv-404__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---- Pagination ---- */
.pv-main .pagination, .pv-main .navigation.pagination { margin-top: 44px; }
.pv-main .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pv-main .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 12px;
	border: 1px solid var(--line); border-radius: 999px;
	font-family: var(--head); font-weight: 600; font-size: 14px;
	color: var(--navy); text-decoration: none; background: #fff;
}
.pv-main .page-numbers:hover { border-color: var(--teal); color: var(--teal-d); }
.pv-main .page-numbers.current { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---- Prose ---- */
.pv-prose--narrow { max-width: 760px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.pv-grid--posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.pv-pagehero { padding: 116px 0 40px; }
	.pv-grid--posts { grid-template-columns: 1fr; gap: 20px; }
	.pv-searchform { flex-direction: column; }
	.pv-searchform__input, .pv-searchform__submit { width: 100%; }
}

/* =========================================================================
   Shop archive + single product
   ========================================================================= */

/* ---- Shop layout ---- */
.pv-shop__layout { display: flex; gap: 40px; align-items: flex-start; }
.pv-shop__filters { flex: 0 0 270px; position: sticky; top: 104px; }
.pv-shop__main { flex: 1 1 auto; min-width: 0; }
.pv-shop__main--full { flex-basis: 100%; }
.pv-shop__count { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.pv-shop__empty { color: var(--muted); }
/* Gaps measured off live via CDP 2026-08-10: shop 30/20, related 40/20 (row/column). */
.pv-grid--shop { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
.pv-grid--related { grid-template-columns: repeat(4, 1fr); gap: 40px 20px; }

/* ---- PDP ---- */
.pv-pdp__top { display: flex; gap: 44px; align-items: flex-start; }
.pv-pdp__gallery { flex: 1 1 50%; min-width: 0; position: sticky; top: 104px; }
.pv-pdp__summary { flex: 1 1 50%; min-width: 0; }
.pv-pdp__figure,
.pv-pdp .woocommerce-product-gallery__image {
	border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff;
}
.pv-pdp__figure img,
.pv-pdp .woocommerce-product-gallery img { width: 100%; height: auto; display: block; }
.pv-pdp .flex-control-thumbs { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 14px 0 0; padding: 0; }
.pv-pdp .flex-control-thumbs li { width: calc(25% - 8px); }
.pv-pdp .flex-control-thumbs img { border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }

.pv-pdp__title { font-family: var(--head); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1.2; margin: 0 0 10px; }
.pv-pdp__price { font-family: var(--head); font-size: 24px; font-weight: 600; color: var(--purple); margin: 0 0 14px; }
.pv-pdp__price .pv-price { color: var(--purple); }
.pv-pdp__sku { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.pv-pdp__sku span { font-weight: 700; color: var(--navy); }
.pv-pdp__note-staging {
	font-size: 13px; color: var(--muted); background: var(--bg-soft);
	border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
}
.pv-pdp__cart { margin: 0 0 26px; }

/* Section headings with the underline rule used across the live PDP */
.pv-pdp__h {
	font-family: var(--head); font-size: 22px; font-weight: 600; color: var(--navy);
	margin: 30px 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.pv-pdp__desc { font-size: 15px; }

/* Product notes */
.pv-notes { display: grid; gap: 14px; }
.pv-note {
	border: 1px solid var(--line); border-radius: 12px; padding: 18px 16px;
	box-shadow: 0 2px 10px rgba(2,2,2,.06); background: #fff;
}
.pv-note__title { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.pv-note__body { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* RUO safety band */
.pv-ruo { margin-top: 46px; }
.pv-ruo__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pv-ruo__list li { position: relative; padding-left: 20px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.pv-ruo__list li::before { content: "–"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* WooCommerce add-to-cart, restyled to match the design system */
/* Live spec: qty 50×40 with a #A5A4B0 hairline; add-to-cart teal, radius 8, 16px/500. */
.pv-pdp .quantity input.qty {
	width: 50px; height: 40px; text-align: center; border: 1px solid #A5A4B0;
	border-radius: 8px; font-family: var(--body); font-size: 15px; margin-right: 10px;
}
.pv-pdp .single_add_to_cart_button,
.pv-woo .button, .pv-woo button.button {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--body); font-weight: 500; font-size: 16px; min-height: 40px;
	background: var(--teal); color: #fff; border: 0; border-radius: 8px;
	padding: 7px 30px; cursor: pointer; transition: background .2s ease;
}
.pv-pdp .single_add_to_cart_button:hover,
.pv-woo .button:hover { background: var(--purple); color: #fff; }
.pv-pdp .variations { margin-bottom: 16px; }
.pv-badge--sale {
	display: inline-block; background: var(--purple); color: #fff; font-family: var(--head);
	font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .03em;
}

/* Cart / account / checkout — WooCommerce templates inside our shell */
.pv-woo { padding-bottom: 20px; }
.pv-woo .woocommerce-message, .pv-woo .woocommerce-info, .pv-woo .woocommerce-error {
	border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-soft);
	padding: 14px 16px; margin-bottom: 20px; list-style: none;
}
.pv-woo form .form-row { margin-bottom: 16px; }
.pv-woo .input-text, .pv-woo input[type="text"], .pv-woo input[type="email"],
.pv-woo input[type="password"], .pv-woo input[type="tel"], .pv-woo select, .pv-woo textarea {
	width: 100%; font-family: var(--body); font-size: 15px; padding: 13px 16px;
	border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
}
.pv-woo .input-text:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: transparent; }
.pv-woo label { font-size: 14px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 6px; }
/* The live cart's "Return to shop" button inherits no styling — fix it here. */
.pv-woo .wc-backward { background: var(--navy); color: #fff; }
.pv-woo .wc-backward:hover { background: var(--teal); color: #05201d; }
/* Constrain the account form: live runs it at the full 1300px, which is unusable. */
.woocommerce-account .pv-woo .woocommerce { max-width: 560px; }
.woocommerce-account .pv-woo .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }

@media (max-width: 1024px) {
	.pv-shop__layout { flex-direction: column; }
	.pv-shop__filters { position: static; flex-basis: auto; width: 100%; }
	.pv-grid--shop { grid-template-columns: repeat(2, 1fr); }
	.pv-grid--related { grid-template-columns: repeat(2, 1fr); }
	.pv-pdp__top { flex-direction: column; gap: 30px; }
	.pv-pdp__gallery, .pv-pdp__summary { width: 100%; flex-basis: auto; }
	.pv-pdp__gallery { position: static; top: auto; }
}
@media (max-width: 640px) {
	.pv-grid--shop, .pv-grid--related { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.pv-pdp__title { font-size: 25px; }
	.pv-pdp__price { font-size: 21px; }
	.pv-notes { gap: 12px; }
}

/* =========================================================================
   Inner pages — About, Contact, COA, shop filters
   (appended 2026-07-21)
   ========================================================================= */

/* Shared bits these templates rely on ------------------------------------ */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0; border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}
.pv-lede { color: var(--muted); font-size: 18px; max-width: 62ch; }
.pv-eyebrow--onnavy { color: var(--teal); }
/* (.pv-btn--teal is defined once, with the rest of the button kit above.) */
.pv-btn--outline { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.pv-btn--outline:hover { border-color: var(--teal); color: var(--navy); }
.pv-btn--block { width: 100%; justify-content: center; }
.pv-icon { width: 22px; height: 22px; }

/* Bands ------------------------------------------------------------------ */
.pv-band--navy { background: var(--navy); color: rgba(255,255,255,.82); }
.pv-band--navy h2, .pv-band--navy h3 { color: #fff; }
.pv-band--navy .pv-lede { color: rgba(255,255,255,.72); }
.pv-band--grey { background: var(--bg-soft); }
.pv-band__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.pv-band__head--left { margin: 0; text-align: left; }
.pv-band__cta { text-align: center; margin-top: 44px; }

/* About — intro + collage ------------------------------------------------ */
.pv-about__introgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.pv-about__points { list-style: none; display: grid; gap: 18px; margin: 28px 0 32px; }
.pv-about__points li { display: grid; gap: 2px; padding-left: 30px; position: relative; }
/* Teal check, drawn in CSS so it costs no request and no icon font. */
.pv-about__points li::before {
	content: "";
	position: absolute; left: 0; top: 7px;
	width: 16px; height: 9px;
	border-left: 2.5px solid var(--teal);
	border-bottom: 2.5px solid var(--teal);
	transform: rotate(-45deg);
}
.pv-about__points strong { font-family: var(--head); color: var(--navy); font-size: 17px; }
.pv-about__points span { color: var(--muted); font-size: 16px; }

/* Live layers a second photo over the first with an 8px white border. Same idea,
   but sized in aspect-ratio so it can't shift as the images load. */
.pv-about__collage { position: relative; padding-bottom: 56px; padding-right: 48px; }
.pv-about__collage-back {
	width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.pv-about__collage-front {
	position: absolute; right: 0; bottom: 0;
	width: 56%; aspect-ratio: 3 / 2; object-fit: cover;
	border: 8px solid #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

/* About — icon boxes ----------------------------------------------------- */
.pv-grid--iconboxes { grid-template-columns: repeat(4, 1fr); }
.pv-iconbox {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.pv-iconbox:hover { border-color: var(--purple); background: rgba(255,255,255,.07); transform: translateY(-4px); }
.pv-iconbox__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; margin-bottom: 18px;
	border-radius: 12px;
	background: rgba(31,198,185,.14);
	color: var(--teal);
}
.pv-iconbox__title { font-size: 17px; margin: 0 0 8px; }
.pv-iconbox__body { font-size: 15px; color: rgba(255,255,255,.68); margin: 0; }

/* About — approach ------------------------------------------------------- */
.pv-about__approach { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pv-about__approachcards { display: grid; gap: 20px; }
.pv-about__approachcards .pv-card { padding: 28px; box-shadow: var(--shadow); }
.pv-about__approachcards .pv-card__title { font-size: 19px; margin: 0 0 8px; }
.pv-about__approachcards .pv-card__body { color: var(--muted); font-size: 16px; margin: 0; }
.pv-about__approachcards .pv-card:hover { transform: none; }

/* Numbered FAQ (About only — homepage FAQ stays unnumbered) --------------- */
.pv-accordion--numbered { counter-reset: pvfaq; }
.pv-accordion--numbered .pv-acc__q > span::before {
	counter-increment: pvfaq;
	content: counter(pvfaq) ". ";
	color: var(--teal-d);
	font-variant-numeric: tabular-nums;
}

/* Contact ---------------------------------------------------------------- */
.pv-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pv-contact__rows { list-style: none; display: grid; gap: 22px; margin: 32px 0 0; }
.pv-contact__row { display: flex; gap: 16px; align-items: flex-start; }
.pv-contact__icon {
	flex: none;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: rgba(31,198,185,.12);
	color: var(--teal-d);
}
.pv-contact__detail { display: grid; gap: 2px; }
.pv-contact__label { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.pv-contact__detail a { font-family: var(--head); font-weight: 600; font-size: 18px; color: var(--navy); }
.pv-contact__detail a:hover { color: var(--purple); }
.pv-contact__detail address { font-style: normal; font-family: var(--head); font-weight: 600; font-size: 18px; color: var(--navy); line-height: 1.4; }

.pv-contact__formcard {
	background: var(--navy);
	border-radius: var(--radius);
	padding: 40px;
	box-shadow: var(--shadow-lg);
}
.pv-contact__formtitle { color: #fff; font-size: 26px; margin: 0 0 10px; }
.pv-contact__formintro { color: rgba(255,255,255,.66); font-size: 15px; margin: 0 0 26px; }

/* Styles the client's CF7 fields as well as the staging preview form. */
.pv-contact__formcard input[type="text"],
.pv-contact__formcard input[type="email"],
.pv-contact__formcard input[type="tel"],
.pv-contact__formcard textarea {
	width: 100%;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 12px;
	padding: 14px 16px;
	color: #fff;
	font: inherit;
	font-size: 16px; /* 16px min — anything smaller makes iOS zoom the viewport on focus. */
	transition: border-color .16s ease, background .16s ease;
}
.pv-contact__formcard input::placeholder,
.pv-contact__formcard textarea::placeholder { color: rgba(255,255,255,.45); }
.pv-contact__formcard input:focus,
.pv-contact__formcard textarea:focus {
	outline: none;
	border-color: var(--teal);
	background: rgba(255,255,255,.10);
}
.pv-contact__formcard textarea { resize: vertical; min-height: 130px; }
/* 🛑 The client's CF7 form pairs two fields inside ONE <p>, separated by a <br>,
   inside `.form-row.two-columns`. Left alone that gives alternating gaps — a small
   line-break between First/Last and a bigger paragraph margin before the next row,
   which is the "unequal spacing" complaint. Live renders those pairs side by side
   (282px each, 20px gutter), so honour the markup's intent: the <br> is neutralised
   and each pair becomes a real two-column grid with one uniform 20px gap. */
.pv-contact__formcard .wpcf7-form p { margin: 0 0 20px; }
.pv-contact__formcard .contact-form-grid { display: grid; gap: 20px; }
.pv-contact__formcard .form-row p { margin: 0; }
.pv-contact__formcard .form-row.two-columns p { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pv-contact__formcard .form-row.two-columns p br { display: none; }
.pv-contact__formcard .wpcf7-form-control-wrap { display: block; }
.pv-contact__formcard .wpcf7-submit,
.pv-contact__formcard .pv-btn {
	background: var(--teal); color: #05201d;
	border: 0; border-radius: 999px;
	padding: 14px 30px;
	font-family: var(--head); font-weight: 700; font-size: 15px;
	cursor: pointer;
}
.pv-contact__formcard .wpcf7-submit:hover { background: var(--teal-d); }
.pv-contact__formcard .wpcf7-not-valid-tip { color: #ffb4b4; font-size: 13px; }
.pv-contact__formcard .wpcf7-response-output { color: #fff; border-color: rgba(255,255,255,.3); border-radius: 10px; font-size: 14px; }

.pv-contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pv-contact__form .pv-field { grid-column: 1 / -1; }
.pv-contact__form .pv-field--half { grid-column: auto; }
.pv-contact__form label { display: block; }
.pv-contact__form .pv-field > label { color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 6px; }
.pv-contact__preview-note { grid-column: 1 / -1; color: rgba(255,255,255,.5); font-size: 13px; margin: 0; }

/* COA -------------------------------------------------------------------- */
.pv-coa__intro { margin-bottom: 36px; }
.pv-coa__bar {
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px; flex-wrap: wrap;
	margin-bottom: 32px;
}
.pv-coa__search { flex: 1 1 320px; max-width: 420px; }
.pv-coa__search input {
	width: 100%;
	border: 1px solid var(--line); border-radius: 12px;
	padding: 13px 16px; font: inherit; font-size: 16px; color: var(--navy);
	background: #fff;
}
.pv-coa__search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,198,185,.18); }
.pv-coa__count { color: var(--muted); font-size: 14px; margin: 0; }

.pv-grid--coa { grid-template-columns: repeat(3, 1fr); }
.pv-coa {
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pv-coa:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pv-coa__scan { position: relative; display: block; background: var(--bg-soft); }
/* Scans are portrait; a fixed ratio keeps every card the same height and CLS at 0. */
.pv-coa__img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; object-position: top center; }
.pv-coa__zoom {
	position: absolute; inset: auto 0 0 0;
	background: linear-gradient(to top, rgba(23,44,69,.88), rgba(23,44,69,0));
	color: #fff; font-family: var(--head); font-size: 13px; font-weight: 600;
	padding: 28px 16px 12px;
	opacity: 0; transition: opacity .18s ease;
}
.pv-coa__scan:hover .pv-coa__zoom, .pv-coa__scan:focus-visible .pv-coa__zoom { opacity: 1; }
.pv-coa__body { padding: 18px 20px 20px; display: grid; gap: 12px; }
.pv-coa__title { font-size: 17px; margin: 0; color: var(--navy); }
.pv-coa__meta { display: flex; gap: 24px; margin: 0; }
.pv-coa__meta div { display: grid; gap: 1px; }
.pv-coa__meta dt { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.pv-coa__meta dd { margin: 0; font-family: var(--head); font-size: 14px; font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }
.pv-coa__pages { display: flex; flex-wrap: wrap; gap: 6px; }
.pv-coa__pages a {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 30px; height: 30px; padding: 0 8px;
	border: 1px solid var(--line); border-radius: 8px;
	font-size: 13px; font-weight: 600; color: var(--navy);
	font-variant-numeric: tabular-nums;
}
.pv-coa__pages a:hover { border-color: var(--teal); background: rgba(31,198,185,.08); color: var(--navy); }
.pv-coa__single { color: var(--muted); font-size: 13px; margin: 0; }
.pv-coa__empty { color: var(--muted); text-align: center; padding: 40px 0; }

/* Shop filter rail ------------------------------------------------------- */
.pv-shop__filterwrap {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 6px 20px 20px;
}
.pv-shop__filtertoggle {
	display: flex; align-items: center; gap: 8px;
	list-style: none; cursor: pointer;
	font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--navy);
	padding: 14px 0;
}
.pv-shop__filtertoggle::-webkit-details-marker { display: none; }
.pv-shop__filtertoggle::after {
	content: ""; margin-left: auto;
	width: 8px; height: 8px;
	border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
	transform: rotate(45deg); transition: transform .2s ease;
}
.pv-shop__filterwrap[open] .pv-shop__filtertoggle::after { transform: rotate(-135deg); }
.pv-shop__filterdot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

.pv-filters { display: grid; gap: 24px; padding-top: 6px; }
.pv-filters__group { display: grid; gap: 10px; }
.pv-filters__label { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--navy); }
.pv-filters__searchwrap { position: relative; }
.pv-filters__searchicon {
	position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
	color: var(--muted); pointer-events: none;
}
.pv-filters__searchicon .pv-icon { width: 18px; height: 18px; }
.pv-filters input[type="search"],
.pv-filters input[type="number"] {
	width: 100%;
	border: 1px solid var(--line); border-radius: 10px;
	padding: 11px 14px; font: inherit; font-size: 16px; color: var(--navy);
	background: #fff;
}
.pv-filters input[type="search"] { padding-left: 38px; }
.pv-filters input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,198,185,.18); }
.pv-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 15px; color: #33414f; }
.pv-check input { width: 18px; height: 18px; accent-color: var(--teal-d); }
.pv-filters__range { display: flex; align-items: center; gap: 10px; }
.pv-filters__range label { flex: 1; min-width: 0; }
.pv-filters__dash { color: var(--muted); }
.pv-filters__actions { display: grid; gap: 12px; justify-items: center; }
.pv-filters__clear { font-size: 14px; color: var(--muted); text-decoration: underline; }
.pv-filters__clear:hover { color: var(--navy); }
.pv-shop__empty { display: grid; gap: 16px; justify-items: start; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1023px) {
	.pv-about__introgrid,
	.pv-about__approach,
	.pv-contact { grid-template-columns: 1fr; gap: 44px; }
	.pv-grid--iconboxes { grid-template-columns: repeat(2, 1fr); }
	.pv-grid--coa { grid-template-columns: repeat(2, 1fr); }
	.pv-contact__formcard { padding: 32px 26px; }
}
@media (max-width: 767px) {
	.pv-grid--iconboxes { grid-template-columns: 1fr; }
	.pv-grid--coa { grid-template-columns: 1fr; }
	.pv-contact__form { grid-template-columns: 1fr; }
	.pv-contact__form .pv-field--half { grid-column: 1 / -1; }
	.pv-about__collage { padding-bottom: 40px; padding-right: 30px; }
	.pv-about__collage-front { width: 62%; border-width: 6px; }
	.pv-coa__bar { flex-direction: column; align-items: stretch; }
	.pv-coa__search { max-width: none; }
}

/* ── Trustpilot badge ────────────────────────────────────────────────────────
   Replaces the client's combined logo+rating PNG (2560x725, ~500KB, white text
   that vanished on light backgrounds). Pure markup: crisp at any size, legible
   on both the transparent-over-hero header and the solid white scrolled one. */
.pv-trust { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; line-height: 1; }
.pv-trust__label { font: 700 13px/1 var(--head); color: var(--navy); transition: color .25s ease; }
.pv-trust__stars { display: inline-flex; gap: 3px; }
.pv-trust__star { width: 17px; height: 17px; border-radius: 2px; background: #00b67a; display: grid; place-items: center; }
.pv-trust__star--half { background: linear-gradient(90deg, #00b67a 50%, #dcdce6 50%); }
.pv-trust__star--empty { background: #dcdce6; }
.pv-trust__star svg { width: 12px; height: 12px; fill: #fff; }
.pv-trust__mark { display: inline-flex; align-items: center; gap: 3px; font: 700 13px/1 var(--head); color: var(--navy); transition: color .25s ease; }
.pv-trust__mark svg { width: 15px; height: 15px; fill: #00b67a; }
a.pv-trust:hover .pv-trust__mark, a.pv-trust:hover .pv-trust__label { color: var(--purple); }
span.pv-trust { cursor: default; }

/* Header placement: grouped with the logo, separated by a hairline rule. */
.pv-header__brand { display: inline-flex; align-items: center; gap: 16px; }
.pv-trust--header { padding-left: 16px; border-left: 1px solid var(--line); transition: border-color .25s ease; }

/* Over the hero the header is transparent and its text is white — match it. */
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-trust__mark,
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-trust__label { color: #fff; }
.pv-has-hero .pv-header:not(.pv-header--scrolled) .pv-trust--header { border-left-color: rgba(255,255,255,.35); }

/* The nav already carries 7 items plus a cart; below this the badge would crowd
   the logo, so drop it rather than let the header wrap. */
@media (max-width: 1280px) {
	.pv-trust--header { display: none; }
}

/* ── Cart page ───────────────────────────────────────────────────────────────
   The cart is an ordinary page holding [woocommerce_cart], so it renders stock
   WooCommerce markup. We deliberately do NOT override cart.php — the layout is
   achievable from these classes alone, which keeps us off WC's template-version
   treadmill. Only cart-empty.php is overridden, because that needed new markup. */

/* Empty state — was a bare <p> and a raw underlined link. */
.pv-cartempty { text-align: center; max-width: 460px; margin: 8px auto 24px; }
.pv-cartempty__icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; background: var(--bg-soft); color: var(--navy); }
.pv-cartempty__icon svg { width: 32px; height: 32px; }
.pv-cartempty__title { font-family: var(--head); font-weight: 700; font-size: 26px; color: var(--navy); margin: 0 0 10px; }
.pv-cartempty__text { color: var(--muted); margin: 0 0 24px; }
.pv-cartempty .return-to-shop { margin: 0; }

/* Two columns: items left, totals right — collapses to one on tablet. */
.woocommerce-cart .pv-woo > .woocommerce { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; align-items: start; }
/* WooCommerce always emits .woocommerce-notices-wrapper as the FIRST child, so
   without this it silently occupies column 1 and shoves the items form into the
   380px totals column. Anything that isn't the form or the totals spans full width. */
.woocommerce-cart .pv-woo > .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-cart .pv-woo > .woocommerce > .pv-cartempty { grid-column: 1 / -1; }
/* With an empty cart there is no totals column to reserve. */
.woocommerce-cart .pv-woo > .woocommerce:not(:has(.woocommerce-cart-form)) { grid-template-columns: 1fr; }
/* Let a wide items table scroll inside its own column instead of overflowing the page. */
.woocommerce-cart .woocommerce-cart-form { min-width: 0; grid-column: 1; }
.woocommerce-cart .cart-collaterals { grid-column: 2; }
@media (max-width: 1024px) {
	.woocommerce-cart .woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals { grid-column: 1; }
}

/* Items table */
.woocommerce-cart .woocommerce-cart-form__contents-wrap { overflow-x: auto; }
.woocommerce-cart .woocommerce-cart-form__contents { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.woocommerce-cart .woocommerce-cart-form__contents th { font-family: var(--head); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 16px 18px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.woocommerce-cart .woocommerce-cart-form__contents td { padding: 18px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.woocommerce-cart .woocommerce-cart-form__contents tr:last-child td { border-bottom: 0; }
.woocommerce-cart .product-thumbnail img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; display: block; }
.woocommerce-cart .product-name a { font-family: var(--head); font-weight: 600; color: var(--navy); }
.woocommerce-cart .product-name a:hover { color: var(--purple); }
.woocommerce-cart .product-price, .woocommerce-cart .product-subtotal { font-weight: 700; color: var(--navy); white-space: nowrap; }
.woocommerce-cart .product-remove a.remove { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); color: var(--muted); font-size: 18px; line-height: 1; text-decoration: none; transition: background .2s ease, color .2s ease; }
.woocommerce-cart .product-remove a.remove:hover { background: #fdecec; color: #c0392b; }
.woocommerce-cart .quantity .qty { width: 68px; padding: 9px 8px; text-align: center; border: 1px solid var(--line); border-radius: 8px; font: 600 15px/1 var(--body); }

/* Coupon + update row */
.woocommerce-cart td.actions { padding: 18px; background: var(--bg-soft); }
.woocommerce-cart td.actions .coupon { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.woocommerce-cart td.actions .coupon .input-text { flex: 1 1 190px; min-width: 0; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font: 400 15px/1.2 var(--body); }
.woocommerce-cart td.actions .coupon .input-text:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,198,185,.18); }
.woocommerce-cart td.actions .button { flex: 0 0 auto; width: auto; padding: 11px 20px; border: 0; border-radius: 8px; background: var(--navy); color: #fff; font: 700 14px/1 var(--head); cursor: pointer; transition: background .2s ease, color .2s ease; }
.woocommerce-cart td.actions .button:hover:not(:disabled) { background: var(--purple); }
.woocommerce-cart td.actions .button:disabled { opacity: .45; cursor: not-allowed; }
.woocommerce-cart td.actions button[name="update_cart"] { background: transparent; color: var(--navy); border: 1px solid var(--line); float: right; }
.woocommerce-cart td.actions button[name="update_cart"]:hover:not(:disabled) { background: #fff; border-color: var(--navy); color: var(--navy); }

/* Totals card */
.woocommerce-cart .cart-collaterals { width: 100%; }
.woocommerce-cart .cart_totals { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 22px 24px; box-shadow: var(--shadow); position: sticky; top: 104px; }
.woocommerce-cart .cart_totals h2 { font-family: var(--head); font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 14px; }
.woocommerce-cart .cart_totals table { width: 100%; border-collapse: collapse; }
.woocommerce-cart .cart_totals th { text-align: left; font: 500 14px/1.4 var(--body); color: var(--muted); padding: 11px 0; border-bottom: 1px solid var(--line); }
.woocommerce-cart .cart_totals td { text-align: right; font: 600 15px/1.4 var(--body); color: var(--navy); padding: 11px 0; border-bottom: 1px solid var(--line); }
.woocommerce-cart .cart_totals tr th, .woocommerce-cart .cart_totals tr td { background: none; vertical-align: top; }
.woocommerce-cart .cart_totals .woocommerce-shipping-destination, .woocommerce-cart .cart_totals .woocommerce-shipping-calculator { font-size: 13px; }
.woocommerce-cart .cart_totals .order-total th, .woocommerce-cart .cart_totals .order-total td { border-bottom: 0; font-size: 18px; font-weight: 800; color: var(--navy); padding-top: 14px; }
.woocommerce-cart .wc-proceed-to-checkout { margin-top: 18px; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button { display: block; width: 100%; text-align: center; padding: 15px 20px; border-radius: 12px; background: var(--teal); color: #05201d; font: 700 16px/1 var(--head); text-decoration: none; transition: background .2s ease, color .2s ease; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover { background: var(--purple); color: #fff; }
.woocommerce-cart .shipping-calculator-button { color: var(--teal-d); font-weight: 600; }

@media (max-width: 1024px) {
	.woocommerce-cart .pv-woo > .woocommerce { grid-template-columns: 1fr; }
	.woocommerce-cart .cart_totals { position: static; }
}
@media (max-width: 640px) {
	.woocommerce-cart .woocommerce-cart-form__contents thead { display: none; }
	.woocommerce-cart .woocommerce-cart-form__contents tr { display: grid; grid-template-columns: 64px 1fr auto; gap: 6px 12px; padding: 14px; border-bottom: 1px solid var(--line); align-items: center; }
	.woocommerce-cart .woocommerce-cart-form__contents td { border: 0; padding: 0; }
	.woocommerce-cart .woocommerce-cart-form__contents td.product-thumbnail { grid-row: span 3; }
	.woocommerce-cart .woocommerce-cart-form__contents td.product-remove { grid-column: 3; grid-row: 1; }
	.woocommerce-cart .woocommerce-cart-form__contents td.actions { grid-column: 1 / -1; padding: 14px; }
	/* The header row is hidden on mobile, so price and subtotal would read as two
	   bare numbers. WooCommerce puts the column name in data-title — surface it. */
	.woocommerce-cart .woocommerce-cart-form__contents td.product-price::before,
	.woocommerce-cart .woocommerce-cart-form__contents td.product-subtotal::before {
		content: attr(data-title) ": "; font: 500 12px/1 var(--body); color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-right: 6px;
	}
	.woocommerce-cart td.actions button[name="update_cart"] { float: none; width: 100%; margin-top: 10px; }
}

/* CheckoutWC hooks woocommerce_cart_is_empty and injects its SIDE-CART empty
   message into the cart page too, duplicating our empty state. Hide it here
   only — the side cart still needs the element, so don't unhook it. */
.woocommerce-cart .pv-woo #cfw_empty_side_cart_message { display: none; }

/* =========================================================================
   Variation swatches (single product) — live's pill buttons
   Live spec: 40px tall, radius 40px, white, 16px/400, 4px gutter, grey ring;
   the selected pill takes a dark 2px ring.
   ========================================================================= */
.pv-variation--enhanced > select { display: none; }
.pv-swatches { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.pv-swatch {
	min-width: 95px; min-height: 40px; padding: 10px 20px;
	background: #fff; color: var(--ink); border: 1px solid #D8DDE3; border-radius: 40px;
	font: 400 16px/1.2 var(--body); cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.pv-swatch:hover:not(:disabled) { border-color: var(--purple); color: var(--purple); }
.pv-swatch:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.pv-swatch.is-selected { border: 2px solid var(--ink); padding: 9px 19px; font-weight: 600; }
.pv-swatch.is-unavailable, .pv-swatch:disabled {
	opacity: .4; cursor: not-allowed; text-decoration: line-through; border-color: var(--line);
}
.pv-variation__chosen { font-weight: 400; color: var(--muted); }

/* WC's variations table reads as stacked rows, not a table, in this design.
   Scoped to both wrappers: the PDP uses .pv-pdp, the shortcode Woo pages .pv-woo. */
.pv-pdp table.variations, .pv-pdp table.variations tbody, .pv-pdp table.variations tr,
.pv-pdp table.variations th, .pv-pdp table.variations td,
.pv-woo table.variations, .pv-woo table.variations tbody, .pv-woo table.variations tr,
.pv-woo table.variations th, .pv-woo table.variations td { display: block; width: auto; padding: 0; border: 0; text-align: left; }
.pv-pdp table.variations tr + tr, .pv-woo table.variations tr + tr { margin-top: 18px; }
.pv-pdp table.variations .label, .pv-woo table.variations .label {
	margin-bottom: 10px; font-family: var(--body); font-size: 14px; font-weight: 700; color: #333;
}
.pv-pdp table.variations .label label, .pv-woo table.variations .label label { display: inline; font-weight: 700; }
.pv-pdp .reset_variations, .pv-woo .reset_variations { display: inline-block; margin-top: 10px; color: var(--teal-d); font-size: 12px; }

/* Contact form spam check (inc/contact-captcha.php) */
.pv-captcha p { display: grid; grid-template-columns: 1fr 110px; gap: 14px; align-items: center; }
.pv-captcha__label { color: rgba(255,255,255,.72); font-size: 14px; }
.pv-contact__formcard .pv-captcha__input { text-align: center; }
@media (max-width: 480px) {
	.pv-captcha p { grid-template-columns: 1fr; gap: 8px; }
}

/* ===========================================================================
   Client round, 2026-08-10 (post go-live)
   =========================================================================== */

/* ---- My Account -----------------------------------------------------------
   WooCommerce ships the login as a bare stack of `<p class="form-row">`, which
   inherited almost nothing from this theme. Give it the same card treatment the
   rest of the site uses. */
.woocommerce-account .pv-woo .woocommerce-form-login {
	max-width: 560px; background: #fff; padding: 28px;
	border: 1px solid rgba(0,0,0,.12); border-radius: var(--radius);
}
.woocommerce-account .pv-woo .woocommerce-form-login > p:last-of-type { margin-bottom: 0; }
.woocommerce-account .pv-woo .woocommerce-form-login label {
	display: block; margin-bottom: 8px;
	font: 600 14px/1.3 var(--body); color: var(--navy);
}
.woocommerce-account .pv-woo .woocommerce-form-login .input-text {
	width: 100%; padding: 13px 16px; background: #fff; color: var(--ink);
	border: 1px solid rgba(0,0,0,.2); border-radius: var(--radius);
	font: 400 15px/1.2 var(--body);
}
.woocommerce-account .pv-woo .woocommerce-form-login .input-text:focus-visible {
	outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal);
}
.woocommerce-account .pv-woo .woocommerce-form-login .required { color: var(--purple); }

/* 🛑 "Remember me" was INVISIBLE, and not because of this theme: a snippet in the site
   head ships `.woocommerce-form-login .woocommerce-form-login__rememberme{display:none
   !important}`. That left an empty gap above the Log in button — what the client saw as
   "the checkbox doesn't appear". Overriding it needs both `!important` and a higher
   specificity than (0,2,0), hence the `label.` type qualifier. If hiding it was
   deliberate, delete this one rule and the snippet takes over again. */
.woocommerce-account .pv-woo label.woocommerce-form-login__rememberme {
	display: inline-flex !important; align-items: center; gap: 10px;
	margin: 0 0 18px; font-weight: 400;
}
.woocommerce-account .pv-woo .woocommerce-form-login__rememberme input[type="checkbox"] {
	flex: none; width: 16px; height: 16px; margin: 0;
	accent-color: var(--teal); cursor: pointer;
}
.woocommerce-account .pv-woo .woocommerce-form-login__rememberme span {
	font: 400 14px/1.2 var(--body); color: var(--muted);
}
.woocommerce-account .pv-woo .woocommerce-form-login__submit {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 14px 28px; border: 0; border-radius: var(--radius-sm); cursor: pointer;
	background: var(--teal); color: #fff; font: 700 15px/1 var(--body);
}
.woocommerce-account .pv-woo .woocommerce-form-login__submit:hover { background: var(--purple); }
.woocommerce-account .pv-woo .lost_password { margin: 14px 0 0; }
.woocommerce-account .pv-woo .lost_password a { font-size: 14px; color: var(--teal-d); }

/* WooCommerce wraps the password field client-side and injects a `.show-password-input`
   toggle whose eye icon lives in woocommerce-general.css — which this theme dequeues. It
   was rendering as a small unstyled grey box under the password field. Give it a real
   icon and put it inside the field. */
.woocommerce-account .pv-woo .password-input { display: block; position: relative; }
.woocommerce-account .pv-woo .password-input .input-text { padding-right: 46px; }
.woocommerce-account .pv-woo .show-password-input {
	position: absolute; top: 50%; right: 14px; transform: translateY(-50%);
	width: 22px; height: 22px; padding: 0; border: 0; cursor: pointer;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
}
.woocommerce-account .pv-woo .show-password-input.display-password { opacity: .55; }

/* Remember me and Log in shared a line because WooCommerce puts them in one form-row.
   Give the button its own line. */
.woocommerce-account .pv-woo .woocommerce-form-login__submit { display: flex; width: 100%; }
