/** Shopify CDN: Minification failed

Line 771:24 Unexpected "{"
Line 771:33 Expected ":"
Line 774:20 Unexpected "{"
Line 774:29 Expected ":"

**/
.lap-home {
  --lap-ink: #f8fafc;
  --lap-ink-soft: rgba(248, 250, 252, 0.78);
  --lap-ink-muted: rgba(248, 250, 252, 0.55);
  --lap-paper: #121212;
  --lap-smoke: #1a1a1a;
  --lap-line: rgba(201, 255, 0, 0.18);
  --lap-accent: #c9ff00;
  --lap-accent-strong: #0b0b0c;
  --lap-glow: rgba(201, 255, 0, 0.15);
  color: var(--lap-ink);
  background: var(--lap-paper);
  font-family: 'Chakra Petch', sans-serif;
}

.lap-section {
  padding: 72px 0;
  text-align: center;
  background-color: rgb(var(--color-background)); /* Fallback to theme bg */
  position: relative;
  z-index: 1; /* Cover the fixed hero image */
}

.lap-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.lap-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lap-accent);
  font-weight: 600;
}

.lap-heading-xl {
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-family: 'Russo One', sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.lap-heading-lg {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 700;
  font-family: 'Russo One', sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.lap-body-lg {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--lap-ink-soft);
}

/* Neon Plasma Animation */
@keyframes neon-plasma {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px rgba(201, 255, 0, 0.3);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 25px rgba(201, 255, 0, 0.5), 0 0 50px rgba(201, 255, 0, 0.2);
  }
  100% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px rgba(201, 255, 0, 0.3);
  }
}

/* Artisan Kinetic Buttons */
.lap-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 8px; /* Kinetic Precision radius */
  border: 2px solid transparent;
  color: #050505;
  background: linear-gradient(90deg, #C9FF00, #D4FF33, #B8EE00, #C9FF00); /* Neon Gradient */
  background-size: 300% 100%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 1;
  animation: neon-plasma 4s ease-in-out infinite; /* Slow blazing fire */
}

.lap-button:hover {
  background-position: 100% 50%; /* Shift gradient */
  box-shadow: 0 0 30px rgba(201, 255, 0, 0.6), 0 0 60px rgba(201, 255, 0, 0.3);
  transform: translateY(-1px) scale(1.02);
  border-color: transparent;
  color: #050505;
  animation-duration: 2s; /* Speed up on hover */
}

.lap-button:active {
  transform: scale(0.98);
}

.lap-button::before {
  display: none; /* Remove old shine effect */
}

.lap-button--ghost {
  background: transparent;
  color: #ffffff; /* Artisan text primary */
  border: 2px solid rgba(201, 255, 0, 0.2);
  animation: none;
  box-shadow: none;
}

.lap-button--ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #C9FF00;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  display: block;
}

.lap-button--ghost:hover {
  border-color: #C9FF00;
  color: #050505;
  background: transparent;
  transform: translateY(-1px);
  box-shadow: none;
}

.lap-button--ghost:hover::before {
  width: 100%; /* Fill left-to-right */
}

.lap-hero {
  position: relative;
  min-height: 95vh;
  display: grid;
  align-items: center;
  padding: 80px 0 40px;
  overflow: hidden;
  background: transparent !important;
  z-index: 0;
}

/* Foolproof Grid Overlay */
.lap-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--lap-accent) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
}

.lap-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent; /* Changed from #121212 */
  overflow: hidden;
}

.lap-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1.5px) brightness(0.65);
  z-index: 0;
  will-change: transform;
}

@media (min-width: 769px) {
  .lap-hero__image {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
  }
}

/* Old dots class - keep empty or remove to avoid conflicts, removing for clean up */
.lap-hero__dots {
  display: none;
}

.lap-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(var(--color-base-background-1-rgb), 0.88), rgba(var(--color-base-background-1-rgb), 0.4));
  z-index: 1;
}

.lap-hero__content {
  position: relative;
  z-index: 2 !important;
  color: #ffffff; /* Force white text for hero */
  display: grid;
  gap: 28px;
  max-width: 880px;
  text-align: center;
  justify-items: center;
}

.lap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.lap-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  text-align: center;
}

.lap-hero__stat {
  background: rgba(var(--color-foreground), 0.1); /* Adaptive semi-transparent */
  border: 1px solid rgba(var(--color-foreground), 0.2);
  padding: 18px 20px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  min-width: 160px;
  color: rgb(var(--color-foreground));
}

.lap-hero__stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.lap-marquee {
  background: rgba(var(--color-foreground), 0.05); /* Subtle adaptive bg */
  color: var(--lap-accent);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  display: flex;
}

.lap-marquee__track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: lap-marquee 20s linear infinite;
  width: max-content;
  flex-shrink: 0;
}

.lap-marquee:hover .lap-marquee__track {
  animation-play-state: paused;
}

.lap-marquee__logo-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lap-marquee__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1); /* Might need adjustment for light mode */
  opacity: 0.9;
  display: block;
}

@media (min-width: 750px) {
  .lap-marquee .lap-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  }
}

@keyframes lap-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lap-story {
  /* background removed */
}

.lap-story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.lap-story__card {
  background: rgba(var(--color-foreground), 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(var(--color-foreground), 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.lap-story__icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--lap-accent);
}

.lap-story__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Removed grayscale for true color of GIFs/Videos */
}

.lap-story__icon--video {
  border-radius: 8px; /* Optional: smooth corners on video */
}

.lap-story__svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

/* Animations for default placeholders */
.lap-anim-pulse {
  animation: lap-pulse 3s infinite ease-in-out;
}

.lap-anim-spin {
  animation: lap-spin 10s linear infinite;
}

.lap-anim-dash {
  animation: lap-float 3s ease-in-out infinite;
}

@keyframes lap-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes lap-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes lap-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.lap-story__card h3 {
  color: rgb(var(--color-foreground));
  font-size: 1.1rem;
  font-weight: 600;
}

.lap-story__card p {
  color: rgba(var(--color-foreground), 0.75);
}

.lap-pros {
  /* background removed */
  color: rgb(var(--color-foreground));
}

.lap-pros .lap-heading-lg,
.lap-pros .lap-body-lg {
  color: rgb(var(--color-foreground));
}

.lap-pros__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
  text-align: left;
}

.lap-pros__card {
  background: rgba(var(--color-foreground), 0.08);
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 16px;
  backdrop-filter: blur(8px);
  text-align: left;
}

.lap-pros__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(var(--color-foreground), 0.05);
}

.lap-pros__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lap-pros__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.lap-pros__quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.8);
}


.lap-featured-collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 36px;
  text-align: left;
}

.lap-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 4px; /* Sharper aesthetic */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle light border */
  background: rgba(255, 255, 255, 0.03); /* Glass feel */
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: rgb(var(--color-foreground));
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  text-align: left;
}

.lap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.lap-card__media {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.05);
}

.lap-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lap-card:hover .lap-card__media img {
  transform: scale(1.05);
}

.lap-card__price {
  font-weight: 600;
  color: var(--lap-accent); /* Keep neon */
  letter-spacing: 0.05em;
}

.lap-featured-product {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  text-align: left;
}

.lap-featured-product__media {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lap-featured-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lap-featured-product__list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.lap-featured-product__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(var(--color-foreground), 0.8);
}

@media (max-width: 768px) {
  .lap-hero {
    min-height: 85vh;
  }

  .lap-hero__content {
    padding: 0 20px;
    gap: 20px;
  }

  .lap-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 24px;
  }

  .lap-hero__stat {
    min-width: 0;
    padding: 12px 4px;
    border-radius: 12px;
    border: 1px solid rgba(201, 255, 0, 0.15);
    background: rgba(5, 5, 5, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .lap-hero__stat strong {
    font-size: 0.9rem;
    line-height: 1;
  }

  .lap-hero__stat span {
    font-size: 0.65rem;
    line-height: 1.1;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Cinematic Layout Styles */
.lap-hero--bottom-left .lap-hero__content {
  align-content: end;
  justify-items: start;
  text-align: left;
  height: 100%;
  padding-bottom: 80px;
}

.lap-hero--bottom-left .lap-hero__text-group {
  display: grid;
  gap: 24px;
  max-width: 720px;
}

.lap-hero--bottom-left .lap-hero__actions {
  justify-content: flex-start;
}

.lap-hero--bottom-left .lap-hero__stats {
  justify-content: flex-start;
  margin-top: 40px;
}

/* Ensure stats don't break layout when hidden */
.lap-hero__stats:empty {
  display: none;
}

@media (max-width: 768px) {
  .lap-hero--bottom-left .lap-hero__content {
    justify-items: center;
    text-align: center;
    align-content: center;
    padding-bottom: 40px;
  }
  
  .lap-hero--bottom-left .lap-hero__actions {
    justify-content: center;
  }
}



/* Product Page Customizations - High Specificity */
.product__info-container {
  padding: 32px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(10px);
}

/* Force override for Variant Pills */
.product-form__input input[type=radio] + label {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: 4px !important; /* Tech look */
  padding: 10px 20px !important;
  transition: all 0.2s ease;
  margin-right: 8px !important;
}

.product-form__input input[type=radio]:checked + label {
  background-color: var(--lap-accent) !important;
  color: #000 !important;
  border-color: var(--lap-accent) !important;
  box-shadow: 0 0 15px rgba(201, 255, 0, 0.3) !important;
  font-weight: 700 !important;
}

.product-form__input input[type=radio]:hover + label {
  border-color: var(--lap-accent) !important;
}

.form__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Info Link */
.lap-hardness-info-trigger {
  margin-left: 10px;
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  color: var(--lap-accent);
  background: none;
  border: none;
  padding: 0;
}

/* Modal/Tooltip Styles (Simple CSS Modal) */
.lap-hardness-modal {
  display: none; /* JS to toggle */
  margin-top: 12px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--lap-accent);
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ddd;
}

.lap-hardness-modal strong {
  color: #fff;
  display: block;
  margin-top: 8px;
}
.lap-hardness-modal strong:first-child { margin-top: 0; }


/* Force Product Page Buttons to match Homepage Kinetic Style */
.product-form__submit,
.shopify-payment-button__button--unbranded {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 8px !important;
  border: 2px solid transparent !important;
  color: #050505 !important;
  background: linear-gradient(90deg, #C9FF00, #D4FF33, #B8EE00, #C9FF00) !important;
  background-size: 300% 100% !important;
  text-decoration: none;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden;
  z-index: 1;
  animation: neon-plasma 4s ease-in-out infinite !important;
}

.product-form__submit:hover,
.shopify-payment-button__button--unbranded:hover {
  background-position: 100% 50% !important;
  box-shadow: 0 0 30px rgba(201, 255, 0, 0.6), 0 0 60px rgba(201, 255, 0, 0.3) !important;
  transform: translateY(-1px) scale(1.02) !important;
  color: #050505 !important;
  animation-duration: 2s !important;
}

.product-form__submit:active,
.shopify-payment-button__button--unbranded:active {
  transform: scale(0.98) !important;
}

/* Hide default spinners/loading if they clash */
.product-form__submit .loading-overlay__spinner {
  color: #000;
}


/* GLOBAL PRODUCT PAGE DARK MODE */
#MainProduct-template--{{ section.id }}__main,
.product,
.product-info,
.section-template--{{ section.id }}__main-padding {
  background-color: #121212 !important;
  color: #ffffff !important;
}

/* Ensure the main container is dark */
product-info {
  background-color: #121212 !important;
  display: block;
}

/* Variant Pill Backgrounds */
.product-form__input input[type=radio] + label {
  background-color: #1a1a1a !important; /* Dark grey for unselected */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.product-form__input input[type=radio]:checked + label {
  background: linear-gradient(90deg, #C9FF00, #D4FF33) !important;
  color: #000 !important;
}

/* Fix text colors for secondary info */
.product__tax,
.product__inventory,
.product__sku,
.quantity__label {
  color: rgba(255, 255, 255, 0.6) !important;
}

.product__title h1, 
.product__title h2 {
  color: #ffffff !important;
}


/* FORCE PRODUCT TEXT WHITE */
product-info, 
product-info h1, 
product-info h2, 
product-info h3, 
product-info p, 
product-info span, 
product-info label,
product-info .price-item,
product-info .product__title h1 {
  color: #ffffff !important;
}

/* FORCE PRODUCT BUTTON STYLE - NEON KINETIC */
.product-form__submit {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 16px 36px !important;
  border-radius: 8px !important; /* Force radius */
  border: 2px solid transparent !important;
  color: #050505 !important; /* Black Text */
  background: linear-gradient(90deg, #C9FF00, #D4FF33, #B8EE00, #C9FF00) !important;
  background-size: 300% 100% !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden !important;
  z-index: 1 !important;
  animation: neon-plasma 4s ease-in-out infinite !important;
  margin-bottom: 10px;
}

.product-form__submit:hover {
  background-position: 100% 50% !important;
  box-shadow: 0 0 30px rgba(201, 255, 0, 0.6), 0 0 60px rgba(201, 255, 0, 0.3) !important;
  transform: translateY(-1px) scale(1.02) !important;
  color: #050505 !important;
  border-color: transparent !important;
}

/* Ensure secondary buttons (Buy Now) also look decent */
.shopify-payment-button__button {
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}


/* Product Icon List */
.product__icon-list {
  display: flex;
  gap: 24px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
}

.product__icon-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}


/* Hero Fade Gradient */
.lap-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px; /* Generous fade */
  background: linear-gradient(to bottom, transparent, #121212);
  z-index: 3;
  pointer-events: none;
}





/* ROBUST TRANSPARENT HEADER LOGIC */

/* Base Header Wrapper - Position & Layout */
.header-wrapper {
  width: 100%;
  display: block; /* Ensure it behaves as a block for pseudo-elements */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; 
  background: transparent !important; 
  isolation: isolate; /* Critical: Creates stacking context for pseudo-element */
}

/* The Background Layer (Pseudo-element) */
.header-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #121212;
  opacity: 1; /* Default: Solid (Scrolled state) */
  transition: opacity 0.6s ease-in-out; /* Smooth fade transition */
  z-index: -1; /* Behind the content, but inside the wrapper due to isolation */
  pointer-events: none;
}

/* 
   HOMEPAGE OVERLAY STRATEGY:
   Pull content up to underlay the header.
*/
body.template-index main#MainContent > :first-child {
  margin-top: calc(var(--header-height, 64px) * -1);
}

/* Homepage Transparent State (Top) - High Specificity */
body.template-index .header-wrapper.is-transparent-top::before,
body.template-index sticky-header.header-wrapper.is-transparent-top::before {
  opacity: 0 !important; /* Fade out background */
}

/* Force elements white when transparent */
body.template-index .header-wrapper.is-transparent-top * {
  color: #ffffff !important;
  fill: #ffffff !important;
  transition: color 0.6s ease, fill 0.6s ease;
}

/* Fix logo if it's an SVG or text */
body.template-index .header-wrapper.is-transparent-top .header__heading-link {
  color: #ffffff !important;
}

/* Shadow handling */
body.template-index .header-wrapper.is-transparent-top {
  box-shadow: none !important;
  border-bottom: none !important;
}

body.template-index .header-wrapper:not(.is-transparent-top) {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5); /* Add shadow when solid */
}

/* Ensure text is visible when solid (scrolled) */
.header-wrapper:not(.is-transparent-top) .header__heading-link,
.header-wrapper:not(.is-transparent-top) .header__menu-item,
.header-wrapper:not(.is-transparent-top) .header__icon {
  color: #ffffff !important;
  transition: color 0.6s ease;
}

/* =========================================
   UNIVERSAL DARK MODE OVERRIDES (PAGES)
   ========================================= */

/* Force all standard pages (Contact, Policies, Custom Pages) to Dark Mode */
body.template-page,
body.template-404,
body.template-cart,
body.template-search,
body.template-customers-login,
body.template-customers-register,
body.template-customers-account,
body.template-customers-addresses,
body.template-customers-order,
body.template-customers-reset-password,
body.template-customers-activate-account {
  background-color: #121212 !important;
  color: #ffffff !important;
}

/* Ensure containers are transparent or dark */
.page-width,
.customer,
.contact {
  background-color: transparent !important;
  color: #ffffff !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #ffffff !important;
}

/* Paragraphs & Links */
p, li, span, label {
  color: rgba(255, 255, 255, 0.8) !important;
}

a {
  color: var(--lap-accent) !important;
}

a:hover {
  opacity: 0.8;
}

/* Inputs & Forms (Premium Aesthetic) */
input, textarea, select {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  transition: all 0.3s ease !important;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--lap-accent) !important;
  box-shadow: 0 0 0 2px rgba(201, 255, 0, 0.2) !important;
  outline: none !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Force hide the tax note in cart if Liquid doesn't catch it */
.cart-drawer__footer .tax-note,
.cart__footer .tax-note {
  display: none !important;
}

/* ========================================================
   GLOBAL BUTTON STYLES - CAREFULLY SCOPED
   ======================================================== */

/* 1. KINETIC ACTION BUTTONS (Add to Cart, Checkout, Submit) */
.product-form__submit, 
#checkout, 
#CartDrawer-Checkout, 
.cart__checkout-button,
.contact__button button,
.customer button,
/* TARGET DEFAULT PAGE BUTTONS SPECIFICALLY - cart page ONLY */
.template-cart .cart__ctas button,
button[name="checkout"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px !important;
  border: none !important;
  color: #050505 !important;
  background: linear-gradient(90deg, #C9FF00, #D4FF33, #B8EE00, #C9FF00) !important;
  background-size: 300% 100% !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6) !important;
  animation: neon-plasma 4s ease-in-out infinite;
  min-height: 50px;
}

.product-form__submit:hover, 
#checkout:hover, 
#CartDrawer-Checkout:hover, 
.cart__checkout-button:hover,
.contact__button button:hover,
.customer button:hover,
.template-cart .cart__ctas button:hover,
button[name="checkout"]:hover {
  background-position: 100% 50% !important;
  box-shadow: 0 0 30px rgba(201, 255, 0, 0.6), 0 0 60px rgba(201, 255, 0, 0.3) !important;
  transform: translateY(-1px) scale(1.02) !important;
}

/* 2. GENERAL BUTTON RESET (Fixes buttons over images being neon) */
button {
  box-shadow: none;
}

/* 3. UTILITY BUTTONS (Arrows, Close, Toggles) - FORCE TRANSPARENT */
.slider-button,
.modal__toggle-open,
.modal__toggle-close,
.product__media-toggle,
.deferred-media__poster-button {
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
  border: none !important;
  color: inherit !important;
  min-height: 0 !important;
  width: auto !important;
}

/* Restore hover for utility buttons (simple opacity) */
.slider-button:hover,
.modal__toggle-open:hover,
.product__media-toggle:hover {
  transform: scale(1.1) !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Specific fix for the cart page layout to prevent full width if not desired there */
.cart__ctas #checkout {
  width: 100%;
  max-width: 400px; /* Cap width on large screens */
}

/* Secondary Buttons */
.button--secondary {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  animation: none !important;
  box-shadow: none !important;
}

.button--secondary:hover {
  border-color: var(--lap-accent) !important;
  color: var(--lap-accent) !important;
  background: rgba(201, 255, 0, 0.05) !important;
  box-shadow: none !important;
}
