/*
Theme Name: Night Vision
Theme URI: https://nightvision.com.np
Author: Night Vision Nepal
Author URI: https://nightvision.com.np
Description: Custom theme for Night Vision CCTV - Nepal's premier CCTV surveillance brand. Fully Gutenberg-compatible with native WooCommerce support and custom product specification fields.
Version: 2.2.3
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: night-vision
Tags: woocommerce, custom-fields, responsive, full-site-editing
*/

/* =========================================
   CSS CUSTOM PROPERTIES  — Light Theme
   ========================================= */
:root {
  /* Brand greens */
  --nv-green:        #7ab929;   /* the bright lime-green from screenshot */
  --nv-green-light:  #8fcc30;
  --nv-green-dark:   #5e8f1e;
  --nv-green-bg:     #7ab929;   /* topbar bg */

  /* Neutrals — light theme */
  --nv-black:        #111111;
  --nv-body-bg:      #ffffff;
  --nv-body-bg-alt:  #ffffff;
  --nv-white:        #ffffff;
  --nv-off-white:    #f5f5f5;
  --nv-border:       #e2e2e2;
  --nv-border-dark:  #cccccc;
  --nv-text:         #222222;
  --nv-text-muted:   #666666;
  --nv-text-light:   #999999;

  /* Dark sections (footer, hero) */
  --nv-dark:         #111111;
  --nv-dark-2:       #1a1a1a;
  --nv-dark-3:       #222222;

  /* Typography */
  /* Typography — Poppins for everything */
  --nv-font-heading: 'Poppins', sans-serif;
  --nv-font-body:    'Poppins', sans-serif;

  /* Layout */
  --nv-header-height: 88px;
  --nv-topbar-height: 42px;
  --nv-radius:        4px;
  --nv-radius-lg:     8px;
  --nv-shadow:        0 2px 16px rgba(0,0,0,0.10);
  --nv-shadow-md:     0 4px 24px rgba(0,0,0,0.15);
  --nv-transition:    0.22s ease;
  --nv-container:     1100px;
}


/* =========================================
   GLOBAL POPPINS FONT OVERRIDE
   ========================================= */
html, body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th, label, input, textarea, select, button,
.woocommerce, .woocommerce *,
.nv-nav, .nv-nav *,
.nv-header, .nv-header *,
.nv-footer, .nv-footer *,
.wc-block-components-form *,
.wp-block * {
  font-family: 'Poppins', sans-serif !important;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--nv-body-bg);
  color: var(--nv-text);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--nv-green); text-decoration: none; transition: color var(--nv-transition); }
a:hover { text-decoration: none; }
/* Prevent browser default underlines on all theme links */
.nv-header a,
.nv-topbar a,
.nv-nav a,
.nv-footer a,
.nv-support-hotline a,
.nv-support-hotline-number,
.nv-nav-list a,
.sub-menu a { text-decoration: none !important; }
a:hover { color: var(--nv-green-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--nv-black);
  text-transform: none;
  letter-spacing: 0;
}

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; }

/* =========================================
   CONTAINER
   ========================================= */
.nv-container {
  max-width: var(--nv-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   BUTTONS
   ========================================= */
.nv-btn,
.button,
button[type="submit"],
input[type="submit"],
.woocommerce .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--nv-green);
  color: var(--nv-white) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--nv-radius);
  cursor: pointer;
  transition: background var(--nv-transition), transform var(--nv-transition);
}
.nv-btn:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.woocommerce .button:hover {
  background: var(--nv-green-light);
  color: var(--nv-white) !important;
  transform: translateY(-1px);
}

/* =========================================
   TOP BAR
   ========================================= */
.nv-topbar {
  background: #A6CF60 !important;
  background-color: #A6CF60 !important;
  height: var(--nv-topbar-height);
  display: flex;
  align-items: center;
}
.nv-topbar .nv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Social icons — #333 fill, no color change on hover */
.nv-topbar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nv-topbar-social a {
  color: #333333 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nv-topbar-social a:hover { color: #333333 !important; opacity: 1; }
.nv-topbar-social svg { width: 16px; height: 16px; fill: #333333 !important; }

/* Right-side links — #333, no change on hover */
.nv-topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nv-topbar-right a,
.nv-topbar-right a:link,
.nv-topbar-right a:visited,
.nv-topbar-right a:hover,
.nv-topbar-right a:active {
  color: #333333 !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 1 !important;
  text-decoration: none;
}

/* Cart link — #333, no change on hover */
.nv-cart-link,
.nv-cart-link:link,
.nv-cart-link:visited,
.nv-cart-link:hover,
.nv-cart-link:active {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333333 !important;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 1 !important;
}
.nv-cart-link svg { fill: #333333 !important; flex-shrink: 0; }
.nv-cart-count {
  background: rgba(0,0,0,0.15);
  color: #333333;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
}

/* =========================================
   HEADER — white bg, black logo, green active nav pill, green phone badge
   ========================================= */
.nv-header {
  background: #ffffff;
  border-bottom: none;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nv-header-height);
  display: flex;
  align-items: center;
}
.nv-header .nv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
}

/* Logo — sharp rendering, no squeezing */
.nv-logo { display: flex; align-items: center; flex-shrink: 0; }
.nv-logo img {
  height: 48px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  object-position: left center !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: bicubic;
}
.nv-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.nv-logo-text::before { content: '//'; color: var(--nv-green); margin-right: 2px; }

/* Primary Nav */
.nv-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.nv-nav ul,
.nv-nav-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 2px;
  align-items: center;
}
/* Every nav li must be position:relative so dropdowns anchor to it */
.nv-nav-list > li,
.nv-nav > ul > li {
  position: relative;
}
.nv-nav > ul > li > a,
.nv-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  color: #222222 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--nv-radius);
  transition: background var(--nv-transition), color var(--nv-transition);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
}

/* Active / current item — same as hover */
.nv-nav > ul > li.current-menu-item > a,
.nv-nav-list > li.current-menu-item > a {
  background: #DCEAC4 !important;
  color: #333333 !important;
}

/* Hover — same light green bg, #333 text */
.nv-nav > ul > li > a:hover,
.nv-nav-list > li > a:hover {
  background: #DCEAC4 !important;
  color: #333333 !important;
}

/* Dropdown chevron — using inline SVG background image */
.nv-nav > ul > li.menu-item-has-children > a,
.nv-nav-list > li.menu-item-has-children > a {
  padding-right: 32px !important;
  position: relative;
}
.nv-nav > ul > li.menu-item-has-children > a::after,
.nv-nav-list > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333333' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

/* ── Dropdown positioning ── */
/* Every li that could have a sub-menu must be the anchor */
.nv-nav-list li,
.nv-nav > ul li {
  position: relative;
}
.nv-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff !important;
  border: 1px solid #e2e2e2;
  border-top: 2px solid #7ab929;
  min-width: 220px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  z-index: 9999;
  padding: 6px 0;
  flex-direction: column;
  margin-top: 0;
  white-space: nowrap;
}
.nv-nav li:hover > .sub-menu { display: flex; }
.nv-nav .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333333 !important;
  font-size: 0.88rem;
  font-weight: 400;
  border-radius: 0;
  background: transparent !important;
  transition: color var(--nv-transition), background var(--nv-transition);
  white-space: normal;
}
.nv-nav .sub-menu li a:hover {
  color: #333333 !important;
  background: #DCEAC4 !important;
}

/* Support Hotline widget */
.nv-support-hotline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nv-support-hotline-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #7ab929 !important;
  background-color: #7ab929 !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nv-support-hotline-icon svg {
  width: 22px !important;
  height: 22px !important;
  fill: #333333 !important;
  color: #333333 !important;
  display: block !important;
}
.nv-support-hotline-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nv-support-hotline-label {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.3;
  display: block;
}
.nv-support-hotline-number,
.nv-support-hotline-number:link,
.nv-support-hotline-number:visited {
  font-size: 14px;
  font-weight: 400;
  color: #333333 !important;
  line-height: 1.3;
  display: block;
}
.nv-support-hotline-number:hover { color: #333333 !important; }

/* Close button hidden on desktop, shown in mobile overlay */
.nv-nav-close { display: none; }

/* Mobile hamburger toggle */
.nv-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nv-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.nv-hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

/* Background slides */
.nv-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nv-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  background-color: #1a1a1a; /* fallback when no image */
}
.nv-hero-slide.active { opacity: 1; }

/* Dark overlay */
.nv-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: 1;
  pointer-events: none;
}

/* Content layer */
.nv-hero-content-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.nv-hero-content-wrap .nv-container {
  width: 100%;
}

/* Two-column inner layout */
.nv-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 0;
  height: 520px;
}

/* LEFT: person/product image — bottom-aligned, no crop */
.nv-hero-left {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding-bottom: 0;
}
.nv-hero-left-img {
  max-height: 480px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.4));
}

/* RIGHT: text content — vertically centered */
.nv-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px 40px;
  height: 100%;
}

/* Eyebrow */
.nv-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

/* Main heading */
.nv-hero-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* Buttons — outlined white style matching screenshot */
.nv-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nv-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.nv-hero-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffffff !important;
}
.nv-hero-btn svg { flex-shrink: 0; }

/* Slide dots */
.nv-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nv-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.nv-hero-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .nv-hero-slider { height: 420px; }
  .nv-hero-inner { grid-template-columns: 1fr; height: 420px; align-items: center; }
  .nv-hero-left { display: none; }
  .nv-hero-right { padding: 40px 0; align-items: center; text-align: center; }
  .nv-hero-buttons { justify-content: center; }
  .nv-hero-heading { font-size: clamp(1.4rem, 5vw, 2rem); }
}
@media (max-width: 480px) {
  .nv-hero-slider { height: 360px; }
  .nv-hero-heading { font-size: 1.4rem; }
  .nv-hero-btn { padding: 10px 16px; font-size: 0.75rem; }
}

/* =========================================
   SECTION HEADERS
   ========================================= */
.nv-section { padding: 80px 0; }
.nv-section-alt { background: var(--nv-dark-2); }
.nv-section-header 

/* =========================================
   ABOUT / FEATURES SECTION
   ========================================= */
.nv-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nv-feature-card {
  background: var(--nv-dark-3);
  border: 1px solid var(--nv-border);
  border-left: 3px solid var(--nv-green);
  padding: 20px;
  border-radius: var(--nv-radius);
}
.nv-feature-card h4 { font-size: 0.9rem; margin-bottom: 8px; color: var(--nv-white); }
.nv-feature-card p { font-size: 0.85rem; color: var(--nv-text-muted); margin: 0; }

/* =========================================
   APP FEATURES GRID
   ========================================= */

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.nv-products-section h2 { text-align: center; margin-bottom: 12px; }
.nv-products-section > .nv-container > p { text-align: center; color: var(--nv-text-muted); margin-bottom: 48px; }


/* WooCommerce Product Card */
.woocommerce ul.products li.product,
.woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product a img,
.nv-product-card 
.woocommerce ul.products li.product:hover a img { transform: scale(1.04); }
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin: 0 16px 16px !important;
  width: calc(100% - 32px) !important;
  text-align: center !important;
  justify-content: center;
}

/* =========================================
   DEALER CTA BANNER
   ========================================= */

/* =========================================
   TESTIMONIALS
   ========================================= */
.nv-testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.nv-testimonial {
  background: var(--nv-dark-2);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
  padding: 32px;
  position: relative;
}
.nv-testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: rgba(0,176,80,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}
.nv-testimonial h4 { font-size: 1rem; margin-bottom: 12px; }
.nv-testimonial p { font-size: 0.9rem; color: var(--nv-text-muted); margin-bottom: 16px; font-style: italic; }
.nv-testimonial-author { font-size: 0.82rem; color: var(--nv-green); font-weight: 600; }

/* =========================================
   BLOG SECTION
   ========================================= */
.nv-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.nv-blog-card {
  background: var(--nv-dark-2);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
  transition: border-color var(--nv-transition);
}
.nv-blog-card:hover { border-color: var(--nv-green); }
.nv-blog-card img { width: 100%; height: 180px; object-fit: cover; }
.nv-blog-card-body { padding: 20px; }
.nv-blog-card h3 { font-size: 0.95rem; margin-bottom: 12px; }
.nv-blog-card h3 a { color: var(--nv-white); }
.nv-blog-card h3 a:hover { color: var(--nv-green); }
.nv-blog-card .nv-read-more { font-size: 0.82rem; color: var(--nv-green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* =========================================
   FOOTER
   Page bg: #F3F3F3 | dark area: #2b2b2b
   links-box: #333333 | bottom bar: #ffffff
   20px side margin on dark section
   ========================================= */

/* Page background shown as side margin gaps */
.nv-footer {
  background: #ffffff;
}

/* Dark body — 40px margin, NO border-radius */
.nv-footer-body {
  background: #2b2b2b;
  margin: 0 40px;
  padding: 60px 0 40px;
  border-radius: 0;
}

/* 3-column grid: col1 | col2-with-left-border | col3 */
.nv-footer-main-row {
  display: grid;
  grid-template-columns: 2fr 1.6fr 1.2fr;
  gap: 0;
  align-items: start;
}

/* Col 1: Brand — 40px right padding */
.nv-footer-brand {
  padding-right: 40px;
}
.nv-footer-logo-link { display: inline-block; margin-bottom: 20px; }
.nv-footer-logo-link img { height: 44px; width: auto; object-fit: contain; }

.nv-footer-tagline {
  color: #aaaaaa;
  font-size: 0.88rem;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 28px;
}
.nv-footer-social-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  padding: 0;
  margin-bottom: 14px;
}
.nv-footer-social-row { display: flex; gap: 16px; align-items: center; }
.nv-footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  transition: color 0.2s, opacity 0.2s;
}
.nv-footer-social-icon:hover { color: #ffffff; opacity: 0.85; }
.nv-footer-social-icon svg { fill: currentColor; }

/* Col 2: Reach Us — border-left IS the divider, 40px padding each side */
.nv-footer-reach {
  padding: 0 40px;
  border-left: 1px solid #444444;
}
.nv-footer-col-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}

/* Contact rows — circle icon */
.nv-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.nv-footer-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: transparent;
  border: 1.5px solid #555555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaaaaa;
}
.nv-footer-contact-icon svg {
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
}
.nv-footer-contact-text {
  color: #cccccc;
  font-size: 0.92rem;
  font-weight: 600;
}
a.nv-footer-contact-text { color: #cccccc !important; }
a.nv-footer-contact-text:hover { color: #ffffff !important; }

/* Dealers button */
.nv-footer-dealers-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #888888;
  color: #cccccc !important;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 15px 20px;
  border-radius: 3px;
  margin-top: 12px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.nv-footer-dealers-btn:hover { border-color: #cccccc; color: #ffffff !important; }

/* Col 3: Links box — #333333, 40px left gap */
.nv-footer-links-box {
  background: #333333;
  border-radius: 6px;
  padding: 24px 22px;
  margin-left: 40px;
}
.nv-footer-links-list { list-style: none; padding: 0; margin: 0; }
.nv-footer-links-list li { margin-bottom: 7px; }
.nv-footer-links-list li a { font-size: 0.87rem; color: #aaaaaa; transition: color 0.2s; }
.nv-footer-links-list li a:hover { color: #ffffff; }
.nv-footer-links-green li a { color: #6cc940 !important; }
.nv-footer-links-green li a:hover { color: #9cd44a !important; }

/* App strip — 40px margin, NO border-radius */
.nv-footer-app-strip {
  background: #2b2b2b;
  margin: 0 40px;
  padding: 22px 0;
  border-top: 1px solid #3a3a3a;
  border-radius: 0;
}

/* 4 equal columns, centered content */
.nv-footer-app-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.nv-footer-app-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nv-footer-app-label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}
.nv-footer-app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nv-footer-app-item:hover { opacity: 0.75; }
.nv-footer-app-item svg { flex-shrink: 0; }

/* Bottom bar — white background, full width (no margin) */
.nv-footer-bottom {
  background: #ffffff;
  padding: 14px 0;
  border-top: 1px solid #e8e8e8;
}
.nv-footer-bottom .nv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.nv-footer-bottom-copy { color: #444444; font-size: 0.82rem; margin: 0; }
.nv-footer-bottom-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nv-footer-bottom-links a { color: #6cc940 !important; font-size: 0.82rem; transition: color 0.2s; }
.nv-footer-bottom-links a:hover { color: #4a9a2a !important; }
.nv-sep { color: #999999; font-size: 0.75rem; margin: 0 2px; }

/* Responsive */
@media (max-width: 1024px) {
  .nv-footer-body,
  .nv-footer-app-strip { margin: 0 24px; }
  .nv-footer-main-row { grid-template-columns: 1fr; gap: 32px; }
  .nv-footer-reach { border-left: none; padding: 0; border-top: 1px solid #444444; padding-top: 28px; }
  .nv-footer-brand { padding-right: 0; }
  .nv-footer-links-box { margin-left: 0; }
  .nv-footer-app-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .nv-footer-body,
  .nv-footer-app-strip { margin: 0 12px; }
  .nv-footer-app-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .nv-footer-bottom .nv-container { flex-direction: column; text-align: center; }
  .nv-footer-bottom-links { justify-content: center; }
}

/* =========================================
   SINGLE PRODUCT PAGE
   ========================================= */
.nv-single-product { padding: 0 0 60px; }
.nv-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* Product Gallery */
.nv-product-gallery {}




.nv-gallery-thumb:hover, .nv-gallery-thumb.active { border-color: var(--nv-green); }


/* Product Summary */
.nv-product-summary {}
.nv-product-summary h1 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  color: var(--nv-white);
}
.nv-product-price {
  font-size: 1.8rem;
  color: var(--nv-green);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
}
.nv-product-desc { color: var(--nv-text-muted); margin-bottom: 28px; font-size: 0.92rem; line-height: 1.75; }

/* Quick Specs */





/* Add to Cart */





.nv-product-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.nv-product-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--nv-text-muted);
}
.nv-product-badge svg { color: var(--nv-green); }

/* Spec Tabs */
.nv-spec-tabs { margin-top: 60px; }
.nv-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--nv-border);
  margin-bottom: 32px;
}
.nv-tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--nv-text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-bottom: -2px;
  transition: color var(--nv-transition), border-color var(--nv-transition);
}
.nv-tab-btn:hover, .nv-tab-btn.active { color: var(--nv-green); border-bottom-color: var(--nv-green); }
.nv-tab-panel { display: none; }
.nv-tab-panel.active { display: block; }

/* Spec Tables */
.nv-spec-group { margin-bottom: 32px; }
.nv-spec-group-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--nv-green);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,176,80,0.2);
}
.nv-spec-table { width: 100%; border-collapse: collapse; }
.nv-spec-table tr { border-bottom: 1px solid var(--nv-border); }
.nv-spec-table tr:last-child { border-bottom: none; }
.nv-spec-table td { padding: 10px 0; font-size: 0.88rem; }
.nv-spec-table td:first-child { color: var(--nv-text-muted); width: 44%; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.nv-spec-table td:last-child { color: var(--nv-white); font-weight: 500; }

/* Related Products */
.nv-related { margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--nv-border); }
.nv-related h2 { font-size: 1.3rem; margin-bottom: 28px; }

/* =========================================
   SHOP / ARCHIVE PAGE
   ========================================= */
.woocommerce-products-header { margin-bottom: 32px; }
.woocommerce .woocommerce-products-header__title { color: var(--nv-white); }
.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-ordering select:focus {
  background: var(--nv-dark-2);
  border: 1px solid var(--nv-border);
  color: var(--nv-text);
  padding: 8px 12px;
  border-radius: var(--nv-radius);
}

/* =========================================
   WOOCOMMERCE CART & CHECKOUT
   ========================================= */
.woocommerce table.shop_table { background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; width: 100%; border-collapse: collapse; }
.woocommerce table.shop_table th { background: #f7f7f7; color: #333333; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 12px 16px; border-bottom: 2px solid #e0e0e0; }
.woocommerce table.shop_table td { border-top: 1px solid #eeeeee; padding: 16px; color: #333333; background: #ffffff; }
.woocommerce-cart-form .actions { display: flex; justify-content: space-between; align-items: center; padding: 16px; background: #f7f7f7; border-top: 1px solid #e0e0e0; }
.woocommerce #payment { background: #f7f7f7; border: 1px solid #e0e0e0; border-radius: 8px; }
.woocommerce #payment ul.payment_methods { padding: 20px; border-bottom: 1px solid #e0e0e0; background: #ffffff; border-radius: 8px 8px 0 0; }
.woocommerce #payment ul.payment_methods li label { color: #333333; }
.woocommerce #payment div.payment_box { background: #f0f0f0; color: #555555; }

/* Form fields — white bg, dark text */
.woocommerce form .form-row label { color: #555555; font-size: 0.88rem; margin-bottom: 6px; display: block; font-weight: 500; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: #ffffff !important;
  border: 1px solid #dddddd !important;
  color: #333333 !important;
  padding: 10px 14px !important;
  border-radius: 4px !important;
  width: 100% !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9rem !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus { border-color: #A6CF60 !important; outline: none !important; box-shadow: 0 0 0 2px rgba(166,207,96,0.2) !important; }

/* Order review totals */
.woocommerce-checkout-review-order table { background: #ffffff; }
.woocommerce-checkout-review-order .cart_item td { color: #333333 !important; background: #ffffff !important; }
.woocommerce .cart-subtotal, .woocommerce .order-total { color: #333333 !important; }
.woocommerce .order-total td, .woocommerce .order-total th { background: #f7f7f7 !important; color: #333333 !important; font-weight: 700; }

/* =========================================
   BREADCRUMBS
   ========================================= */
.nv-breadcrumbs {
  padding: 40px 0;
  border-bottom: none;
  background: #ffffff;
  margin-top: 0;      /* flush against header — no gap */
  margin-bottom: 0;
}
.nv-breadcrumbs ol { list-style: none; padding: 0; margin: 20px 0; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.nv-breadcrumbs li { font-size: 28px; color: #333333; font-weight: 600; }
.nv-breadcrumbs li a { color: #555555; font-weight: 400; }
.nv-breadcrumbs li a:hover { color: #7ab929; }
.nv-breadcrumbs li + li::before { content: '›'; margin-right: 8px; color: #999; font-weight: 300; }

/* =========================================
   FORMS (Contact, Dealership)
   ========================================= */
.nv-form-section { max-width: 700px; margin: 0 auto; }
.nv-form-group { margin-bottom: 20px; }
.nv-form-group label { display: block; font-size: 0.82rem; color: var(--nv-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.nv-form-group input,
.nv-form-group textarea,
.nv-form-group select {
  width: 100%;
  background: var(--nv-dark-3);
  border: 1px solid var(--nv-border);
  color: var(--nv-white);
  padding: 10px 14px;
  border-radius: var(--nv-radius);
  font-size: 0.9rem;
  transition: border-color var(--nv-transition);
  font-family: 'Poppins', sans-serif;
}
.nv-form-group input:focus,
.nv-form-group textarea:focus,
.nv-form-group select:focus { border-color: var(--nv-green); outline: none; }

/* =========================================
   PAGE CONTENT
   ========================================= */
.nv-page-header {
  background: var(--nv-black);
  padding: 48px 0;
  border-bottom: 1px solid var(--nv-border);
}
.nv-page-header h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.nv-page-content { padding: 60px 0; }
.nv-page-content p { color: var(--nv-text-muted); margin-bottom: 1.2rem; }
.nv-page-content h2,h3,h4 { margin: 2rem 0 1rem; }

/* =========================================
   ACCESSIBILITY & MISC
   ========================================= */
.screen-reader-text { position: absolute; left: -9999px; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--nv-green); color: #fff; padding: 8px 16px; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
  .nv-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .nv-hero-image { display: none; }
  
  
  .nv-product-layout { grid-template-columns: 1fr; gap: 32px; }
  
  .nv-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 768px) {
  :root { --nv-header-height: 70px; }

  /* Topbar stays visible — only hide social icons */
  .nv-topbar { display: flex; }
  .nv-topbar-social { display: none; }
  .nv-topbar-right { margin-left: auto; }

  /* Show hamburger — bars dark on white header */
  .nv-menu-toggle { display: flex; }
  .nv-menu-toggle span { background: #333333; }

  /* Hide support hotline on mobile */
  .nv-support-hotline { display: none; }

  /* ---- Full-screen overlay nav ---- */
  .nv-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #6AA943 !important;   /* exact brand color from user */
    z-index: 9999;
    overflow-y: auto;
    padding: 100px 40px 60px;
  }
  .nv-nav.open { display: block; }

  /* Nav list — stacked, no flex column needed since display:block parent */
  .nv-nav ul,
  .nv-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
  }

  /* Nav links — white, no background */
  .nv-nav > ul > li > a,
  .nv-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 500;
    background: transparent !important;
    /* Reserve space on right for chevron so text never overlaps */
    padding-right: 32px;
    position: relative;
  }
  .nv-nav > ul > li > a:hover,
  .nv-nav-list > li > a:hover,
  .nv-nav > ul > li.current-menu-item > a,
  .nv-nav-list > li.current-menu-item > a {
    background: transparent !important;
    color: rgba(255,255,255,0.75) !important;
  }

  /* Dropdown chevron — white, positioned absolute so it never shifts text */
  .nv-nav > ul > li.menu-item-has-children > a,
  .nv-nav-list > li.menu-item-has-children > a {
    padding-right: 36px !important;
  }
  .nv-nav > ul > li.menu-item-has-children > a::after,
  .nv-nav-list > li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
  }
  /* Rotate chevron when submenu is open */
  .nv-nav > ul > li.menu-item-has-children.submenu-open > a::after,
  .nv-nav-list > li.menu-item-has-children.submenu-open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Submenu — no background, white text, indented, hidden by default */
  /* Uses max-height animation so parent doesn't jump */
  .nv-nav .sub-menu {
    position: static !important;
    display: block !important;        /* always in DOM flow */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: none;
    border: none;
    background: transparent !important;
    padding: 0 0 0 16px;
    margin: 0;
    flex-direction: column;
  }
  .nv-nav .sub-menu.open {
    max-height: 400px;               /* large enough for any submenu */
  }
  .nv-nav .sub-menu li a {
    display: block;
    padding: 12px 0 12px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    background: transparent !important;
    white-space: normal;
  }
  .nv-nav .sub-menu li a:hover {
    color: rgba(255,255,255,0.75) !important;
    background: transparent !important;
  }

  /* Close button — fixed top-right */
  .nv-nav-close {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .nv-nav-close svg { width: 28px; height: 28px; }

  /* Other mobile layout */
  .nv-section { padding: 48px 0; }
  .nv-hero { min-height: 420px; }
  .nv-features-grid { grid-template-columns: 1fr; }
  
  .nv-testimonials-grid { grid-template-columns: 1fr; }
  .nv-blog-grid { grid-template-columns: 1fr; }
  .nv-quick-specs { grid-template-columns: repeat(2, 1fr); }
  
  .nv-tab-nav { overflow-x: auto; }
  .nv-tab-btn { white-space: nowrap; }
  
  
}

@media (max-width: 480px) {
  
  .nv-container { padding: 0 16px; }
  .nv-hero-actions { flex-direction: column; }
  .nv-hero-actions .nv-btn { width: 100%; justify-content: center; }
}

/* =========================================
   WOOCOMMERCE — MY ACCOUNT
   ========================================= */
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.woocommerce-MyAccount-navigation {
  background: var(--nv-dark-2);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
}
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 12px 20px;
  color: var(--nv-text-muted);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--nv-border);
  transition: color var(--nv-transition), background var(--nv-transition);
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--nv-green);
  background: rgba(0,176,80,0.06);
}
.woocommerce-MyAccount-content { min-width: 0; }

@media (max-width: 768px) {
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
}

/* =========================================
   WOOCOMMERCE — NOTICES
   ========================================= */
.woocommerce-message,
.woocommerce-info,

.woocommerce-error { border-top-color: #e53e3e !important; }

/* =========================================
   WOOCOMMERCE — ORDER RECEIVED
   ========================================= */
.woocommerce-order { padding: 20px 0; }
.woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--nv-dark-2);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  list-style: none;
}
.woocommerce-order-overview li { color: var(--nv-text-muted); font-size: 0.88rem; }
.woocommerce-order-overview li strong { color: var(--nv-green); display: block; font-size: 1rem; }

/* =========================================
   PAGINATION
   ========================================= */
.woocommerce-pagination ul,
.page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.page-numbers li a,
.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--nv-dark-2);
  border: 1px solid var(--nv-border);
  color: var(--nv-text-muted);
  border-radius: var(--nv-radius);
  font-size: 0.85rem;
  transition: all var(--nv-transition);
}
.page-numbers li a:hover,
.page-numbers li span.current {
  background: var(--nv-green);
  border-color: var(--nv-green);
  color: #fff;
}

/* =========================================
   SEARCH RESULTS
   ========================================= */
.search-results .nv-blog-grid { margin-top: 32px; }
.nv-search-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin-bottom: 40px;
}
.nv-search-form input[type="search"] {
  flex: 1;
  background: var(--nv-dark-3);
  border: 1px solid var(--nv-border);
  border-right: none;
  color: var(--nv-white);
  padding: 10px 16px;
  border-radius: var(--nv-radius) 0 0 var(--nv-radius);
  font-size: 0.9rem;
}
.nv-search-form input[type="search"]:focus { outline: none; border-color: var(--nv-green); }
.nv-search-form button {
  border-radius: 0 var(--nv-radius) var(--nv-radius) 0 !important;
}

/* =========================================
   LEGAL PAGE CONTENT TYPOGRAPHY
   ========================================= */


.nv-legal-content ul, .nv-legal-content ol { margin-bottom: 1.2rem; }


.nv-legal-content strong { color: var(--nv-white); }

/* =========================================
   FOOTER SOCIAL LINKS
   ========================================= */
.nv-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--nv-dark-2);
  border: 1px solid var(--nv-border);
  border-radius: 50%;
  color: var(--nv-text-muted) !important;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--nv-transition);
}
.nv-social-link:hover {
  background: var(--nv-green);
  border-color: var(--nv-green);
  color: #fff !important;
}

/* =========================================
   PRODUCT ARCHIVE / CATEGORY PAGE
   ========================================= */

/* Archive header — large green rounded banner matching screenshot */
.nv-archive-header {
  background: #A6CF60;
  margin: 20px 40px;
  border-radius: 12px;
  padding: 48px 40px;
}
.nv-archive-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a1a1a;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nv-archive-desc {
  color: rgba(0,0,0,0.65);
  font-size: 0.92rem;
  max-width: 600px;
  margin: 10px 0 0;
}

/* Archive body */
.nv-archive-body { padding: 32px 0 60px; background: #ffffff; }

/* Toolbar */

/* Archive card grid — 3 columns */


/* Archive card grid */
.nv-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Individual card — white bg, light border, rounded */
.nv-archive-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.nv-archive-card:hover {
  border-color: #b8d96e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Image — full width, dark bg, fixed height */
.nv-arc-img-link {
  display: block;
  background: #111111;
  overflow: hidden;
}
.nv-arc-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.nv-archive-card:hover .nv-arc-img { transform: scale(1.03); }
.nv-arc-img-placeholder {
  width: 100%;
  height: 240px;
  background: #1a1a1a;
}

/* Card body */
.nv-arc-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

/* Category label — small grey */
.nv-arc-cat {
  font-size: 0.72rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* Product name */
.nv-arc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0;
}
.nv-arc-title a { color: #1a1a1a; text-decoration: none; }
.nv-arc-title a:hover { color: #7ab929; }

/* Price */
.nv-arc-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2px 0 6px;
}
.nv-arc-price .woocommerce-Price-amount { color: #1a1a1a; }

/* Add to Cart button + View Cart — side by side */
.nv-arc-cart-wrap { margin-top: auto; padding-top: 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nv-arc-cart-btn,
.nv-archive-card .button,

.nv-arc-cart-btn:hover,
.nv-archive-card .button:hover,
.nv-archive-card .added_to_cart:hover {
  background: #8fb84d !important;
  color: #333333 !important;
}
/* "View Cart" link appears to the right of Add to Cart */
.nv-archive-card .added_to_cart {
  display: inline-block !important;
  margin-top: 0 !important;
}

/* Pagination */
.nv-archive-pagination { margin-top: 48px; text-align: center; }

/* No products */
.nv-no-products {
  text-align: center;
  padding: 80px 0;
}
.nv-no-products p:first-child { font-size: 4rem; margin-bottom: 12px; }
.nv-no-products h2 { margin-bottom: 8px; }
.nv-no-products p { color: #888; margin-bottom: 24px; }

/* =========================================
   SINGLE PRODUCT PAGE — updated for PODS
   ========================================= */
.nv-product-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: #111;
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0;
}
.nv-product-jumplinks {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.nv-jumplink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nv-jumplink:hover { color: #7ab929; }

/* Quick specs box */
.nv-quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}
.nv-quick-spec {
  background: #fff;
  text-align: center;
  padding: 14px 8px;
}
.nv-quick-spec-label {
  font-size: 0.65rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}
.nv-quick-spec-value {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #7ab929;
  text-transform: uppercase;
  display: block;
}

/* Trust badges */
.nv-product-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #666;
}

/* Spec rich content sections */
.nv-spec-rich-section { margin-bottom: 24px; }
.nv-spec-rich-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7ab929;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.nv-spec-rich-content,

.nv-spec-rich-content p,

.nv-spec-rich-content ul,

.nv-spec-rich-content li,


/* Detailed information section */
.nv-product-detailed-info {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}
.nv-product-detailed-info h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
}

/* Video section */
.nv-product-video {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}
.nv-product-video h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #111;
  text-transform: none;
}

/* Responsive archive */
@media (max-width: 900px) {
  .nv-archive-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .nv-archive-grid { grid-template-columns: 1fr !important; }
  
  .nv-quick-specs { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   PRODUCT CARD — FEATURE PILLS
   ========================================= */
.nv-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f8e6;
  border: 1px solid #c8e89a;
  color: #3d6b1a;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.3;
}

/* Archive header responsive */
@media (max-width: 768px) {
  .nv-archive-header { margin: 12px 12px; padding: 32px 20px; }
  
}
@media (max-width: 480px) {
  .nv-archive-header { margin: 8px 8px; border-radius: 8px; }
}

/* =========================================
   SINGLE PRODUCT PAGE — full redesign
   ========================================= */

/* ---- Top section: gallery + summary ---- */
/* Full-width #f7f7f7 background wrapper for top product section */
.nv-sp-top-wrap {
  background: #f7f7f7;
  width: 100%;
  padding: 48px 0 52px;
}
.nv-sp-top {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.nv-sp-gallery {}
.nv-gallery-main {
  background: #f7f7f7;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nv-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: opacity 0.2s ease;
}
.nv-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nv-gallery-thumb {
  width: 68px; height: 68px;
  border: 2px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #f9f9f9;
  transition: border-color 0.2s;
}
.nv-gallery-thumb:hover,
.nv-gallery-thumb.active { border-color: #7ab929; }
.nv-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Summary */
.nv-sp-summary {}
.nv-sp-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #7ab929;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
  line-height: 1.25;
}
.nv-sp-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}
.nv-sp-desc p { margin-bottom: 0.8rem; }

/* Quick spec badges */
.nv-sp-quickspecs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.nv-sp-qs-item {
  background: #fff;
  text-align: center;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nv-sp-qs-icon {
  color: #7ab929;
  margin-bottom: 2px;
  height: 28px;
  display: flex;
  align-items: center;
}
.nv-sp-qs-label {
  font-size: 0.82rem;   /* was 0.7rem +2px */
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.nv-sp-qs-sub {
  font-size: 0.84rem;   /* was 0.72rem +2px */
  color: #666;
  line-height: 1.3;
  text-align: center;
}

/* Action buttons */
.nv-sp-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nv-sp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid #ccc;
  background: #fff;
  color: #444 !important;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.nv-sp-btn-secondary:hover { border-color: #7ab929; color: #7ab929 !important; }
.nv-sp-btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid #ddd;
  background: #fafafa;
  color: #bbb !important;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 4px;
  cursor: not-allowed;
  text-decoration: none;
}

/* Price */
.nv-sp-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.nv-sp-price .woocommerce-Price-amount { color: #333; }

/* Cart row */
.nv-sp-cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-top: 8px;
}
.nv-quantity-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.nv-quantity-btn {
  width: 36px; height: 40px;
  background: #f5f5f5;
  border: none;
  font-size: 1.1rem;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.nv-quantity-btn:hover { background: #e8e8e8; }
.nv-quantity-input {
  width: 48px; height: 40px;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  background: #fff;
}
.nv-sp-add-to-cart {
  background: #7ab929 !important;
  color: #333 !important;
  font-weight: 600;
  padding: 10px 28px !important;
  font-size: 0.9rem !important;
  border-radius: 4px !important;
}
.nv-sp-add-to-cart:hover { background: #5e8f1e !important; }

/* ---- Video ---- */
.nv-sp-video {
  margin: 0 0 32px;
}

/* ---- App bar — centered ---- */
.nv-sp-app-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 28px;
  text-align: center;
}
.nv-sp-app-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #7ab929;
  font-weight: 500;
  justify-content: center;
}

/* ---- Functions / feature cards — 4-col grid ---- */
.nv-sp-functions {
  padding: 48px 0 40px;
  text-align: center;
}
/* Allow normal block layout — don't collapse children */
.nv-sp-functions > * { display: block; }

/* Generic: if the editor outputs ul/ol items, grid them */
.nv-sp-functions ul,
.nv-sp-functions ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nv-sp-functions ul li,
.nv-sp-functions ol li {
  border: 1.5px solid #c8e89a;
  border-radius: 10px;
  padding: 28px 20px 22px;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* If editor outputs a table */
.nv-sp-functions table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 16px 0;
}
.nv-sp-functions table td {
  border: 1.5px solid #c8e89a;
  border-radius: 10px;
  padding: 28px 16px 22px;
  text-align: center;
  vertical-align: top;
  width: 25%;
}

/* Video wrap — centers the iframe */
.nv-sp-video-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}
.nv-sp-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
/* TinyMCE wraps iframe in p tag sometimes */
.nv-sp-functions p { margin: 0; }
/* If editor outputs paragraphs/divs — wrap them */
.nv-sp-functions p { font-size: 0.9rem; color: #555; text-align: center; }

/* Headings inside functions content */
.nv-sp-functions h3,
.nv-sp-functions h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

/* SVG/img icons inside functions */
.nv-sp-functions svg,
.nv-sp-functions img {
  color: #7ab929;
  width: 52px;
  height: 52px;
  margin-bottom: 4px;
}

/* Shortcode blocks */
.nv-sp-functions .wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.nv-sp-functions .wp-block-column {
  border: 1.5px solid #c8e89a !important;
  border-radius: 10px !important;
  padding: 28px 16px 22px !important;
  text-align: center !important;
}
@media (max-width: 768px) {
  .nv-sp-functions ul,
  .nv-sp-functions ol,
  .nv-sp-functions .wp-block-columns { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ---- Spec sections ---- */
.nv-sp-spec-sections { margin-top: 8px; }

.nv-sp-section {
  margin-bottom: 48px;
}
.nv-sp-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}

/* Icon grid — matching screenshot */
.nv-sp-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.nv-sp-icon-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 18px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: columns;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-sp-icon-card:hover {
  border-color: #7ab929;
  box-shadow: 0 2px 12px rgba(122,185,41,0.1);
}
.nv-sp-icon-card-icon {
  color: #7ab929;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.nv-sp-icon-card-label {
  font-size: 0.82rem;   /* was 0.72rem +2px */
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
}
.nv-sp-icon-card-value {
  font-size: 0.88rem;   /* was 0.78rem +2px */
  color: #666;
  line-height: 1.4;
  text-align: center;
}

/* ---- Related list ---- */
.nv-sp-related {
  margin-top: 48px;
  padding-top: 36px;
  
}
.nv-sp-related-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.nv-sp-related-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
}
.nv-sp-related-list li a { color: #333; }
.nv-sp-related-list li a:hover { color: #7ab929; }
.nv-sp-related-list li strong { color: #7ab929; }
.nv-sp-related-list .woocommerce-Price-amount { color: #7ab929; }

/* ---- Rich content ---- */
.nv-rich-content {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
}
.nv-rich-content p { margin-bottom: 1rem; }
.nv-rich-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.nv-rich-content li { margin-bottom: 4px; }

/* ---- Single product responsive ---- */
@media (max-width: 960px) {
  .nv-sp-top { grid-template-columns: 1fr; gap: 24px; }
  .nv-sp-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .nv-sp-quickspecs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .nv-sp-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .nv-sp-actions { flex-direction: column; }
  .nv-sp-btn-secondary { width: 100%; justify-content: center; }
  .nv-sp-cart-row { flex-wrap: wrap; }
  .nv-sp-add-to-cart { width: 100%; justify-content: center; }
}

/* =========================================
   FEATURE CARDS (functions field / fallback)
   4 columns, green border, centered content
   ========================================= */

@media (max-width: 768px) {
  
}
@media (max-width: 480px) {
  
}

/* =========================================
   BRAND / FEATURES SECTION (homepage section 2)
   ========================================= */

/* Section outer */
.nv-brand-features {
  background: #f7f7f7;
  padding: 60px 0;
  border-radius: 0 0 10px 10px;
  margin: 0 40px;
}

/* Centered header — above the box */
.nv-brand-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
}
.nv-brand-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.nv-brand-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.75;
  text-align: center;
}

/* Inner box — same background, no distinction needed */
.nv-brand-box {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

/* 3-column grid: callouts | image | callouts */
.nv-brand-grid {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 40px;
}

/* Callout columns — stacked vertically with gap */
.nv-brand-callouts {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Individual callout:
   Row 1: [green circle icon]  [heading]
   Row 2:                      [description text]
   Icon and heading are vertically centered on row 1.
   Description is below heading, indented to align with it. */
.nv-callout {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: start;
}

/* Icon sits in rows 1+2, vertically centered to the whole block */
.nv-callout-icon-wrap {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
.nv-callout-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: #A6CF60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.nv-callout-icon svg { display: block; flex-shrink: 0; }

/* Text body — occupies column 2, both rows */
.nv-callout-body {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nv-callout-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  line-height: 1.3;
}
.nv-callout-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* Center image column */
.nv-brand-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nv-brand-image-col img {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
}

/* Responsive */
@media (max-width: 960px) {
  .nv-brand-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .nv-brand-image-col {
    grid-column: 1 / -1;
    order: -1;
  }
  .nv-brand-image-col img { max-width: 220px; }
  .nv-brand-box { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .nv-brand-grid { grid-template-columns: 1fr; }
  .nv-brand-image-col { display: none; }
  .nv-brand-callouts { gap: 24px; }
}

/* =========================================
   HOMEPAGE SECTION 3 — App Promo + Cards + Callouts + Video
   ========================================= */
.nv-section3-wrap {
  padding: 60px 0;
  background: #ffffff;
}

/* ---- 3A: App promo bordered box ---- */
.nv-app-promo-box {
  border: 1.5px solid #c8e89a;
  border-radius: 10px;
  padding: 44px 48px 40px;
  text-align: center;
  margin-bottom: 28px;
  background: #ffffff;
}
.nv-app-promo-icon {
  color: #333333;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.nv-app-promo-icon svg { stroke: #333333; }
.nv-app-promo-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: #7ab929;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.nv-app-promo-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  max-width: 640px;
  margin: 0 auto;
}

/* ---- 3B: 3 feature cards ---- */
.nv-feat-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.nv-feat-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 36px 24px 28px;
  text-align: center;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-feat-card:hover {
  border-color: #c8e89a;
  box-shadow: 0 4px 16px rgba(122,185,41,0.08);
}
.nv-feat-card-icon {
  color: #333333;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.nv-feat-card-icon svg { stroke: #333333; }
.nv-feat-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.nv-feat-card-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ---- 3C: 3 horizontal callouts in one row ---- */
.nv-horiz-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.nv-horiz-callout {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 14px;
  align-items: start;
}
.nv-horiz-callout-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #A6CF60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(122,185,41,0.2);
  grid-row: 1 / 3;
}
.nv-horiz-callout-icon svg { display: block; flex-shrink: 0; }
.nv-horiz-callout-body {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nv-horiz-callout-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.nv-horiz-callout-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ---- 3D: YouTube video — centered 560px ---- */
.nv-home-video {
  display: flex;
  justify-content: center;
}
.nv-home-video-wrap {
  width: 100%;
  max-width: 760px;
  position: relative;
  padding-bottom: 42.19%; /* 16:9 of 760px max */
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}
.nv-home-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* Section 3 responsive */
@media (max-width: 768px) {
  .nv-feat-cards-row { grid-template-columns: 1fr; }
  .nv-horiz-callouts { grid-template-columns: 1fr; gap: 20px; }
  .nv-app-promo-box { padding: 28px 20px; }
}
@media (max-width: 560px) {
  .nv-home-video-wrap { padding-bottom: 56.25%; }
}

/* =========================================
   HOMEPAGE SECTION 4 — Dark Products Box
   ========================================= */

/* Outer dark box — 40px side margin, rounded corners */
.nv-products-dark-box {
  background: #0f0000;
  margin: 0 40px;
  border-radius: 10px 10px 0 0;  /* only top corners rounded per BB settings */
  padding: 40px 40px 40px;
  overflow: hidden;
}

/* Header — white, centered */
.nv-products-dark-header {
  text-align: center;
  margin-bottom: 40px;
}
.nv-products-dark-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.nv-products-dark-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

/* Product grid — 3 columns */
.nv-products-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual product card — #333333 body bg, all corners 10px per BB settings */
.nv-dark-product-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.nv-dark-product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  border-color: #b8d96e !important;
}

/* Image wrap — takes natural image height, no forced aspect ratio */
.nv-dark-card-img-wrap {
  display: block;
  background: #111111;
  overflow: hidden;
}
.nv-dark-card-img-wrap:hover .nv-dark-card-img { transform: scale(1.03); }
.nv-dark-card-img {
  width: 100% !important;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.nv-dark-card-img-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ccc;
}

/* Card body — transparent (card bg is #333333), padding 20px per BB */
.nv-dark-card-body {
  padding: 14px 16px 18px !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: #ffffff;
}
.nv-dark-card-title,
h2.nv-dark-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  line-height: 1.35;
}
.nv-dark-card-title a,
h2.nv-dark-card-title a { color: #1a1a1a; }
.nv-dark-card-title a:hover,
h2.nv-dark-card-title a:hover { color: #7ab929; }
.nv-dark-card-price {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 700;
}
.nv-dark-card-price .woocommerce-Price-amount,
.nv-dark-card-price .amount { color: #1a1a1a; }

/* Add to cart button — brand color, #333 text, matching screenshot */
.nv-dark-card-btn,
.nv-dark-product-card .button {
  display: inline-block;
  background: #7ab929 !important;
  color: #333333 !important;
  border: none !important;
  padding: 9px 18px !important;
  border-radius: 4px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: background 0.2s !important;
  text-decoration: none;
}
.nv-dark-card-btn:hover,
.nv-dark-product-card .button:hover {
  background: #5e8f1e !important;
  color: #333333 !important;
}

/* Dealer strip — inside dark box, bottom */
.nv-dark-dealer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0 36px;
  border-top: 1px solid #1e1e1e;
  flex-wrap: wrap;
}
.nv-dark-dealer-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.nv-dark-dealer-text p {
  font-size: 0.88rem;
  color: #aaaaaa;
  margin: 0;
}
.nv-dark-dealer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7ab929;
  color: #333333 !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nv-dark-dealer-btn:hover { background: #5e8f1e; color: #333333 !important; }

/* Responsive */
@media (max-width: 960px) {
  .nv-products-dark-box { margin: -80px 20px 0; border-radius: 8px 8px 0 0; padding: 36px 24px 36px; }
  .nv-products-dark-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nv-products-dark-box { margin: -60px 12px 0; border-radius: 8px 8px 0 0; padding: 28px 16px 28px; }
  .nv-products-dark-grid { grid-template-columns: 1fr; }
  .nv-dark-dealer-strip { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   HOMEPAGE SECTION 5A — Testimonials
   ========================================= */
.nv-testimonials-section {
  padding: 52px 0 48px;
  background: #ffffff;
}
.nv-testimonials-grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.nv-testi-card {
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  padding: 28px 28px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-testi-card:hover {
  border-color: #c8e89a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Image / placeholder — top left, small */
.nv-testi-img-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.nv-testi-img-wrap img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}
.nv-testi-img-placeholder {
  width: 56px;
  height: 56px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nv-testi-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.nv-testi-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.nv-testi-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 4px 0 0;
}

/* =========================================
   HOMEPAGE SECTION 5B — Blog
   ========================================= */
.nv-blog-section {
  padding: 52px 0 64px;
  background: #ffffff;
}

/* Centered header */
.nv-blog-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}
.nv-blog-main-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.nv-blog-main-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* 3-column blog card grid */
.nv-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nv-blog-home-card {
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-blog-home-card:hover {
  border-color: #c8e89a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Image — full width, fixed height */
.nv-blog-home-img-wrap {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.nv-blog-home-img-wrap:hover .nv-blog-home-img { transform: scale(1.03); }
.nv-blog-home-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.nv-blog-home-img-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: #f5f5f5;
  color: #ccc;
}

/* Card body */
.nv-blog-home-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.nv-blog-home-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
}
.nv-blog-home-title a { color: #1a1a1a; }
.nv-blog-home-title a:hover { color: #7ab929; }
.nv-blog-home-read-more {
  font-size: 0.88rem;
  font-weight: 500;
  color: #7ab929 !important;
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
}
.nv-blog-home-read-more:hover { color: #5e8f1e !important; }

/* Responsive */
@media (max-width: 768px) {
  .nv-testimonials-grid-home { grid-template-columns: 1fr; }
  .nv-blog-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .nv-blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   OUR DEALERS PAGE
   ========================================= */

/* Header — green rounded box, 40px side margin, left-aligned dark title */
.nv-dealers-header {
  padding: 20px 0 24px;
  background: #ffffff;
}
.nv-dealers-header-box {
  background: #A6CF60;
  margin: 0 40px;
  border-radius: 10px;
  padding: 40px 44px;
}
.nv-dealers-header-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Body — white bg, inner container matches header indent */
.nv-dealers-body {
  background: #ffffff;
  padding: 32px 0 64px;
}
.nv-dealers-inner {
  max-width: calc(100% - 80px); /* match 40px side margin */
  margin: 0 auto;
  padding: 0 40px;
}

/* 3-column grid */
.nv-dealers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card — white, light border, rounded, no icon */
.nv-dealer-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 20px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-dealer-card:hover {
  border-color: #b0d060;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Dealer name — dark, bold */
.nv-dealer-name {
  font-size: 1rem;
  font-weight: 700;
  color: #222222;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 10px;
  line-height: 1.35;
}

/* Phone — medium grey */
.nv-dealer-phone {
  font-size: 0.88rem;
  color: #555555;
  margin: 0 0 4px;
  font-weight: 400;
}

/* Address — lighter grey */
.nv-dealer-address {
  font-size: 0.86rem;
  color: #888888;
  margin: 0;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 960px) {
  .nv-dealers-grid { grid-template-columns: repeat(2, 1fr); }
  .nv-dealers-header-box { margin: 0 20px; }
  .nv-dealers-inner { max-width: calc(100% - 40px); padding: 0 20px; }
}
@media (max-width: 600px) {
  .nv-dealers-grid { grid-template-columns: 1fr; }
  .nv-dealers-header-box { margin: 0 12px; border-radius: 8px; padding: 28px 20px; }
  .nv-dealers-inner { max-width: 100%; padding: 0 12px; }
}

/* =========================================
   CONTACT US PAGE
   ========================================= */

/* Header — same green box as dealers */
.nv-contact-header {
  padding: 20px 0 24px;
  background: #ffffff;
}
.nv-contact-header-box {
  background: #A6CF60;
  margin: 0 40px;
  border-radius: 10px;
  padding: 40px 44px;
}
.nv-contact-header-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Cards + socials wrapper */
.nv-contact-cards-wrap {
  background: #ffffff;
  padding: 48px 0 40px;
}

/* 3 info cards */
.nv-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 36px;
  padding: 0 40px;
}
.nv-contact-info-card {
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  padding: 32px 20px 28px;
  text-align: center;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-contact-info-card:hover {
  border-color: #c8e89a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.nv-contact-info-icon {
  width: 52px;
  height: 52px;
  background: #A6CF60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 3px 12px rgba(122,185,41,0.2);
}
.nv-contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.nv-contact-info-value {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.nv-contact-info-value a { color: #555; }
.nv-contact-info-value a:hover { color: #7ab929; }

/* Social icons row — centered green circles */
.nv-contact-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}
.nv-contact-social-icon {
  width: 42px;
  height: 42px;
  background: #A6CF60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nv-contact-social-icon:hover {
  background: #7ab929;
  transform: translateY(-2px);
}

/* Map + Form section */
.nv-contact-bottom {
  background: #ffffff;
  padding: 52px 0 60px;
}
.nv-contact-bottom-inner {
  max-width: calc(100% - 80px);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Google Map iframe */
.nv-contact-map {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  background: #e0e0e0;
}
.nv-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact form */
.nv-contact-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.nv-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nv-contact-form input,
.nv-contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.nv-contact-form input::placeholder,
.nv-contact-form textarea::placeholder { color: #aaa; }
.nv-contact-form input:focus,
.nv-contact-form textarea:focus {
  border-color: #7ab929;
  outline: none;
  box-shadow: 0 0 0 2px rgba(122,185,41,0.15);
}
.nv-contact-form textarea { resize: vertical; min-height: 130px; }
.nv-contact-submit {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 13px 36px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.nv-contact-submit:hover { background: #333333; }
.nv-form-success {
  background: #f0fbe6;
  border: 1px solid #c8e89a;
  color: #3d6b1a;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 960px) {
  .nv-contact-bottom-inner {
    grid-template-columns: 1fr;
    max-width: calc(100% - 40px);
    padding: 0 20px;
  }
  .nv-contact-map { height: 300px; }
  .nv-contact-cards { padding: 0 20px; }
  .nv-contact-header-box { margin: 0 20px; }
}
@media (max-width: 640px) {
  .nv-contact-cards { grid-template-columns: 1fr; }
  .nv-contact-header-box { margin: 0 12px; padding: 28px 20px; }
  .nv-contact-bottom-inner { max-width: 100%; padding: 0 12px; }
}

/* =========================================
   BLOG ARCHIVE
   ========================================= */
.nv-blog-arc-header { padding: 20px 0 24px; background: #ffffff; }
.nv-blog-arc-header-box {
  background: #A6CF60;
  margin: 0 40px;
  border-radius: 10px;
  padding: 40px 44px;
}
.nv-blog-arc-header-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #333333;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.nv-blog-arc-body { background: #ffffff; padding: 40px 0 64px; }
.nv-blog-arc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.nv-blog-arc-card {
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nv-blog-arc-card:hover { border-color: #c8e89a; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.nv-blog-arc-img-link { display: block; overflow: hidden; aspect-ratio: 16/10; }
.nv-blog-arc-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.nv-blog-arc-card:hover .nv-blog-arc-img { transform: scale(1.03); }
.nv-blog-arc-img-placeholder { height: 180px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #ccc; }
.nv-blog-arc-body-inner { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.nv-blog-arc-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin: 0; text-transform: none; letter-spacing: 0; }
.nv-blog-arc-title a { color: #1a1a1a; }
.nv-blog-arc-title a:hover { color: #7ab929; }
.nv-blog-arc-excerpt { font-size: 0.88rem; color: #666; line-height: 1.6; margin: 0; }
.nv-blog-arc-read-more { font-size: 0.88rem; font-weight: 500; color: #7ab929 !important; text-decoration: none; margin-top: auto; }
.nv-blog-arc-read-more:hover { color: #5e8f1e !important; }
.nv-blog-arc-pagination { text-align: center; }
.nv-blog-arc-pagination .nav-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.nv-blog-arc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.88rem; color: #333; text-decoration: none; }
.nv-blog-arc-pagination .page-numbers.current { background: #7ab929; border-color: #7ab929; color: #fff; }
.nv-blog-arc-pagination .page-numbers:hover:not(.current) { border-color: #7ab929; color: #7ab929; }
.nv-blog-arc-pagination .next, .nv-blog-arc-pagination .prev { width: auto; padding: 0 12px; }
@media (max-width: 960px) { .nv-blog-arc-grid { grid-template-columns: repeat(2, 1fr); } .nv-blog-arc-header-box { margin: 0 20px; } }
@media (max-width: 600px) { .nv-blog-arc-grid { grid-template-columns: 1fr; } .nv-blog-arc-header-box { margin: 0 12px; } }

/* =========================================
   BLOG SINGULAR
   ========================================= */

/* ---- Hero: featured image as background + dark overlay + title ---- */
.nv-blog-hero {
  position: relative;
  min-height: 300px;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.nv-blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.nv-blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0 36px;
}
.nv-blog-hero-title {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
  max-width: 820px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---- Main wrapper ---- */
.nv-single-blog-wrap { background: #ffffff; padding: 44px 0 64px; }

/* ---- 2-col layout ---- */
.nv-single-blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* ---- Left: content ---- */
.nv-single-blog-meta {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 24px;
}
.nv-meta-sep { margin: 0 4px; }
.nv-single-blog-meta a { color: #7ab929; }

.nv-single-blog-body { font-size: 0.92rem; color: #333; line-height: 1.85; }
.nv-single-blog-body h2 { font-size: 1.3rem; font-weight: 700; color: #111; margin: 32px 0 14px; text-transform: none; letter-spacing: 0; }
.nv-single-blog-body h3 { font-size: 1.1rem; font-weight: 700; color: #111; margin: 24px 0 10px; text-transform: none; letter-spacing: 0; }
.nv-single-blog-body h4 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; text-transform: none; }
.nv-single-blog-body p { margin-bottom: 1rem; }
.nv-single-blog-body ul, .nv-single-blog-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.nv-single-blog-body li { margin-bottom: 6px; }
.nv-single-blog-body a { color: #7ab929; }
.nv-single-blog-body a:hover { color: #5e8f1e; }
.nv-single-blog-body img { max-width: 100%; border-radius: 6px; margin: 12px 0; }
.nv-single-blog-body blockquote { border-left: 3px solid #7ab929; padding: 8px 0 8px 16px; margin: 16px 0; color: #555; font-style: italic; }
.nv-single-blog-body strong a,
.nv-single-blog-body a strong { color: #7ab929; }

.nv-single-blog-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid #e8e8e8; }
.nv-tag-pill { background: #f0f8e6; border: 1px solid #c8e89a; color: #3d6b1a; font-size: 0.78rem; padding: 4px 10px; border-radius: 20px; text-decoration: none; }
.nv-tag-pill:hover { background: #c8e89a; }

/* ---- Right: sidebar ---- */
.nv-single-blog-sidebar {
  position: sticky;
  top: 90px;
}
.nv-sidebar-box {
  background: #f7f7f7;
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  padding: 22px 20px;
}

/* Related Articles heading */
.nv-sidebar-widget-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: none;
}

/* Related article links list */
.nv-sidebar-related-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.nv-sidebar-related-list li {
  border-bottom: 1px solid #e8e8e8;
}
.nv-sidebar-related-list li:last-child { border-bottom: none; }
.nv-sidebar-related-link {
  display: block;
  font-size: 0.85rem;
  color: #333;
  padding: 9px 0;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s;
}
.nv-sidebar-related-link:hover { color: #7ab929; }

/* Pagination under related articles */
.nv-sidebar-pagination {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nv-sidebar-pagination span,
.nv-sidebar-pagination a {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 0.78rem;
  text-decoration: none;
  color: #333;
  background: #fff;
}
.nv-sidebar-pagination span.active {
  background: #7ab929;
  border-color: #7ab929;
  color: #fff;
}
.nv-sidebar-pagination a { width: auto; padding: 0 8px; }

/* Separator */
.nv-sidebar-sep {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 20px;
}

/* Product CTA widget */
.nv-sidebar-cta { text-align: center; }
.nv-sidebar-cta-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.nv-sidebar-cta-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}
.nv-sidebar-cta-img {
  margin-bottom: 16px;
}
.nv-sidebar-cta-img img {
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.nv-sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #7ab929;
  color: #ffffff !important;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.nv-sidebar-cta-btn:hover { background: #5e8f1e; color: #fff !important; }

/* Responsive */
@media (max-width: 900px) {
  .nv-single-blog-layout { grid-template-columns: 1fr; }
  .nv-single-blog-sidebar { position: static; }
  .nv-sidebar-box { margin-top: 32px; }
}

/* =========================================
   ABOUT US PAGE
   ========================================= */
.nv-about-header { padding: 20px 0 24px; background: #fff; }
.nv-about-header-box { background: #A6CF60; margin: 0 40px; border-radius: 10px; padding: 40px 44px; }
.nv-about-header-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }
.nv-about-body { background: #fff; padding: 48px 0 64px; }
.nv-about-intro { max-width: 900px; font-size: 0.95rem; color: #444; line-height: 1.8; margin-bottom: 52px; }
.nv-about-intro p { margin-bottom: 1rem; }
.nv-about-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 60px; }
.nv-about-vm-card { border: 1.5px solid #e0e0e0; border-radius: 10px; padding: 48px 32px 36px; text-align: center; background: #fff; transition: border-color 0.2s; }
.nv-about-vm-card:hover { border-color: #c8e89a; }
.nv-about-vm-icon { width: 58px; height: 58px; background: #7ab929; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(122,185,41,0.22); }
.nv-about-vm-card h3 { font-size: 1.15rem; font-weight: 700; color: #111; margin-bottom: 14px; text-transform: none; letter-spacing: 0; }
.nv-about-vm-card p { font-size: 0.9rem; color: #555; line-height: 1.7; margin: 0; text-align: center; max-width: 380px; margin: 0 auto; }
.nv-about-values-section { margin-top: 8px; }
.nv-about-values-title { font-size: 1.3rem; font-weight: 700; color: #111; text-transform: none; letter-spacing: 0; margin-bottom: 28px; }
.nv-about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nv-about-value-card { border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 24px 20px 22px; background: #fff; transition: border-color 0.2s; }
.nv-about-value-card:hover { border-color: #c8e89a; }
.nv-about-value-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.nv-about-value-icon { color: #333; flex-shrink: 0; }
.nv-about-value-card h4 { font-size: 1rem; font-weight: 700; color: #1a1a1a; text-transform: none; letter-spacing: 0; margin: 0; }
.nv-about-value-card p { font-size: 0.87rem; color: #777; line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .nv-about-vm-grid { grid-template-columns: 1fr; } .nv-about-values-grid { grid-template-columns: 1fr 1fr; } .nv-about-header-box { margin: 0 12px; } }
@media (max-width: 500px) { .nv-about-values-grid { grid-template-columns: 1fr; } }

/* =========================================
   ABOUT FOUNDER PAGE
   ========================================= */
.nv-founder-header { padding: 20px 0 24px; background: #fff; }
.nv-founder-header-box { background: #A6CF60; margin: 0 40px; border-radius: 10px; padding: 40px 44px; }
.nv-founder-header-title { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 700; color: #333; text-transform: none; letter-spacing: 0; margin: 0; line-height: 1.3; }
.nv-founder-body { background: #fff; padding: 48px 0 64px; }

/* Each section row: 30% label | 70% content grid */
.nv-founder-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: start;
}
.nv-founder-section:last-child { border-bottom: none; }

.nv-founder-section-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
}
.nv-founder-section-content {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
}
.nv-founder-section-content p { margin-bottom: 0.9rem; }
.nv-founder-section-content p:last-child { margin-bottom: 0; }
.nv-founder-section-content em, .nv-founder-section-content i { color: #555; }
.nv-founder-section-content ul { padding-left: 1.2rem; }
.nv-founder-section-content li { margin-bottom: 4px; }

/* First section — photo left + label+content right */
.nv-founder-section-first { display: block; padding: 36px 0; border-bottom: 1px solid #f0f0f0; }
.nv-founder-first-row { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.nv-founder-photo img { width: 180px; height: 220px; object-fit: cover; border-radius: 8px; border: 1px solid #e0e0e0; }
.nv-founder-first-text .nv-founder-section-label { margin-bottom: 14px; }

@media (max-width: 768px) {
  .nv-founder-section, .nv-founder-first-row { grid-template-columns: 1fr; gap: 16px; }
  .nv-founder-header-box, .nv-about-header-box { margin: 0 12px; }
  .nv-founder-photo img { width: 140px; height: 170px; }
}

/* =========================================
   SEO HEADING TAG NORMALISATION
   Visual styles preserved after tag changes
   ========================================= */

/* Quick spec labels — now h5, visual unchanged */
h5.nv-sp-qs-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0 0 4px;
}

/* Spec icon card labels — now h5, visual unchanged */
h5.nv-sp-icon-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 4px;
}

/* Callout titles — now h3, visual unchanged */
h3.nv-callout-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  line-height: 1.3;
}

/* Feature card titles — now h3, visual unchanged */
h3.nv-feat-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}

/* Horizontal callout titles — now h3, visual unchanged */
h3.nv-horiz-callout-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

/* Testimonial titles — now h3, visual unchanged */
h3.nv-testi-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

/* Blog card titles — now h2, visual unchanged */
h2.nv-blog-home-title,
h2.nv-blog-arc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
}
h2.nv-blog-home-title a,
h2.nv-blog-arc-title a { color: #1a1a1a; }
h2.nv-blog-home-title a:hover,
h2.nv-blog-arc-title a:hover { color: #7ab929; }

/* Product card titles in dark box — now h2, visual unchanged */
/* h2.nv-dark-card-title styles merged above */

/* Archive card title — now h2 */
h2.nv-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}
h2.nv-card-title a { color: #7ab929; }
h2.nv-card-title a:hover { color: #5e8f1e; }

/* Products section tagline — now h2, visual unchanged */
h2.nv-products-dark-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

/* Dealer CTA title — now h4 */
h4.nv-dark-dealer-text-title,
.nv-dark-dealer-strip h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}

/* Footer headings — now h2, keep small visual size */
h2.nv-footer-social-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  padding: 0;
  margin-bottom: 14px;
}
h2.nv-footer-col-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}
h2.nv-footer-app-label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
.nv-footer-app-col h3 {
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Footer contact items — now h3 */
h3.nv-footer-contact-text {
  color: #cccccc;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
h3.nv-footer-contact-text a { color: #cccccc !important; }
h3.nv-footer-contact-text a:hover { color: #ffffff !important; }

/* Hero eyebrow — now h4 */
h4.nv-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

/* =========================================
   LEGAL PAGES (Privacy Policy, Terms)
   ========================================= */
.nv-legal-header { padding: 20px 0 24px; background: #fff; }
.nv-legal-header-box { background: #A6CF60; margin: 0 40px; border-radius: 10px; padding: 40px 44px; }
.nv-legal-header-title { font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }
.nv-legal-body { background: #fff; padding: 48px 0 72px; }
.nv-legal-content { max-width: 860px; }
.nv-legal-content h2 { font-size: 1.2rem; font-weight: 700; color: #111; margin: 32px 0 12px; text-transform: none; letter-spacing: 0; }
.nv-legal-content h3 { font-size: 1rem; font-weight: 700; color: #222; margin: 24px 0 8px; text-transform: none; letter-spacing: 0; }
.nv-legal-content p { font-size: 0.92rem; color: #444; line-height: 1.8; margin-bottom: 1rem; }
.nv-legal-content ul, .nv-legal-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.nv-legal-content li { font-size: 0.92rem; color: #444; line-height: 1.7; margin-bottom: 6px; }
.nv-legal-content a { color: #7ab929; }
.nv-legal-content a:hover { color: #5e8f1e; }
@media (max-width: 768px) { .nv-legal-header-box { margin: 0 12px; padding: 28px 20px; } }

/* =========================================
   ARCHIVE SEO CONTENT BLOCK
   Below product grid on shop/category pages
   ========================================= */
.nv-archive-seo-content {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid #e2e2e2;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
}

/* Headings */
.nv-archive-seo-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
  margin: 36px 0 14px;
  padding-top: 4px;
}
.nv-archive-seo-content h2:first-child { margin-top: 0; }
.nv-archive-seo-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 28px 0 10px;
}
.nv-archive-seo-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 20px 0 8px;
  text-transform: none;
}

/* Paragraphs */
.nv-archive-seo-content p { margin-bottom: 1rem; }

/* Lists */
.nv-archive-seo-content ul,
.nv-archive-seo-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.nv-archive-seo-content li { margin-bottom: 5px; }

/* Links */
.nv-archive-seo-content a { color: #7ab929; }
.nv-archive-seo-content a:hover { color: #5e8f1e; }

/* Strong */
.nv-archive-seo-content strong { color: #111; font-weight: 700; }

/* FAQ style — bold questions */
.nv-archive-seo-content h4 + p { margin-top: 0; }

/* Responsive video iframes */
.nv-archive-seo-content iframe {
  max-width: 760px;
  width: 100%;
  display: block;
  margin: 20px auto;
  border-radius: 6px;
  border: 0;
}
.nv-archive-seo-content .wp-video,
.nv-archive-seo-content .wp-block-embed {
  max-width: 760px;
  margin: 20px auto;
}

/* Responsive */
@media (max-width: 600px) {
  .nv-archive-seo-content { margin-top: 36px; padding-top: 32px; }
  .nv-archive-seo-content h2 { font-size: 1.1rem; }
}

/* WooCommerce AJAX — "View Cart" appears to the right of the button */
.nv-archive-card a.added_to_cart {
  display: inline-block !important;
  background: #5e8f1e !important;
  color: #fff !important;
  padding: 9px 14px !important;
  border-radius: 4px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  margin-top: 0 !important;
  white-space: nowrap !important;
}
/* Responsive archive grid */
@media (max-width: 900px) {
  .nv-archive-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .nv-archive-grid { grid-template-columns: 1fr !important; }
  .nv-arc-img, .nv-arc-img-placeholder { height: 200px; }
}

/* =========================================
   DETAILED INFORMATION — full width above footer
   ========================================= */
.nv-detailed-info-content ul,
.nv-detailed-info-content table th,

/* =========================================
   UNIFIED ADD TO CART BUTTON
   Same style everywhere — archive, single product, homepage dark box
   ========================================= */

/* Every Add to Cart button in the theme */
.nv-arc-cart-btn,
.nv-dark-card-btn,
.nv-sp-cart-row .single_add_to_cart_button,
.nv-sp-cart-row .button,
.woocommerce-cart-form .button,
.woocommerce div.product form.cart .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #A6CF60 !important;
  color: #333333 !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  outline: none !important;
}
.nv-arc-cart-btn:hover,
.nv-dark-card-btn:hover,
.nv-sp-cart-row .single_add_to_cart_button:hover,
.nv-sp-cart-row .button:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #8fb84d !important;
  color: #333333 !important;
}

/* Loading state */
.nv-arc-cart-btn.loading,
.nv-dark-card-btn.loading,
.nv-sp-cart-row .button.loading {
  opacity: 0.75 !important;
  pointer-events: none !important;
}

/* "Added to cart" confirmation state */
.nv-arc-cart-btn.added,
.nv-dark-card-btn.added,
.nv-sp-cart-row .button.added {
  background: #7ab929 !important;
}

/* View Cart link — appears to the right after AJAX add */
.nv-arc-cart-wrap .added_to_cart,
.nv-dark-card-wrap .added_to_cart,
.nv-sp-cart-row .added_to_cart,
a.added_to_cart {
  display: inline-flex !important;
  align-items: center !important;
  background: #5e8f1e !important;
  color: #ffffff !important;
  padding: 10px 16px !important;
  border-radius: 4px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  text-decoration: none !important;
  margin-left: 8px !important;
  transition: background 0.2s !important;
  white-space: nowrap !important;
}
.nv-arc-cart-wrap .added_to_cart:hover,
.nv-sp-cart-row .added_to_cart:hover,
a.added_to_cart:hover {
  background: #4a7016 !important;
  color: #fff !important;
}

/* WooCommerce quantity +/- on single product page */
.nv-sp-cart-row .quantity,
.woocommerce div.product form.cart .quantity {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin-right: 10px !important;
}
.nv-sp-cart-row .qty,
.woocommerce div.product form.cart .qty {
  width: 52px !important;
  text-align: center !important;
  padding: 9px 4px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  font-size: 0.9rem !important;
  font-family: 'Poppins', sans-serif !important;
  -moz-appearance: textfield !important;
}
.nv-sp-cart-row .qty::-webkit-inner-spin-button,
.nv-sp-cart-row .qty::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Out of stock */
.nv-out-of-stock {
  font-size: 0.88rem;
  color: #cc0000;
  font-weight: 600;
  padding: 10px 0;
}

/* Homepage dark box — View Cart appears to the right of Add to Cart */
.nv-dark-card-cart-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.nv-dark-card-cart-wrap .added_to_cart {
  display: inline-flex !important;
  align-items: center !important;
  background: #5e8f1e !important;
  color: #ffffff !important;
  padding: 10px 14px !important;
  border-radius: 4px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  text-decoration: none !important;
  margin: 0 !important;
  white-space: nowrap !important;
  transition: background 0.2s !important;
}
.nv-dark-card-cart-wrap .added_to_cart:hover {
  background: #4a7016 !important;
}

/* Topbar nav menu */
.nv-topbar-menu {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.nv-topbar-menu li {
  position: relative;
}
.nv-topbar-menu li a {
  color: #ffffff;
  font-size: 0.82rem;
  padding: 0 12px;
  text-decoration: none !important;
  display: inline-block;
  line-height: 1;
  border-right: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
}
.nv-topbar-menu li:last-child > a { border-right: none; }
.nv-topbar-menu li a:hover { color: rgba(255,255,255,0.75); }

/* Topbar dropdown */
.nv-topbar-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: 2px solid #7ab929;
  min-width: 180px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  z-index: 9999;
  padding: 4px 0;
  list-style: none;
  margin: 0;
  flex-direction: column;
}
.nv-topbar-menu li:hover > .sub-menu { display: flex; }
.nv-topbar-menu .sub-menu li { position: relative; width: 100%; }
.nv-topbar-menu .sub-menu li a {
  color: #333333 !important;
  font-size: 0.82rem;
  padding: 8px 16px;
  display: block;
  border-right: none;
  border-bottom: 1px solid #f5f5f5;
  white-space: nowrap;
}
.nv-topbar-menu .sub-menu li:last-child a { border-bottom: none; }
.nv-topbar-menu .sub-menu li a:hover {
  background: #f7fef0;
  color: #7ab929 !important;
}

/* Apply for Dealership page */
.nv-dealership-wrap {
  max-width: 760px;
  margin: 48px auto 64px;
}

/* =========================================
   WOOCOMMERCE QUANTITY +/- BUTTONS
   ========================================= */
.woocommerce .quantity.nv-qty-enhanced {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  border: 1px solid #dddddd;
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}
.woocommerce .quantity.nv-qty-enhanced input.qty {
  border: none !important;
  border-left: 1px solid #dddddd !important;
  border-right: 1px solid #dddddd !important;
  border-radius: 0 !important;
  width: 52px !important;
  text-align: center !important;
  padding: 8px 4px !important;
  font-size: 0.9rem !important;
  -moz-appearance: textfield !important;
  background: #ffffff !important;
  color: #333333 !important;
}
.woocommerce .quantity.nv-qty-enhanced input.qty::-webkit-inner-spin-button,
.woocommerce .quantity.nv-qty-enhanced input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.nv-qty-btn {
  background: #f7f7f7 !important;
  border: none !important;
  color: #333333 !important;
  width: 36px !important;
  height: 38px !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.15s !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.nv-qty-btn:hover {
  background: #A6CF60 !important;
  color: #333333 !important;
}

/* =========================================================================
   COMPREHENSIVE RESPONSIVE FIX — v2.1.9
   Covers all gaps identified in responsive audit
   ========================================================================= */

/* ── Desktop improvements (1100px+) ─────────────────────────────────────── */
@media (min-width: 1100px) {
  .nv-container { padding: 0 32px; }
  .nv-sp-top { grid-template-columns: 440px 1fr; gap: 60px; }
}

/* ── Tablet (769px – 1024px) ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Brand section */
  .nv-brand-features { margin: 0 20px; }
  .nv-brand-grid { grid-template-columns: 1fr 220px 1fr; gap: 28px; padding: 0 20px; }

  /* Dark products box */
  .nv-products-dark-box { margin: 0 20px; padding: 32px 24px; }
  .nv-products-dark-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Single product */
  .nv-sp-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nv-sp-top-wrap { padding: 36px 0 40px; }

  /* Archive */
  .nv-archive-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .nv-contact-bottom-inner { grid-template-columns: 1fr; }
  .nv-contact-map { height: 320px; }

  /* Section 3 */
  .nv-feat-cards-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (max 768px) ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Container */
  .nv-container { padding: 0 16px; }

  /* Brand section */
  .nv-brand-features { margin: 0 12px; border-radius: 0 0 8px 8px; padding: 36px 0; }
  .nv-brand-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .nv-brand-center-img { display: none; } /* hide center camera on mobile */
  .nv-brand-callouts { gap: 20px; }

  /* Dark products */
  .nv-products-dark-box { margin: 0 12px; padding: 28px 16px; border-radius: 8px 8px 0 0; }
  .nv-products-dark-grid { grid-template-columns: 1fr; gap: 16px; }
  .nv-products-dark-title { font-size: 1.4rem; }

  /* Dark dealer strip */
  .nv-dark-dealer-strip { flex-direction: column; gap: 16px; text-align: center; padding: 28px 20px; }

  /* Homepage section 3 */
  .nv-section3-wrap { padding: 36px 0; }
  .nv-app-promo-box { border-radius: 8px; padding: 24px 16px; }
  .nv-feat-cards-row { grid-template-columns: 1fr; gap: 16px; }
  .nv-horiz-callouts { grid-template-columns: 1fr; gap: 16px; }

  /* Testimonials */
  .nv-testi-grid { grid-template-columns: 1fr; }

  /* Blog grid on homepage */
  .nv-blog-home-grid { grid-template-columns: 1fr; }

  /* Archive / shop */
  .nv-archive-header { margin: 8px 12px; padding: 28px 20px; border-radius: 8px; }
  .nv-archive-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Single product */
  .nv-sp-top { grid-template-columns: 1fr; gap: 24px; }
  .nv-sp-top-wrap { padding: 24px 0 28px; }
  .nv-sp-btn-row { flex-direction: column; gap: 10px; }
  .nv-sp-btn-secondary { width: 100%; justify-content: center; }
  .nv-sp-cart-row { flex-wrap: wrap; gap: 10px; }
  .nv-spec-grid { grid-template-columns: 1fr; }
  .nv-sp-related-list { grid-template-columns: 1fr; }
  .nv-quick-specs { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .nv-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nv-footer { margin: 0; border-radius: 0; }

  /* Contact page */
  .nv-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .nv-contact-bottom-inner { grid-template-columns: 1fr; gap: 28px; }
  .nv-contact-map { height: 260px; }

  /* About page */
  .nv-about-founder-grid { grid-template-columns: 1fr; }
  .nv-about-header-box { margin: 0 12px; }

  /* Dealers */
  .nv-dealers-grid { grid-template-columns: 1fr; }
  .nv-dealer-card { flex-direction: column; }

  /* Legal */
  .nv-legal-content { padding: 0 4px; }

  /* Video */
  .nv-sp-video-wrap { padding-bottom: 56.25%; }
  .nv-home-video-wrap { padding-bottom: 56.25%; }

  /* Cart / checkout */
  .woocommerce-cart-form .actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td { padding: 10px 8px; font-size: 0.82rem; }
  .col2-set { display: grid; grid-template-columns: 1fr; gap: 24px; }

  /* Topbar on mobile */
  .nv-topbar-menu { display: none; } /* too small — menu is in hamburger */
}

/* ── Small mobile (max 480px) ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .nv-quick-specs { grid-template-columns: 1fr 1fr; }
  .nv-hero-buttons { flex-direction: column; align-items: flex-start; }
  .nv-hero-btn { width: 100%; justify-content: center; }
  .nv-support-hotline-text .nv-support-hotline-number { font-size: 0.78rem; }
  .nv-products-dark-grid { grid-template-columns: 1fr; }
  .nv-archive-grid { grid-template-columns: 1fr; }
  .nv-archive-header { margin: 8px 8px; padding: 24px 16px; }
  .nv-dark-products-title { font-size: 1.2rem; }
  .nv-feat-card { padding: 20px 16px; }
}
