/* Kush & Coil Redesign — Main Layout & Components */

/* ── Skip link ──────────────────────────────────── */
.vv-skip-link {
  position: absolute;
  top: -100%;
  left: var(--s-4);
  background: var(--vv-black);
  color: var(--vv-white);
  padding: var(--s-2) var(--s-4);
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
}
.vv-skip-link:focus { top: 0; }

/* ── Header ─────────────────────────────────────── */
.vv-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--vv-white);
  border-bottom: 1px solid var(--vv-grey-200);
}

.vv-topbar {
  background: var(--vv-black);
  color: var(--vv-grey-300);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  padding: 6px var(--s-4);
}
.vv-topbar strong { color: var(--vv-green-500); }

.vv-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-5);
  padding: 4px 28px;
  max-width: var(--shell);
  margin: 0 auto;
}

/* Logo */
.vv-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  color: var(--vv-black);
}
.vv-logo img { height: 36px; width: auto; }
.vv-site-header .custom-logo { height: 56px; width: auto; display: block; transform: scale(2.23, 1.96); transform-origin: left center; }
.vv-logo-mark {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Desktop nav */
.vv-primary-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}
.vv-primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  color: var(--vv-grey-700);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.vv-primary-nav a:hover:not(.current-menu-item > a) {
  background: var(--vv-grey-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--vv-black);
}
.vv-primary-nav .current-menu-item > a {
  color: var(--vv-black);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--accent);
  border-radius: 0;
}

/* Header actions */
.vv-header-actions { display: flex; align-items: center; gap: var(--s-2); }

.vv-search-wrap {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--vv-grey-200);
  border-radius: var(--r-pill);
  background: var(--vv-white);
  width: 240px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.vv-search-wrap:focus-within {
  border-color: var(--vv-black);
  box-shadow: var(--focus-ring);
}
.vv-search-wrap input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font: inherit;
  font-size: 13.5px;
  color: var(--vv-black);
}
.vv-search-wrap svg { color: var(--vv-grey-500); flex-shrink: 0; }

.vv-icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--vv-grey-200);
  border-radius: var(--r-pill);
  background: var(--vv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--vv-grey-800);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.vv-icon-btn:hover { background: var(--vv-grey-100); border-color: var(--vv-grey-300); }

.vv-cart-btn {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: 0 16px 0 14px;
  border-radius: var(--r-pill);
  background: var(--vv-black);
  color: var(--vv-white);
  border: none;
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast);
  text-decoration: none;
}
.vv-cart-btn:hover { background: var(--vv-grey-800); color: var(--vv-white); }
.vv-cart-count {
  background: var(--vv-yellow-500);
  color: var(--vv-black);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  letter-spacing: .02em;
  min-width: 20px;
  text-align: center;
}

.vv-loyalty-badge {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--vv-black);
  background: var(--vv-green-50);
  border: 1px solid var(--vv-green-500);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background var(--dur-fast);
}
.vv-loyalty-badge:hover { background: var(--vv-green-500); }

/* Sub-bar (location info) */
.vv-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 7px 28px;
  font-size: 12px;
  color: var(--vv-grey-600);
  background: var(--vv-grey-50);
  border-bottom: 1px solid var(--vv-grey-200);
}
.vv-sub-pin { display: inline-flex; align-items: center; gap: 5px; color: var(--vv-grey-800); font-weight: 600; }
.vv-sub-dot { color: var(--vv-grey-300); }
.vv-sub-pulse { color: var(--vv-success); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.vv-sub-pulse::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--vv-success); animation: vv-pulse 2s infinite; }
@keyframes vv-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* Mobile menu toggle */
.vv-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.vv-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vv-black);
  transition: all var(--dur-base) var(--ease-out);
}
.vv-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vv-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vv-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.vv-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--vv-white);
  border-top: 1px solid var(--vv-grey-200);
  padding: var(--s-4) var(--s-4) var(--s-6);
}
.vv-mobile-nav.is-open { display: flex; }
.vv-mobile-nav ul, .vv-mobile-nav li { list-style: none; margin: 0; padding: 0; }
.vv-mobile-nav a {
  display: block;
  font-size: var(--fs-h4);
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--vv-black);
  text-decoration: none;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--vv-grey-150);
}
.vv-mobile-nav a:hover { color: var(--vv-green-500); }
.vv-mobile-search {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: 0 14px;
  margin-bottom: var(--s-4);
  border: 1px solid var(--vv-grey-200);
  border-radius: var(--r-pill);
  background: var(--vv-white);
  color: var(--vv-grey-600);
}
.vv-mobile-search input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font: inherit;
  font-size: var(--fs-small);
  color: var(--vv-black);
  min-height: 44px;
}

/* Nav menu list resets */
.vv-primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: center; }
.vv-primary-nav li { list-style: none; margin: 0; padding: 0; }

/* ── Cart Drawer ─────────────────────────────────── */
.vv-cart-scrim {
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
  z-index: 60;
}
.vv-cart-scrim.is-open { opacity: 1; pointer-events: auto; }

.vv-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 96vw;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
          backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
  border-left: 1px solid var(--glass-border-strong);
  box-shadow: var(--glass-shadow);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  z-index: 61;
  display: flex;
  flex-direction: column;
}
.vv-cart-drawer.is-open { transform: none; }

.vv-cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--vv-grey-200);
}
.vv-cart-drawer-head h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.vv-cart-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vv-grey-100);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-size: 20px;
  color: var(--vv-grey-700);
  transition: background var(--dur-fast);
}
.vv-cart-close:hover { background: var(--vv-grey-200); }

.vv-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.vv-cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: var(--accent);
  text-align: center;
  padding: 40px 20px;
}
.vv-cart-empty p { font-size: var(--fs-small); }

.vv-cart-drawer-foot {
  border-top: 1px solid var(--vv-grey-200);
  padding: 18px 20px 20px;
}
.vv-cart-totals { margin-bottom: var(--s-3); }
.vv-cart-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-small);
  color: var(--accent);
  padding: 4px 0;
}
.vv-cart-totals .row.big {
  margin-top: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--vv-grey-200);
  color: var(--vv-black);
  align-items: baseline;
}
.vv-cart-totals .row.big .n {
  font-family: var(--ff-display);
  font-size: 32px;
}
.vv-cart-foot-note {
  margin-top: var(--s-2);
  text-align: center;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vv-cart-drawer-foot .vv-btn { width: 100%; justify-content: center; margin-top: var(--s-2); }

/* ── Buttons ─────────────────────────────────────── */
.vv-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 11px 18px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
}
.vv-btn-primary {
  background: var(--vv-green-500);
  color: var(--vv-black);
  border-color: var(--vv-green-500);
}
.vv-btn-primary:hover { background: var(--vv-green-600); border-color: var(--vv-green-600); }
.vv-btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.vv-btn-black {
  background: var(--vv-black);
  color: var(--vv-white);
  border-color: var(--vv-black);
}
.vv-btn-black:hover { background: var(--vv-grey-800); color: var(--vv-white); }
.vv-btn-ghost {
  background: transparent;
  color: var(--vv-black);
  border-color: var(--vv-grey-300);
}
.vv-btn-ghost:hover { background: var(--vv-grey-100); }
.vv-btn-ghost-dark {
  background: transparent;
  color: var(--vv-white);
  border-color: var(--vv-grey-700);
}
.vv-btn-ghost-dark:hover { background: var(--vv-grey-800); }
.vv-btn-lg { padding: 14px 22px; font-size: 15px; }

/* ── Marquee / Ticker ───────────────────────────── */
.vv-marquee {
  background: #000;
  color: var(--vv-white);
  overflow: hidden;
  padding: 12px 0;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--vv-grey-800);
}
.vv-marquee-track {
  display: flex;
  width: max-content;
  animation: vv-marquee-scroll 35s linear infinite;
}
.vv-marquee:hover .vv-marquee-track { animation-play-state: paused; }
@keyframes vv-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vv-marquee-item {
  white-space: nowrap;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.vv-marquee-item::after {
  content: '•';
  color: var(--vv-yellow-500);
  font-size: .75em;
}
.vv-marquee-item.is-sale {
  color: var(--vv-green-500);
  font-weight: 700;
}

/* ── Hero ────────────────────────────────────────── */
.vv-hero-green { color: var(--vv-green-500); }
.vv-hero-cta { display: flex; gap: var(--s-2); flex-wrap: wrap; }

/* ── Promo strip ─────────────────────────────────── */
.vv-promo {
  margin: 0 auto;
  max-width: var(--shell);
  padding: 0 20px;
}
.vv-promo-inner {
  background: var(--vv-yellow-500);
  border-radius: var(--r-lg);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.vv-promo-title {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--vv-black);
  letter-spacing: .02em;
  white-space: nowrap;
}
.vv-promo-body { font-size: 14px; font-weight: 500; color: var(--vv-black); flex: 1; }
.vv-promo-cta {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--vv-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

/* ── Section layout ──────────────────────────────── */
.vv-section { padding: var(--s-16) 0; }
.vv-section-inner { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.vv-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s-8);
  gap: var(--s-4);
  flex-wrap: wrap;
}
.vv-section-title {
  font-family: var(--ff-display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0;
}
.vv-section-eyebrow {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.vv-view-all {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vv-view-all:hover { color: var(--vv-black); }

/* ── Category tabs ───────────────────────────────── */
.vv-tabs {
  display: flex;
  gap: 4px;
  background: var(--vv-grey-100);
  padding: 4px;
  border-radius: var(--r-pill);
  width: fit-content;
  margin-bottom: var(--s-6);
}
.vv-tabs button {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font: inherit;
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  color: var(--vv-grey-600);
  transition: all var(--dur-fast) var(--ease-out);
}
.vv-tabs button.on {
  background: var(--vv-white);
  color: var(--vv-black);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.vv-tabs button:hover:not(.on) { color: var(--vv-black); }

/* ── Category grid ───────────────────────────────── */
.vv-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (min-width: 1100px) { .vv-category-grid { grid-template-columns: repeat(4, 1fr); } }

.vv-category-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-3) var(--s-2);
  padding: var(--s-4);
  border: 1px solid var(--vv-grey-200);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--vv-black);
  background: var(--vv-white);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.vv-category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.vv-category-card__icon {
  font-size: 24px;
  line-height: 1;
  grid-row: 1 / 3;
  grid-column: 1;
}
.vv-category-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.2;
  grid-column: 2;
  grid-row: 1;
}
.vv-category-card__meta {
  font-size: var(--fs-micro);
  color: var(--vv-grey-500);
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.vv-category-card--green {
  border-color: #dcfce7;
}
.vv-category-card--green:hover {
  border-color: #86efac;
}

.vv-category-card--amber {
  border-color: #fed7aa;
}
.vv-category-card--amber:hover {
  border-color: #fbbf24;
}

/* ── Footer ──────────────────────────────────────── */
.vv-site-footer {
  background: var(--vv-black);
  color: var(--vv-white);
  padding: 48px 28px 20px;
  margin-top: 48px;
}
.vv-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  max-width: var(--shell);
  margin: 0 auto;
}
@media (max-width: 960px) { .vv-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vv-footer-inner { grid-template-columns: 1fr; } }

.vv-footer-logo { margin-bottom: var(--s-3); }
.vv-footer-logo .custom-logo { height: 96px; width: auto; display: block; }
.vv-footer-brand p { font-size: var(--fs-small); color: var(--vv-grey-400); line-height: 1.55; max-width: 320px; }

.vv-footer-col h5 {
  font-family: var(--ff-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 var(--s-3);
  color: var(--vv-green-500);
}
.vv-footer-col p { font-size: var(--fs-small); color: var(--vv-grey-300); line-height: 1.55; margin: 0 0 var(--s-2); }
.vv-footer-col p b { color: var(--vv-white); }
.vv-footer-col ul { list-style: none; margin: 0; padding: 0; }
.vv-footer-col a {
  display: block;
  font-size: var(--fs-small);
  color: var(--vv-grey-300);
  text-decoration: none;
  padding: 8px 0;
  transition: color var(--dur-fast), transform var(--dur-fast) var(--ease-out);
}
.vv-footer-col a:hover { color: var(--vv-green-500); transform: translateY(-2px); }

.vv-footer-fine {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--vv-grey-800);
  font-size: 12px;
  color: var(--vv-grey-300);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--shell);
  margin-inline: auto;
}

/* ── Site main ───────────────────────────────────── */
.vv-site-main { min-height: 60vh; }

/* ── Utility ─────────────────────────────────────── */
.vv-shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.vv-shell-narrow { max-width: var(--shell-narrow); margin: 0 auto; padding: 0 28px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .vv-header-inner { grid-template-columns: auto 1fr; }
  .vv-primary-nav { display: none; }
  .vv-search-wrap { display: none; }
  .vv-menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  .vv-hero { margin: 12px; padding: 40px 20px 48px; border-radius: 10px; }
  .vv-section-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   Redesign additions — premium retail pivot
   ═══════════════════════════════════════════════════════════════ */

/* ── Header ──────────────────────────────────────── */
.vv-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vv-site-header {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
          backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
}
.vv-site-header.is-stuck {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
          backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
  border-bottom: 1px solid var(--glass-border-strong);
  box-shadow: var(--glass-shadow);
}
.vv-topbar {
  background: rgba(14,14,14,0.92);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .vv-site-header, .vv-site-header.is-stuck { background: var(--vv-white); }
  .vv-topbar { background: var(--vv-black); }
}

/* ── Hero — 2-col ────────────────────────────────── */
.vv-hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 72vh;
  background: var(--bg-alt);
  overflow: hidden;
}
.vv-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-5);
  padding: var(--s-16) var(--s-10) var(--s-12) max(var(--s-10), calc((100vw - var(--shell)) / 2 + var(--s-8)));
}
.vv-hero-sub {
  font-size: var(--fs-body);
  color: #595959;
  line-height: 1.65;
  max-width: 44ch;
}
.vv-hero-cta { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.vv-hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--vv-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-10) var(--s-8);
  gap: var(--s-6);
}
.vv-hero-product-frame {
  background: var(--vv-white);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px rgba(82,184,74,0.22), var(--shadow-lg);
  width: min(340px, 85%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
}
.vv-hero-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vv-hero-visual-stat {
  font-size: var(--fs-small);
  color: var(--vv-grey-500);
  text-align: center;
  margin: 0;
}
.vv-hero-visual-stat strong {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.vv-hero-trust-line {
  font-size: var(--fs-small);
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

.vv-hero-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 20px 16px;
  align-items: flex-end;
}

.vv-hero-trust .vv-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: white;
  font-weight: 500;
}

.vv-hero-trust .vv-trust-item svg {
  flex-shrink: 0;
}

.vv-btn-secondary {
  background: transparent;
  border: 1.5px solid currentColor;
  color: inherit;
}

.vv-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .vv-hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 16px 12px;
  }
  
  .vv-hero-trust .vv-trust-item {
    font-size: 12px;
  }
}

.vv-hero .display-hero {
  color: #1A1A1A;
  position: relative;
  padding-bottom: var(--s-2);
}
.vv-hero .display-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: #52B84A;
}

/* ── Trust strip ─────────────────────────────────── */
.vv-trust-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--vv-grey-200);
  border-bottom: 1px solid var(--vv-grey-200);
  background: var(--vv-white);
}

.vv-rail-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--s-2) 2px var(--s-4);
  scrollbar-width: thin;
}
.vv-rail-card { scroll-snap-align: start; min-width: 0; }
@media (min-width: 1024px) {
  .vv-rail-scroll { grid-auto-columns: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: row; overflow: visible; }
}
.vv-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--vv-grey-800);
  border-right: 1px solid var(--vv-grey-150);
}
.vv-trust-item:last-child { border-right: none; }
.vv-trust-item svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--accent); stroke-width: 1.5; }


/* ── Product grids ──────────────────────────────── */
.vv-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-6);
}
@media (min-width: 1024px) {
  .vv-product-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ── Product card redesign ───────────────────────── */
.vv-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--elev-1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.vv-card::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: rgba(82,184,74,0);
  border-radius: inherit;
  transition: background var(--dur-base) var(--ease-out);
}
.vv-card:hover {
  box-shadow: 0 14px 36px rgba(0,0,0,0.16), var(--glow-accent);
  transform: translateY(-2px);
  border-color: rgba(82,184,74,0.35);
}
.vv-card:hover::after { background: rgba(82,184,74,0.04); }
.vv-wish-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--glass-border);
  color: var(--vv-grey-600);
  cursor: pointer;
  z-index: 3;
  transition: color var(--dur-fast), transform var(--dur-fast), background var(--dur-fast);
}
.vv-wish-btn:hover { color: var(--vv-sale); transform: scale(1.08); }
.vv-wish-btn.is-active { color: var(--vv-sale); }
.vv-wish-btn.is-active svg { fill: currentColor; }

.vv-card-shot {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  overflow: hidden;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vv-card-shot img {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  border-radius: var(--r-md);
}
.vv-card-shot-placeholder { width: calc(100% - 16px); height: calc(100% - 16px); background: var(--vv-bone); border-radius: var(--r-md); }
.vv-card-badges {
  position: absolute;
  top: var(--s-2);
  right: var(--s-2);
  left: auto;
  display: flex;
  gap: var(--s-1);
  flex-wrap: wrap;
}
.vv-card-meta {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.vv-card-brand {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.vv-card-name {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
.vv-card-name:hover { color: var(--accent); }
.vv-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-2);
}
.vv-card-stock {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--fs-micro);
  color: var(--accent);
  white-space: nowrap;
}
.vv-stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--vv-grey-300);
}
.vv-stock-dot--green  { background: var(--vv-green-500); }
.vv-stock-dot--yellow { background: var(--vv-yellow-500); }
.vv-stock-dot--red    { background: var(--vv-grey-300); }
.vv-card-foot {
  padding: var(--s-3) var(--s-4);
  border-top: 1px solid var(--border);
}

/* ── Buttons ─────────────────────────────────────── */
.vv-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--fg-muted);
  background: var(--vv-white);
  color: var(--vv-black);
  font: inherit;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}
.vv-btn-outline:hover { 
  border-color: var(--vv-black);
  background: var(--vv-black);
  color: var(--vv-white);
}
.vv-btn-outline.added { 
  border-color: var(--vv-green-500);
  background: var(--vv-green-500);
  color: var(--vv-black);
}
.vv-btn-outline.has-error,
.vv-btn.has-error { 
  border-color: var(--vv-sale);
  background: var(--vv-sale); 
  color: var(--vv-white); 
}
.vv-btn-full { width: 100%; justify-content: center; }
.vv-btn-highlight {
  background: var(--highlight);
  color: var(--highlight-fg);
  padding: var(--s-3) var(--s-6);
  border-radius: var(--r-md);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.vv-btn-highlight:hover { background: var(--vv-yellow-600); }

/* ── Chips ───────────────────────────────────────── */
.vv-chip-save {
  background: var(--highlight);
  color: var(--highlight-fg);
  font-size: var(--fs-micro);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

.vv-card.is-out-of-stock {
  opacity: 0.7;
}

.vv-card.is-out-of-stock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.vv-card.is-out-of-stock .vv-card-stock {
  color: var(--fg-muted);
}

.vv-card.is-out-of-stock .vv-add-btn {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--vv-grey-300);
  background: var(--vv-grey-100);
  color: var(--vv-grey-500);
}

.vv-card.is-out-of-stock .vv-add-btn:hover {
  background: var(--vv-grey-100);
  color: var(--vv-grey-500);
  border-color: var(--vv-grey-300);
}

/* ── Loyalty section ─────────────────────────────── */
.vv-loyalty {
  background: linear-gradient(135deg, var(--vv-green-700) 0%, var(--vv-grey-900) 100%);
  color: var(--vv-white);
  padding: var(--s-20) 0;
  margin-top: var(--s-16);
}
.vv-loyalty-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-12);
  align-items: center;
}
.vv-loyalty h2 { color: var(--vv-white); margin: var(--s-3) 0; max-width: 40ch; font-family: var(--ff-display); font-style: normal; font-weight: 800; }
.vv-loyalty h2 em, .vv-loyalty h2 i { font-style: normal; font-family: inherit; }
.vv-loyalty p  { color: var(--vv-grey-300); margin-bottom: var(--s-6); }
.vv-loyalty-stat {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 1;
  -webkit-text-stroke: 3px var(--vv-green-500);
  color: transparent;
  letter-spacing: -.04em;
  user-select: none;
  padding: var(--s-4) 0;
}

/* ── Loyalty page hero ──────────────────────────── */
.vv-loyalty-hero {
  background: var(--vv-black);
  border-top: 4px solid var(--vv-green-600);
  padding: var(--s-16) var(--s-7);
  text-align: center;
}
.vv-loyalty-hero .vv-section-eyebrow { color: var(--vv-green-600) !important; margin-bottom: var(--s-4); }
.vv-loyalty-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: #fff !important;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 var(--s-3) 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.vv-loyalty-hero__subtitle {
  font-size: 1.125rem;
  color: #fff !important;
  opacity: 0.85;
  max-width: 44ch;
  margin: var(--s-4) auto 0;
  line-height: 1.55;
}

/* ── Loyalty stats grid ────────────────────────── */
.vv-loyalty-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  background: #f5f5f5;
  padding: var(--s-7);
  border-radius: 8px;
  margin-bottom: var(--s-14);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid #eee;
}
.vv-loyalty-stats__card {
  text-align: center;
  padding: var(--s-6);
  border: 1px solid #ddd;
  border-top: 3px solid var(--vv-green-600);
  border-radius: 6px;
  background: white;
}
.vv-loyalty-stats__label {
  font-size: var(--fs-small);
  color: #666;
  margin: 0 0 var(--s-1) 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.vv-loyalty-stats__value {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--vv-green-600);
  line-height: 1;
  margin: 0;
}

/* ── Loyalty steps section ──────────────────────── */
.vv-loyalty-steps {
  margin-bottom: var(--s-14);
  margin-top: var(--s-14);
}

/* ── Loyalty steps section ──────────────────────── */
.vv-loyalty-steps {
  margin-bottom: var(--s-14);
}
.vv-loyalty-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.vv-loyalty-step-card {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vv-loyalty-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.vv-loyalty-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--vv-green-600);
  color: white !important;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.vv-loyalty-step-title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 var(--s-2) 0;
  color: var(--vv-black);
  font-weight: 600;
  line-height: 1.2;
}
.vv-loyalty-step-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Anchor Builder – Loyalty icon list cards */
.anb-icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.anb-icon-list li {
  background: var(--vv-grey-50);
  border: 1px solid var(--vv-grey-200);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  align-items: flex-start;
}

.anb-icon-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: var(--s-3);
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.anb-icon-list li > span {
  flex: 1;
  color: var(--vv-black);
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .anb-icon-list {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
}

/* ── Store locator preview ───────────────────────── */
.vv-stores-preview {
  padding: var(--s-20) 0;
  background: var(--bg-alt);
  margin-top: var(--s-16);
}
.vv-stores-preview h2 { margin-bottom: var(--s-3); }
.vv-stores-lede { color: var(--fg-muted); max-width: 52ch; margin-bottom: var(--s-10); }
.vv-store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
.vv-store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.vv-store-card h3 { margin-bottom: var(--s-2); }
.vv-store-card p { font-size: var(--fs-small); color: var(--fg-muted); }
.vv-store-card a[href^="tel"] { color: var(--fg); font-weight: 600; text-decoration: none; }
.vv-store-card a[href^="tel"]:hover { color: var(--accent); }
.vv-store-card .vv-btn { align-self: flex-start; margin-top: var(--s-2); }
.vv-store-map {
  margin-top: var(--s-4);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
}
.vv-store-map iframe { width: 100%; height: 100%; display: block; }

/* ── Newsletter bar ──────────────────────────────── */
.vv-newsletter-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--s-8) 0;
}
.vv-newsletter-inner {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  flex-wrap: wrap;
  justify-content: space-between;
}
.vv-newsletter-inner p { font-size: var(--fs-small); color: var(--fg); }
.vv-newsletter {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.vv-newsletter input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  background: var(--surface);
  color: var(--fg);
  outline: none;
}
.vv-newsletter input[type="email"]:focus { border-color: var(--accent); }

/* ── Footer additions ────────────────────────────── */
.vv-footer-wordmark {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  color: var(--vv-white);
}
.vv-footer-brand .vv-meta { font-size: var(--fs-micro); color: var(--vv-grey-500); }
.vv-footer-brand .vv-meta a { color: var(--vv-grey-400); }
.vv-footer-social {
  display: flex;
  gap: var(--s-4);
  margin-top: var(--s-3);
}
.vv-footer-social a { color: var(--vv-grey-300); font-size: 18px; text-decoration: none; }
.vv-footer-social a:hover { color: var(--vv-green-500); }
.vv-footer-payments {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.vv-eft-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2A6B3F 0%, #1A4527 100%);
  border: 1px solid rgba(255,255,255,.08);
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 800;
  color: #FFF;
  letter-spacing: .12em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.vv-age-notice {
  font-size: var(--fs-micro);
  color: var(--fg-muted);
}
.vv-footer-fine {
  flex-direction: column;
  gap: var(--s-3);
}
.vv-footer-legal {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--vv-grey-300);
}
.vv-footer-legal a { color: var(--vv-grey-400); text-decoration: none; }
.vv-footer-legal a:hover { color: var(--vv-green-500); }

/* ── Shop archive layout ─────────────────────────── */
.vv-archive-shell { padding-top: var(--s-8); padding-bottom: var(--s-20); }
.vv-archive-head { margin-bottom: var(--s-6); }
.vv-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.vv-filter-toggle { display: none; }
.vv-shop-sort { display: flex; align-items: center; gap: var(--s-4); margin-left: auto; }
.vv-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--s-12);
  align-items: start;
}
.vv-shop-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--s-4));
  max-height: calc(100vh - var(--header-height) - var(--s-8));
  overflow-y: auto;
  padding: var(--s-5);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
          backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: var(--glass-radius);
}
.vv-shop-sidebar .vv-widget { margin-bottom: var(--s-5); }
.vv-shop-sidebar .vv-widget:last-child { margin-bottom: 0; }
.vv-shop-sidebar .vv-widget-title {
  font-family: var(--ff-display);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 var(--s-3);
  color: var(--vv-black);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .vv-shop-sidebar { background: var(--vv-white); }
}
.vv-pagination { margin-top: var(--s-10); }
.vv-shop-sort .woocommerce-result-count {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--glass-border);
  font-size: var(--fs-small);
  color: var(--accent);
  margin: 0;
}
.vv-shop-sort .woocommerce-ordering { margin: 0; }
.vv-shop-sort .woocommerce-ordering::before { content: '·'; color: var(--vv-grey-400); margin-right: var(--s-3); }
.vv-shop-sort .woocommerce-ordering select {
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  background: var(--vv-white);
  font: inherit; font-size: var(--fs-small); font-weight: 600;
  cursor: pointer;
}
.vv-shop-sort .woocommerce-ordering select:focus { outline: none; box-shadow: var(--focus-ring); border-color: var(--accent); }

.vv-pagination .woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
  list-style: none; display: inline-flex; gap: 6px; padding: 0; margin: 0; border: none;
}
.woocommerce-pagination ul.page-numbers li { border: none; }
.woocommerce-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: var(--r-pill);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--glass-border);
  color: var(--vv-black); font-weight: 600; font-size: var(--fs-small);
  text-decoration: none;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.woocommerce-pagination .page-numbers:hover { background: var(--vv-green-50); transform: translateY(-1px); }
.woocommerce-pagination .page-numbers.current {
  background: var(--vv-green-500); border-color: var(--vv-green-500); color: var(--vv-black);
  box-shadow: var(--glow-accent);
}

/* ── Single product ──────────────────────────────── */
.vv-product-single { padding-top: var(--s-6); padding-bottom: var(--s-20); }
.vv-product-breadcrumb { margin-bottom: var(--s-6); }
.vv-product-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--s-10);
  align-items: start;
  margin-bottom: var(--s-12);
}
.vv-product-gallery { position: sticky; top: calc(var(--header-height) + var(--s-4)); }
.vv-product-meta { display: flex; flex-direction: column; gap: var(--s-4); }
.vv-product-title { font-size: var(--fs-h1); }
.vv-product-price { font-size: var(--fs-h2); font-weight: 700; font-family: var(--ff-display); }
.vv-product-desc { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.65; }
.vv-product-sep { border: none; border-top: 1px solid var(--border); }
.vv-product-tabs { margin-top: var(--s-16); }
.vv-product-related { margin-top: var(--s-16); }
.vv-loyalty-earned {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--vv-green-600);
  padding: var(--s-3) var(--s-4);
  background: var(--vv-green-50);
  border-radius: var(--r-md);
  margin-top: var(--s-2);
}

/* ── About page ──────────────────────────────────── */
.vv-about-body { padding-top: var(--s-16); padding-bottom: var(--s-20); display: flex; flex-direction: column; gap: var(--s-20); }
.vv-about-story { max-width: 70ch; }
.vv-about-story p.eyebrow {
  color: #7A7A7A;
}
.vv-about-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-inverse);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
}
.vv-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-8);
}
.vv-value-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.vv-value-icon { color: var(--accent); }
.vv-value-card h3 { font-size: var(--fs-body); }
.vv-value-card p  { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.6; }

/* ── CTA banner ──────────────────────────────────── */
.vv-cta-banner {
  background: var(--accent);
  color: var(--vv-white);
  padding: var(--s-12) 0;
}
.vv-cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-12);
  flex-wrap: wrap;
}
.vv-cta-banner h2 { color: var(--vv-white); font-size: var(--fs-h1); }
.vv-cta-banner p  { color: rgba(255,255,255,.75); margin-top: var(--s-2); }

/* ── Contact page ────────────────────────────────── */
.vv-page-hero {
  padding: var(--s-20) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.vv-page-hero h1 { margin-top: var(--s-2); margin-bottom: var(--s-3); }
.vv-page-hero p  { font-size: var(--fs-body); color: var(--fg-muted); max-width: 55ch; }
.vv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  padding-top: var(--s-12);
  padding-bottom: var(--s-20);
}
.vv-contact-form-wrap h2 { margin-bottom: var(--s-3); }
.vv-contact-intro { font-size: var(--fs-small); color: var(--fg-muted); margin-bottom: var(--s-6); }
.vv-contact-form-wrap .vv-meta { margin-top: var(--s-4); font-size: var(--fs-small); color: var(--fg-muted); }
.vv-store-stack { display: flex; flex-direction: column; gap: var(--s-6); }

/* ── Contact form styling ─────────────────────────── */
.vv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.vv-form-grid .vv-form-full { grid-column: 1 / -1; }
.vv-form-grid label {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--fg);
}
.vv-form-grid label span { display: block; }
.vv-form-grid input[type="text"],
.vv-form-grid input[type="email"],
.vv-form-grid textarea {
  width: 100%;
  padding: 10px 13px;
  height: 44px;
  font: inherit;
  font-size: var(--fs-body);
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--vv-grey-300);
  border-radius: var(--r-sm);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  appearance: none;
}
.vv-form-grid textarea {
  height: 140px;
  resize: vertical;
}
.vv-form-grid input:focus,
.vv-form-grid textarea:focus {
  outline: none;
  border-color: var(--vv-green-500);
  box-shadow: var(--focus-ring);
}
.vv-form-success {
  padding: var(--s-4);
  margin-bottom: var(--s-4);
  background: var(--vv-green-50);
  border: 1px solid var(--vv-green-500);
  border-radius: var(--r-sm);
  font-size: var(--fs-small);
  color: var(--vv-green-700);
}
.vv-form-error {
  padding: var(--s-4);
  margin-bottom: var(--s-4);
  background: #FEF2F2;
  border: 1px solid var(--vv-danger);
  border-radius: var(--r-sm);
  font-size: var(--fs-small);
  color: var(--vv-danger);
}

/* Neutralise default link colours in the contact section */
.vv-contact-form-wrap a,
.vv-store-stack a:not(.vv-btn) {
  color: var(--vv-green-700);
  text-decoration: none;
}
.vv-contact-form-wrap a:hover,
.vv-store-stack a:not(.vv-btn):hover {
  color: var(--vv-green-600);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .vv-form-grid { grid-template-columns: 1fr; }
}

/* ── Phase B: Contact hero ─────────────────────── */
/* Scoped to .vv-contact-hero — does not affect other vv-page-hero uses */
.vv-contact-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  min-height: 280px;
}
.vv-contact-hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-4);
  padding: var(--s-16) var(--s-10) var(--s-16) max(var(--s-8), calc((100vw - var(--shell)) / 2 + var(--s-8)));
  background: radial-gradient(ellipse at 85% 90%, rgba(82,184,74,0.07) 0%, transparent 52%);
}
.vv-contact-hero-text::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(82,184,74,0.14);
  pointer-events: none;
}
.vv-contact-hero-text::after {
  content: "";
  position: absolute;
  top: -48px;
  left: -48px;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: 1px solid rgba(82,184,74,0.09);
  pointer-events: none;
}
.vv-contact-hero .eyebrow {
  color: var(--vv-green-700);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.vv-contact-hero-text h1 { max-width: 22ch; }
.vv-contact-hero-text p  { font-size: var(--fs-body); color: var(--fg-muted); max-width: 48ch; }
.vv-contact-hero-visual {
  position: relative;
  overflow: hidden;
}

/* ── Phase B: Store card polish (contact page only) */
.vv-store-stack .vv-store-card {
  gap: var(--s-3);
}
.vv-store-stack .vv-card-name {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--fg);
  padding-left: var(--s-3);
  border-left: 3px solid var(--vv-green-500);
  line-height: 1.3;
}
.vv-store-stack .vv-card-address {
  font-size: var(--fs-small);
  color: var(--fg-muted);
  line-height: 1.5;
}
.vv-store-stack .vv-card-phone { font-size: var(--fs-body); }
.vv-store-stack .vv-card-phone a {
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}
.vv-store-stack .vv-card-phone a:hover { color: var(--accent); }
.vv-store-stack .vv-card-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--fs-small);
  color: var(--fg-muted);
}
.vv-card-hours-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Phase B: FAQ stub ─────────────────────────── */
.vv-contact-faq {
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}
.vv-contact-faq h3 {
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: var(--s-5);
  color: var(--fg);
}
.vv-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin: 0;
}
.vv-faq-list dt {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--fg);
  margin-bottom: var(--s-1);
}
.vv-faq-list dd {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Phase B: Mobile pass ──────────────────────── */
@media (max-width: 860px) {
  .vv-contact-hero {
    grid-template-columns: 1fr;
  }
  .vv-contact-hero-text {
    padding: var(--s-10) var(--s-6);
  }
  .vv-contact-hero-visual {
    min-height: 220px;
  }
}
@media (max-width: 414px) {
  .vv-contact-hero-visual {
    min-height: 180px;
  }
}


/* ── Filter sidebar drawer chrome ────────────────── */
.vv-filter-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,.55);
  z-index: 199;
}
.vv-filter-scrim.is-open { display: block; }
.vv-filter-close {
  display: none;
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--vv-grey-100);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  color: var(--vv-grey-700);
}
@media (max-width: 860px) {
  .vv-filter-close { display: inline-flex; }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .vv-shop-layout { grid-template-columns: 220px 1fr; }
}

@media (max-width: 860px) {
  .vv-hero { grid-template-columns: 1fr; min-height: auto; }
  .vv-hero-visual { min-height: 320px; order: -1; padding: var(--s-6) var(--s-4); }
  .vv-hero-inner { padding: var(--s-10) var(--s-6); }
  .vv-trust-strip { flex-wrap: wrap; }
  .vv-trust-item { flex-basis: calc(50% - 1px); }
  .vv-loyalty-inner { grid-template-columns: 1fr; }
  .vv-loyalty-stat { font-size: 4.5rem; }
  .vv-store-grid { grid-template-columns: 1fr; }
  .vv-contact-grid { grid-template-columns: 1fr; }
  .vv-product-layout { grid-template-columns: 1fr; }
  .vv-product-gallery { position: static; }
  .vv-cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .vv-filter-toggle { display: inline-flex; }
  .vv-shop-layout { grid-template-columns: 1fr; }
  .vv-shop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 280px;
    max-height: 100%;
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: var(--s-8) var(--s-6);
    z-index: 200;
    transform: translateX(-100%);
    transition: transform var(--dur-base) var(--ease-out);
    overflow-y: auto;
  }
  .vv-shop-sidebar.is-open { transform: translateX(0); }
}

@media (max-width: 600px) {
  .vv-trust-item { flex-basis: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .vv-newsletter-inner { flex-direction: column; align-items: stretch; }
  .vv-footer-fine { flex-direction: column; }
  .vv-values-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Anchor-Builder homepage overrides (P0 visual fixes)
   The homepage is rendered by the anchor-builder plugin (.anb-* sections),
   not front-page.php. These rules force brand consistency on its output.
   ========================================================================= */


/* ── Loyalty balance widget ─────────────────────────────────────────── */
.vv-loyalty-section {
  margin-top: var(--s-8);
}
.vv-loyalty-balance-panel {
  background: var(--vv-black);
  border-radius: 12px;
  padding: var(--s-8) var(--s-8) var(--s-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-2);
  max-width: 480px;
}
.vv-loyalty-balance-panel .eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vv-grey-400);
  margin-bottom: var(--s-3);
}
.vv-loyalty-balance {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--vv-green-500);
  letter-spacing: -.03em;
}
.vv-loyalty-balance-panel > p {
  color: var(--vv-grey-300);
  font-size: var(--fs-small);
  margin: var(--s-2) 0 0;
  padding-top: var(--s-4);
  border-top: 1px solid var(--vv-grey-800);
  width: 100%;
}
.vv-loyalty-empty {
  margin-top: var(--s-5);
  font-size: var(--fs-small);
  color: var(--vv-grey-500);
  text-align: center;
  font-style: italic;
}
/* Loyalty banner: dark theme with green accent */
.anb-loyalty-banner {
  background: var(--vv-black) !important;
  border-top: 4px solid var(--vv-green-600) !important;
  color: white !important;
  padding: var(--s-8) var(--s-6) !important;
}
.anb-loyalty-banner h2 {
  font-family: var(--ff-display) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  text-transform: none;
  color: white !important;
}
.anb-loyalty-banner h2 em,
.anb-loyalty-banner h2 i { font-family: inherit !important; font-style: normal !important; }
.anb-loyalty-banner p {
  color: #ccc !important;
}

.anb-loyalty-banner .vv-btn,
.anb-loyalty-banner .vv-btn-black,
.anb-loyalty-banner .vv-btn-primary {
  background: var(--vv-green-600) !important;
  color: var(--vv-black) !important;
  border-color: var(--vv-green-600) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.anb-loyalty-banner .vv-btn:hover {
  background: var(--vv-green-700) !important;
  border-color: var(--vv-green-700) !important;
  color: var(--vv-black) !important;
}
  border-color: var(--vv-grey-800) !important;
.anb-section[data-anb-id="sec_home_stats"] { display: none !important; }

/* Loyalty hero — ANB render: white text on dark background, centred */
.anb-el-sec_loyalty_hero { text-align: center; }
.anb-el-sec_loyalty_hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 var(--s-3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.anb-el-sec_loyalty_hero p:not(.vv-section-eyebrow) {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 44ch;
  margin: var(--s-4) auto 0;
  line-height: 1.55;
}

/* Stats strip generic safety: if it ever returns, at least make it readable */
.anb-stat-strip { display: flex; flex-wrap: wrap; gap: var(--s-8); justify-content: center; }
.anb-stat-num { color: var(--vv-green-600) !important; font-weight: 800; }
.anb-stat-label { color: var(--vv-grey-600); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }

/* Eyebrow labels rendered by builder should match theme eyebrow */
.anb-eyebrow-label {
  font-family: var(--ff-mono, monospace);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--vv-green-600);
  margin-bottom: 6px;
}

/* Builder-rendered Woo product list on homepage: lift from <ul><li> default */
.anb-products-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-6); }
.anb-products-grid--cols-3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.anb-products-grid li.product { list-style: none; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s-4); transition: all var(--dur-fast) var(--ease-out); }
.anb-products-grid li.product:hover { box-shadow: var(--elev-2); transform: translateY(-2px); }
.anb-products-grid li.product img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; background: var(--vv-grey-100); border-radius: var(--r-sm); }
.anb-products-grid li.product .woocommerce-loop-product__title { font-size: 14px; font-weight: 600; margin: var(--s-3) 0 var(--s-2); line-height: 1.3; min-height: 2.6em; }
.anb-products-grid li.product .price { font-weight: 700; color: var(--vv-black); display: block; margin-bottom: var(--s-3); }
.anb-products-grid li.product .button { display: inline-block; background: var(--vv-green-500); color: var(--vv-black); padding: 8px 14px; border-radius: var(--r-md); font-weight: 600; font-size: 13px; text-decoration: none; }
.anb-products-grid li.product .button:hover { background: var(--vv-green-600); }

/* ── Header nav: prevent wrap-stacking on desktop (PDF-fix 2026-04-25) ── */
@media (min-width: 901px) {
  .vv-header-inner { gap: var(--s-3); padding: 12px 20px; }
  .vv-primary-nav ul { flex-wrap: nowrap; white-space: nowrap; gap: 0; }
  .vv-primary-nav a { padding: 8px 10px; font-size: 13.5px; }
  .vv-search-wrap { width: 200px; }
  .vv-logo-mark { font-size: 22px; }
}
@media (min-width: 1200px) {
  .vv-primary-nav a { padding: 8px 12px; font-size: var(--fs-small); }
  .vv-search-wrap { width: 240px; }
  .vv-logo-mark { font-size: 26px; }
}

/* ── Hero left-side fallback when no image (PDF-fix 2026-04-25) ── */
.vv-hero-smoke {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(82,184,74,0.32), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(14,14,14,0.35), transparent 60%),
    linear-gradient(135deg, var(--vv-grey-100), var(--vv-grey-200));
  display: grid;
  place-items: center;
  position: relative;
}
.vv-hero-smoke::before {
  content: 'K&C';
  font-family: var(--ff-display);
  font-size: clamp(80px, 12vw, 200px);
  color: var(--vv-green-500);
  opacity: .25;
  line-height: 1;
}

/* Hero ghost-dark btn was unreadable on light hero bg (PDF-fix 2026-04-25) */
.vv-hero .vv-btn-ghost-dark {
  color: var(--vv-black);
  border-color: var(--vv-black);
}
.vv-hero .vv-btn-ghost-dark:hover {
  background: var(--vv-black);
  color: var(--vv-white);
}

/* P2 #5 + P3 #9 — comprehensive print stylesheet pass 2026-04-25 */
@media print {
  /* page setup */
  @page { margin: 1.5cm 2cm; }
  * { animation: none !important; transition: none !important; box-shadow: none !important; }

  /* glass surfaces → solid white (also covers screenshot tools) */
  .vv-site-header, .vv-topbar, .glass, .glass-strong,
  .vv-shop-sidebar {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid #e5e7eb !important;
  }

  /* body base */
  body { color: #000 !important; background: #fff !important; font-size: 11pt !important; }
  a { color: #000 !important; text-decoration: underline !important; }

  /* hide: UI chrome that serves no purpose in print */
  .vv-skip-link,
  .vv-menu-toggle,
  .vv-search-wrap,
  .vv-cart-btn,
  .vv-cart-drawer,
  .vv-cart-scrim,
  .vv-mobile-nav,
  .vv-mobile-search,
  .vv-marquee,
  .vv-hero-smoke,
  .vv-hero-cta,
  .vv-newsletter-bar,
  .vv-eft-badge,
  .vv-footer-social,
  .vv-footer-payments { display: none !important; }

  /* hero: flatten, text readable */
  .vv-hero {
    background: #fff !important;
    min-height: auto !important;
    padding: 1.5rem 0 !important;
  }
  .vv-hero-title,
  .vv-hero-sub,
  .vv-hero-eyebrow { color: #000 !important; }

  /* buttons: flat outlines */
  .vv-btn {
    background: transparent !important;
    border: 1px solid #000 !important;
    color: #000 !important;
  }

  /* header: keep brand, hide nav links (takes too much horizontal space) */
  .vv-primary-nav { display: none !important; }
  .vv-header-inner { justify-content: flex-start !important; }

  /* product grid: 2 columns, no hover glow */
  .anb-products-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  .anb-products-grid li.product { break-inside: avoid; }

  /* category grid: 2 columns */
  .vv-category-grid { grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }
  .vv-category-card { border: 1px solid #e5e7eb !important; background: #fff !important; color: #000 !important; }

  /* stats strip: readable plain text */
  .anb-stat-num,
  .anb-stat-label { color: #000 !important; }

  /* loyalty banner: flat */
  .anb-loyalty-banner { background: #f9fafb !important; color: #000 !important; }

  /* footer: light */
  .vv-site-footer { background: #fff !important; color: #000 !important; }
  .vv-footer-col,
  .vv-footer-wordmark,
  .vv-footer-fine,
  .vv-footer-legal { color: #000 !important; }
}

/* Mobile responsive - loyalty steps */
@media (max-width: 768px) {
  .vv-loyalty-steps__grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
}

/* ── About lockup — fills hero visual panel ──────── */
.vv-about-lockup {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 0;
  background: none;
}
.vv-about-lockup > svg { flex: 1; display: block; }

/* ── Our Stores section ──────────────────────────── */
.vv-stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-8);
}
.vv-store-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.vv-store-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.vv-store-card .vv-btn-ghost-dark {
  color: var(--fg);
  border-color: var(--vv-grey-400);
}
.vv-store-card .vv-btn-ghost-dark:hover {
  background: var(--vv-grey-100);
  color: var(--fg);
}
.vv-store-icon {
  color: var(--accent);
  display: block;
  width: 24px;
  height: 24px;
}
.vv-store-card h3 { font-size: var(--fs-body); }
.vv-store-card address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--fg-muted);
  line-height: 1.6;
}
.vv-store-card address a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.vv-store-card address a:hover { text-decoration: underline; }
.vv-store-hours {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--vv-green-50);
  border: 1px solid var(--vv-green-500);
  border-radius: var(--r-pill);
  padding: var(--s-2) var(--s-4);
  display: inline-block;
  color: var(--fg-muted);
}
@media (max-width: 767px) {
  .vv-stores-grid { grid-template-columns: 1fr; }
}

/* ── About story section — two-column layout ────── */
.vv-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: start;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.vv-story-column {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  background: var(--surface);
}
.vv-story-text h2 {
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.3;
  margin-bottom: 20px;
}
.vv-story-text p {
  margin-bottom: 12px;
}
.vv-story-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vv-story-list li {
  font-size: 14px;
  line-height: 1.5;
}
.vv-story-list li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.vv-story-list span {
  display: block;
  color: var(--fg-muted);
  font-size: 13px;
  margin-top: 2px;
}
.vv-story-points {
  align-items: center;
  text-align: center;
}
.vv-story-points .vv-story-list {
  width: 100%;
  text-align: left;
}

@media (max-width: 768px) {
  .vv-about-story {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .vv-story-text h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .vv-about-story {
    gap: var(--s-4);
  }
  .vv-story-text h2 {
    font-size: 20px;
  }
  .vv-story-list li {
    font-size: 13px;
  }
}

/* Value card hover state with subtle lift */
.vv-value-card {
  transition: all var(--dur-base) var(--ease-out);
}
.vv-value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Store map embed styling */
.vv-store-map {
  margin-top: var(--s-4);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.vv-store-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   Phase 5 — Section rhythm + typography pass
   ═══════════════════════════════════════════════════════════════ */

/* ── Type scale ──────────────────────────────────── */
h1, .vv-h1 { font-size: var(--fs-h1); line-height: 1.1; letter-spacing: -.02em; }
h2, .vv-h2 { font-size: var(--fs-h2); line-height: 1.15; letter-spacing: -.015em; }
h3, .vv-h3 { font-size: var(--fs-h3); line-height: 1.3; }
body, p     { line-height: 1.7; }
.vv-caption, figcaption { font-size: var(--fs-micro); line-height: 1.5; color: var(--fg-muted); }

/* Section title — fluid size + tighter line-height */
.vv-section-title {
  font-size: clamp(1.625rem, 2.6vw, 2.125rem);
  line-height: 1.1;
}

/* ── Consistent gutter ───────────────────────────── */
.vv-section-inner,
.vv-shell,
.vv-shell-narrow { padding-inline: clamp(16px, 3.5vw, 40px); }

/* ── Section padding variants ────────────────────── */
.vv-section        { padding-block: var(--s-16); }
.vv-section--tall  { padding-block: var(--s-20) var(--s-24); }
.vv-section--tight { padding-block: var(--s-10) var(--s-12); }

/* ── Alternating section head alignment ──────────── */
.vv-site-main > .vv-section:nth-child(even) .vv-section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vv-site-main > .vv-section:nth-child(even) .vv-section-eyebrow { margin-bottom: var(--s-3); }

/* Center-head modifier for manual use */
.vv-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vv-section-head--center .vv-section-eyebrow { margin-bottom: var(--s-3); }

/* ── Alternating section background ──────────────── */
.vv-section--alt                              { background: var(--vv-grey-50); }
.vv-site-main > .vv-section:nth-child(even)   { background: var(--vv-grey-50); }

/* ── Phase 6: Product card & interactive states ── */

/* Badge system */
.vv-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  line-height: 1;
  background: var(--vv-green-50);
  color: var(--vv-green-700);
  border: 1px solid rgba(82,184,74,0.3);
}
.vv-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  line-height: 1;
}
.vv-badge--new  { background: var(--vv-green-50);  color: #166534; border: 1px solid rgba(82,184,74,0.3); }
.vv-badge--sale { background: #FEE2E2; color: #B91C1C; border: 1px solid #FCA5A5; }
.vv-badge--hot  { background: #FEF3C7; color: #92400E; border: 1px solid #FCD34D; }

/* Sale chip (second chip in badges = Save …) */
.vv-card-badges .vv-chip:not(:first-child) {
  background: #FEE2E2;
  color: #B91C1C;
  border-color: #FCA5A5;
}

/* Card foot button: pill shape */
.vv-card .vv-card-foot .vv-btn {
  border-radius: var(--r-pill);
}

/* Price-row outline button: pill + green hover */
.vv-card .vv-card-price-row .vv-btn-outline {
  border-radius: var(--r-pill);
}
.vv-card .vv-card-price-row .vv-btn-outline:hover {
  background: var(--vv-green-500);
  border-color: var(--vv-green-500);
  color: var(--vv-black);
}

/* Out-of-stock image desaturation */
.vv-card.is-out-of-stock .vv-card-shot {
  filter: grayscale(40%);
}

/* ── Phase 6: Micro-interactions & Scroll-reveal ── */

@keyframes vv-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vv-category-card,
.vv-rail-card {
  animation: vv-fade-up 0.5s ease-out;
  animation-fill-mode: both;
}

.vv-category-card:nth-child(1), .vv-rail-card:nth-child(1) { animation-delay: 0.05s; }
.vv-category-card:nth-child(2), .vv-rail-card:nth-child(2) { animation-delay: 0.10s; }
.vv-category-card:nth-child(3), .vv-rail-card:nth-child(3) { animation-delay: 0.15s; }
.vv-category-card:nth-child(4), .vv-rail-card:nth-child(4) { animation-delay: 0.20s; }
.vv-category-card:nth-child(5), .vv-rail-card:nth-child(5) { animation-delay: 0.25s; }
.vv-category-card:nth-child(6), .vv-rail-card:nth-child(6) { animation-delay: 0.30s; }
.vv-category-card:nth-child(7), .vv-rail-card:nth-child(7) { animation-delay: 0.35s; }
.vv-category-card:nth-child(8), .vv-rail-card:nth-child(8) { animation-delay: 0.40s; }

/* ── Loyalty 1:1 pulse ───────────────────────────── */

@keyframes vv-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

.vv-loyalty-stat {
  animation: vv-pulse 2.5s ease-in-out infinite;
}

.vv-chip-new {
  background: var(--accent);
  color: var(--vv-white);
  font-size: var(--fs-micro);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

.vv-chip-out-of-stock {
  background: var(--vv-grey-400);
  color: var(--vv-white);
  font-size: var(--fs-micro);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

/* ── Phase 5 Mobile & Accessibility Improvements ─────────────────────── */

/* Ensure newsletter input height meets touch target requirements */
.vv-newsletter input[type="email"] {
  min-height: 44px;
  height: 44px;
  box-sizing: border-box;
}

.vv-newsletter button {
  min-height: 44px;
  padding: 0 var(--s-6);
}

/* Improve footer social link touch targets */
.vv-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: var(--s-2);
  border-radius: 4px;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.vv-footer-social a:hover {
  background: rgba(118, 184, 82, 0.1);
}

/* Optimize payment icons for retina displays */
.vv-footer-payments svg {
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/* Improve mobile newsletter form layout */
@media (max-width: 600px) {
  .vv-newsletter {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    align-items: stretch;
  }
  
  .vv-newsletter input[type="email"],
  .vv-newsletter button {
    width: 100%;
  }
}




/* Hero product frame — transparent (no white card) */
.vv-hero-product-frame {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.vv-hero-product-frame img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}
