/* =====================================================
   VM WHOLESALE — Premium Design System
   ===================================================== */

/* --- Design Tokens --- */
:root {
  --vm-blue: #123E7C;
  --vm-blue-dark: #0C2D5C;
  --vm-blue-deep: #071E3D;
  --vm-red: #C62828;
  --vm-red-dark: #A02020;
  --vm-bg: #F8F9FB;
  --vm-text: #222222;
  --vm-text-light: #6B7280;
  --vm-white: #FFFFFF;
  --vm-line: #E5E7EB;
  --vm-line-light: #F0F1F3;
  --vm-red-bg: #FEF2F2;
  --vm-blue-bg: #EEF2F7;

  --vm-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vm-radius: 16px;
  --vm-radius-sm: 10px;
  --vm-radius-full: 9999px;

  --vm-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --vm-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --vm-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
  --vm-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.1);

  --vm-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vm-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base --- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-family: var(--vm-font);
  color: var(--vm-text);
  background: var(--vm-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* --- Hide default WordPress page titles in content area --- */
.wp-block-post-title {
  display: none !important;
}

/* Hide any h1 page titles that might leak from WordPress */
.page .entry-title,
.single .entry-title,
.wp-block-query-title {
  display: none !important;
}

/* Remove default page title areas that FSE might inject */
.wp-block-post-title + .wp-block-post-content {
  margin-top: 0 !important;
}

/* --- Full-width overrides for WordPress FSE wrappers --- */
.wp-site-blocks {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body .wp-site-blocks > * {
  max-width: none !important;
  width: 100% !important;
}

.wp-block-post-content {
  max-width: none !important;
  width: 100% !important;
}

.wp-block-post-content > * {
  max-width: none !important;
  width: 100% !important;
}

.wp-block-group.alignfull {
  max-width: none !important;
  width: 100% !important;
}

.wp-block-group > .wp-block-group.alignfull {
  max-width: none !important;
  width: 100% !important;
}

/* Remove any constrained layout max-width from Gutenberg - use strong specificity */
.is-layout-constrained > :not(.alignleft):not(.alignright):not(.alignfull) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Also kill the constrained padding and width on the main block itself */
.is-layout-constrained {
  max-width: none !important;
  width: 100% !important;
}

/* Kill all margin collapsing that Gutenberg constrained layout adds */
.wp-block-post-content .is-layout-constrained > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Ensure template parts span full width */
body .wp-block-template-part {
  max-width: 100% !important;
  width: 100% !important;
}

/* Ensure main tag spans full width */
body main.wp-block-group,
body main.wp-block-group.alignfull {
  max-width: 100% !important;
  width: 100% !important;
}

/* Force all content blocks to be full width by default */
body .entry-content,
body .wp-block-post-content {
  max-width: 100% !important;
  width: 100% !important;
}

/* Ensure no Gutenberg inner container restricts width */
.wp-block-post-content > .wp-block-group {
  max-width: 100% !important;
  width: 100% !important;
}

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

a {
  color: var(--vm-blue);
  text-decoration: none;
  transition: color var(--vm-transition-fast);
}

a:hover {
  color: var(--vm-red);
}

/* --- Container --- */
.vm-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.vm-container-narrow {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.vm-container-wide {
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

/* =====================================================
   HEADER — Premium Redesign
   ===================================================== */
.vm-site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: var(--vm-blue) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: box-shadow var(--vm-transition);
}

.vm-site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vm-blue), var(--vm-red), #FF6B35, var(--vm-blue));
  opacity: 0.6;
  pointer-events: none;
}

.vm-site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 62, 124, 0.08), transparent);
  pointer-events: none;
}

.vm-site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

.vm-site-header .vm-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-site-header .vm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}

/* Logo with emblem */
.vm-site-header .vm-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--vm-blue) !important;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
}

.vm-site-header .vm-logo::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--vm-blue), var(--vm-blue-dark));
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(18, 62, 124, 0.2);
}

.vm-site-header .vm-logo::after {
  content: 'VM';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--vm-white);
  letter-spacing: 0;
  line-height: 1;
}

.vm-site-header .vm-logo span {
  color: var(--vm-red);
}

.vm-site-header .vm-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vm-site-header .vm-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.vm-site-header .vm-nav-links .wp-block-navigation-item {
  margin: 0;
}

.vm-site-header .vm-nav-links .wp-block-navigation-item__content {
  display: block;
  padding: 8px 18px !important;
  font-size: 0.88rem !important;
  font-weight: 500;
  color: var(--vm-text-light) !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  position: relative;
}

.vm-site-header .vm-nav-links .wp-block-navigation-item__content:hover {
  background: rgba(18, 62, 124, 0.06);
  color: var(--vm-blue) !important;
}

.vm-site-header .vm-nav-links .current-menu-item .wp-block-navigation-item__content,
.vm-site-header .vm-nav-links .current_page_item .wp-block-navigation-item__content {
  background: rgba(18, 62, 124, 0.08) !important;
  color: var(--vm-blue) !important;
  font-weight: 600;
}

/* Submenu */
.wp-block-navigation__submenu-container {
  border-radius: 12px !important;
  border: 1px solid rgba(18, 62, 124, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  padding: 6px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  padding: 10px 14px !important;
  font-size: 0.85rem !important;
  border-radius: 6px;
}

.wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
  background: rgba(18, 62, 124, 0.06) !important;
}

/* CTA button */
.vm-header-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vm-red), var(--vm-red-dark)) !important;
  color: var(--vm-white) !important;
  padding: 10px 26px !important;
  border-radius: var(--vm-radius-full) !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.2);
}

.vm-header-cta:hover {
  background: linear-gradient(135deg, var(--vm-red-dark), #8B1A1A) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.35);
}

.vm-header-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.2);
}

/* Mobile hamburger toggle */
.vm-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 8px;
  transition: background var(--vm-transition-fast);
}

.vm-mobile-toggle:hover {
  background: rgba(18, 62, 124, 0.05);
}

.vm-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vm-text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.vm-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.vm-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.vm-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO
   ===================================================== */
.vm-hero {
  background: linear-gradient(135deg, var(--vm-blue-deep) 0%, var(--vm-blue) 50%, #1A4F8B 100%);
  color: var(--vm-white);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.vm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(198, 40, 40, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.vm-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vm-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  color: var(--vm-white);
}

.vm-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: var(--vm-radius-full);
}

.vm-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0;
}

.vm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.vm-hero-card {
  background: var(--vm-white);
  color: var(--vm-text);
  border-radius: var(--vm-radius);
  box-shadow: var(--vm-shadow-lg);
  padding: clamp(28px, 3vw, 40px);
}

.vm-hero-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vm-blue);
  margin: 0 0 16px;
}

.vm-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--vm-line-light);
}

.vm-check-list li:last-child {
  border-bottom: none;
}

.vm-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vm-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* =====================================================
   FEATURE STRIP
   ===================================================== */
.vm-feature-strip {
  background: var(--vm-white);
  border-bottom: 1px solid var(--vm-line-light);
  padding: 32px 0;
}

.vm-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.vm-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--vm-radius-sm);
  transition: background var(--vm-transition-fast);
}

.vm-feature-item:hover {
  background: var(--vm-bg);
}

.vm-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vm-radius-sm);
  background: var(--vm-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vm-blue);
  font-size: 1.2rem;
  font-weight: 800;
}

.vm-feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vm-text);
  line-height: 1.3;
}

.vm-feature-text small {
  display: block;
  font-weight: 400;
  color: var(--vm-text-light);
  font-size: 0.78rem;
  margin-top: 2px;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.vm-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--vm-white);
}

.vm-soft-bg {
  background: var(--vm-bg) !important;
}

.vm-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.vm-section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vm-text);
  margin: 0 0 12px;
  line-height: 1.15;
}

.vm-section-header h2 .highlight {
  color: var(--vm-blue);
}

.vm-section-header p {
  color: var(--vm-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.vm-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vm-text);
  margin: 0 0 12px;
  line-height: 1.15;
}

.vm-section-intro {
  color: var(--vm-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.vm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--vm-font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  border: 2px solid transparent;
  border-radius: var(--vm-radius-full);
  cursor: pointer;
  transition: all var(--vm-transition-fast);
  white-space: nowrap;
}

.vm-button-primary {
  background: var(--vm-blue);
  color: var(--vm-white) !important;
  border-color: var(--vm-blue);
}

.vm-button-primary:hover {
  background: var(--vm-blue-dark);
  border-color: var(--vm-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 62, 124, 0.25);
}

.vm-button-secondary {
  background: transparent;
  color: var(--vm-white) !important;
  border-color: rgba(255, 255, 255, 0.3);
}

.vm-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.vm-button-red {
  background: var(--vm-red);
  color: var(--vm-white) !important;
  border-color: var(--vm-red);
}

.vm-button-red:hover {
  background: var(--vm-red-dark);
  border-color: var(--vm-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.25);
}

.vm-button-blue {
  background: var(--vm-blue);
  color: var(--vm-white) !important;
  border-color: var(--vm-blue);
}

.vm-button-blue:hover {
  background: var(--vm-blue-dark);
  border-color: var(--vm-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 62, 124, 0.25);
}

.vm-button-small {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.vm-button-outline-blue {
  background: transparent;
  color: var(--vm-blue) !important;
  border-color: var(--vm-blue);
}

.vm-button-outline-blue:hover {
  background: var(--vm-blue);
  color: var(--vm-white) !important;
  transform: translateY(-2px);
}

/* =====================================================
   PRODUCT GRID & CARDS
   ===================================================== */
.vm-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vm-product-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  overflow: hidden;
  box-shadow: var(--vm-shadow);
  transition: all var(--vm-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.vm-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vm-shadow-hover);
}

.vm-product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--vm-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-product-card:hover .vm-product-image img {
  transform: scale(1.08);
}

.vm-product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.03));
  pointer-events: none;
}

.vm-product-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--vm-blue);
  color: var(--vm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

/* --- Badge System --- */
.vm-badge {
  position: absolute;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: var(--vm-radius-full);
  line-height: 1;
  pointer-events: none;
}

.vm-badge-top-left {
  top: 12px;
  left: 12px;
}

.vm-badge-top-right {
  top: 12px;
  right: 12px;
}

.vm-badge-clearance {
  background: var(--vm-red);
  color: var(--vm-white);
}

.vm-badge-new {
  background: #059669;
  color: var(--vm-white);
}

.vm-badge-hot {
  background: var(--vm-red);
  color: var(--vm-white);
}

.vm-badge-deal {
  background: var(--vm-blue);
  color: var(--vm-white);
}

.vm-badge-limited {
  background: #D97706;
  color: var(--vm-white);
}

.vm-badge-sold {
  background: var(--vm-text-light);
  color: var(--vm-white);
}

.vm-product-body {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vm-product-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--vm-text);
  line-height: 1.3;
}

.vm-product-body h3 a {
  color: inherit;
  text-decoration: none !important;
}

.vm-price-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.vm-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--vm-red);
  line-height: 1;
}

.vm-regular-price {
  font-size: 0.88rem;
  color: var(--vm-text-light);
  text-decoration: line-through;
}

.vm-availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vm-blue);
  margin: 0 0 10px;
}

.vm-availability::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}

.vm-product-excerpt {
  font-size: 0.88rem;
  color: var(--vm-text-light);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.vm-product-body .vm-button-small {
  align-self: flex-start;
  margin-top: auto;
}

/* =====================================================
   CATEGORY GRID
   ===================================================== */
.vm-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vm-category-card {
  display: block;
  background: var(--vm-white);
  border: 1px solid var(--vm-line);
  border-radius: var(--vm-radius);
  padding: 28px 24px;
  text-decoration: none !important;
  color: var(--vm-text) !important;
  box-shadow: var(--vm-shadow-sm);
  transition: all var(--vm-transition);
}

.vm-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vm-shadow-lg);
  border-color: var(--vm-blue);
}

.vm-category-card span {
  display: block;
  color: var(--vm-blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.vm-category-card small {
  color: var(--vm-text-light);
  font-size: 0.88rem;
  line-height: 1.5;
  display: block;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.vm-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vm-why-content h2 {
  margin-bottom: 20px;
}

.vm-why-list {
  display: grid;
  gap: 20px;
}

.vm-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vm-why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--vm-radius-sm);
  background: var(--vm-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--vm-blue);
}

.vm-why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--vm-text);
}

.vm-why-item p {
  font-size: 0.9rem;
  color: var(--vm-text-light);
  margin: 0;
  line-height: 1.6;
}

.vm-why-image {
  border-radius: var(--vm-radius);
  overflow: hidden;
  background: var(--vm-bg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vm-text-light);
  font-size: 0.95rem;
}

/* =====================================================
   CLEARANCE BANNER
   ===================================================== */
.vm-clearance-banner {
  background: linear-gradient(135deg, var(--vm-red) 0%, #8B1A1A 100%);
  color: var(--vm-white);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vm-clearance-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.vm-clearance-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.vm-clearance-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.vm-clearance-banner .vm-actions {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.vm-clearance-banner .vm-button {
  border-color: var(--vm-white);
}

.vm-clearance-banner .vm-button-primary {
  background: var(--vm-white);
  color: var(--vm-red) !important;
  border-color: var(--vm-white);
}

.vm-clearance-banner .vm-button-primary:hover {
  background: transparent;
  color: var(--vm-white) !important;
}

/* =====================================================
   CONTACT CTA
   ===================================================== */
.vm-contact-cta {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
}

.vm-contact-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.vm-contact-cta p {
  font-size: 1.05rem;
  color: var(--vm-text-light);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.vm-contact-cta .vm-actions {
  justify-content: center;
}

/* =====================================================
   TWO-COLUMN LAYOUT
   ===================================================== */
.vm-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.vm-two-column-reverse {
  direction: rtl;
}

.vm-two-column-reverse > * {
  direction: ltr;
}

.vm-two-column h2 {
  margin-top: 0;
}

.vm-info-panel {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  box-shadow: var(--vm-shadow);
  padding: clamp(24px, 3vw, 36px);
}

.vm-info-panel h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vm-blue);
  margin: 0 0 16px;
}

/* =====================================================
   STEPS / HOW IT WORKS
   ===================================================== */
.vm-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vm-steps-content h2 {
  margin-bottom: 12px;
}

.vm-steps-content p {
  color: var(--vm-text-light);
  line-height: 1.7;
}

.vm-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vm-steps li {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  padding: 28px 24px;
  box-shadow: var(--vm-shadow);
  border-top: 4px solid var(--vm-red);
  text-align: center;
  transition: all var(--vm-transition);
}

.vm-steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--vm-shadow-hover);
}

.vm-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vm-red);
  color: var(--vm-white);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.vm-steps li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vm-text);
  margin-bottom: 4px;
}

.vm-steps li br + span {
  font-size: 0.85rem;
  color: var(--vm-text-light);
  line-height: 1.5;
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.vm-page-header {
  background: linear-gradient(135deg, var(--vm-blue-deep) 0%, var(--vm-blue) 50%, #1A4F8B 100%);
  color: var(--vm-white);
  padding: clamp(52px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.vm-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(198, 40, 40, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.vm-page-header .vm-container {
  position: relative;
  z-index: 1;
}

.vm-page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 12px 0 0;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.vm-page-header .vm-lead {
  margin-top: 16px;
}

.vm-clearance-header {
  background: linear-gradient(135deg, var(--vm-red) 0%, var(--vm-blue-deep) 100%);
}

.vm-clearance-header::before {
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.vm-clearance-section {
  background: linear-gradient(135deg, #FEF2F2 0%, #FFF5F5 100%);
}

.vm-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.vm-deal-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  padding: 24px;
  text-align: center;
  border: 1px solid #FECACA;
  transition: all var(--vm-transition-fast);
}

.vm-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.12);
  border-color: var(--vm-red);
}

.vm-deal-card .vm-deal-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.vm-deal-card h4 {
  font-weight: 700;
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.vm-deal-card p {
  color: var(--vm-text-light);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.vm-category-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.vm-category-mini-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius-sm);
  padding: 16px;
  border: 1px solid var(--vm-line-light);
  transition: all var(--vm-transition-fast);
}

.vm-category-mini-card:hover {
  border-color: var(--vm-blue);
  box-shadow: 0 4px 12px rgba(18, 62, 124, 0.08);
}

.vm-category-mini-card strong {
  color: var(--vm-blue);
  font-size: 0.95rem;
}

.vm-category-mini-card p {
  color: var(--vm-text-light);
  font-size: 0.85rem;
  margin: 4px 0 0;
}

/* Clearance page responsive */
@media (max-width: 768px) {
.vm-clearance-banner-full {
  background: linear-gradient(135deg, var(--vm-red), #8B1A1A);
  border-radius: var(--vm-radius);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  color: var(--vm-white);
  margin-bottom: 40px;
  text-align: center;
}

.vm-clearance-banner-full .vm-banner-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 8px;
}

.vm-clearance-banner-full h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--vm-white);
}

.vm-clearance-banner-full p {
  opacity: 0.9;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
  font-size: 1rem;
}

.vm-deal-grid {
    grid-template-columns: 1fr;
  }
  .vm-category-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT PAGE SPECIFIC
   ===================================================== */
.vm-mission-section {
  background: var(--vm-blue);
  color: var(--vm-white);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
}

.vm-mission-section h2 {
  color: var(--vm-white);
  margin-bottom: 16px;
}

.vm-mission-section p {
  opacity: 0.9;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.vm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.vm-contact-details {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  box-shadow: var(--vm-shadow);
  padding: clamp(24px, 3vw, 36px);
}

.vm-contact-details h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vm-blue);
  margin: 0 0 20px;
}

.vm-contact-details .vm-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--vm-line-light);
}

.vm-contact-details .vm-contact-item:last-child {
  border-bottom: none;
}

.vm-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--vm-radius-sm);
  background: var(--vm-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vm-blue);
  font-size: 1rem;
  font-weight: 700;
}

.vm-contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--vm-text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.vm-contact-item-text span,
.vm-contact-item-text a {
  font-size: 0.95rem;
  color: var(--vm-text) !important;
  font-weight: 600;
  text-decoration: none !important;
}

.vm-contact-details .vm-button {
  margin-top: 20px;
}

.vm-form-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  box-shadow: var(--vm-shadow);
  padding: clamp(24px, 3vw, 36px);
}

.vm-form-card h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vm-text);
  margin: 0 0 20px;
}

.vm-form-row {
  margin-bottom: 18px;
}

.vm-form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vm-text);
  margin-bottom: 6px;
}

.vm-form-row input,
.vm-form-row textarea,
.vm-form-row select {
  width: 100%;
  border: 1.5px solid var(--vm-line);
  border-radius: var(--vm-radius-sm);
  padding: 12px 14px;
  font-family: var(--vm-font);
  font-size: 0.95rem;
  color: var(--vm-text);
  background: var(--vm-bg);
  transition: all var(--vm-transition-fast);
  outline: none;
}

.vm-form-row input:focus,
.vm-form-row textarea:focus,
.vm-form-row select:focus {
  border-color: var(--vm-blue);
  background: var(--vm-white);
  box-shadow: 0 0 0 3px rgba(18, 62, 124, 0.1);
}

.vm-hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.vm-form-message {
  border-radius: var(--vm-radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.vm-form-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.vm-form-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Map placeholder */
.vm-map-placeholder {
  border-radius: var(--vm-radius);
  overflow: hidden;
  background: var(--vm-line-light);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vm-text-light);
  font-size: 0.9rem;
  margin-top: 24px;
  border: 1px solid var(--vm-line);
}

/* Business hours */
.vm-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.vm-hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--vm-line-light);
}

.vm-hours-item .day {
  color: var(--vm-text-light);
  font-weight: 500;
}

.vm-hours-item .time {
  font-weight: 600;
  color: var(--vm-text);
}

/* =====================================================
   FOOTER
   ===================================================== */
.vm-site-footer {
  background: linear-gradient(135deg, var(--vm-blue-deep) 0%, #0A2D52 50%, var(--vm-blue-deep) 100%) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 60px 0 0 !important;
  position: relative;
  overflow: hidden;
}

.vm-site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(198, 40, 40, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(18, 62, 124, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.vm-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-footer-brand .vm-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vm-white) !important;
  text-decoration: none !important;
}

.vm-footer-brand .vm-logo span {
  color: var(--vm-red);
}

.vm-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.7;
  margin: 12px 0 0;
  max-width: 300px;
}

.vm-footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vm-white);
  margin: 0 0 16px;
  opacity: 0.9;
}

.vm-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-footer-column ul li {
  margin-bottom: 10px;
}

.vm-footer-column ul li a {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: color var(--vm-transition-fast);
}

.vm-footer-column ul li a:hover {
  color: var(--vm-white) !important;
}

.vm-footer-column p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.6;
  margin: 0 0 8px;
}

.vm-footer-column p strong {
  opacity: 1;
  color: var(--vm-white);
}

.vm-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.vm-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all var(--vm-transition-fast);
}

.vm-footer-social a:hover {
  background: var(--vm-red);
  color: var(--vm-white) !important;
}

.vm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  opacity: 0.5;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.vm-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  box-shadow: var(--vm-shadow);
}

.vm-empty h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vm-text);
  margin: 0 0 8px;
}

.vm-empty p {
  color: var(--vm-text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.vm-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vm-fade-in.vm-visible {
  opacity: 1;
  transform: translateY(0);
}

.vm-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vm-fade-in-left.vm-visible {
  opacity: 1;
  transform: translateX(0);
}

.vm-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vm-fade-in-right.vm-visible {
  opacity: 1;
  transform: translateX(0);
}

.vm-hover-lift {
  transition: transform var(--vm-transition), box-shadow var(--vm-transition);
}

.vm-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--vm-shadow-lg);
}

/* Stagger children */
.vm-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vm-stagger.vm-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.vm-stagger.vm-visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.vm-stagger.vm-visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.vm-stagger.vm-visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.vm-stagger.vm-visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.vm-stagger.vm-visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .vm-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* =====================================================
   RESPONSIVE — SMALL DESKTOP (≤ 1100px)
   ===================================================== */
@media (max-width: 1100px) {
  .vm-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================================================
   RESPONSIVE — TABLET (≤ 920px)
   ===================================================== */
@media (max-width: 920px) {
  .vm-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vm-hero-card {
    max-width: 560px;
  }

  .vm-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .vm-two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vm-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vm-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vm-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vm-why-image {
    order: -1;
  }

  .vm-steps ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {
  .vm-site-header .vm-header-inner {
    height: 64px;
    padding: 0 20px;
  }

  .vm-site-header .vm-logo::before {
    width: 28px;
    height: 28px;
  }

  .vm-site-header .vm-logo::after {
    width: 28px;
    font-size: 0.6rem;
  }

  .vm-mobile-toggle {
    display: flex;
  }

  .vm-site-header .vm-nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 28px 40px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.06);
    z-index: 999;
  }

  .vm-site-header .vm-nav-wrapper.open {
    right: 0;
  }

  .vm-site-header .vm-nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .vm-site-header .vm-nav-links .wp-block-navigation__container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .vm-site-header .vm-nav-links .wp-block-navigation-item {
    width: 100%;
  }

  .vm-site-header .vm-nav-links .wp-block-navigation-item__content {
    padding: 14px 16px !important;
    width: 100%;
    font-size: 1rem !important;
    border-radius: 10px;
  }

  .vm-site-header .vm-nav-links .wp-block-navigation-item__content:hover {
    background: rgba(18, 62, 124, 0.06);
  }

  .vm-site-header .vm-nav-links .current-menu-item .wp-block-navigation-item__content,
  .vm-site-header .vm-nav-links .current_page_item .wp-block-navigation-item__content {
    background: rgba(18, 62, 124, 0.08) !important;
  }

  .vm-site-header .vm-header-cta {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 14px 24px !important;
  }

  .vm-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .vm-feature-item {
    padding: 12px;
  }

  .vm-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vm-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .vm-hours-grid {
    grid-template-columns: 1fr;
  }

  .vm-hero {
    padding: 48px 0;
  }

  .vm-actions {
    flex-direction: column;
  }

  .vm-actions .vm-button {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (≤ 620px)
   ===================================================== */
@media (max-width: 620px) {
  .vm-category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vm-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vm-steps ol {
    grid-template-columns: 1fr;
  }

  .vm-section {
    padding: 48px 0;
  }

  .vm-container {
    width: calc(100% - 32px);
  }
}

/* =====================================================
   HELPER UTILITIES
   ===================================================== */
.vm-text-center { text-align: center; }
.vm-mt-0 { margin-top: 0; }
.vm-mb-0 { margin-bottom: 0; }
.vm-hidden { display: none; }

/* =====================================================
   OVERLAY FOR MOBILE MENU
   ===================================================== */
.vm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vm-transition);
}

.vm-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =====================================================
   THEME COMPATIBILITY AND REDESIGN OVERRIDES
   ===================================================== */

/* 1. Reset theme list overrides for check lists */
.selleradise_prose ul.vm-check-list {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.selleradise_prose ul.vm-check-list li {
  position: relative !important;
  padding: 10px 0 10px 32px !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  border-bottom: 1px solid var(--vm-line-light) !important;
  list-style-type: none !important;
}

.selleradise_prose ul.vm-check-list li:last-child {
  border-bottom: none !important;
}

.selleradise_prose ul.vm-check-list li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 14px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: var(--vm-red) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") !important;
  background-size: 12px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* 2. Hero Spacing and Height Alignment with other pages */
.vm-hero {
  padding: clamp(52px, 8vw, 96px) 0 !important; /* Matches .vm-page-header exactly */
}

/* 3. Typography Overrides: Force clean readable sans-serif (Inter) */
.selleradise_prose .vm-hero h1,
.selleradise_prose .vm-hero h2,
.selleradise_prose .vm-hero-card h2,
.selleradise_prose .vm-section-header h2,
.selleradise_prose .vm-why-choose h2,
.selleradise_prose .vm-why-choose h3,
.selleradise_prose .vm-why-choose h4,
.selleradise_prose .vm-category-card span,
.selleradise_prose .vm-category-card h3,
.selleradise_prose .vm-steps-content h3,
.selleradise_prose .vm-clearance-banner h2,
.selleradise_prose .vm-contact-cta h2,
.selleradise_prose .vm-page-header h1,
.selleradise_prose .vm-page-header h2,
.selleradise_prose .vm-two-column h2,
.selleradise_prose .vm-two-column h3,
.selleradise_prose .vm-info-panel h3,
.selleradise_prose .vm-product-card h3,
.selleradise_prose .vm-contact-details h2,
.selleradise_prose .vm-why-choose .vm-kicker {
  font-family: var(--vm-font) !important;
  letter-spacing: -0.02em !important;
}

.selleradise_prose [class^="vm-"],
.selleradise_prose [class*=" vm-"] {
  font-family: var(--vm-font) !important;
}

.vm-button {
  font-family: var(--vm-font) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

/* 4. Center-aligned popular categories layout */
.selleradise_prose .vm-category-grid {
  justify-content: center !important;
}

.selleradise_prose .vm-category-card {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 28px 24px !important;
}

.selleradise_prose .vm-category-card span {
  font-family: var(--vm-font) !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  color: var(--vm-blue) !important;
  margin-bottom: 6px !important;
}

.selleradise_prose .vm-category-card small {
  font-family: var(--vm-font) !important;
  font-weight: 400 !important;
  font-size: 0.88rem !important;
  color: var(--vm-text-light) !important;
  line-height: 1.5 !important;
}

/* 5. Why Choose Us Premium Redesign */
.vm-why-choose {
  background: var(--vm-bg) !important;
}

.highlight-blue {
  color: var(--vm-blue) !important;
  font-weight: 800 !important;
}

.vm-intro-lead {
  color: var(--vm-text-light) !important;
  margin-bottom: 32px !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

.vm-why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}

.vm-why-item-card {
  display: flex;
  gap: 20px;
  background: var(--vm-white);
  border: 1px solid var(--vm-line-light);
  border-radius: var(--vm-radius-sm);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--vm-shadow-sm);
  transition: all var(--vm-transition);
}

.vm-why-item-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 62, 124, 0.15);
  box-shadow: var(--vm-shadow);
}

.vm-why-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--vm-radius-sm);
  background: var(--vm-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vm-blue);
}

.vm-icon-svg {
  width: 22px;
  height: 22px;
}

.vm-why-text-wrapper h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  color: var(--vm-blue) !important;
}

.vm-why-text-wrapper p {
  font-size: 0.88rem !important;
  color: var(--vm-text-light) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Right Side Premium Banner Card */
.vm-why-banner-card {
  position: relative;
  background: linear-gradient(135deg, var(--vm-blue-deep) 0%, var(--vm-blue) 100%);
  color: var(--vm-white);
  border-radius: var(--vm-radius);
  padding: 40px;
  overflow: hidden;
  box-shadow: var(--vm-shadow-lg);
}

.vm-why-banner-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vm-why-banner-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vm-badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--vm-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--vm-radius-full);
  margin-bottom: 24px;
  align-self: flex-start;
}

.vm-why-banner-content h2 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  margin: 0 0 16px !important;
  color: var(--vm-white) !important;
}

.vm-why-banner-content p {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 0 32px !important;
}

.vm-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.vm-stat-box {
  display: flex;
  flex-direction: column;
}

.vm-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vm-white);
  line-height: 1.1;
}

.vm-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.vm-why-cta-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.vm-info-icon {
  font-size: 1rem;
}

.vm-info-link {
  color: var(--vm-white) !important;
  font-weight: 700;
  text-decoration: underline !important;
}

.vm-info-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive adjustments for Why Choose Us and Category grid */
@media (max-width: 920px) {
  .vm-why-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .vm-why-banner-card {
    padding: 30px !important;
  }
}

/* Cache-busting CSS additions */
.selleradise_prose ul.vm-check-list li::marker {
  content: "" !important;
  display: none !important;
}

.vm-category-grid br,
.vm-feature-grid br,
.vm-deal-grid br,
.vm-why-grid br,
.vm-steps-content br {
  display: none !important;
}

.selleradise_prose ul.vm-check-list {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
}

.selleradise_prose ul.vm-check-list li {
  list-style-type: none !important;
  padding-left: 32px !important;
  position: relative !important;
}

.vm-why-icon-wrapper svg {
  stroke: var(--vm-blue) !important;
}
.vm-why-item-card:hover .vm-why-icon-wrapper svg {
  stroke: var(--vm-red) !important;
}

/* Spacing and Tightening Overrides */
.vm-section {
  padding: clamp(40px, 5vw, 64px) 0 !important;
}

.vm-section-header {
  margin-bottom: 32px !important;
}

.vm-intro-lead {
  margin-bottom: 24px !important;
}

.vm-why-item-card {
  margin-bottom: 12px !important;
}
