/* =====================================================
   Voxmonks Theme — Main CSS (Brand Refresh)
   Brand colours extracted from official logo:
     Slate Blue  : #283c50  (primary / M letterform)
     Burnt Orange: #c85000  (accent  / V chevron)
     Deep Navy   : #141e28  (dark surfaces)
     Near-black  : #0a0e12  (darkest bg)
   ===================================================== */

/* ── Variables ── */
:root {
  /* Core brand */
  --vm-orange:        #c85000;
  --vm-orange-light:  #e06020;
  --vm-orange-pale:   #d97030;
  --vm-slate:         #283c50;
  --vm-slate-light:   #3a5570;
  --vm-slate-pale:    #4e6880;

  /* Surfaces */
  --vm-ink:           #0a0e12;
  --vm-ink-soft:      #1c2830;
  --vm-dark:          #141e28;
  --vm-dark-mid:      #1a2535;
  --vm-dark-card:     #1e2d3d;

  /* Light surfaces */
  --vm-cream:         #f2f4f6;
  --vm-cream-dark:    #e4e8ec;
  --vm-white:         #ffffff;

  /* Text */
  --vm-text-muted:    #6a8090;
  --vm-text-soft:     #3a5060;

  /* Fonts */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Barlow', system-ui, sans-serif;
  --font-condensed:   'Barlow Condensed', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
body {
  font-family: var(--font-body);
  background: var(--vm-cream);
  color: var(--vm-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Accessibility ── */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.vm-skip-link:focus {
  clip: auto; clip-path: none; height: auto; left: 6px; top: 7px; width: auto; z-index: 999;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.vm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 68px;
  background: var(--vm-ink);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--vm-orange);
}
.vm-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed); font-size: 22px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--vm-orange);
}
.vm-nav__logo-img,
.vm-nav__logo .custom-logo { height: 42px; width: auto; display: block; object-fit: contain; }
.vm-nav__logo .custom-logo-link { display: flex; align-items: center; }
.vm-nav__menu { display: flex; }
.vm-nav__links { display: flex; gap: 2rem; list-style: none; }
.vm-nav__links a {
  font-family: var(--font-condensed); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.vm-nav__links a:hover,
.vm-nav__links .current-menu-item a,
.vm-nav__link--active { color: var(--vm-orange) !important; }
.vm-nav__cta {
  font-family: var(--font-condensed); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--vm-orange); color: #fff;
  padding: 9px 24px; transition: background 0.2s; border: none; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.vm-nav__cta:hover { background: var(--vm-orange-light); }
.vm-nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.vm-nav__hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); transition: all 0.3s; }
.vm-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.vm-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vm-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =====================================================
   SHARED COMPONENTS
   ===================================================== */
.vm-btn {
  display: inline-block;
  font-family: var(--font-condensed); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 36px; cursor: pointer; border: none; transition: all 0.2s;
}
.vm-btn--primary {
  background: var(--vm-orange); color: #fff;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.vm-btn--primary:hover { background: var(--vm-orange-light); transform: translateY(-1px); }
.vm-btn--ghost {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.vm-btn--ghost:hover { border-color: var(--vm-orange); color: var(--vm-orange); }

.vm-section-label {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--vm-orange);
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.vm-section-label::before { content: ''; width: 30px; height: 2px; background: var(--vm-orange); }
.vm-section-label--light { color: var(--vm-orange-pale); }
.vm-section-label--light::before { background: var(--vm-orange-pale); }
.vm-section-label--center { justify-content: center; }
.vm-section-label--center::before { display: none; }

.vm-section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300; line-height: 1.1; color: var(--vm-ink); margin-bottom: 1.5rem;
}
.vm-section-title em { font-style: italic; color: var(--vm-orange); }
.vm-section-title--light { color: var(--vm-cream); }
.vm-section-title--light em { color: var(--vm-orange-light); }
.vm-section-title--center { text-align: center; }

.vm-section-desc {
  font-size: 15px; color: var(--vm-text-soft); max-width: 480px; line-height: 1.8; font-weight: 300;
}
.vm-section-desc--light { color: rgba(242,244,246,0.6); }
.vm-section-desc--center { text-align: center; margin: 0 auto; }

.vm-eyebrow {
  font-family: var(--font-condensed); font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--vm-orange);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px;
}
.vm-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--vm-orange); }

/* =====================================================
   HERO
   ===================================================== */
.vm-hero {
  min-height: 100vh; background: var(--vm-ink);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden; padding-top: 68px;
}

/* Diagonal orange accent line */
.vm-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(200,80,0,0.04) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.vm-hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 8rem 5rem; position: relative; z-index: 2;
}
.vm-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300; line-height: 1.05; color: var(--vm-cream); margin-bottom: 1.5rem;
}
.vm-hero__title em { font-style: italic; color: var(--vm-orange-light); }
.vm-hero__sub {
  font-size: 15px; font-weight: 300; color: rgba(242,244,246,0.58);
  max-width: 380px; margin-bottom: 2.5rem; line-height: 1.85;
}
.vm-hero__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.vm-hero__right {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #141e28 0%, #0a0e12 100%);
  padding: 4rem 2rem;
  border-left: 1px solid rgba(200,80,0,0.15);
}
.vm-hero__product-card {
  width: 320px; background: var(--vm-dark-card);
  border: 1px solid rgba(200,80,0,0.2);
  position: relative; z-index: 2;
}
.vm-hero__product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--vm-orange);
}
.vm-hero__product-img {
  width: 100%; height: 400px; overflow: hidden;
  background: var(--vm-dark-mid);
  display: flex; align-items: center; justify-content: center;
}
.vm-hero__product-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-hero__product-img svg { width: 100%; height: 100%; }
.vm-hero__product-info { padding: 1.5rem; }
.vm-product-badge {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--vm-orange);
  margin-bottom: 8px;
}
.vm-hero__product-name {
  font-family: var(--font-display); font-size: 18px; color: var(--vm-cream); font-weight: 400; margin-bottom: 6px;
}
.vm-hero__product-price { font-size: 15px; color: var(--vm-orange-light); font-weight: 600; }
.vm-hero__bg-text {
  position: absolute; bottom: -10px; right: -10px;
  font-family: var(--font-condensed); font-size: 160px; font-weight: 700;
  letter-spacing: -0.05em; text-transform: uppercase;
  color: rgba(40,60,80,0.12); pointer-events: none; line-height: 1;
}
.vm-hero__stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(40,60,80,0.35);
  border-top: 1px solid rgba(200,80,0,0.25);
  display: flex; padding: 1.2rem 5rem; gap: 4rem; z-index: 5;
  backdrop-filter: blur(4px);
}
.vm-stat { text-align: center; }
.vm-stat__num {
  font-family: var(--font-display); font-size: 26px; color: var(--vm-orange-light); font-weight: 300;
}
.vm-stat__label {
  font-family: var(--font-condensed); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(242,244,246,0.4); font-weight: 600;
}

/* =====================================================
   BRAND BAR
   ===================================================== */
.vm-brand-bar {
  background: var(--vm-cream-dark);
  border-top: 1px solid rgba(10,14,18,0.12);
  border-bottom: 3px solid var(--vm-slate);
  padding: 1.2rem 5rem;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.vm-brand-bar__label {
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--vm-text-muted);
  white-space: nowrap;
}
.vm-brand-bar__logos { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.vm-brand-logo {
  font-family: var(--font-condensed); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--vm-text-soft); opacity: 0.6; transition: opacity 0.2s, color 0.2s;
}
.vm-brand-logo:hover { opacity: 1; color: var(--vm-orange); }
.vm-brand-logo--flipkart { color: #2874f0; }
.vm-divider { display: block; width: 1px; height: 20px; background: rgba(10,14,18,0.15); }

/* =====================================================
   PRODUCTS
   ===================================================== */
.vm-products { background: var(--vm-cream); padding: 5rem; }
.vm-products__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.vm-products__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

.vm-product-card {
  background: var(--vm-white);
  border: 1px solid rgba(40,60,80,0.12);
  border-top: 2px solid transparent;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s, border-top-color 0.25s;
}
.vm-product-card.vm-visible { opacity: 1; transform: translateY(0); }
.vm-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(40,60,80,0.14);
  border-top-color: var(--vm-orange);
}
.vm-product-card--featured { grid-column: span 2; }
.vm-product-card__img {
  width: 100%; position: relative; overflow: hidden; background: #edf0f3;
}
.vm-product-card:not(.vm-product-card--featured) .vm-product-card__img { height: 260px; }
.vm-product-card--featured .vm-product-card__img { height: 360px; }
.vm-product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.vm-product-card__placeholder { width: 100%; height: 100%; }
.vm-product-card__placeholder svg { width: 100%; height: 100%; }

.vm-product-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--vm-slate); color: #fff; padding: 4px 10px;
}
.vm-product-tag--sale { background: var(--vm-orange); }

.vm-product-card__info { padding: 1.25rem 1rem; }
.vm-product-card__name {
  font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--vm-ink); margin-bottom: 4px;
}
.vm-product-card__variant { font-size: 12px; color: var(--vm-text-muted); margin-bottom: 12px; font-weight: 300; }
.vm-product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.vm-product-card__price { font-size: 15px; font-weight: 600; color: var(--vm-ink); }
.vm-product-card__price-old { font-size: 12px; color: var(--vm-text-muted); text-decoration: line-through; margin-right: 6px; }
.vm-product-card__price-sale { color: var(--vm-orange); }
.vm-product-card__btn {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--vm-slate);
  color: var(--vm-slate); padding: 6px 14px; cursor: pointer; transition: all 0.2s;
  display: inline-block;
}
.vm-product-card__btn:hover { background: var(--vm-slate); color: #fff; }

/* =====================================================
   FEATURES
   ===================================================== */
.vm-features {
  background: var(--vm-dark); color: var(--vm-cream);
  display: grid; grid-template-columns: 1fr 1fr;
}
.vm-features__left { padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.vm-features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }

.vm-feature-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(200,80,0,0.35);
  background: rgba(200,80,0,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 18px; color: var(--vm-orange);
}
.vm-feature-title {
  font-family: var(--font-condensed); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--vm-cream); margin-bottom: 6px;
}
.vm-feature-desc { font-size: 13px; color: rgba(242,244,246,0.48); line-height: 1.7; font-weight: 300; }

.vm-features__right {
  background: var(--vm-ink); display: flex; align-items: center; justify-content: center;
  min-height: 400px; position: relative; overflow: hidden;
  border-left: 1px solid rgba(200,80,0,0.12);
}
.vm-features__right::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(40,60,80,0.25) 0%, transparent 70%);
}
.vm-features__right-content { text-align: center; padding: 3rem; position: relative; z-index: 1; }
.vm-features__big-num {
  font-family: var(--font-display); font-size: 100px; font-weight: 300;
  color: rgba(200,80,0,0.18); line-height: 1;
}
.vm-features__big-text {
  font-family: var(--font-display); font-size: 22px;
  color: var(--vm-cream); font-weight: 300; font-style: italic; margin-top: -10px;
}
.vm-features__source {
  margin-top: 2rem; font-size: 13px; color: rgba(242,244,246,0.28);
  font-weight: 300; letter-spacing: 0.05em;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.vm-testimonials { background: var(--vm-cream-dark); padding: 5rem; }
.vm-testimonials__header { text-align: center; margin-bottom: 3rem; }
.vm-testimonials__header .vm-section-label { justify-content: center; }
.vm-testimonials__header .vm-section-label::before { display: none; }
.vm-testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.vm-testimonial-card {
  background: var(--vm-white); padding: 2rem;
  border: 1px solid rgba(40,60,80,0.1);
  border-top: 2px solid var(--vm-slate);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.vm-testimonial-card.vm-visible { opacity: 1; transform: translateY(0); }
.vm-testimonial-stars { color: var(--vm-orange); font-size: 14px; margin-bottom: 1rem; letter-spacing: 2px; }
.vm-testimonial-text {
  font-family: var(--font-display); font-size: 17px; font-weight: 300;
  font-style: italic; color: var(--vm-ink); line-height: 1.7; margin-bottom: 1.5rem;
}
.vm-testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(40,60,80,0.1); padding-top: 1rem;
}
.vm-testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--vm-slate); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-condensed); font-size: 12px; font-weight: 700; color: var(--vm-orange);
}
.vm-testimonial-name { font-weight: 600; font-size: 13px; color: var(--vm-ink); }
.vm-testimonial-source { font-size: 11px; color: var(--vm-text-muted); }

/* =====================================================
   WHERE TO BUY
   ===================================================== */
.vm-buy { background: var(--vm-cream); padding: 5rem; }
.vm-buy__header { text-align: center; margin-bottom: 3rem; }
.vm-buy__header .vm-section-label { justify-content: center; }
.vm-buy__header .vm-section-label::before { display: none; }
.vm-buy__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

.vm-buy-card {
  background: var(--vm-white);
  border: 1px solid rgba(40,60,80,0.12);
  border-bottom: 3px solid transparent;
  padding: 2rem; text-align: center; display: block;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-bottom-color 0.25s, box-shadow 0.25s;
}
.vm-buy-card.vm-visible { opacity: 1; transform: translateY(0); }
.vm-buy-card:hover {
  border-bottom-color: var(--vm-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(40,60,80,0.12);
}
.vm-buy-card__platform {
  font-family: var(--font-condensed); font-size: 20px; font-weight: 700;
  letter-spacing: 0.05em; color: var(--vm-ink); margin-bottom: 8px;
}
.vm-buy-card__platform--flipkart { color: #2874f0; }
.vm-buy-card__platform--amazon   { color: #ff9900; }
.vm-buy-card__platform--myntra   { color: #ff3f6c; }
.vm-buy-card__platform--snapdeal { color: #e40000; }
.vm-buy-card__desc { font-size: 12px; color: var(--vm-text-muted); margin-bottom: 1.2rem; font-weight: 300; }
.vm-buy-card__link {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--vm-orange);
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* =====================================================
   NEWSLETTER
   ===================================================== */
.vm-newsletter {
  background: var(--vm-dark); padding: 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.vm-newsletter::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--vm-slate), var(--vm-orange), var(--vm-slate));
}
.vm-newsletter__sub {
  color: rgba(242,244,246,0.5); font-size: 14px; font-weight: 300; margin-top: 0.5rem;
}
.vm-newsletter__form { display: flex; max-width: 480px; margin: 2.5rem auto 0; }
.vm-newsletter__input {
  flex: 1; padding: 14px 20px;
  border: 1px solid rgba(40,60,80,0.5);
  border-right: none;
  background: rgba(255,255,255,0.05); color: var(--vm-cream);
  font-family: var(--font-body); font-size: 14px; outline: none;
}
.vm-newsletter__input::placeholder { color: rgba(242,244,246,0.3); }
.vm-newsletter__input:focus { border-color: var(--vm-orange); }
.vm-newsletter__btn {
  font-family: var(--font-condensed); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--vm-orange); color: #fff; border: none;
  padding: 14px 28px; cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.vm-newsletter__btn:hover { background: var(--vm-orange-light); }
.vm-newsletter__msg { margin-top: 1rem; font-size: 14px; min-height: 1.4em; color: var(--vm-orange-light); }

/* =====================================================
   FOOTER
   ===================================================== */
.vm-footer {
  background: var(--vm-ink); color: rgba(242,244,246,0.4);
  padding: 3rem 5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  border-top: 3px solid var(--vm-slate);
}
.vm-footer__brand-logo-wrap { display: inline-block; margin-bottom: 0.75rem; }
.vm-footer__brand-logo {
  height: 56px; width: auto; object-fit: contain; display: block;
  filter: drop-shadow(0 0 8px rgba(200,80,0,0.3));
}
.vm-footer__brand-name {
  font-family: var(--font-condensed); font-size: 22px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--vm-orange);
  margin-bottom: 1rem;
}
.vm-footer__brand-desc { font-size: 13px; line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.vm-footer__copy { font-size: 12px; color: rgba(242,244,246,0.2); font-weight: 300; }
.vm-footer__col-title {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--vm-slate-pale); margin-bottom: 1.2rem;
}
.vm-footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.vm-footer__links a { font-size: 13px; color: rgba(242,244,246,0.38); transition: color 0.2s; font-weight: 300; }
.vm-footer__links a:hover { color: var(--vm-orange); }

.vm-footer-bottom {
  background: var(--vm-ink);
  border-top: 1px solid rgba(40,60,80,0.3);
  padding: 1.2rem 5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.vm-footer-bottom__text { font-size: 12px; color: rgba(242,244,246,0.22); font-weight: 300; }
.vm-footer-bottom__text a { color: rgba(242,244,246,0.3); }
.vm-footer-bottom__text a:hover { color: var(--vm-orange); }

/* =====================================================
   LOGO & NAV ICON
   ===================================================== */
.vm-nav__logo-img,
.vm-nav__logo .custom-logo {
  height: 42px; width: auto; display: block; object-fit: contain;
}
.vm-nav__logo .custom-logo-link { display: flex; align-items: center; line-height: 1; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .vm-products__grid { grid-template-columns: repeat(2,1fr); }
  .vm-product-card--featured { grid-column: span 2; }
  .vm-buy__grid { grid-template-columns: repeat(2,1fr); }
  .vm-footer { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .vm-nav { padding: 0 1.5rem; }
  .vm-nav__menu {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(10,14,18,0.98); padding: 1.5rem 2rem; flex-direction: column;
  }
  .vm-nav__menu.vm-open { display: flex; }
  .vm-nav__links { flex-direction: column; gap: 1.2rem; }
  .vm-nav__hamburger { display: flex; }
  .vm-hero { grid-template-columns: 1fr; }
  .vm-hero__right { display: none; }
  .vm-hero__left { padding: 3rem 2rem 8rem; }
  .vm-hero__stats { padding: 1.2rem 2rem; gap: 1.5rem; flex-wrap: wrap; }
  .vm-brand-bar { padding: 1rem 2rem; }
  .vm-products { padding: 4rem 2rem; }
  .vm-features { grid-template-columns: 1fr; }
  .vm-features__right { display: none; }
  .vm-features__left { padding: 4rem 2rem; }
  .vm-testimonials { padding: 4rem 2rem; }
  .vm-testimonials__grid { grid-template-columns: 1fr; }
  .vm-buy { padding: 4rem 2rem; }
  .vm-newsletter { padding: 4rem 2rem; }
  .vm-footer { padding: 3rem 2rem; grid-template-columns: 1fr; }
  .vm-footer-bottom { padding: 1.2rem 2rem; }
}

@media (max-width: 560px) {
  .vm-products__grid { grid-template-columns: 1fr; }
  .vm-product-card--featured { grid-column: span 1; }
  .vm-buy__grid { grid-template-columns: 1fr; }
  .vm-newsletter__form { flex-direction: column; }
  .vm-newsletter__input { border-right: 1px solid rgba(40,60,80,0.5); border-bottom: none; }
  .vm-hero__actions { flex-direction: column; align-items: flex-start; }
}
