/** Shopify CDN: Minification failed

Line 383:14 Expected ")" to end URL token
Line 391:14 Expected ")" to end URL token

**/
/* ----------------------------------------------------------------
   FORCE SOFT FAILURE BRAND BACKGROUND + TEXT
   (overrides Dawn’s base.css reset)
----------------------------------------------------------------- */
body,
body.gradient {
  background-color: var(--sf-darker-bg) !important;
  color:              #ffffff           !important;
}


:root {
  --sf-neon-green: #00ff41;
  --sf-hot-pink: #ff0080;
  --sf-darker-bg: #000000;
}

body, html {
  background-color: var(--sf-darker-bg) !important;
  color: #ffffff !important;
  font-family: 'Courier Prime', monospace;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  color: var(--sf-neon-green);
  text-shadow: 0 0 20px var(--sf-neon-green);
}

a, button {
  font-family: 'Orbitron', sans-serif;
  color: var(--sf-neon-green);
  border: 2px solid var(--sf-neon-green);
  padding: 0.5em 1em;
  text-shadow: 0 0 15px var(--sf-neon-green);
  transition: 0.3s;
}

a:hover, button:hover {
  background: var(--sf-neon-green);
  color: black;
  box-shadow: 0 0 20px var(--sf-neon-green);
}

.neon-pink {
  color: var(--sf-hot-pink);
  text-shadow: 0 0 15px var(--sf-hot-pink);
}


/* Glitch effect */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sf-darker-bg);
}

.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: var(--sf-hot-pink);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: var(--sf-electric-blue);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 14%, 15%, 49%, 50%, 99%, 100% {
    transform: translate(0);
  }
  15%, 49% {
    transform: translate(-2px, 2px);
  }
}

@keyframes glitch-2 {
  0%, 20%, 21%, 62%, 63%, 99%, 100% {
    transform: translate(0);
  }
  21%, 62% {
    transform: translate(2px, -2px);
  }
}

/* Button overrides */
.button {
  background: var(--sf-hot-pink);
  color: var(--sf-darker-bg);
  border: 1px solid var(--sf-hot-pink);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.button:hover {
  background: transparent;
  color: var(--sf-hot-pink);
  box-shadow: 0 0 30px var(--sf-hot-pink);
  text-shadow: 0 0 10px var(--sf-hot-pink);
}

.button--secondary {
  background: transparent;
  color: var(--sf-neon-green);
  border: 1px solid var(--sf-neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.button--secondary:hover {
  background: var(--sf-neon-green);
  color: var(--sf-darker-bg);
  box-shadow: 0 0 30px var(--sf-neon-green);
}

/* Product cards */
.card {
  background: rgba(0, 255, 65, 0.05);
  border: 1px solid var(--sf-neon-green);
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
  transform: translateY(-5px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
  transition: left 0.5s;
}

.card:hover::before {
  left: 100%;
}

.card__content {
  padding: 2rem;
}

.card__heading {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.price {
  color: var(--sf-hot-pink);
  font-family: 'Courier New', monospace;
  font-size: 1.6rem;
  font-weight: bold;
  text-shadow: 0 0 5px var(--sf-hot-pink);
}

/* Urgency indicators */
.urgency-badge {
  background: var(--sf-hot-pink);
  color: var(--sf-darker-bg);
  padding: 0.5rem 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 0.5rem 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Reviews */
.reviews {
  color: var(--sf-neon-green);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

/* Header styles */
.header {
  background: var(--sf-darker-bg);
  border-bottom: 1px solid var(--sf-neon-green);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__logo {
  color: var(--sf-neon-green);
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  text-decoration: none;
  text-shadow: 0 0 10px var(--sf-neon-green);
}

.header__nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  padding: 1rem;
}

.header__nav a:hover {
  color: var(--sf-neon-green);
  text-shadow: 0 0 10px var(--sf-neon-green);
}

/* Footer styles */
.footer {
  background: var(--sf-darker-bg);
  border-top: 1px solid var(--sf-neon-green);
  color: #cccccc;
  font-family: 'Courier New', monospace;
  padding: 4rem 0;
}

.footer a {
  color: var(--sf-neon-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  text-shadow: 0 0 10px var(--sf-neon-green);
}

/* Announcement bar */
.announcement-bar {
  background: var(--sf-hot-pink);
  color: var(--sf-darker-bg);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
}

/* Hero section */
.hero {
  background: var(--sf-darker-bg);
  color: #ffffff;
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero__heading {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px var(--sf-neon-green);
  }
  to {
    text-shadow: 0 0 30px var(--sf-neon-green), 0 0 40px var(--sf-neon-green);
  }
}

.hero__subheading {
  color: var(--sf-hot-pink);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.hero__text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

/* Matrix-style background */
.matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}

/* Responsive design */
@media screen and (max-width: 749px) {
  .hero__heading {
    font-size: 2.5rem;
  }
  
  .hero__subheading {
    font-size: 1.4rem;
  }
  
  .hero__text {
    font-size: 1rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 255, 65, 0.3);
  border-radius: 50%;
  border-top-color: var(--sf-neon-green);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--sf-darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--sf-neon-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sf-hot-pink);
}

@font-face {
  font-family: 'Orbitron';
  src: url({{ 'Orbitron-Regular.woff2' | asset_url }}) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron';
  src: url({{ 'Orbitron-Bold.woff2' | asset_url }}) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === HEADER CLEAN‑UP / NAV GLOW ================ */

/* 1. Keep logo small & flush left */
.header__logo-link img,
.header__logo-image {
  max-height: 42px;        /* adjust if you want bigger */
  width: auto;
  margin: 0;               /* kill extra gap */
}

/* 2. Remove the green “box” around each nav item */
.header__nav-link {
  border: none !important;           /* nuke the outline box */
  padding: 0.25rem 0.75rem;          /* tighter tap‑target */
  display: inline-block;
}
.header__nav-link:hover {
  color: var(--sf-neon-green);
  text-shadow: 0 0 10px var(--sf-neon-green);
}

/* If you still want a thin glow bar on hover only */
.header__nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--sf-neon-green);
  transition: width 0.25s ease;
}
.header__nav-link:hover::after {
  width: 100%;
}

/* 3. Cart button – align the bubble + outline nicely */
.header__cart-link {
  position: relative;
  border: 2px solid var(--sf-neon-green);
  padding: 0.25rem 0.85rem;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--sf-neon-green);
}
.header__cart-count {
  position: absolute;
  right: -10px;            /* nudges the circle */
  top: -10px;
  background: var(--sf-hot-pink);
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 0.9rem;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 8px var(--sf-hot-pink);
}

/* === GLOBAL TOUCH‑UPS ========================== */

/* 4. Kill stray “#” (it’s usually an empty <a href="#">) */
a[href="#"] {
  display: none !important;
}

/* 5. Trim header padding / give uniform gap */
.header {
  padding: 0.75rem 0;          /* tighter vertical */
}
.header__nav {
  gap: 2rem;                   /* even spacing between links */
}

/* 6. Optional: put faint bottom glow bar under the whole header */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sf-neon-green);
  box-shadow: 0 0 10px var(--sf-neon-green);
}

/* ───────────────────────────────────────────────
   Nuke Dawn’s default .button outline in header
────────────────────────────────────────────────*/
.header .button,
.header .button:visited,
.header .button:focus {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;          /* removes extra whitespace */
  background: transparent !important;
}

/* Logo wrapper (in case Dawn injected .button) */
.header__logo,
.header__logo-link {
  border: none !important;
  box-shadow: none !important;
}

/* Nav link fix ‑ keep just glow underline on hover */
.header__nav-link {
  border: none !important;
}



/* ──────────────────────────────────────────────
   HEADER CLEAN‑UP
   Remove Dawn button borders inside the header
───────────────────────────────────────────────*/
.header .button,
.header .button:visited,
.header .button:focus {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.header__logo,
.header__logo-link,
.header__nav-link {
  border: none !important;
}

/* FINAL single source of truth — keep this at the *bottom* of soft‑failure.css */
.header__cart-link{
  position:relative!important;
  padding:0.25rem 0.9rem!important;     /* width of the outline box */
}

.header__cart-count{
  position:absolute!important;
  top:-0.75rem!important;               /* move up/down  (‑ = farther up)  */
  right:-0.6rem!important;              /* move left/right (‑ = farther right) */
  transform:none!important;
  pointer-events:none;
  background:var(--sf-hot-pink);
  box-shadow:0 0 8px var(--sf-hot-pink);
}

/* --- Soft Failure banner layout --- */
.sf-banner {
  text-align:center;
  padding:8rem 0;
  color:#fff;
}
.sf-banner__bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.sf-banner__bg-img { width:100%; height:100%; object-fit:cover; opacity:0.25; }
.sf-banner__inner { position:relative; z-index:2; }

.sf-banner__heading {
  font-size:5rem;
  margin:0 0 2rem;
  animation:glow 2s ease-in-out infinite alternate;
}
@media(max-width:750px){ .sf-banner__heading{font-size:3rem;} }

.sf-banner__subtext { max-width:50rem; margin:0 auto; line-height:1.5; }

.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:#000;            /* black */
  opacity:.35;                /* tweak as needed */
}
.hero__bg-img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full coverage */
  opacity: 0.4; /* slightly fade so text is clear, adjust as needed */
}

/* Ensuring content stays above image */
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 700px; /* Adjust max width as desired */
  margin: 0 auto; /* Center horizontally */
  padding: 2rem; /* Give some breathing room */
  background: rgba(0,0,0,0.5); /* Slight transparent dark overlay for readability */
  border-radius: 8px; /* Soft corners */
}

.hero__heading,
.hero__subheading,
.hero__text {
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.hero__bg-img {
  opacity: 0.3; /* lower opacity for clearer text visibility */
}

.hero__button-wrapper {
  margin-top: 3rem; /* spacing above button */
}
