/* VapoCept DTC Official Brand Store - Design System: Sapphire Neural & Solar Amber */
:root {
  --brand-navy: #0a1931;
  --brand-deep: #061122;
  --brand-card: #152a4a;
  --brand-sapphire: #1d4ed8;
  --brand-sapphire-light: #3b82f6;
  --brand-cyan: #06b6d4;
  --brand-cyan-light: #e0f2fe;
  --accent-gold: #f59e0b;
  --accent-amber: #d97706;
  --accent-hover: #b45309;
  --accent-glow: rgba(245, 158, 11, 0.35);
  --save-green: #15803d;
  --save-green-bg: #ecfdf5;
  --save-green-border: #a7f3d0;
  --bg-white: #ffffff;
  --bg-alt: #f8fafc;
  --bg-ice: #f1f5f9;
  --ink: #0f172a;
  --ink-light: #334155;
  --ink-muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-dark: #cbd5e1;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 6px rgba(10, 25, 49, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 25, 49, 0.08);
  --shadow-lg: 0 16px 36px rgba(10, 25, 49, 0.12);
  --shadow-cta: 0 8px 25px var(--accent-glow);
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-white);
  color: var(--ink-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-sapphire);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-navy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 1.15rem;
  padding-left: 1.5rem;
}

/* Layout Utilities */
.vpz-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vpz-container-narrow {
  max-width: 920px;
}

.vpz-container-slim {
  max-width: 780px;
}

.vpz-section {
  padding: 72px 0;
}

.vpz-section-sm {
  padding: 48px 0;
}

.vpz-section-alt {
  background-color: var(--bg-alt);
}

.vpz-section-ice {
  background-color: var(--bg-ice);
}

.vpz-section-dark {
  background-color: var(--brand-navy);
  color: #e2e8f0;
}

.vpz-section-dark h1,
.vpz-section-dark h2,
.vpz-section-dark h3,
.vpz-section-dark h4 {
  color: #ffffff;
}

.vpz-text-center {
  text-align: center;
}

.vpz-heading-center {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.vpz-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-sapphire);
  background-color: var(--brand-cyan-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.vpz-section-dark .vpz-eyebrow {
  color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.15);
}

.vpz-title-lg {
  font-size: clamp(28px, 3.8vw, 42px);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.vpz-title-md {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.vpz-subtitle {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.vpz-section-dark .vpz-subtitle {
  color: #cbd5e1;
}

/* Skip link */
.vpz-skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-navy);
  color: #ffffff;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.2s ease;
}

.vpz-skip-link:focus {
  top: 20px;
}

/* Top Announcement Bar */
.vpz-announcement-bar {
  background: linear-gradient(90deg, #0a1931 0%, #152a4a 50%, #0a1931 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2px;
}

.vpz-announcement-bar strong {
  color: var(--accent-gold);
}

/* Header */
.vpz-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: var(--shadow-sm);
}

.vpz-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.vpz-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.5px;
}

.vpz-logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.vpz-logo-mark {
  color: var(--brand-sapphire);
}

.vpz-logo sup {
  font-size: 12px;
  color: var(--accent-amber);
  top: -0.6em;
  font-weight: 700;
}

.vpz-nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vpz-nav-link {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-light);
  transition: color 0.2s ease;
}

.vpz-nav-link:hover,
.vpz-nav-link.is-active {
  color: var(--brand-sapphire);
}

.vpz-header-cta {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.vpz-header-cta:hover {
  background: linear-gradient(135deg, #fbbf24 0%, var(--accent-hover) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--accent-glow);
}

.vpz-burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--brand-navy);
}

.vpz-burger-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Buy Box / PDP Hero Section */
.vpz-hero-pdp {
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.08) 0%, rgba(248, 250, 252, 1) 70%);
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--border);
}

.vpz-pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* PDP Gallery (Left) */
.vpz-pdp-gallery {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vpz-pdp-main-img-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.vpz-pdp-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--save-green);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vpz-pdp-hero-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.vpz-pdp-hero-img:hover {
  transform: scale(1.02);
}

.vpz-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vpz-thumb-btn {
  background-color: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vpz-thumb-btn img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.vpz-thumb-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-light);
  margin-top: 4px;
}

.vpz-thumb-btn:hover,
.vpz-thumb-btn.is-active {
  border-color: var(--brand-sapphire);
  transform: translateY(-2px);
}

/* PDP Buy Box Details (Right) */
.vpz-pdp-buybox {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.vpz-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.vpz-stars {
  color: var(--accent-gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.vpz-rating-score {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.vpz-rating-count {
  font-size: 14px;
  color: var(--brand-sapphire);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vpz-pdp-h1 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.vpz-canonical-def-box {
  background: var(--brand-cyan-light);
  border-left: 4px solid var(--brand-sapphire);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--brand-navy);
  line-height: 1.55;
}

/* Bundle Options Selector */
.vpz-bundle-selector {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.vpz-bundle-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  background-color: var(--bg-white);
  transition: all 0.2s ease;
}

.vpz-bundle-card:hover {
  border-color: var(--brand-sapphire-light);
  background-color: #f8fafc;
}

.vpz-bundle-card.is-selected {
  border-color: var(--brand-sapphire);
  background-color: #eff6ff;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.12);
}

.vpz-bundle-card-ribbon {
  position: absolute;
  top: -11px;
  right: 20px;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
}

.vpz-bundle-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vpz-radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.vpz-bundle-card.is-selected .vpz-radio-custom {
  border-color: var(--brand-sapphire);
}

.vpz-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.vpz-bundle-card.is-selected .vpz-radio-dot {
  background-color: var(--brand-sapphire);
}

.vpz-bundle-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.vpz-bundle-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.vpz-bundle-right {
  text-align: right;
}

.vpz-bundle-unit-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.vpz-bundle-unit-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
}

.vpz-bundle-save-pill {
  display: inline-block;
  background-color: var(--save-green-bg);
  color: var(--save-green);
  border: 1px solid var(--save-green-border);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 3px;
}

/* Dynamic Price Box */
.vpz-dynamic-price-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vpz-price-display-left {
  display: flex;
  flex-direction: column;
}

.vpz-price-big {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

.vpz-price-big span {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-muted);
}

.vpz-price-totals {
  font-size: 13.5px;
  color: var(--ink-light);
  margin-top: 4px;
}

.vpz-price-was {
  text-decoration: line-through;
  color: var(--ink-muted);
}

.vpz-shipping-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--save-green);
  text-align: right;
}

/* Big CTA Button */
.vpz-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  padding: 18px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 28px var(--accent-glow);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.vpz-cta-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.45);
}

.vpz-cta-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vpz-cta-subtext {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vpz-cta-subtext span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Trust Badges Strip */
.vpz-trust-strip {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.vpz-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.vpz-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vpz-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--brand-cyan-light);
  color: var(--brand-sapphire);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vpz-trust-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.vpz-trust-text {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.vpz-trust-text small {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-muted);
}

/* 3 Benefit Pillars */
.vpz-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vpz-pillar-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vpz-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vpz-pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-sapphire) 0%, var(--brand-cyan) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vpz-pillar-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.vpz-pillar-title {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Spec Table GEO Block */
.vpz-spec-table-wrap {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.vpz-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.vpz-spec-table th,
.vpz-spec-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.vpz-spec-table tr:last-child th,
.vpz-spec-table tr:last-child td {
  border-bottom: none;
}

.vpz-spec-table th {
  width: 32%;
  background-color: #f8fafc;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-navy);
}

.vpz-spec-table td {
  color: var(--ink);
  font-weight: 500;
}

.vpz-spec-table tr:nth-child(even) td {
  background-color: #fdfefe;
}

/* TL;DR Summary Box */
.vpz-tldr-box {
  background: linear-gradient(135deg, #0a1931 0%, #152a4a 100%);
  color: #f1f5f9;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-lg);
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.vpz-tldr-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent-gold);
}

.vpz-tldr-title {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vpz-tldr-title svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

/* Supplement Facts Panel (FDA Style) */
.vpz-supp-facts {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 18px 22px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  max-width: 680px;
  margin: 30px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.vpz-sf-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.vpz-sf-serving {
  font-size: 14px;
  padding-bottom: 6px;
  border-bottom: 8px solid #000000;
}

.vpz-sf-header-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 0 4px;
  border-bottom: 3px solid #000000;
}

.vpz-sf-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #000000;
}

.vpz-sf-row.vpz-sf-bold {
  font-weight: 700;
}

.vpz-sf-row-sub {
  padding-left: 18px;
  font-size: 13.5px;
}

.vpz-sf-footer {
  font-size: 11px;
  line-height: 1.4;
  padding-top: 8px;
  border-top: 4px solid #000000;
  margin-top: 4px;
}

.vpz-other-ingredients {
  font-size: 12px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #999999;
}

/* Ingredients Grid */
.vpz-ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.vpz-ing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.vpz-ing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.vpz-ing-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-navy);
}

.vpz-ing-dose {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-sapphire);
  background-color: var(--brand-cyan-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* How to Take (3 Steps) */
.vpz-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0;
}

.vpz-step-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
}

.vpz-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.vpz-step-title {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Reviews Grid */
.vpz-reviews-stats-strip {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.vpz-rating-big-col {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 28px;
}

.vpz-rating-big-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

.vpz-rating-bars-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vpz-star-bar-row {
  display: grid;
  grid-template-columns: 60px 1fr 45px;
  gap: 12px;
  align-items: center;
  font-size: 13.5px;
}

.vpz-bar-track {
  height: 10px;
  background-color: var(--bg-ice);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.vpz-bar-fill {
  height: 100%;
  background-color: var(--accent-gold);
  border-radius: var(--radius-full);
}

.vpz-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vpz-review-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vpz-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.vpz-review-author {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.vpz-review-location {
  font-size: 12px;
  color: var(--ink-muted);
}

.vpz-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--save-green);
  background-color: var(--save-green-bg);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.vpz-review-text {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 14px;
}

.vpz-review-headline {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 6px;
  font-style: normal;
}

/* Comparison Table */
.vpz-compare-table-wrap {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 32px 0;
}

.vpz-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.vpz-compare-table th,
.vpz-compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

.vpz-compare-table th {
  background-color: var(--bg-alt);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-navy);
}

.vpz-compare-table th.vpz-highlight,
.vpz-compare-table td.vpz-highlight {
  background-color: #f0fdf4;
  color: var(--brand-navy);
  font-weight: 700;
  border-left: 2px solid var(--save-green);
  border-right: 2px solid var(--save-green);
}

.vpz-compare-table th.vpz-highlight {
  background-color: #dcfce7;
  color: var(--save-green);
  font-size: 16px;
}

/* FAQ Accordion */
.vpz-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.vpz-faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.vpz-faq-item:hover {
  border-color: var(--brand-sapphire-light);
}

.vpz-faq-summary {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.vpz-faq-summary::-webkit-details-marker {
  display: none;
}

.vpz-faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  color: var(--brand-sapphire);
  flex-shrink: 0;
}

.vpz-faq-item[open] .vpz-faq-icon {
  transform: rotate(180deg);
}

.vpz-faq-item[open] .vpz-faq-summary {
  border-bottom: 1px solid var(--border);
  background-color: #f8fafc;
  color: var(--brand-sapphire);
}

.vpz-faq-answer {
  padding: 20px 24px;
  font-size: 15.5px;
  color: var(--ink-light);
  line-height: 1.65;
  background-color: var(--bg-white);
}

/* Guarantee Band */
.vpz-guarantee-card {
  background: radial-gradient(circle at top right, #1e3a8a 0%, #0a1931 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin: 44px 0;
}

.vpz-guarantee-seal-wrap {
  text-align: center;
}

.vpz-guarantee-seal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px dashed var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.vpz-guarantee-seal-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.vpz-guarantee-seal-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* References Section */
.vpz-references-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 36px;
}

.vpz-references-title {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--brand-navy);
}

.vpz-references-list {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  padding-left: 20px;
}

.vpz-references-list li {
  margin-bottom: 8px;
}

/* Footer */
.vpz-footer {
  background-color: #061122;
  color: #94a3b8;
  font-size: 14px;
  padding: 60px 0 30px;
  border-top: 1px solid #1e293b;
}

.vpz-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.vpz-footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.vpz-footer-brand p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
}

.vpz-footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vpz-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vpz-footer-links a {
  color: #cbd5e1;
  font-size: 13.5px;
}

.vpz-footer-links a:hover {
  color: var(--accent-gold);
}

.vpz-footer-disclaimers {
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  padding: 24px 0;
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 1.65;
  color: #64748b;
}

.vpz-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.vpz-payment-icons {
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: 11.5px;
  color: #cbd5e1;
}

/* Sticky Add to Cart Dock */
.vpz-sticky-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 25, 49, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vpz-sticky-dock.is-visible {
  transform: translateY(0);
}

.vpz-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vpz-sticky-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vpz-sticky-thumb {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 2px;
}

.vpz-sticky-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.vpz-sticky-meta {
  font-size: 12.5px;
  color: #94a3b8;
}

.vpz-sticky-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vpz-sticky-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-gold);
  text-align: right;
  line-height: 1.1;
}

.vpz-sticky-price small {
  font-size: 11px;
  font-weight: 400;
  display: block;
  color: #94a3b8;
}

.vpz-sticky-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px var(--accent-glow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.vpz-sticky-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #c2410c 100%);
  transform: translateY(-1px);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .vpz-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vpz-pillars-grid,
  .vpz-ing-grid,
  .vpz-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vpz-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .vpz-pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vpz-pdp-gallery {
    position: static;
  }
  .vpz-guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .vpz-reviews-stats-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vpz-rating-big-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .vpz-nav-list {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  }
  .vpz-nav-list.is-active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, visibility 0s;
  }
  .vpz-burger-btn {
    display: block;
  }
  .vpz-header-cta {
    display: none;
  }
  .vpz-trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vpz-pillars-grid,
  .vpz-ing-grid,
  .vpz-steps-grid,
  .vpz-reviews-grid {
    grid-template-columns: 1fr;
  }
  .vpz-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .vpz-sticky-meta {
    display: none;
  }
  .vpz-sticky-price small {
    display: none;
  }
}
