/*
Theme Name: VitalMan Custom
Theme URI: https://www.vitalman.cz
Description: Custom-built premium theme for VitalMan.cz — male health ecommerce.
Template: flatsome
Author: VitalMan
Author URI: https://www.vitalman.cz
Version: 3.0.0
Text Domain: vitalman-custom
Requires WordPress: 6.0
Requires PHP: 8.0
*/

/* ===== CSS VARIABLES ===== */
:root {
  --vm-primary: #1a4a2e;
  --vm-primary-dark: #136633;
  --vm-primary-light: #e8f0e8;
  --vm-dark: #0d1b2a;
  --vm-dark-alt: #1a1a1a;
  --vm-gold: #c9a84c;
  --vm-gold-light: #d4b85a;
  --vm-gold-dark: #b8962e;
  --vm-white: #ffffff;
  --vm-bg-light: #f5f7f5;
  --vm-bg-card: #f9faf9;
  --vm-text: #333333;
  --vm-text-light: #666666;
  --vm-text-muted: #888888;
  --vm-radius: 16px;
  --vm-radius-sm: 8px;
  --vm-shadow: 0 4px 15px rgba(0,0,0,0.05);
  --vm-shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
  --vm-transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--vm-text);
  background: var(--vm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vm-primary); text-decoration: none; }
a:hover { opacity: 0.85; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

/* ===== CONTAINER ===== */
.vm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===== HEADER / NAV ===== */
.vm-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vm-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vm-header-logo-img {
  height: 32px;
  width: auto;
}
.vm-header-logo span {
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.vm-header-logo span em {
  font-style: normal;
  color: var(--vm-gold);
}
.vm-header-tagline {
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0;
  margin-left: 1px;
}

.vm-header-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.vm-header-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--vm-transition);
}
.vm-header-nav a:hover { color: var(--vm-white); }

.vm-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vm-header-account a,
.vm-header-cart a {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  transition: color var(--vm-transition);
}
.vm-header-account a:hover,
.vm-header-cart a:hover { color: var(--vm-white); }
.vm-header-cart { position: relative; }
.vm-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--vm-gold);
  color: var(--vm-dark);
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

.vm-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--vm-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.vm-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--vm-transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.vm-btn-primary {
  background: var(--vm-gold);
  color: var(--vm-dark);
  border-color: var(--vm-gold);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.vm-btn-primary:hover {
  background: var(--vm-gold-dark);
  border-color: var(--vm-gold-dark);
  color: var(--vm-dark);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
}
.vm-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.vm-btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--vm-white);
  opacity: 1;
}
.vm-btn-outline {
  background: transparent;
  color: var(--vm-primary);
  border-color: var(--vm-primary);
}
.vm-btn-outline:hover {
  background: var(--vm-primary);
  color: var(--vm-white);
  opacity: 1;
}
.vm-btn-cta {
  background: var(--vm-white);
  color: var(--vm-primary);
  font-size: 1.15rem;
  padding: 16px 44px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.vm-btn-cta:hover {
  background: var(--vm-primary-light);
  color: var(--vm-primary);
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== SECTION TITLES ===== */
.vm-section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--vm-dark);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.vm-section-subtitle {
  color: var(--vm-text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* ===== HERO ===== */
.vm-hero {
  background: var(--vm-dark);
  color: var(--vm-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  align-items: center;
}
.vm-hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,74,46,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.vm-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, var(--vm-dark-alt) 50%, transparent 50%);
}
.vm-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.vm-hero-tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--vm-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 50px;
}
.vm-hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.vm-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.5;
}
.vm-hero-usp {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.vm-hero-usp span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.vm-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vm-hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.vm-hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  animation: vm-bounce 2s infinite;
  letter-spacing: 1px;
}
@keyframes vm-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== HERO STATS (BlueChew-inspired) ===== */
.vm-hero-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.vm-hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vm-radius);
  padding: 20px 18px;
  text-align: center;
  min-width: 120px;
  flex: 1;
  backdrop-filter: blur(4px);
  transition: background var(--vm-transition), transform var(--vm-transition);
}
.vm-hero-stat:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.vm-hero-stat-val {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vm-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.vm-hero-stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== TRUST BADGES ===== */
.vm-trust {
  background: var(--vm-dark-alt);
  padding: 28px 0;
}
.vm-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.vm-trust-item {
  text-align: center;
  padding: 10px;
}
.vm-trust-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
}
.vm-trust-item strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.vm-trust-item small {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
}

/* ===== PRODUCTS ===== */
.vm-products {
  padding: 70px 0;
  background: var(--vm-white);
}
.vm-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.vm-product-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  overflow: hidden;
  box-shadow: var(--vm-shadow);
  transition: transform var(--vm-transition), box-shadow var(--vm-transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}
.vm-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vm-shadow-hover);
}
.vm-product-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--vm-bg-light);
  position: relative;
}
.vm-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vm-product-card:hover .vm-product-img-wrap img {
  transform: scale(1.08);
}
.vm-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--vm-gold);
  color: var(--vm-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vm-product-info {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vm-product-benefit {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--vm-primary);
  background: var(--vm-primary-light);
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
  align-self: flex-start;
}
.vm-product-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vm-dark);
  margin-bottom: 6px;
}
.vm-product-price {
  color: var(--vm-primary);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: auto;
}
.vm-products-cta {
  text-align: center;
}

/* ===== TIMELINE ===== */
.vm-timeline {
  padding: 70px 0;
  background: var(--vm-bg-light);
}
.vm-timeline-intro {
  margin-bottom: 36px;
}
.vm-step-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--vm-primary);
  text-transform: uppercase;
  border: 1px solid rgba(26,74,46,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.vm-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vm-timeline-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  padding: 32px 24px;
  box-shadow: var(--vm-shadow);
  text-align: center;
  transition: transform var(--vm-transition), box-shadow var(--vm-transition);
  position: relative;
  overflow: hidden;
}
.vm-timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vm-primary);
}
.vm-timeline-gold::before {
  background: var(--vm-gold);
}
.vm-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vm-shadow-hover);
}
.vm-step-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--vm-primary);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.15;
  text-align: left;
}
.vm-timeline-gold .vm-step-num {
  color: var(--vm-gold);
}
.vm-timeline-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vm-dark);
  margin-bottom: 8px;
}
.vm-timeline-card p {
  font-size: 0.9rem;
  color: var(--vm-text-light);
  line-height: 1.5;
}

/* ===== INGREDIENTS ===== */
.vm-ingredients {
  padding: 70px 0;
  background: var(--vm-white);
}
.vm-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vm-ingredient-card {
  background: var(--vm-bg-card);
  border-radius: var(--vm-radius);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow var(--vm-transition);
  cursor: default;
}
.vm-ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vm-shadow);
}
.vm-ingredient-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.vm-ingredient-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vm-primary);
  margin-bottom: 4px;
}
.vm-ingredient-meta {
  font-size: 0.8rem;
  color: var(--vm-text-muted);
  margin-bottom: 12px;
}
.vm-ingredient-card p {
  font-size: 0.9rem;
  color: var(--vm-text-light);
  line-height: 1.6;
}
.vm-ingredient-evidence {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--vm-primary);
  font-weight: 600;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===== TESTIMONIALS ===== */
.vm-testimonials {
  padding: 70px 0;
  background: var(--vm-dark);
  color: var(--vm-white);
}
.vm-testimonials .vm-section-title { color: var(--vm-white); }
.vm-testimonials .vm-section-subtitle { color: rgba(255,255,255,0.55); }
.vm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vm-testimonial-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--vm-radius);
  padding: 28px;
  transition: background var(--vm-transition), transform var(--vm-transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.vm-testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}
.vm-stars {
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--vm-gold);
  margin-bottom: 14px;
}
.vm-testimonial-card blockquote {
  font-style: italic;
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.55;
  margin-bottom: 20px;
}
.vm-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.vm-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vm-primary);
  color: var(--vm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.vm-testimonial-card cite {
  font-size: 0.85rem;
  font-style: normal;
}
.vm-testimonial-verified {
  display: block;
  font-size: 0.7rem;
  color: var(--vm-gold);
  margin-top: 2px;
}
.vm-testimonials-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===== FAQ ===== */
.vm-faq {
  padding: 70px 0;
  background: var(--vm-bg-light);
}
.vm-faq-grid {
  max-width: 720px;
  margin: 0 auto;
}
.vm-faq-item {
  background: var(--vm-white);
  border: 1px solid #e0e4e0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--vm-transition);
}
.vm-faq-item:hover {
  box-shadow: var(--vm-shadow);
}
.vm-faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--vm-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: color var(--vm-transition);
}
.vm-faq-item summary::-webkit-details-marker {
  display: none;
}
.vm-faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vm-primary);
  transition: transform var(--vm-transition);
}
.vm-faq-item[open] summary::after {
  content: '−';
}
.vm-faq-item[open] summary {
  color: var(--vm-primary);
  border-bottom: 1px solid #e0e4e0;
}
.vm-faq-item p {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--vm-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   PRODUCT PAGE — Trust elements
   ======================================== */
.vm-product-trust {
  margin: 18px 0 10px;
  padding: 14px 16px;
  background: var(--vm-bg-light);
  border-radius: 12px;
  border: 1px solid #e0e4e0;
}
.vm-product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 4px;
}
.vm-product-trust-row:last-child {
  margin-bottom: 0;
}
.vm-product-trust-row span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--vm-text);
  white-space: nowrap;
}
.vm-product-urgency {
  margin: 4px 0 10px;
  font-size: 0.85rem;
  color: var(--vm-text-light);
}
.vm-product-urgency-stock {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(26,74,46,0.08);
  color: var(--vm-primary);
  font-weight: 600;
  font-size: 0.82rem;
}
.vm-product-delivery {
  margin: 4px 0 8px;
  font-size: 0.85rem;
  color: var(--vm-text-light);
  padding: 6px 14px;
  background: rgba(201,168,76,0.08);
  border-radius: 50px;
  display: inline-block;
}

/* ===== CTA ===== */
.vm-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--vm-primary) 0%, #0f3d24 100%);
  color: var(--vm-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vm-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.vm-cta-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--vm-gold);
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.vm-cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.vm-cta-text {
  opacity: 0.8;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.vm-cta-meta {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-top: 18px;
}

/* ===== FOOTER ===== */
.vm-site-footer {
  background: var(--vm-dark);
  color: rgba(255,255,255,0.5);
  padding: 44px 0 24px;
}
.vm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.vm-footer-brand strong {
  color: var(--vm-white);
  font-size: 1rem;
}
.vm-footer-brand em {
  font-style: normal;
  color: var(--vm-gold);
}
.vm-footer-brand p {
  font-size: 0.85rem;
  margin-top: 10px;
  line-height: 1.5;
}
.vm-footer-col h4 {
  color: var(--vm-white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.vm-footer-col ul {
  list-style: none;
}
.vm-footer-col li {
  margin-bottom: 8px;
}
.vm-footer-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color var(--vm-transition);
}
.vm-footer-col a:hover { color: var(--vm-white); opacity: 1; }
.vm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .vm-hero-title { font-size: 2.8rem; }
  .vm-hero-grid { gap: 20px; }
  .vm-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .vm-hero {
    padding: 60px 0;
    min-height: auto;
  }
  .vm-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vm-hero-title { font-size: 2rem; }
  .vm-hero-subtitle { font-size: 1rem; margin: 0 auto 24px; }
  .vm-hero-usp { justify-content: center; }
  .vm-hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .vm-hero-image-col { display: none; }
  .vm-hero-scroll-hint { display: none; }
  .vm-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-product-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-ingredients-grid { grid-template-columns: 1fr; }
  .vm-testimonials-grid { grid-template-columns: 1fr; }
  .vm-faq-item summary { font-size: 0.92rem; padding: 14px 16px; }
  .vm-faq-item p { padding: 0 16px 14px; }
  .vm-section-title { font-size: 1.8rem; }
  .vm-footer-grid { grid-template-columns: 1fr 1fr; }
  .vm-btn { white-space: normal; }
  .vm-mobile-toggle { display: block; }
  .vm-header-nav { display: none; }
  .vm-header-nav.vm-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--vm-dark);
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .vm-header-nav.vm-open ul { flex-direction: column; gap: 16px; }
  .vm-header-actions { gap: 12px; }
  .vm-cta-title { font-size: 2rem; }
  .vm-hero-stats { flex-direction: column; align-items: center; }
  .vm-hero-stat { min-width: 160px; width: 100%; max-width: 200px; }
}

@media (max-width: 480px) {
  .vm-hero-title { font-size: 1.6rem; }
  .vm-product-grid { grid-template-columns: 1fr; }
  .vm-timeline-grid { grid-template-columns: 1fr; }
  .vm-trust-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .vm-footer-grid { grid-template-columns: 1fr; }
  .vm-cta-title { font-size: 1.6rem; }
  .vm-cta { padding: 50px 0; }
  .vm-hero-stats { flex-direction: row; flex-wrap: wrap; }
  .vm-hero-stat { min-width: 90px; max-width: none; flex: 0 1 auto; }
}

/* ========================================
   CART PAGE — Trust panel
   ======================================== */
.vm-cart-trust {
  margin: 20px 0;
  padding: 18px 20px;
  background: var(--vm-bg-light);
  border-radius: 12px;
  border: 1px solid #e0e4e0;
}
.vm-cart-trust-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vm-dark);
  margin-bottom: 10px;
}
.vm-cart-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 4px;
}
.vm-cart-trust-row:last-child {
  margin-bottom: 0;
}
.vm-cart-trust-row span {
  font-size: 0.78rem;
  color: var(--vm-text);
  font-weight: 500;
}

/* ========================================
   CHECKOUT PAGE — Trust panel
   ======================================== */
.vm-checkout-trust {
  margin: 20px 0 10px;
  padding: 16px 18px;
  background: var(--vm-bg-light);
  border-radius: 12px;
  border: 1px solid #e0e4e0;
}
.vm-checkout-trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vm-dark);
  margin-bottom: 8px;
}
.vm-checkout-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.vm-checkout-trust-badges span {
  font-size: 0.78rem;
  color: var(--vm-text);
  font-weight: 500;
}
