/** Shopify CDN: Minification failed

Line 417:10 Expected ":"
Line 524:2 "line-weight" is not a known CSS property

**/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

*, ::after, ::before {
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --card: #0a0a0a;
  --surf: #121212;
  --txt: #f4f4f5;
  --mut: #a1a1aa;
  --brd: #27272a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --r: 2px;
  --t: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background-color: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Hero Section Fixes --- */
.hero-container {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 6% 60px;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 1) 70%);
  border-bottom: 1px solid var(--brd);
}

.hero-content {
  max-width: 800px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--txt);
}

.hero-content p {
  font-size: 1rem;
  color: var(--mut);
  max-width: 500px;
  line-height: 1.6;
  margin: 0 0 32px;
  font-weight: 300;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--txt);
  color: var(--bg) !important;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--r);
  text-decoration: none;
  transition: var(--t);
}

.btn-primary:hover {
  background: #d4d4d8;
  transform: translateY(-2px);
}

/* --- Trust Bar --- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 28px 6%;
  background: var(--surf);
  border-bottom: 1px solid var(--brd);
}

.trust-item h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  color: var(--txt);
}

.trust-item p {
  color: var(--mut);
  font-size: 0.75rem;
  margin: 0;
}

/* --- Global Product Grid Engine --- */
.product-grid,
.grid--4-col-desktop,
.collection .grid,
#product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  padding: 60px 6% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  list-style: none !important;
}

/* Product Card Isolation */
.product-card,
.card-wrapper,
.grid__item {
  width: 100% !important;
  max-width: 100% !important;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  height: 100%;
}

.product-card:hover {
  border-color: #52525b;
  transform: translateY(-4px);
}

/* Product Canvas Matting & Image Scale Constraint */
.product-image-wrap,
.card__media {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  background: #ffffff !important; /* Neutralizes white product cutouts */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  overflow: hidden !important;
}

.product-image-wrap img,
.card__media img {
  max-width: 85% !important;
  max-height: 85% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important; /* Blends white image backgrounds into canvas */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none;
  -webkit-user-drag: none;
}

.product-card:hover .product-image-wrap img,
.product-card:hover .card__media img {
  transform: scale(1.08) !important;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--card);
}

.product-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--txt);
  line-height: 1.3;
}

.product-price {
  font-size: 0.85rem;
  color: var(--mut);
  margin-bottom: 16px;
  font-weight: 500;
}

.btn-add-cart {
  margin-top: auto;
  width: 100%;
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--brd);
  padding: 10px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--t);
}

.btn-add-cart:hover:not(:disabled) {
  background: var(--txt);
  color: var(--bg);
  border-color: var(--txt);
}

.live-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

/* Responsive Grid Fallbacks */
@media (max-width: 1024px) {
  .product-grid, .grid--4-col-desktop, .collection .grid, #product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .product-grid, .grid--4-col-desktop, .collection .grid, #product-grid {
    grid-template-columns: 1fr !important;
  }
}/* --- COMPLIANT FULL-COLOR PAYMENT LOGOS --- */
.payment-icons-wrapper,
.footer-security,
.lume-footer svg {
  filter: none !important;
}

.payment-icon-mini,
.footer-security svg,
.footer-security img {
  height: 22px !important;
  width: auto !important;
  max-width: 38px !important;
  filter: none !important; /* Disables all grayscale filters */
  mix-blend-mode: normal !important; /* Prevents dark background clipping */
  opacity: 1 !important;
  transition: transform 0.2s ease;
}

.payment-icon-mini:hover {
  transform: translateY(-2px);
}/* --- STICKY CATEGORY FILTER BAR --- */
.category-tabs,
.catalog-navigation-section .category-tabs {
  position: sticky !important;
  top: 60px !important; /* Height of sticky header */
  z-index: 99 !important;
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  padding: 14px 0 !important;
  margin-bottom: 32px !important;
  border-bottom: 1px solid var(--brd) !important;
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.tab-btn {
  background: #121212 !important;
  border: 1px solid #27272a !important;
  color: #a1a1aa !important;
  padding: 10px 20px !important;
  border-radius: var(--r) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  transition: var(--t) !important;
}

.tab-btn:hover,
.tab-btn.active {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25) !important;
}/* --- AMBIENT BRAND DEPTH & ACCENT LIGHTING --- */

/* Warm Metallic Subtle Ambient Lighting */
body::after {
  content: "";
  position: fixed;
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Card Hover Accent Glow */
.product-card {
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 255, 255, 0.06);
}/* Instantly dims out-of-stock items so featured auto products stand out */
.product-card:has(.badge-sold-out),
.product-card:has(button:disabled) {
  opacity: 0.35;
  order: 99;
}.hero-container {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 6% 60px;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%), 
              url('hero-bg.jpg') center/cover no-repeat !important;
  border-bottom: 1px solid var(--brd);
}/* --- HERO REFINEMENT (EXECUTIVE LAYOUT) --- */
.hero-container {
  min-height: 85vh !important;
  display: flex !important;
  align-items: flex-end !important; /* Positions content at the bottom */
  justify-content: flex-start !important; /* Aligns content to the left */
  padding: 60px 6% 80px !important;
  background: linear-gradient(
                180deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.4) 50%, 
                rgba(0, 0, 0, 0.85) 100%
              ), 
              url('hero-bg.jpg') center/cover no-repeat !important;
  position: relative !important;
}

.hero-content {
  max-width: 650px !important;
  text-align: left !important;
  z-index: 2 !important;
}

.hero-tag {
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  color: #a1a1aa !important;
  margin-bottom: 12px !important;
  justify-content: flex-start !important;
}

.hero-content h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
  margin: 0 0 16px !important;
}

.hero-content p {
  font-size: 0.95rem !important;
  color: #d4d4d8 !important; /* Crisp light gray for high readability */
  line-height: 1.6 !important;
  margin-0 0 28px !important;
  font-weight: 400 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

.btn-primary {
  display: inline-flex !important;
  padding: 16px 36px !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.15em !important;
  background: #ffffff !important;
  color: #000000 !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}/* --- EXECUTIVE HERO & TRUST BAR OVERHAUL --- */

/* Fix Hero Layout Alignment (Shift Text to Bottom-Left) */
.hero-container {
  min-height: 88vh !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 80px 6% 80px !important;
  background: linear-gradient(
                180deg, 
                rgba(0, 0, 0, 0.15) 0%, 
                rgba(0, 0, 0, 0.5) 60%, 
                rgba(0, 0, 0, 0.95) 100%
              ), 
              url('hero-bg.jpg') center/cover no-repeat !important;
  border-bottom: 1px solid #27272a !important;
}

.hero-content {
  max-width: 700px !important;
  text-align: left !important;
  z-index: 2 !important;
}

.hero-content h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.25rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
  margin: 0 0 16px !important;
}

.hero-content p {
  font-size: 1rem !important;
  color: #e4e4e7 !important;
  line-height: 1.6 !important;
  margin: 0 0 32px !important;
  font-weight: 300 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
  max-width: 520px !important;
}

/* Auto Care Value Bar Upgrade */
.trust-bar {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  padding: 36px 6% !important;
  background: #09090b !important;
  border-bottom: 1px solid #27272a !important;
}

.trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  text-align: left !important;
}

.trust-icon {
  width: 42px !important;
  height: 42px !important;
  background: #18181b !important;
  border: 1px solid #27272a !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.trust-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #ffffff !important;
}

.trust-item h4 {
  font-family: var(--font-display) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  margin: 0 0 2px !important;
  color: #ffffff !important;
}

.trust-item p {
  color: #a1a1aa !important;
  font-size: 0.75rem !important;
  margin: 0 !important;
  line-weight: 400 !important;
}

@media (max-width: 900px) {
  .trust-bar {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}/* --- FIXED EXECUTIVE HERO TYPOGRAPHY & OVERFLOW --- */
.hero-container {
  min-height: 85vh !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 80px 6% 60px !important;
  background: linear-gradient(
                180deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.5) 50%, 
                rgba(0, 0, 0, 0.95) 100%
              ), 
              url('hero-bg.jpg') center/cover no-repeat !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.hero-content {
  max-width: 900px !important; /* Widened container prevents forced line splits */
  width: 100% !important;
  text-align: left !important;
  z-index: 2 !important;
}

.hero-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  color: #a1a1aa !important;
  margin-bottom: 14px !important;
  text-transform: uppercase !important;
}

.hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 3.2vw, 2.85rem) !important; /* Scaled down slightly so words never break */
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.02em !important; /* Natural tracking without overflow */
  color: #ffffff !important;
  text-transform: uppercase !important;
  word-break: keep-all !important; /* STOPS HYPHENATING/BREAKING WORDS IN HALF */
  overflow-wrap: break-word !important;
  white-space: normal !important;
  margin: 0 0 16px !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
}

.hero-subtitle {
  font-size: 0.95rem !important;
  color: #d4d4d8 !important;
  line-height: 1.6 !important;
  margin: 0 0 28px !important;
  font-weight: 400 !important;
  max-width: 560px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}

.hero-cta-wrap {
  display: flex !important;
  justify-content: flex-start !important;
}

.btn-primary {
  display: inline-flex !important;
  padding: 16px 36px !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.15em !important;
  background: #ffffff !important;
  color: #000000 !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  border-radius: 2px !important;
}