/*
Theme Name: WV 2026
Theme URI: https://woodstockvitamins.com
Author: Woodstock Vitamins
Description: Custom theme for Woodstock Vitamins
Version: 1.0.1
Requires at least: 6.4
Requires PHP: 8.0
License: Proprietary
Text Domain: wv-2026
*/

/* ═══════════════════════════════════════════
   @FONT-FACE — self-hosted from assets/fonts/
   ═══════════════════════════════════════════ */

/* General Grotesque — Light (300) */
@font-face {
  font-family: 'General Grotesque';
  src: url('assets/fonts/GeneralGrotesque-Light.woff2') format('woff2'),
       url('assets/fonts/GeneralGrotesque-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* General Grotesque — Regular (400) */
@font-face {
  font-family: 'General Grotesque';
  src: url('assets/fonts/GeneralGrotesque-Regular.woff2') format('woff2'),
       url('assets/fonts/GeneralGrotesque-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* General Grotesque — Demi / Semibold (600) */
@font-face {
  font-family: 'General Grotesque';
  src: url('assets/fonts/GeneralGrotesque-Demi.woff2') format('woff2'),
       url('assets/fonts/GeneralGrotesque-Demi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* General Grotesque — Bold (700) */
@font-face {
  font-family: 'General Grotesque';
  src: url('assets/fonts/GeneralGrotesque-Bold.woff2') format('woff2'),
       url('assets/fonts/GeneralGrotesque-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* General Grotesque Mono — Regular (400) */
@font-face {
  font-family: 'General Grotesque Mono';
  src: url('assets/fonts/GeneralGrotesqueMono-Regular.woff2') format('woff2'),
       url('assets/fonts/GeneralGrotesqueMono-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* General Grotesque Mono — Demi / Medium (500) */
@font-face {
  font-family: 'General Grotesque Mono';
  src: url('assets/fonts/GeneralGrotesqueMono-Demi.woff2') format('woff2'),
       url('assets/fonts/GeneralGrotesqueMono-Demi.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Office Times Round — Regular (400) */
@font-face {
  font-family: 'Office Times Round';
  src: url('assets/fonts/OfficeTimesRound-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   All CSS variables live in wv-tokens.css.
   That file is frozen — do not edit during builds.
   Load order handled by wp_enqueue_style dependency in functions.php.
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   F5 PRODUCT PILLS — global, used on article cards and learn hub
   ═══════════════════════════════════════════ */
.wv-f5-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wv-font-primary);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px 3px;
  border-radius: var(--wv-radius-pill);
  border: 1px solid;
  white-space: nowrap;
}
.wv-f5-pill--omega      { color: var(--wv-color-omega-main);     border-color: var(--wv-color-omega-main);     background: color-mix(in srgb, var(--wv-color-omega-main) 10%, var(--wv-color-background)); }
.wv-f5-pill--probiotic  { color: var(--wv-color-probiotic-main); border-color: var(--wv-color-probiotic-main); background: color-mix(in srgb, var(--wv-color-probiotic-main) 10%, var(--wv-color-background)); }
.wv-f5-pill--calcium-d  { color: var(--wv-color-calcium-main);   border-color: var(--wv-color-calcium-main);   background: color-mix(in srgb, var(--wv-color-calcium-main) 10%, var(--wv-color-background)); }
.wv-f5-pill--collagen   { color: var(--wv-color-collagen-main);  border-color: var(--wv-color-collagen-main);  background: color-mix(in srgb, var(--wv-color-collagen-main) 10%, var(--wv-color-background)); }
.wv-f5-pill--multi      { color: var(--wv-color-multi-main);     border-color: var(--wv-color-multi-main);     background: color-mix(in srgb, var(--wv-color-multi-main) 10%, var(--wv-color-background)); }

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--wv-font-primary);
  font-size: var(--wv-text-base);
  color: var(--wv-color-text-primary);
  background-color: var(--wv-color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.wv-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wv-header-height);
  background-color: var(--wv-color-background);
  z-index: 1000;
  transition: box-shadow var(--wv-transition-base);
}

/* Shift header below WP admin bar when logged in */
.admin-bar .wv-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .wv-header {
    top: 46px;
  }
}

.wv-header.wv-header--scrolled {
  box-shadow: var(--wv-shadow-header);
}

.wv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--wv-header-padding);
  gap: 58px;
}

/* ── Header Zones ── */
.wv-header__left,
.wv-header__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 250px;
  height: 32px;
}

/* ── Header Divider ── */
.wv-header__divider {
  height: 1px;
  background: rgba(42, 43, 20, 0.15);
}

/* ── Logo ── */
.wv-header__logo {
  display: block;
  width: 223px;
  height: 55px;
}

.wv-header__logo svg {
  width: 100%;
  height: 100%;
}

/* ── Quiz Button ── */
.wv-btn-quiz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wv-color-primary);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-size: var(--wv-text-sm);
  font-weight: var(--wv-weight-semibold);
  letter-spacing: -0.45px;
  line-height: 19px;
  border: 0;
  border-radius: var(--wv-radius-lg);
  padding: 6px 27px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--wv-transition-color);
}

.wv-btn-quiz:hover {
  background: var(--wv-color-primary-hover);
}

/* ── Nav Links ── */
.wv-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--wv-font-primary);
  font-size: var(--wv-text-sm);
  font-weight: var(--wv-weight-semibold);
  letter-spacing: -0.45px;
  line-height: 19px;
  color: var(--wv-color-text-link);
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0;
  transition: color var(--wv-transition-base);
}

.wv-nav-link:hover {
  color: var(--wv-color-text-link-hover);
}

.wv-nav-link svg {
  width: 9px;
  height: 9px;
  transition: transform var(--wv-transition-base);
}

.wv-nav-link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* ── Header Icons ── */
.wv-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  color: var(--wv-color-text-primary);
  position: relative;
  transition: color var(--wv-transition-base);
}

.wv-header-icon:hover {
  color: var(--wv-color-text-link-hover);
}

.wv-header-icon svg {
  width: 23px;
  height: 23px;
}

.wv-header-icon--cart svg {
  width: 19px;
  height: 19px;
}

.wv-header-icon--profile svg {
  width: 30px;
  height: 30px;
}

/* ── Cart Badge ── */
.wv-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wv-color-badge-bg);
  color: var(--wv-color-badge-text);
  font-size: 10px;
  font-weight: var(--wv-weight-semibold);
  line-height: 1;
  border-radius: var(--wv-radius-pill);
  padding: 0 4px;
}

.wv-cart-badge:empty {
  display: none;
}


/* ── Body offset for fixed header ── */
.wv-body-offset {
  padding-top: var(--wv-header-height);
}

/* ═══════════════════════════════════════════
   MEGA MENU
   ═══════════════════════════════════════════ */
.wv-mega {
  position: fixed;
  top: var(--wv-header-height);
  left: 0;
  width: 100%;
  background: var(--wv-color-mega-bg);
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - var(--wv-header-height));
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    visibility 220ms ease;
}

.wv-mega.wv-mega--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.wv-mega__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px var(--wv-header-padding);
}

/* ── Mega Overlay ── */
.wv-mega-overlay {
  position: fixed;
  inset: 0;
  top: var(--wv-header-height);
  background: var(--wv-color-overlay);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.wv-mega-overlay.wv-mega-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ── Column Labels ── */
.wv-mega__label {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-text-sm);
  font-weight: var(--wv-weight-semibold);
  letter-spacing: -0.45px;
  line-height: 19px;
  color: var(--wv-color-text-secondary);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.wv-mega__divider {
  border: 0;
  height: 1px;
  background: var(--wv-color-text-secondary);
  opacity: 0.25;
  margin: 0 0 20px;
}

/* ── Column: Start With Your Goal ── */
.wv-mega-goals__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wv-mega-goals__item {
  margin: 0;
}

.wv-mega-goals__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--wv-text-sm);
  font-weight: var(--wv-weight-semibold);
  letter-spacing: -0.45px;
  color: var(--wv-color-text-primary);
  transition: color var(--wv-transition-base);
}

.wv-mega-goals__link:hover {
  color: var(--wv-color-text-link-hover);
}

.wv-mega-goals__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wv-mega-goals__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--wv-color-accent);
}

/* More Benefits toggle */
.wv-mega-goals__more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 10px 0;
  font-family: var(--wv-font-mono);
  font-size: var(--wv-text-label);
  font-weight: var(--wv-weight-regular);
  letter-spacing: 0;
  color: var(--wv-color-text-secondary);
  text-transform: uppercase;
  cursor: pointer;
}

.wv-mega-goals__more-btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--wv-transition-base);
}

.wv-mega-goals__more-btn[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.wv-mega-goals__extra {
  display: none;
}

.wv-mega-goals__extra.wv-mega-goals__extra--open {
  display: block;
}

/* Quiz CTA in goals column */
.wv-mega-goals__cta-text {
  margin: 16px 0 8px;
  font-size: var(--wv-text-md);
  font-weight: var(--wv-weight-regular);
  letter-spacing: -0.54px;
  color: var(--wv-color-text-secondary);
}

.wv-mega-goals__cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--wv-color-primary);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-size: var(--wv-text-sm);
  font-weight: var(--wv-weight-semibold);
  letter-spacing: -0.45px;
  border: 0;
  border-radius: var(--wv-radius-lg);
  padding: 6px 20px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--wv-transition-color);
}

.wv-mega-goals__cta-btn:hover {
  background: var(--wv-color-primary-hover);
}

/* ── Column: The First5 ── */
.wv-mega-first5__hero {
  width: 100%;
  aspect-ratio: 342 / 120;
  background: var(--wv-color-text-secondary);
  border-radius: var(--wv-radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.wv-mega-first5__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-mega-first5__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wv-mega-first5__item {
  border-top: 1px solid rgba(85, 85, 67, 0.25);
}

.wv-mega-first5__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: var(--wv-text-sm);
  font-weight: var(--wv-weight-semibold);
  letter-spacing: -0.45px;
  color: var(--wv-color-text-primary);
  transition: color var(--wv-transition-base);
}

.wv-mega-first5__link:hover {
  color: var(--wv-color-text-link-hover);
}

.wv-mega-first5__link svg {
  width: 18px;
  height: 11px;
  flex-shrink: 0;
}

/* ── Column: Shop More ── */
.wv-mega-shop__browse {
  display: block;
  margin-bottom: 20px;
}

.wv-mega-shop__browse-label {
  display: block;
  font-size: var(--wv-text-md);
  font-weight: var(--wv-weight-regular);
  letter-spacing: -0.54px;
  color: var(--wv-color-text-primary);
}

.wv-mega-shop__browse-badge {
  font-family: var(--wv-font-mono);
  font-size: var(--wv-text-label);
  color: var(--wv-color-text-secondary);
  text-transform: uppercase;
}

.wv-mega-shop__browse:hover .wv-mega-shop__browse-label {
  color: var(--wv-color-text-link-hover);
}

/* Feature Cards */
.wv-mega-card {
  display: block;
  position: relative;
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(85, 85, 67, 0.15);
}

.wv-mega-card__image {
  width: 100%;
  aspect-ratio: 347 / 201;
  background: #D9D9D9;
  object-fit: cover;
}

.wv-mega-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wv-color-card-bg);
  padding: 10px 16px;
}

.wv-mega-card__title {
  font-size: 20px;
  font-weight: var(--wv-weight-bold);
  letter-spacing: 0;
  line-height: 24px;
  color: var(--wv-color-text-primary);
  margin: 0;
}

.wv-mega-card__subtitle {
  font-size: var(--wv-text-label);
  font-weight: var(--wv-weight-regular);
  letter-spacing: -0.36px;
  line-height: 15px;
  color: var(--wv-color-text-primary);
  margin: 2px 0 0;
}

.wv-mega-card__badge {
  font-family: var(--wv-font-mono);
  font-size: var(--wv-text-label);
  color: var(--wv-color-accent);
  text-transform: uppercase;
}

/* ── Mega Bottom Bar ── */
.wv-mega__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px var(--wv-header-padding) 24px;
  border-top: 1px solid rgba(85, 85, 67, 0.25);
}

.wv-mega__bottom-link {
  font-size: var(--wv-text-md);
  font-weight: var(--wv-weight-regular);
  letter-spacing: -0.54px;
  color: var(--wv-color-text-primary);
  transition: color var(--wv-transition-base);
}

.wv-mega__bottom-link:hover {
  color: var(--wv-color-text-link-hover);
}

/* ═══════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════ */
.wv-main {
  min-height: 60vh;
  background-color: var(--wv-color-background);
}

.wv-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  font-family: var(--wv-font-mono);
  font-size: var(--wv-text-sm);
  color: var(--wv-color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   HERO — from Figma node 2:263
   ═══════════════════════════════════════════ */
.wv-hero {
  background: var(--wv-color-background);
  overflow: hidden;
}

.wv-hero__inner {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 46px 80px 36px;
  gap: 0;
}

/* ── Hero Content (Left) ── */
.wv-hero__content {
  flex: 0 0 50%;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.wv-hero__heading {
  font-family: var(--wv-font-primary);
  font-weight: 300;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: -2.1px;
  color: var(--wv-color-text-primary);
  margin: 0;
}

.wv-hero__body {
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 27.3px;
  letter-spacing: -0.54px;
  color: var(--wv-color-text-primary);
  margin: 0;
  max-width: 542px;
}

.wv-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 44px;
  padding: 0 32px;
  background: var(--wv-color-accent);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 15.6px;
  line-height: 19.8px;
  letter-spacing: -0.47px;
  text-transform: uppercase;
  border-radius: 0;
  border: 0;
  transition: background var(--wv-transition-base);
}

.wv-hero__cta:hover {
  background: var(--wv-color-text-primary);
}

/* ── Trust Bar ── */
.wv-trust-bar {
  display: flex;
  gap: 24px;
}

.wv-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.wv-trust-item__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.wv-trust-item__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--wv-color-text-primary);
}

.wv-trust-item__text {
  display: flex;
  flex-direction: column;
}

.wv-trust-item__label {
  font-family: var(--wv-font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 12.5px;
  letter-spacing: 0;
  color: var(--wv-color-text-primary);
  text-transform: uppercase;
}

.wv-trust-item__sub {
  font-family: var(--wv-font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 15.3px;
  letter-spacing: 0;
  color: var(--wv-color-text-primary);
}

/* ── Hero Image (Right) ── */
.wv-hero__image {
  flex: 0 0 50%;
  position: relative;
}

.wv-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ═══════════════════════════════════════════
   FIRST5 SECTION — from Figma node 42:1178
   ═══════════════════════════════════════════ */
.wv-first5 {
  background: #dddec7;
  padding: 60px 0 80px;
}

.wv-first5__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ── First5 Header ── */
.wv-first5__header {
  text-align: center;
  margin-bottom: 40px;
}

.wv-first5__heading {
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.2px;
  color: var(--wv-color-text-primary);
  margin: 0 0 16px;
}

.wv-first5__body {
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 27.3px;
  letter-spacing: -0.54px;
  color: var(--wv-color-text-primary);
  margin: 0 auto 24px;
  max-width: 640px;
}

.wv-first5__actions {
  display: flex;
  justify-content: center;
  gap: 55px;
  align-items: center;
}

.wv-first5__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 15.6px;
  line-height: 19.8px;
  letter-spacing: -0.47px;
  text-transform: uppercase;
  border: 0;
  transition: background var(--wv-transition-base);
}

.wv-first5__btn-primary:hover {
  background: var(--wv-color-accent);
}

.wv-first5__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: transparent;
  color: var(--wv-color-text-primary);
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 15.6px;
  line-height: 19.8px;
  letter-spacing: -0.47px;
  border: 1px solid var(--wv-color-text-primary);
  transition: var(--wv-transition-color);
}

.wv-first5__btn-outline:hover {
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
}

/* ── Carousel ── */
.wv-first5__carousel {
  position: relative;
}

.wv-first5__nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-bottom: 24px;
}

.wv-first5__arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--wv-color-text-primary);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wv-color-text-primary);
  cursor: pointer;
  transition: var(--wv-transition-color);
}

.wv-first5__arrow:hover {
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
}

.wv-first5__track {
  display: flex;
  gap: 50px;
  align-items: flex-end;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wv-first5__track::-webkit-scrollbar {
  display: none;
}

/* ═══════════════════════════════════════════
   PRODUCT CARD — authoritative component
   From PROMPT-product-card.md (Figma Dev Mode confirmed values)
   Active: 288×485 | Inactive: scale(0.93) + opacity 0.6
   ═══════════════════════════════════════════ */

/* ── Parent Card ── */
.wv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 288px;
  height: 485px;
  gap: 7px;
  box-shadow: none;
  background: transparent;
}

.wv-card--inactive {
  opacity: 0.6;
  transform: scale(0.93);
  transform-origin: top center;
  pointer-events: none;
}

/* ── Image Frame (288×377) ── */
.wv-card__image {
  width: 288px;
  height: 377px;
  flex-shrink: 0;
  position: relative;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.wv-card__image-bg {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: #fff;
  z-index: 0;
}

.wv-card__image-link {
  display: block;
  position: relative;
  z-index: 1;
}

.wv-card__image img {
  width: 236px;
  max-width: none;
  height: 399px;
  object-fit: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

/* Stroke — ::after so it renders above the image mask */
.wv-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 1px solid #000;
  pointer-events: none;
  z-index: 3;
}

/* ── Actions (overlaid on image bottom, child of .wv-card root) ── */
.wv-card__actions {
  position: absolute;
  top: 323px; /* 377px image - 44px pill - 10px bottom gap */
  left: 23px;
  width: 242.375px;
  height: 44px;
  display: flex;
  gap: 14.68px;
  align-items: center;
  z-index: 4;
}

/* Count Pill — LOCKED dimensions per guardrails (see PLAN-variants.md) */
.wv-card__pill-wrap {
  position: relative;
}

.wv-card__count-pill {
  width: 115.695px;
  height: 43.711px;
  border-radius: 72.154px;
  border: 1px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  contain: layout style;
  overflow: hidden;
}

/* Simple product pill — not interactive */
span.wv-card__count-pill {
  cursor: default;
  pointer-events: none;
}

.wv-card__count-pill-label {
  font-family: var(--wv-font-primary);
  font-size: 15.604px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.468px;
  color: var(--wv-color-text-primary);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wv-card__count-pill-chevron {
  flex-shrink: 0;
  transition: transform var(--wv-transition-fast);
}

.wv-card__count-pill[aria-expanded="true"] .wv-card__count-pill-chevron {
  transform: rotate(180deg);
}

.wv-card--inactive .wv-card__count-pill {
  pointer-events: none;
  cursor: not-allowed;
}

/* Variant Dropdown — floats, styled to match pill */
.wv-card__variant-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: var(--wv-color-card-bg);
  border: 1px solid var(--wv-color-text-primary);
  border-radius: var(--wv-radius-sm);
  box-shadow: var(--wv-shadow-dropdown);
  z-index: 10;
  overflow: hidden;
  max-height: 200px;
  overflow-y: auto;
}

.wv-card__variant-opt {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid var(--wv-color-border);
  background: transparent;
  font-family: var(--wv-font-primary);
  font-size: 15.604px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.468px;
  color: var(--wv-color-text-primary);
  cursor: pointer;
  text-align: center;
  justify-content: center;
  transition: background var(--wv-transition-base);
}

.wv-card__variant-opt:last-child {
  border-bottom: none;
}

.wv-card__variant-opt:hover {
  background: var(--wv-color-surface);
}

.wv-card__variant-opt--active {
  font-weight: var(--wv-weight-semibold);
  color: var(--wv-color-text-primary);
}

.wv-card__variant-opt--oos {
  color: var(--wv-color-text-secondary);
  pointer-events: none;
  opacity: 0.45;
}

/* Add to Cart Button */
.wv-card__atc {
  width: 112px;
  height: 44px;
  border-radius: 72.154px;
  background: var(--wv-color-accent);
  border: none;
  cursor: pointer;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--wv-color-text-inverse);
  text-align: center;
  flex-shrink: 0;
  transition: background 200ms ease;
}

.wv-card__atc:hover {
  background: var(--wv-color-atc-hover);
}

.wv-card__atc:disabled,
.wv-card--inactive .wv-card__atc {
  background: #999;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── Out of Stock Card ── */
.wv-card--oos .wv-card__image img {
  opacity: 0.4;
}

.wv-card--oos .wv-card__count-pill {
  opacity: 0.4;
  pointer-events: none;
}

.wv-card__oos-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--wv-color-placeholder);
  color: var(--wv-color-text-primary);
  font-family: var(--wv-font-primary);
  font-size: 10px;
  font-weight: var(--wv-weight-medium);
  padding: 4px 10px;
  border-radius: var(--wv-radius-pill);
  z-index: 3;
}

.wv-card--oos .wv-card__atc {
  /* TODO: designer to provide final inactive ATC style */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wv-color-star-empty);
  border: 0;
  color: var(--wv-color-text-inverse);
  text-decoration: none;
}

/* ── Info Frame (288×101) ── */
.wv-card__info {
  width: 288px;
  min-height: 101px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 12px 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Stroke on info frame */
.wv-card__info::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 1px solid #000;
  pointer-events: none;
  z-index: 1;
}

/* Title row: Name + Price */
.wv-card__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.wv-card__name {
  width: 162px;
  font-family: "General Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.195px;
  color: #2A2B14;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wv-card__name a {
  color: inherit;
  text-decoration: none;
}

.wv-card__name a:hover {
  color: #B65F54;
}

.wv-card__price-wrap {
  text-align: right;
}

.wv-card__price {
  font-family: "General Grotesque", sans-serif;
  font-size: 17.308px;
  font-weight: 400;
  line-height: 24.195px;
  color: #2A2B14;
  white-space: nowrap;
}

.wv-card__price-regular {
  text-decoration: line-through;
  color: #95967D;
  font-size: 17.308px;
}

.wv-card__price-sale {
  color: #B65F54;
  font-weight: 500;
  font-size: 17.308px;
}

/* Divider — SVG, not CSS */
.wv-card__divider {
  display: block;
  margin: 6px 0;
}

/* Meta row: Reviews + Benefit */
.wv-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wv-card__reviews {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wv-card__review-count {
  font-family: "General Grotesque Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.08px;
  color: #767933;
  text-transform: uppercase;
  line-height: normal;
}

.wv-card__stars {
  display: flex;
}

.wv-card__stars svg {
  display: block;
}

.wv-card__benefit {
  width: 143px;
  font-family: "General Grotesque", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 27.307px;
  letter-spacing: -0.3px;
  color: #2A2B14;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════
   SHOP PAGE — from Figma node 49:3816
   ═══════════════════════════════════════════ */
.wv-shop {
  background: var(--wv-color-background);
}

.wv-shop__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 80px 60px;
}

/* Breadcrumbs */
.wv-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.wv-breadcrumbs__link,
.wv-breadcrumbs__current {
  font-family: var(--wv-font-mono);
  font-weight: var(--wv-weight-medium);
  font-size: 15px;
  line-height: 18.8px;
  letter-spacing: 0;
  color: var(--wv-color-text-primary);
  text-transform: uppercase;
}

.wv-breadcrumbs__link:hover {
  color: var(--wv-color-text-link-hover);
}

.wv-breadcrumbs__sep {
  font-family: var(--wv-font-mono);
  font-size: 15px;
  color: var(--wv-color-text-primary);
}

/* Heading */
.wv-shop__heading {
  font-family: var(--wv-font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 70px;
  letter-spacing: 0;
  color: var(--wv-color-text-primary);
  margin: 0 0 16px;
}

/* ── Shop Category Pills — LOCKED COMPONENT ──
   Do not modify without updating COMPONENTS.md.
   Vertical centering depends on line-height: 1 on the pill
   AND on any inner <a> or <span> child element.
   height: 55px desktop / 40px mobile — do not change.
   border-radius: var(--wv-radius-sm) = 15px per Figma.
   gap between pills: 20px on .wv-shop-cats__track.
   ────────────────────────────────────────────── */
.wv-shop-cats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.wv-shop-cats__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.wv-shop-cats__track::-webkit-scrollbar {
  display: none;
}

.wv-shop-cats__pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 48px 2px;
  border: 1px solid var(--wv-color-text-primary);
  border-radius: var(--wv-radius-sm);
  background: transparent;
  font-family: var(--wv-font-primary);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--wv-color-text-primary);
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--wv-transition-color);
}

.wv-shop-cats__pill:hover {
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
}

.wv-shop-cats__pill--active {
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
}

.wv-shop-cats__arrow {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--wv-color-text-primary);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wv-color-text-primary);
  cursor: pointer;
  transition: var(--wv-transition-color);
}

.wv-shop-cats__arrow:hover {
  background: var(--wv-color-text-primary);
  color: var(--wv-color-text-inverse);
}

/* Toolbar */
.wv-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  border-top: 1px solid rgba(42, 43, 20, 0.15);
  border-bottom: 1px solid rgba(42, 43, 20, 0.15);
  margin-bottom: 32px;
}

.wv-shop-toolbar__filter,
.wv-shop-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--wv-font-primary);
  font-weight: 300;
  font-size: 20px;
  line-height: 70px;
  letter-spacing: 0;
  color: var(--wv-color-text-primary);
  cursor: pointer;
}

.wv-shop-toolbar__filter svg,
.wv-shop-toolbar__sort svg {
  width: auto;
  height: 20px;
  color: var(--wv-color-text-primary);
}

.wv-shop-toolbar__filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: var(--wv-radius-pill);
  background: var(--wv-color-primary);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: var(--wv-weight-semibold);
  padding: 0 6px;
}

.wv-shop-toolbar__filter-badge:empty {
  display: none;
}

/* Active Filter Pills */
.wv-shop-pills {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-top: -20px;
  padding-bottom: 12px;
}

.wv-shop-pills__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.wv-shop-pills__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.wv-shop-pills__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--wv-color-border);
  border-radius: var(--wv-radius-pill);
  background: transparent;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: var(--wv-weight-regular);
  color: var(--wv-color-text-primary);
  cursor: pointer;
  transition: border-color var(--wv-transition-fast), background var(--wv-transition-fast);
}

.wv-shop-pills__pill:hover {
  border-color: var(--wv-color-text-primary);
  background: var(--wv-color-surface);
}

.wv-shop-pills__pill svg {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.wv-shop-pills__clear {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--wv-font-primary);
  font-size: 12px;
  font-weight: var(--wv-weight-medium);
  color: var(--wv-color-text-secondary);
  cursor: pointer;
  text-decoration: underline;
}

.wv-shop-pills__clear:hover {
  color: var(--wv-color-text-primary);
}

/* Product Grid */
.wv-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 288px);
  justify-content: center;
  gap: 26px;
}

/* Load More */
.wv-shop__load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.wv-shop__load-more-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--wv-font-primary);
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--wv-color-text-primary);
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color var(--wv-transition-base);
}

.wv-shop__load-more-btn svg {
  display: block;
  flex-shrink: 0;
}

.wv-shop__load-more-btn:hover {
  color: var(--wv-color-text-link-hover);
}

.wv-shop__load-more-icon svg {
  width: 35px;
  height: 35px;
}

.wv-shop__no-products {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--wv-font-primary);
  font-size: 18px;
  color: var(--wv-color-text-secondary);
  padding: 60px 0;
}

/* ═══════════════════════════════════════════
   QUIZ CTA — reusable component (Figma node 31:48)
   Variants: large (412x116), sidebar (206x128), tiny (88x32)
   ═══════════════════════════════════════════ */

/* ── Shared ── */
.wv-quiz-cta {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: opacity var(--wv-transition-base);
}

.wv-quiz-cta:hover {
  opacity: 0.92;
}

.wv-quiz-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-quiz-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wv-quiz-cta__label {
  font-family: var(--wv-font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 15.3px;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.wv-quiz-cta__heading {
  font-family: var(--wv-font-serif);
  font-weight: 400;
  color: #fcfdf6;
}

.wv-quiz-cta__heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wv-quiz-cta__icon {
  color: #ffffff;
  flex-shrink: 0;
}

.wv-quiz-cta__body {
  font-family: var(--wv-font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 15.2px;
  letter-spacing: -0.36px;
  color: #ffffff;
}

.wv-quiz-cta__body-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
}

.wv-quiz-cta__arrow {
  flex-shrink: 0;
  width: 18px;
  height: 11px;
}

/* ── Large (412x116) — footer/marketing ── */
.wv-quiz-cta--large {
  width: 100%;
  max-width: 412px;
  border-radius: var(--wv-radius-lg);
}

.wv-quiz-cta--large .wv-quiz-cta__content {
  padding: 20px 24px;
  min-height: 116px;
  justify-content: center;
}

.wv-quiz-cta__heading--large {
  font-size: 48px;
  line-height: 52.8px;
  letter-spacing: -1.92px;
}

.wv-quiz-cta--large .wv-quiz-cta__body {
  margin-top: 4px;
}

/* ── Sidebar (206x128) — account sidebar/nav ── */
.wv-quiz-cta--sidebar {
  width: 100%;
  max-width: 206px;
  border-radius: 12px;
}

/* Sidebar: 206x128, all text centered, content vertically centered */
.wv-quiz-cta--sidebar .wv-quiz-cta__content {
  padding: 14px 10px;
  height: 128px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.wv-quiz-cta__heading--sidebar {
  font-size: 30px;
  line-height: 33px;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.wv-quiz-cta--sidebar .wv-quiz-cta__label {
  font-size: 12px;
}

.wv-quiz-cta--sidebar .wv-quiz-cta__body {
  font-size: 12px;
}

.wv-quiz-cta--sidebar .wv-quiz-cta__body-row {
  margin: 0;
  gap: 6px;
}

/* ── Tiny (88x32) — header pill ── */
.wv-quiz-cta--tiny {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 32px;
  background: var(--wv-color-primary);
  color: var(--wv-color-text-inverse);
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 19px;
  text-transform: uppercase;
  border-radius: var(--wv-radius-lg);
  transition: background var(--wv-transition-base);
}

.wv-quiz-cta--tiny:hover {
  background: var(--wv-color-primary-hover);
  opacity: 1;
}

/* ═══════════════════════════════════════════
   FOOTER — from Figma node 40:152
   ═══════════════════════════════════════════ */
.wv-footer {
  position: relative;
  background: var(--wv-color-background);
}

/* Authorized change — user approved 2026-04-03.
   Constrains footer content to match header max-width (1440px). */
.wv-footer__inner {
  max-width: var(--wv-container-max);
  margin: 0 auto;
  padding: 0 80px;
}

.wv-footer__bg {
  position: absolute;
  inset: 0;
  background: var(--wv-color-surface);
  z-index: -1;
}

/* ── Footer Top ── */
.wv-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--wv-color-text-primary);
  border-bottom: 1px solid var(--wv-color-text-primary);
}

.wv-footer__logo {
  width: 223px;
  height: auto;
}

.wv-footer__tagline {
  font-family: var(--wv-font-primary);
  font-size: 24px;
  font-weight: 400;
  color: var(--wv-color-text-primary);
  margin: 0;
}

/* ── Footer Middle ── */
.wv-footer__middle {
  display: flex;
  gap: 55px;
  padding: 40px 0 22px;
}

.wv-footer__left {
  flex: 0 0 553px;
  display: flex;
  flex-direction: column;
  gap: 41px;
}

/* Email Signup Heading */
.wv-footer__signup-heading {
  font-family: var(--wv-font-primary);
  font-size: var(--wv-text-lg);
  font-weight: 400;
  color: var(--wv-color-text-primary);
  margin: 0 0 -21px;
}

/* Disclaimer */
.wv-footer__disclaimer {
  font-family: var(--wv-font-primary);
  font-size: 11px;
  font-weight: 700;  /* FDA 21 CFR 101.93(e) requires boldface — do not change to regular */
  line-height: 15px;
  letter-spacing: -0.22px;
  color: var(--wv-color-text-primary);
  margin: 0;
  padding: 12px 16px;
  background: var(--wv-color-placeholder);
  border-radius: 4px;
}

/* ── Footer Nav ── */
.wv-footer-nav {
  flex: 1;
  display: flex;
  gap: 30px;
  padding-left: 0;
}

.wv-footer-nav__col {
  flex: 1;
}

.wv-footer-nav__label {
  font-family: var(--wv-font-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -0.45px;
  color: var(--wv-color-text-primary);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.wv-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wv-footer-nav__list li {
  margin: 0;
}

.wv-footer-nav__list a {
  display: block;
  padding: 5.5px 0;
  font-family: var(--wv-font-primary);
  font-size: 15.7px;
  font-weight: 400;
  line-height: 18.8px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--wv-color-text-primary);
  transition: color var(--wv-transition-base);
}

.wv-footer-nav__list a:hover {
  color: var(--wv-color-text-link-hover);
}

/* ── Footer Bottom ── */
.wv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--wv-color-text-primary);
}

.wv-footer__copyright {
  font-family: var(--wv-font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--wv-color-text-primary);
}

.wv-footer__legal a,
.wv-footer__legal-divider {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--wv-color-text-primary);
}

.wv-footer__legal a {
  text-transform: uppercase;
  transition: color var(--wv-transition-base);
}

.wv-footer__legal a:hover {
  color: var(--wv-color-text-link-hover);
}

.wv-footer__legal-divider {
  margin: 0 8px;
  opacity: 0.5;
}

.wv-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wv-footer__social a {
  display: inline-flex;
  opacity: 0.8;
  transition: opacity var(--wv-transition-base);
}

.wv-footer__social a:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════ */
@media (max-width: 1279px) {
  :root {
    --wv-header-padding: 40px;
  }

  .wv-header__left,
  .wv-header__right {
    flex: 0 0 230px;
  }

  .wv-mega__inner {
    gap: 24px;
    padding: 32px var(--wv-header-padding);
  }

  .wv-footer__inner {
    padding: 0 40px;
  }

  .wv-footer__middle {
    flex-direction: column;
  }

  .wv-footer__left {
    flex: none;
    width: 100%;
  }

  .wv-hero__inner {
    padding: 40px 40px 30px;
  }

  .wv-hero__content {
    padding-right: 40px;
    gap: 40px;
  }

  .wv-hero__heading {
    font-size: 50px;
    line-height: 50px;
  }

  .wv-first5__inner {
    padding: 0 40px;
  }

  .wv-first5__track {
    gap: 24px;
    justify-content: flex-start;
  }

  .wv-shop__inner {
    padding: 24px 40px 60px;
  }

  .wv-product-grid {
    grid-template-columns: repeat(3, 288px);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --wv-header-padding: 16px;
    --wv-header-height: 48px;
  }

  .wv-header__logo {
    width: 160px;
    height: auto;
  }

  .wv-header__left,
  .wv-header__right {
    flex: 1;
    gap: 16px;
  }

  .wv-mega__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px var(--wv-header-padding);
  }

  .wv-footer__inner {
    padding: 0 16px;
  }

  .wv-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .wv-footer__tagline {
    font-size: 20px;
    line-height: 28px;
  }

  .wv-footer-nav {
    flex-wrap: wrap;
    gap: 24px;
  }

  .wv-footer-nav__col {
    flex: 0 0 calc(50% - 12px);
  }

  .wv-footer__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .wv-hero__inner {
    flex-direction: column;
    padding: 32px 16px 24px;
  }

  .wv-hero__content {
    flex: none;
    padding-right: 0;
    gap: 32px;
  }

  .wv-hero__heading {
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .wv-hero__body {
    font-size: 16px;
    line-height: 24px;
  }

  .wv-trust-bar {
    flex-direction: column;
    gap: 16px;
  }

  .wv-hero__image {
    flex: none;
    margin-top: 32px;
  }

  .wv-first5 {
    padding: 40px 0 60px;
  }

  .wv-first5__inner {
    padding: 0 16px;
  }

  .wv-first5__heading {
    font-size: 28px;
    line-height: 32px;
  }

  .wv-first5__actions {
    flex-direction: column;
    gap: 12px;
  }

  .wv-first5__track {
    gap: 16px;
    justify-content: flex-start;
  }

  .wv-product-card {
    flex: 0 0 220px;
    width: 220px;
  }

  .wv-product-card--active {
    flex: 0 0 250px;
    width: 250px;
  }

  .wv-shop__inner {
    padding: 16px 16px 40px;
  }

  .wv-shop__heading {
    font-size: 28px;
    line-height: 40px;
  }

  .wv-shop-cats__pill {
    height: 40px;
    padding: 0 20px;
    font-size: 13px;
  }

  .wv-product-grid {
    grid-template-columns: repeat(2, 288px);
    gap: 16px;
  }

  .wv-shop__load-more-btn {
    font-size: 22px;
  }
}
