/* ========================================
   NOOR ORIENTAL ENGINEERING - DESIGN SYSTEM
   Premium Motorcycle Parts Manufacturing
   ======================================== */

/* ----------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------- */
:root {
  /* Primary Colors - Honda Inspired */
  --primary: #E60012;
  --primary-dark: #B5000E;
  --primary-light: #FF1A2C;

  /* Neutral Palette */
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #E5E5E5;
  --neutral-300: #D4D4D4;
  --neutral-400: #A3A3A3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Semantic Colors */
  --success: #22C55E;
  --success-dark: #16A34A;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* ----------------------------------------
   BASE STYLES
   ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-50);
  margin: 0;
  padding: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

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

/* ----------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Form submit loading state */
.btn.is-loading,
button.is-loading,
input[type="submit"].is-loading {
  opacity: 0.8;
  cursor: not-allowed;
}

.btn.is-submit-success,
button.is-submit-success,
input[type="submit"].is-submit-success {
  background: #15803d !important;
  border-color: #15803d !important;
  color: #fff !important;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  cursor: not-allowed;
}

.noe-form-alert {
  display: none;
  margin: 0 0 1rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  border: 1px solid transparent;
}

.noe-form-alert.is-success {
  color: #0f5132;
  background: #d1e7dd;
  border-color: #badbcc;
}

.noe-form-alert.is-error {
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
}

/* Flexible categories grid - adapts to number of items */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

/* Color Utilities */
.text-primary {
  color: var(--primary);
}

.text-white {
  color: white;
}

.text-muted {
  color: var(--neutral-500);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-dark {
  background-color: var(--neutral-900);
}

.bg-white {
  background-color: white;
}

.bg-light {
  background-color: var(--neutral-100);
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--neutral-900);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--neutral-800);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--neutral-900);
  border: 2px solid var(--neutral-300);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--neutral-900);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
  }
}

.btn-icon {
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

/* ----------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

/* Logo uses negative margin to align with hero content */

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--neutral-900);
  margin-left: -1.5rem;
}

@media (min-width: 768px) {
  .logo {
    margin-left: 0;
  }
}

.logo img {
  height: 48px;
  width: auto;
}

.header-logo-container,
.header-logo-container .custom-logo-link {
  display: flex;
  align-items: center;
}

.header-logo-container .custom-logo,
.header-logo-container .custom-logo-link img {
  display: block;
  height: 48px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.logo-text span:last-child {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-main {
  display: none;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-main {
    display: flex;
  }
}

.nav-link {
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--neutral-100);
}

.nav-link.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  display: none;
}

@media (min-width: 768px) {
  .header-actions .btn {
    display: inline-flex;
  }
}

/* Wishlist and Cart Icon Styling */
.header-wishlist,
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-700);
  transition: color var(--transition-fast);
}

.header-wishlist:hover,
.header-cart:hover {
  color: var(--primary);
}

.header-wishlist svg,
.header-cart svg {
  width: 24px;
  height: 24px;
}

/* Count Badge - positioned inside/overlapping the icon */
.noe-wishlist-icon-count,
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background-color: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  transform: translate(25%, -25%);
}

/* Hide count if zero */
.noe-wishlist-icon-count:empty,
.cart-count:empty,
.noe-wishlist-icon-count[data-count="0"],
.cart-count[data-count="0"] {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  transition: all var(--transition-fast);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  padding: 1.5rem;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 72px 0 0;
  background: rgba(15, 23, 42, 0.35);
  z-index: 998;
  display: none;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.5rem;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--neutral-800);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--neutral-100);
  color: var(--primary);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 0.1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--neutral-800);
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-nav-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1rem;
}

.mobile-nav-buttons .btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 0.7rem;
}

.mobile-nav-contact {
  margin-top: 0.85rem;
  padding: 0.9rem 0.85rem;
  border-radius: 0.8rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.mobile-nav-contact p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #334155;
  line-height: 1.45;
  font-size: 0.95rem;
}

.mobile-nav-contact p + p {
  margin-top: 0.65rem;
}

.mobile-nav-contact strong {
  color: #111827;
  min-width: 3.8rem;
}

.mobile-nav-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav-contact a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  color: white;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 600px;
    padding-top: 100px;
    padding-bottom: 2rem;
  }
}

/* Hero container - use default padding */

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(230, 0, 18, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(230, 0, 18, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 55%;
    padding-right: 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.65rem;
  background-color: rgba(230, 0, 18, 0.15);
  border: 1px solid rgba(230, 0, 18, 0.3);
  border-radius: 50px;
  font-size: 0.45rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }
}

.hero-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero-badge svg {
    width: 16px;
    height: 16px;
  }
}

.hero h1 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 400px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    white-space: normal;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
}

.hero h1 .highlight {
  color: var(--primary);
}

/* Hide tagline on mobile, show on tablet+ */
.hero-tagline {
  display: none;
}

@media (min-width: 768px) {
  .hero h1 .highlight {
    display: block;
    white-space: nowrap;
    line-height: 1.06;
  }

  .hero-tagline {
    display: block;
    line-height: 1.08;
  }
}

.hero-subheading {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero-subheading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-subheading {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-cta {
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

/* Model Selector */
.model-selector {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-selector-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: block;
}

.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.model-tab {
  padding: 0.625rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.model-tab:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.model-tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Hero Right Image Area */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Curved clip matching the green line shape */
  clip-path: polygon(40% 0%,
      100% 0%,
      100% 100%,
      0% 100%,
      30% 50%);
}

/* Red stroke along curved edge */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(40% 0%,
      42% 0%,
      32% 50%,
      2% 100%,
      0% 100%,
      30% 50%);
  z-index: 2;
}


/* ----------------------------------------
   TRUST STRIP
   ---------------------------------------- */
.trust-strip {
  background-color: white;
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.5rem 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  color: var(--primary);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  color: var(--neutral-900);
}

.trust-content p {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin: 0;
}

/* ----------------------------------------
   CATEGORY CARDS
   ---------------------------------------- */
.category-card {
  position: relative;
  background-color: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.category-card-image {
  position: relative;
  padding-top: 75%;
  background-color: var(--neutral-100);
  overflow: hidden;
}

.category-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card-image img {
  transform: scale(1.05);
}

.category-card-content {
  padding: 1.25rem;
}

.category-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--neutral-900);
}

.category-card-content p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin: 0;
}

.category-card-arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-100);
  border-radius: 50%;
  color: var(--neutral-600);
  transition: all var(--transition-fast);
}

.category-card:hover .category-card-arrow {
  background-color: var(--primary);
  color: white;
}

/* Compact category cards when mobile columns are set to 4 */
@media (max-width: 639px) {
  .categories-grid.mobile-cols-4 {
    gap: 0.5rem;
  }

  .categories-grid.mobile-cols-4 .category-card {
    border-radius: 0.875rem;
  }

  .categories-grid.mobile-cols-4 .category-card-image {
    padding-top: 68%;
  }

  .categories-grid.mobile-cols-4 .category-card-content {
    padding: 0.55rem 0.45rem 2rem;
  }

  .categories-grid.mobile-cols-4 .category-card-content h3 {
    font-size: 0.72rem;
    margin-bottom: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 1.8em;
    word-break: break-word;
  }

  .categories-grid.mobile-cols-4 .category-card-content p {
    display: none;
  }

  .categories-grid.mobile-cols-4 .category-card-arrow {
    width: 24px;
    height: 24px;
    right: 0.4rem;
    bottom: 0.4rem;
  }

  .categories-grid.mobile-cols-4 .category-card-arrow svg {
    width: 12px;
    height: 12px;
  }
}

/* ----------------------------------------
   PRODUCT CARDS
   ---------------------------------------- */
.product-card {
  background-color: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--neutral-300);
}

.product-card-image {
  position: relative;
  padding-top: 100%;
  background-color: var(--neutral-100);
  overflow: hidden;
}

.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background-color: var(--primary);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.product-badge.oem {
  background-color: var(--neutral-900);
}

.product-card-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: var(--radius-md);
  color: var(--neutral-600);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-action-btn:hover {
  background-color: var(--primary);
  color: white;
}

.product-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-sku {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
  display: block;
}

.product-card-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--neutral-900);
  line-height: 1.4;
  min-height: 2.625em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-content h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card-content h3 a:hover {
  color: var(--primary);
}

.product-compatibility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.compatibility-tag {
  padding: 0.25rem 0.5rem;
  background-color: var(--neutral-100);
  color: var(--neutral-600);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-top: auto;
}

.price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 0.8125rem;
  color: var(--neutral-400);
  text-decoration: line-through;
}

.product-card-buttons {
  display: flex;
  gap: 0.5rem;
}

.product-card-buttons .btn {
  flex: 1;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

/* ----------------------------------------
   WHY CHOOSE US SECTION
   ---------------------------------------- */
.why-choose-section {
  background: linear-gradient(180deg, var(--neutral-50) 0%, white 100%);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-choose-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #FF4444 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-card:hover::before {
  opacity: 1;
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.why-choose-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
}

.why-choose-card p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1023px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-card {
    padding: 1.5rem;
  }

  .why-choose-icon {
    width: 56px;
    height: 56px;
  }
}

/* ----------------------------------------
   B2B DEALER CTA SECTION
   ---------------------------------------- */
.dealer-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.dealer-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(230, 0, 18, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(230, 0, 18, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.dealer-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.dealer-cta-content>div:first-child {
  flex: 1;
  min-width: 300px;
}

.dealer-cta h2 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
}

.dealer-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
}

.dealer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

.dealer-cta-buttons .btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.dealer-cta-buttons .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

@media (max-width: 767px) {
  .dealer-cta {
    padding: 3rem 0;
  }

  .dealer-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .dealer-cta-content>div:first-child {
    min-width: 100%;
  }

  .dealer-cta p {
    max-width: 100%;
  }

  .dealer-cta-buttons {
    justify-content: center;
    width: 100%;
  }
}

/* ----------------------------------------
   TESTIMONIALS
   ---------------------------------------- */
.testimonial-card {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  color: #FBBF24;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--neutral-600);
}

.testimonial-info h5 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--neutral-900);
}

.testimonial-info p {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin: 0;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
  background-color: var(--neutral-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-col {
  min-width: 0;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

.footer-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a,
.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #fff;
  transition: all var(--transition-fast);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  transition: all var(--transition-fast);
}

.footer-social a:hover,
.social-link:hover {
  background-color: var(--primary);
  color: white;
}

.footer-col h4,
.footer-column h4 {
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-links a.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li,
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-contact li svg,
.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  flex: 1 1 auto;
}

.footer-contact a {
  color: inherit;
}

@media (min-width: 720px) and (max-width: 991px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    column-gap: 38px;
  }

  .footer-col--brand {
    padding-right: 21px;
  }

  .footer-col--quick,
  .footer-col--products,
  .footer-col--contact {
    padding-left: 28px;
  }
}

@media (min-width: 992px) and (max-width: 1100px) {
  .footer-grid {
    column-gap: 38px;
  }

  .footer-col--brand {
    padding-right: 21px;
  }

  .footer-col--quick,
  .footer-col--products,
  .footer-col--contact {
    padding-left: 28px;
  }
}

@media (max-width: 719px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "quick products"
      "contact contact";
    gap: 1.5rem 1rem;
  }

  .footer-col--brand {
    grid-area: brand;
    text-align: center;
  }

  .footer-col--quick {
    grid-area: quick;
    text-align: center;
  }

  .footer-col--products {
    grid-area: products;
    text-align: center;
  }

  .footer-col--contact {
    grid-area: contact;
    text-align: center;
  }

  .footer-col--contact h4 {
    font-size: 1.625rem;
    text-align: center;
  }

  .footer-col--contact .footer-contact {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.75rem 0.5rem;
    justify-content: center;
    justify-items: center;
  }

  .footer-col--contact .footer-contact-item--address {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.35rem;
    margin: 0 auto 0.15rem;
    width: fit-content;
    max-width: min(100%, 34rem);
  }

  .footer-col--contact .footer-contact-item--address svg {
    flex: 0 0 auto;
    margin-top: 2px;
  }

  .footer-col--contact .footer-contact-item--address span {
    display: block;
    width: auto;
    max-width: 32rem;
    text-align: left !important;
    line-height: 1.45;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .footer-col--contact .footer-contact-item--phone,
  .footer-col--contact .footer-contact-item--email {
    justify-content: center;
    margin-bottom: 0;
    gap: 0.35rem;
    width: auto;
    font-size: 0.8125rem;
  }

  .footer-col--contact .footer-contact-item--phone svg,
  .footer-col--contact .footer-contact-item--email svg {
    width: 14px;
    height: 14px;
  }

  .footer-col--contact .footer-contact-item--phone span,
  .footer-col--contact .footer-contact-item--email span,
  .footer-col--contact .footer-contact-item--phone a,
  .footer-col--contact .footer-contact-item--email a {
    width: auto;
    white-space: nowrap;
    font-size: 0.8125rem;
    line-height: 1.2;
  }

  .footer-col--contact .footer-contact span {
    width: auto;
    text-align: center;
  }
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.footer-bottom-inner::-webkit-scrollbar {
  display: none;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  flex: 0 0 auto;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-legal a.active {
  color: var(--primary) !important;
}

.footer-legal .footer-legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
  white-space: nowrap;
}

.footer-legal .footer-legal-menu li {
  margin: 0;
  padding: 0;
}

.footer-legal .footer-legal-menu .current-menu-item > a,
.footer-legal .footer-legal-menu .current_page_item > a,
.footer-legal .footer-legal-menu .current-menu-ancestor > a {
  color: var(--primary) !important;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    justify-content: flex-start;
  }

  .footer-bottom-inner .footer-legal {
    margin-left: auto;
  }
}

/* Floating Quick Actions */
.noe-floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 996;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.noe-float-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.noe-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.noe-float-btn svg {
  width: 21px;
  height: 21px;
}

.noe-float-whatsapp {
  background: #25d366;
  color: #fff;
}

.noe-float-backtop {
  background: var(--primary);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.noe-float-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .noe-floating-buttons {
    right: 14px;
    bottom: 18px;
  }

  .noe-float-btn {
    width: 42px;
    height: 42px;
  }

  .noe-float-btn svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 767px) {
  .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    overflow: visible;
    text-align: center;
  }

  .footer-bottom-inner p {
    margin: 0;
    white-space: normal;
    flex: 0 1 auto;
    font-size: 11px;
    text-align: center;
  }

  .footer-legal {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.75rem;
    flex: 0 1 auto;
  }

  .footer-legal .footer-legal-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    white-space: normal;
  }

  .footer-legal .footer-legal-menu li {
    margin: 0;
  }

  .footer-legal a,
  .footer-legal .footer-legal-menu a {
    white-space: normal;
    font-size: 11px;
  }
}

/* ----------------------------------------
   SHOP PAGE SPECIFIC
   ---------------------------------------- */
.shop-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.shop-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(230, 0, 18, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(230, 0, 18, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

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

.shop-header h1 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
}

.shop-header-content {
  margin-top: 1rem;
}

.legal-page .shop-header-content {
  text-align: center;
}

.legal-page .shop-header-content .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.shop-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.shop-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.shop-meta .product-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.shop-meta .product-count svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.shop-meta .product-count .woocommerce-result-count {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.shop-header .breadcrumb,
.hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.shop-header .breadcrumb a,
.hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.shop-header .breadcrumb a:hover,
.hero .breadcrumb a:hover {
  color: white;
}

.shop-header .breadcrumb .current,
.hero .breadcrumb .current {
  color: white;
}

.shop-header .breadcrumb-sep,
.hero .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

.shop-header .breadcrumb-separator,
.hero .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Default breadcrumb colors for regular white-background pages */
main .breadcrumb {
  color: #6b7280;
}

main .breadcrumb a,
main .breadcrumb-item a {
  color: #1f2937;
}

main .breadcrumb a:hover,
main .breadcrumb-item a:hover {
  color: var(--primary);
}

main .breadcrumb .current,
main .breadcrumb-item.active {
  color: #4b5563;
}

main .breadcrumb-item + .breadcrumb-item::before {
  color: #9ca3af;
}

.shop-layout {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .shop-layout {
    grid-template-columns: 280px 1fr;
  }
}

/* Filter Sidebar */
.filter-sidebar {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  height: fit-content;
  position: sticky;
  top: 88px;
  border: 1px solid var(--neutral-200);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--neutral-200);
}

.filter-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--neutral-900);
}

.filter-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--neutral-100);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-close:hover {
  background: var(--neutral-200);
}

@media (min-width: 1024px) {
  .filter-close {
    display: none;
  }
}

.filter-section {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-500);
  margin-bottom: 0.75rem;
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
  margin: 0.25rem 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: var(--neutral-700);
}

.filter-option:hover {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
}

.filter-option.active {
  background-color: rgba(230, 0, 18, 0.1);
  color: var(--primary);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.filter-option label {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  cursor: pointer;
}

.filter-count {
  font-size: 0.75rem;
  color: var(--neutral-400);
  background: var(--neutral-100);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.btn-clear-filters {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Star Rating in Product Cards */
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.star-rating {
  display: flex;
  gap: 0.125rem;
}

.star-rating svg {
  color: #FBBF24;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

/* Stock Badge */
.product-stock-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.product-stock-badge.out-of-stock {
  background-color: var(--neutral-700);
  color: white;
}

.product-stock-badge.in-stock {
  background-color: var(--success);
  color: white;
}

/* Disabled Button */
.btn-disabled {
  background-color: var(--neutral-300) !important;
  color: var(--neutral-500) !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* No Products State */
.no-products {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.no-products-icon {
  margin-bottom: 1.5rem;
}

.no-products-icon svg {
  color: var(--neutral-300);
}

.no-products h3 {
  color: var(--neutral-700);
  margin-bottom: 0.75rem;
}

.no-products p {
  color: var(--neutral-500);
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Shop Controls */
.shop-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.results-count {
  font-size: 0.9375rem;
  color: var(--neutral-500);
}

.sort-select {
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  font-size: 0.9375rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23737373'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}

.products-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Mobile Filter Toggle */
.filter-toggle-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: white;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .filter-toggle-mobile {
    display: none;
  }
}

/* ----------------------------------------
   PRODUCT PAGE SPECIFIC
   ---------------------------------------- */
.product-detail {
  padding: 2rem 0 2.5rem;
}

.product-detail-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  position: relative;
  padding-top: 100%;
  background-color: var(--neutral-100);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.gallery-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--neutral-200);
  transition: border-color var(--transition-fast);
}

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

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 1024px) {
  .product-info {
    position: sticky;
    top: 96px;
  }
}

.product-info .product-sku {
  margin-bottom: 0.5rem;
}

.product-info h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.product-info .product-badge {
  position: static;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.product-price-box {
  background-color: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-price-box .price-current {
  font-size: 2rem;
}

.b2b-pricing {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-300);
}

.b2b-pricing p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin: 0;
}

.b2b-pricing a {
  font-weight: 600;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quantity-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: none;
  font-size: 1.25rem;
  color: var(--neutral-600);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.quantity-btn:hover {
  background-color: var(--neutral-100);
}

.quantity-input,
.quantity-selector .qty {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--neutral-300);
  border-right: 1px solid var(--neutral-300);
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
}

.quantity-selector .qty::-webkit-outer-spin-button,
.quantity-selector .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-selector .qty[type="number"] {
  -moz-appearance: textfield;
}

.product-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-buttons .btn {
  flex: 1;
  min-width: 160px;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-700);
}

@media (max-width: 767px) {
  .product-info {
    padding: 1.125rem;
  }

  .product-info h1 {
    font-size: 1.35rem;
  }

  .product-quantity {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .product-buttons {
    gap: 0.75rem;
  }

  .product-buttons .btn {
    min-width: 0;
    width: 100%;
  }
}

/* Compatibility */
.compatibility-section {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--neutral-200);
}

.compatibility-section h4 {
  margin-bottom: 1rem;
}

.compatibility-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.compatibility-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
}

.compatibility-badge svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.compatibility-badge.incompatibility-badge svg {
  color: #b00020 !important;
}

/* Specifications */
.specs-section {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--neutral-200);
}

.specs-section h4 {
  margin-bottom: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--neutral-200);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table th,
.specs-table td {
  padding: 0.875rem 0;
  text-align: left;
  font-size: 0.9375rem;
}

.specs-table th {
  font-weight: 500;
  color: var(--neutral-500);
  width: 40%;
}

.specs-table td {
  font-weight: 500;
  color: var(--neutral-900);
}

/* ----------------------------------------
   DEALER PAGE SPECIFIC
   ---------------------------------------- */
.dealer-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dealer-hero h1 {
  color: white;
}

.dealer-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.support-card-custom {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%) !important;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: white;
  margin: 0 auto 1.5rem;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  margin: 0;
}

/* Dealer Form */
.dealer-form-section {
  background-color: var(--neutral-100);
}

.dealer-form-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .dealer-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.dealer-form {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  background-color: white;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.moq-info {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.moq-info h4 {
  margin-bottom: 0.5rem;
}

.moq-info p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  margin: 0;
}

/* ----------------------------------------
   ABOUT PAGE SPECIFIC
   ---------------------------------------- */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  color: white;
  padding: 6rem 0;
  overflow: hidden;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.about-hero h1 {
  color: white;
}

.about-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .capability-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.capability-card {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
}

.capability-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.capability-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.capability-card p {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  margin: 0;
}

.quality-section {
  background-color: var(--neutral-100);
}

.quality-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quality-content h2 {
  margin-bottom: 1.5rem;
}

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

.quality-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--neutral-700);
}

.quality-list svg {
  width: 24px;
  height: 24px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.quality-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.quality-image img {
  width: 100%;
  height: auto;
}

/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.5s ease forwards;
}

.animate-slide-down {
  animation: slideDown 0.5s ease forwards;
}

/* Staggered Animations */
.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

/* ----------------------------------------
   UTILITY OVERRIDES
   ---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 639px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

/* ----------------------------------------
   UTILITY CLASSES EXTENSION
   ---------------------------------------- */
.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.w-100 {
  width: 100% !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

/* Spacing */
.mt-3 {
  margin-top: 1rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

/* Backgrounds & Borders */
.bg-white {
  background-color: #ffffff !important;
}

.bg-alt {
  background-color: var(--neutral-100) !important;
}

.border-0 {
  border: 0 !important;
}

.rounded-xl {
  border-radius: var(--radius-xl) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

/* Text */
.text-light {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Forms */
.form-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.form-group {
  flex: 1 !important;
  min-width: 280px !important;
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--neutral-800);
  font-size: 0.9375rem;
}

.form-control,
.form-select {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid var(--neutral-300) !important;
  border-radius: var(--radius-md) !important;
  background-color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  color: var(--neutral-800) !important;
  transition: border-color var(--transition-fast) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1) !important;
}

.form-select {
  cursor: pointer;
  appearance: auto;
}

@media (max-width: 639px) {
  .form-group {
    min-width: 100% !important;
  }
}

/* More Buttons */
.btn-outline-dark {
  background-color: transparent !important;
  color: var(--neutral-800) !important;
  border: 2px solid var(--neutral-800) !important;
}

.btn-outline-dark:hover {
  background-color: var(--neutral-800) !important;
  color: #ffffff !important;
}

/* More Spacing */
.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}
