/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first

**/
/* Cyberpunk Theme - Main Stylesheet */

:root {
  /* Colors */
  --color-neon-cyan: #00FFFF;
  --color-neon-magenta: #FF00AA;
  --color-neon-lime: #A6FF00;
  --color-dark-bg: #121212;
  --color-dark-wood: #1A1411;
  --color-metal: #2A2A2A;
  --color-terminal-text: #00FF88;
  
  /* Fonts */
  --font-heading: 'Orbitron', sans-serif;
  --font-terminal: 'Share Tech Mono', monospace;
  
  /* Shadows */
  --shadow-neon-cyan: 0 0 10px rgba(0, 255, 255, 0.7);
  --shadow-neon-magenta: 0 0 10px rgba(255, 0, 170, 0.7);
  --shadow-neon-lime: 0 0 10px rgba(166, 255, 0, 0.7);
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Share+Tech+Mono&display=swap');

/* Base styles */
body {
  background-color: var(--color-dark-bg);
  color: #FFFFFF;
  font-family: var(--font-terminal);
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Rustic Textures */
.rustic-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('wood-texture.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -2;
}

.circuit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('circuit-pattern.svg');
  background-size: 120% 120%;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
  animation: pulse 4s infinite alternate;
}

.rustic-panel {
  position: relative;
  background-color: rgba(26, 20, 17, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0, 255, 255, 0.1);
  overflow: hidden;
  padding: 30px;
  margin: 20px 0;
}

.bolts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.bolt {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #444;
  border-radius: 50%;
  border: 2px solid #333;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.3);
}

.bolt.top-left {
  top: 8px;
  left: 8px;
}

.bolt.top-right {
  top: 8px;
  right: 8px;
}

.bolt.bottom-left {
  bottom: 8px;
  left: 8px;
}

.bolt.bottom-right {
  bottom: 8px;
  right: 8px;
}

.neural-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(to top, rgba(0, 255, 255, 0.1), transparent), 
                    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.05) 2px, rgba(0, 255, 255, 0.05) 4px);
  opacity: 0.3;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  z-index: -1;
}

/* Neon Elements */
.neon-text {
  color: var(--color-neon-cyan);
  text-shadow: 0 0 5px var(--color-neon-cyan);
  position: relative;
}

.neon-heading {
  color: var(--color-neon-cyan);
  text-shadow: 0 0 5px var(--color-neon-cyan),
               0 0 10px rgba(0, 255, 255, 0.5);
  position: relative;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Removed gradient background-clip to fix blurriness */
}

.neon-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: var(--color-neon-cyan);
  filter: blur(0.015em);
  display: inline-block;
}

.neon-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: var(--color-neon-cyan);
  border: 2px solid var(--color-neon-cyan);
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.3), inset 0 0 5px rgba(0, 255, 255, 0.1);
  text-shadow: 0 0 5px var(--color-neon-cyan);
}

.neon-button:hover {
  background-color: rgba(0, 255, 255, 0.1);
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.neon-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-neon-cyan));
  animation: neonBorder 3s infinite;
}

.neon-button.large {
  padding: 12px 24px;
  font-size: 1.2rem;
}

.neon-link {
  color: var(--color-neon-cyan);
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  text-shadow: 0 0 3px rgba(0, 255, 255, 0.3);
}

.neon-link:hover {
  color: #FFFFFF;
  text-shadow: 0 0 5px var(--color-neon-cyan);
}

.neon-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-neon-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.neon-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.neon-outline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--color-neon-cyan);
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5), inset 0 0 5px rgba(0, 255, 255, 0.2);
  pointer-events: none;
  z-index: 1;
}

.neon-outline.animated {
  animation: pulseGlow 3s infinite alternate;
}

.neon-icon {
  color: var(--color-neon-cyan);
  filter: drop-shadow(0 0 2px var(--color-neon-cyan));
  transition: all 0.3s;
}

.neon-icon:hover {
  color: #FFFFFF;
  filter: drop-shadow(0 0 5px var(--color-neon-cyan));
}

.neon-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 5;
}

.neon-border::before,
.neon-border::after {
  content: '';
  position: absolute;
  background: var(--color-neon-cyan);
}

.neon-border::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  box-shadow: 0 0 10px var(--color-neon-cyan);
  animation: neonScanHorizontal 3s infinite;
}

.neon-border::after {
  bottom: 0;
  left: 0;
  width: 2px;
  top: 0;
  box-shadow: 0 0 10px var(--color-neon-cyan);
  animation: neonScanVertical 4s infinite;
}

/* Terminal Style */
.terminal-text {
  font-family: var(--font-terminal);
  color: var(--color-terminal-text);
  line-height: 1.6;
}

.terminal-prefix {
  color: var(--color-neon-cyan);
  margin-right: 5px;
}

.scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.05) 2px,
    rgba(0, 0, 0, 0.05) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Cyberpunk Header Styles */
.cyberpunk-header-container {
  position: relative;
  background-color: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid var(--color-neon-cyan);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 255, 255, 0.2);
  z-index: 100;
}

.cyberpunk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.header-logo {
  flex: 0 0 auto;
}

.cyberpunk-logo {
  max-height: 50px;
  width: auto;
}

.cyberpunk-nav {
  flex: 1 1 auto;
  text-align: center;
}

.cyberpunk-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cyberpunk-menu-item {
  position: relative;
}

.cyberpunk-header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.neon-button.account-button,
.neon-button.search-button,
.neon-button.cart-button {
  width: 45px;
  height: 45px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid var(--color-neon-cyan);
  background: rgba(0, 20, 20, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.neon-button.account-button:hover,
.neon-button.search-button:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

.icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: all 0.3s ease;
}

/* Old cart-count styles removed - now using cart-count-badge with wrapper */

/* Duplicate styles removed - see cart-button-wrapper section below */

/* Ensure badge stays in place when cart button is hovered */
.cart-button-wrapper:hover .cart-count-badge {
  transform: translateY(calc(-50% + 2px)) scale(1); /* Compensate for button movement while maintaining centering */
}

.cart-button-wrapper:hover .neon-button.cart-button ~ .cart-count-badge {
  animation: none; /* Pause pulse animation on hover */
}

/* Hero Section Styles */
.cyberpunk-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero-panel {
  padding: 60px 40px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text-container {
  flex: 1 1 50%;
}

.hero-subtitle {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.hero-title {
  padding: 1.5rem;
  font-size: 3.5rem;
  margin: 0 0 20px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  display: flex;
  width: 100%;
  position: relative;
}

/* Hero title specific styling - override general neon-heading */
.hero-title.neon-heading {
  color: var(--color-neon-cyan);
  text-shadow: 
    0 0 5px var(--color-neon-cyan),
    0 0 10px rgba(0, 255, 255, 0.5),
    0 0 20px rgba(0, 255, 255, 0.3),
    0 0 40px rgba(0, 255, 255, 0.1);
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-magenta), var(--color-neon-cyan));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: var(--color-neon-cyan);
  animation: neonGlow 3s ease-in-out infinite alternate;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Remove the conflicting ::after pseudo-element for hero title */
.hero-title.neon-heading::after {
  display: none !important;
}

/* Enhanced gradient effect while glitching only (removed hover) */
.hero-title.neon-heading.glitching {
  -webkit-text-fill-color: transparent;
}


/* Enhanced hero title glitch effect */
.hero-title[data-glitch-text]:hover::before,
.hero-title[data-glitch-text].glitching::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #0ff;
  opacity: 0.8;
  z-index: -1;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  line-height: inherit;
  animation: glitchIntense 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  animation-delay: 0.1s;
}

.hero-title[data-glitch-text]:hover::after,
.hero-title[data-glitch-text].glitching::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #f0f;
  opacity: 0.8;
  z-index: -2;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  line-height: inherit;
  animation: glitchIntense 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  animation-delay: 0.05s;
}

/* Enhanced glitch animation for hero title */
@keyframes glitchIntense {
  0% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
  10% {
    transform: translate(-3px, 2px);
    clip-path: inset(0 0 95% 0);
  }
  20% {
    transform: translate(3px, -2px);
    clip-path: inset(85% 0 0 0);
  }
  30% {
    transform: translate(-2px, 3px);
    clip-path: inset(20% 0 70% 0);
  }
  40% {
    transform: translate(2px, -3px);
    clip-path: inset(60% 0 20% 0);
  }
  50% {
    transform: translate(-3px, 1px);
    clip-path: inset(40% 0 40% 0);
  }
  60% {
    transform: translate(3px, 2px);
    clip-path: inset(80% 0 10% 0);
  }
  70% {
    transform: translate(-1px, -3px);
    clip-path: inset(10% 0 80% 0);
  }
  80% {
    transform: translate(2px, 3px);
    clip-path: inset(50% 0 30% 0);
  }
  90% {
    transform: translate(-2px, -1px);
    clip-path: inset(30% 0 60% 0);
  }
  100% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes neonGlow {
  0% {
    background-position: 0% 50%;
    filter: brightness(1);
    text-shadow: 
      0 0 5px var(--color-neon-cyan),
      0 0 10px rgba(0, 255, 255, 0.5),
      0 0 20px rgba(0, 255, 255, 0.3);
  }
  100% {
    background-position: 100% 50%;
    filter: brightness(1.2);
    text-shadow: 
      0 0 8px var(--color-neon-cyan),
      0 0 15px rgba(0, 255, 255, 0.7),
      0 0 25px rgba(0, 255, 255, 0.4),
      0 0 40px rgba(0, 255, 255, 0.2);
  }
}

/* Fix hero title wrapper to ensure proper centering */
.hero-title-wrapper.fixed-height-large {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
  text-align: center;
}

.hero-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 30px;
}

.hero-image-container {
  flex: 1 1 50%;
}

.hero-image-wrapper {
  position: relative;
  border: 1px solid rgba(0, 255, 255, 0.3);
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.8) contrast(1.1);
  transform: scale(1.01);
}

/* Featured Products Section */
.product-card {
  position: relative;
  background-color: rgba(26, 20, 17, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-neon-cyan);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 255, 255, 0.2);
}

.product-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex-grow: 1;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.product-card-image-container {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}

.product-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-card-content {
  padding: 20px;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #FFFFFF;
}

.product-card-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.price-label {
  font-size: 0.8rem;
  opacity: 0.7;
}

.price-item {
  font-size: 1.3rem;
}

.compare-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.9rem;
}

.product-card-actions {
  padding: 0 20px 20px;
}

.add-to-cart {
  width: 100%;
}

.placeholder {
  opacity: 0.5;
}

/* Terminal Notification System */
.terminal-container {
  margin: 30px 0;
}

.terminal-panel {
  background-color: rgba(0, 20, 0, 0.9);
  border-color: rgba(0, 255, 136, 0.4);
  max-width: 800px;
  margin: 0 auto;
}

.terminal-notification {
  position: relative;
  z-index: 1;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-terminal);
  color: var(--color-terminal-text);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.status-indicator {
  width: 10px;
  height: 10px;
  background-color: var(--color-terminal-text);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--color-terminal-text);
  animation: blink 2s infinite;
}

.terminal-close {
  background: none;
  border: none;
  color: var(--color-terminal-text);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.terminal-close:hover {
  opacity: 1;
}

.terminal-content {
  display: flex;
  gap: 15px;
}

.terminal-icon {
  flex: 0 0 auto;
  color: var(--color-terminal-text);
}

.terminal-message {
  flex: 1 1 auto;
}

.terminal-text {
  margin-bottom: 10px;
  line-height: 1.6;
}

.terminal-timestamp {
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: right;
}

.terminal-success .status-indicator,
.terminal-success .terminal-icon {
  color: #00FF88;
  background-color: #00FF88;
  box-shadow: 0 0 5px #00FF88;
}

.terminal-warning .status-indicator,
.terminal-warning .terminal-icon {
  color: #FFCC00;
  background-color: #FFCC00;
  box-shadow: 0 0 5px #FFCC00;
}

.terminal-error .status-indicator,
.terminal-error .terminal-icon {
  color: #FF3366;
  background-color: #FF3366;
  box-shadow: 0 0 5px #FF3366;
}

/* Product Detail Page */
.cyberpunk-product {
  padding: 60px 0;
}

.product-panel {
  padding: 40px;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-media-gallery {
  position: relative;
}

.gallery-main-image {
  margin-bottom: 20px;
}

.gallery-main-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-featured-image {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-thumbnail-item {
  flex: 0 0 calc(25% - 8px);
}

.gallery-thumbnail-wrapper {
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.gallery-thumbnail-wrapper:hover {
  border-color: var(--color-neon-cyan);
}

.product-thumbnail-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background-color: rgba(0, 0, 0, 0.3);
}

.placeholder-icon {
  opacity: 0.5;
}

.product-vendor {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-title {
  font-size: 2.5rem;
  margin: 0 0 20px;
  line-height: 1.2;
}

.product-price-container {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-price-label {
  font-size: 0.9rem;
}

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

.product-compare-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 1.2rem;
}

.product-price-savings {
  font-size: 1rem;
  margin-left: 10px;
  color: var(--color-neon-magenta);
}

.product-description {
  margin-bottom: 30px;
}

.product-variants {
  margin-bottom: 30px;
}

.product-option-wrapper {
  margin-bottom: 20px;
}

.cyberpunk-select {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-neon-cyan);
  color: #FFFFFF;
  font-family: var(--font-terminal);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300FFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.cyberpunk-select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.product-quantity-wrapper {
  margin-bottom: 30px;
}

.quantity-input {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-neon-cyan);
  color: var(--color-neon-cyan);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.quantity-btn:hover {
  background-color: rgba(0, 255, 255, 0.1);
}

.quantity-selector {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--color-neon-cyan);
  border-left: 0;
  border-right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  font-family: var(--font-terminal);
}

.quantity-selector:focus {
  outline: none;
}

.product-submit {
  margin-top: 20px;
}

/* Footer Styles */
.cyberpunk-footer {
  margin-top: 80px;
  position: relative;
}

.footer-panel {
  padding: 60px 40px 40px;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-heading {
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.footer-newsletter-text {
  margin-bottom: 20px;
}

.footer-newsletter-form {
  margin-bottom: 20px;
}

.newsletter-form-field-wrapper {
  display: flex;
  gap: 10px;
}

.newsletter-form-input {
  flex: 1;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-neon-cyan);
  color: #FFFFFF;
  font-family: var(--font-terminal);
}

.newsletter-form-input:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-message--error {
  color: #FF3366;
}

.form-message--success {
  color: #00FF88;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

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

.footer-menu-item {
  margin-bottom: 10px;
}

.footer-text {
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-payment-methods {
  display: flex;
  gap: 10px;
}

.payment-icon {
  height: 20px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.payment-icon:hover {
  opacity: 1;
}

/* Animations */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes neonBorder {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@keyframes neonScanHorizontal {
  0% { transform: scaleX(0); transform-origin: left; }
  49% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes neonScanVertical {
  0% { transform: scaleY(0); transform-origin: top; }
  49% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5), inset 0 0 5px rgba(0, 255, 255, 0.2); }
  50% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.7), inset 0 0 15px rgba(0, 255, 255, 0.3); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.02); }
}

/* Responsive Styles */
@media screen and (max-width: 989px) {
  .hero-content,
  .product-container {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .cyberpunk-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .cyberpunk-menu {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  /* Collection page mobile styles */
  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .collection-title {
    font-size: 2.5rem;
  }
  
  .collection-toolbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media screen and (max-width: 749px) {
  .rustic-panel {
    padding: 20px;
  }
  
  .hero-panel,
  .product-panel,
  .footer-panel {
    padding: 30px 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .product-title {
    font-size: 1.8rem;
  }
  
  .newsletter-form-field-wrapper {
    flex-direction: column;
  }
  
  .gallery-thumbnail-item {
    flex: 0 0 calc(33.333% - 7px);
  }
  
  /* Collection page small mobile styles */
  .collection-panel {
    padding: 20px;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .collection-title {
    font-size: 2rem;
  }
  
  .collection-product-card {
    min-height: 400px;
  }
  
  .collection-product-media {
    height: 250px;
  }
}

/* Visually hidden elements */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Fixed height containers to prevent layout shifts */
.fixed-height-container {
  min-height: 50px;
  min-width: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

.fixed-width-nav-item {
  min-width: 120px;
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
}

.hero-subtitle-wrapper.fixed-height-small {
  min-height: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: visible;
}

.hero-title-wrapper.fixed-height-large {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.hero-description-wrapper.fixed-height-medium {
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  overflow: visible;
}

/* Terminal text elements */
.terminal-text-visible {
  position: relative;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  backface-visibility: hidden;
}

[data-terminal-text], [data-terminal-nav-item] {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.terminal-cursor {
  display: inline-block;
  margin-left: 2px;
  position: relative;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent any movement in animated containers */
.cyberpunk-menu-item, .header-logo, .hero-subtitle-wrapper, .hero-title-wrapper, .hero-description-wrapper {
  position: relative;
  overflow: hidden;
}

/* Header logo absolute stability */
.header-logo {
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
  flex-grow: 0;
}

.header-logo .fixed-height-container {
  justify-content: flex-start;
  text-align: left;
}

.header-logo .neon-text {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  min-width: fit-content;
}

/* Force hardware acceleration to prevent subtle shifts */
.cyberpunk-header, .hero-panel {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* Remove any overflow hidden that might clip glow effects */
.hero-subtitle-wrapper.fixed-height-small,
.hero-description-wrapper.fixed-height-medium {
  overflow: visible !important;
}

/* Prevent clipping in parent containers */
.cyberpunk-hero, .hero-panel, .hero-content, .hero-text-container {
  overflow: visible !important;
}

/* Remove all the complex cart styling */
.cart-corner-badge,
.cart-side-count,
.cart-holo-number,
.cart-bottom-notification {
  display: none !important;
}

/* Collection/Catalog Page Styling */
.cyberpunk-collection {
  padding: 60px 0;
}

.collection-panel {
  padding: 40px;
}

.collection-header {
  text-align: center;
  margin-bottom: 60px;
}

.collection-title {
  font-size: 3rem;
  margin: 0 0 20px;
  line-height: 1.2;
}

.collection-description {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.collection-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.collection-product-count {
  font-size: 0.9rem;
  opacity: 0.8;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.collection-product-card {
  position: relative;
  background-color: rgba(26, 20, 17, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  min-height: 450px;
}

.collection-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-neon-cyan);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.3);
}

.collection-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.collection-product-media {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.collection-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: saturate(0.9) contrast(1.1);
}

.collection-product-card:hover .collection-product-image {
  transform: scale(1.1);
}

.collection-product-content {
  padding: 20px;
  height: calc(100% - 280px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collection-product-title {
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.collection-product-vendor {
  font-size: 0.9rem;
  color: var(--color-neon-cyan);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.collection-product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.collection-price-current {
  font-size: 1.4rem;
  color: var(--color-neon-cyan);
  font-weight: 700;
}

.collection-price-compare {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.collection-price-savings {
  font-size: 0.9rem;
  color: var(--color-neon-magenta);
  font-weight: 600;
}

.collection-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination-btn {
  padding: 10px 15px;
  background-color: transparent;
  color: var(--color-neon-cyan);
  border: 1px solid var(--color-neon-cyan);
  font-family: var(--font-terminal);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover,
.pagination-btn.current {
  background-color: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.pagination-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-btn.disabled:hover {
  background-color: transparent;
  box-shadow: none;
}

/* Enhanced focus states for accessibility */
.neon-button:focus,
.cyberpunk-select:focus,
.newsletter-form-input:focus,
.quantity-selector:focus,
.pagination-btn:focus {
  outline: 2px solid var(--color-neon-cyan);
  outline-offset: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

/* Error and loading states */
.error-state {
  text-align: center;
  padding: 60px 20px;
  color: #FF3366;
}

.error-state .error-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.error-state .error-message {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-neon-cyan);
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-neon-cyan);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced cart button container to prevent clipping */
.cyberpunk-header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 15px; /* Extra space for cart badge */
  overflow: visible;
}

/* Cart button wrapper to contain both button and badge */
.cart-button-wrapper {
  position: relative;
  display: inline-block;
}

.neon-button.cart-button {
  position: relative;
  overflow: hidden; /* Clip the ::before animation properly */
}

/* Cart count badge - separate mini box extending from right side of cart button */
.cart-count-badge {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  background: var(--color-neon-cyan);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 3px;
  border: 2px solid var(--color-dark-bg);
  box-shadow: 2px 0 6px var(--color-neon-cyan),
              3px 0 12px rgba(0, 255, 255, 0.3),
              inset 0 0 5px rgba(255, 255, 255, 0.3);
  font-family: var(--font-terminal);
  pointer-events: none;
  z-index: -1;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 2px 0 6px var(--color-neon-cyan),
                3px 0 12px rgba(0, 255, 255, 0.3),
                inset 0 0 5px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 2px 0 10px var(--color-neon-cyan),
                3px 0 16px rgba(0, 255, 255, 0.5),
                inset 0 0 8px rgba(255, 255, 255, 0.5);
  }
}

/* Product availability indicators */
.product-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
  font-size: 0.9rem;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-neon-lime);
  box-shadow: 0 0 5px var(--color-neon-lime);
}

.availability-dot.out-of-stock {
  background-color: #FF3366;
  box-shadow: 0 0 5px #FF3366;
}

.availability-dot.low-stock {
  background-color: #FFCC00;
  box-shadow: 0 0 5px #FFCC00;
}

/* Search and filter enhancements */
.search-bar {
  position: relative;
  max-width: 400px;
  margin: 0 auto 40px;
}

.search-input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 255, 255, 0.3);
  color: #FFFFFF;
  font-family: var(--font-terminal);
  transition: all 0.3s;
}

.search-input:focus {
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.search-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-neon-cyan);
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s;
}

.search-submit:hover {
  color: #FFFFFF;
  text-shadow: 0 0 5px var(--color-neon-cyan);
}

/* Hero title glitch container */
.hero-title[data-glitch-text] {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
  display: inline-block;
}

/* ========================================
   SHOP PAY / SHOP LOGIN THEMING
   ======================================== */

/* Target Shop Pay button globally */
shop-login-button,
[data-shop-login-button] {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/* Style Shop Pay button wrapper */
shop-login-button[data-cyberpunk-styled="true"] {
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

/* Target Shop Pay modal/overlay */
shop-login-button::part(overlay),
shop-login-button::part(dialog),
shop-login-button::part(backdrop) {
  background: rgba(26, 20, 18, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Try to style Shop Pay modal content */
shop-login-button::part(container) {
  background: var(--color-dark-wood) !important;
  border: 2px solid var(--color-neon-cyan) !important;
  border-radius: 0 !important;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3) !important;
}

/* Shop Pay iframe theming (limited due to cross-origin) */
iframe[src*="shop"],
iframe[src*="shopify"],
iframe[name*="shop"] {
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* Shop Pay modal backdrop */
body:has(shop-login-button[aria-modal="true"]) {
  overflow: hidden;
}

/* Additional Shop button variations */
.shopify-login-button,
button[name="shop"],
a[href*="/account/login"][href*="shop"] {
  background: transparent !important;
  border: 2px solid var(--color-neon-cyan) !important;
  color: var(--color-neon-cyan) !important;
  font-family: var(--font-heading) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  padding: 12px 30px !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
}

.shopify-login-button:hover,
button[name="shop"]:hover {
  background: rgba(0, 255, 255, 0.1) !important;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* ========================================
   PRODUCT CARD CIRCUIT BOARD STYLING
   ======================================== */

/* Apply circuit board styling to product cards */
.product-circuit-card.circuit-board-panel {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 30, 40, 0.95), rgba(15, 20, 25, 0.95));
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100%;
}

.product-circuit-card.circuit-board-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.03) 2px, rgba(0, 255, 255, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 255, 0.03) 2px, rgba(0, 255, 255, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Remove conflicting gradient backgrounds when circuit style is active */
.circuit-styled-card.gradient,
.circuit-styled-card .card__inner.gradient {
  background: transparent !important;
}

/* Ensure card content sits above circuit effects */
.product-circuit-card .card {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Add padding to card content */
.product-circuit-card .card__information {
  padding: 20px !important;
}

.product-circuit-card .card__content {
  padding: 20px !important;
}

.product-circuit-card .card::after,
.product-circuit-card .card__inner::after {
  display: none;
}

/* Circuit board hover effect */
.product-circuit-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-neon-cyan);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

/* Circuit traces - reuse existing styles */
.product-circuit-card .circuit-traces {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.product-circuit-card .circuit-traces::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-neon-cyan), transparent);
  opacity: 0.4;
  box-shadow: 0 0 5px var(--color-neon-cyan);
}

.product-circuit-card .circuit-traces::after {
  content: '';
  position: absolute;
  top: 70%;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-neon-cyan), var(--color-neon-magenta), transparent);
  opacity: 0.4;
  box-shadow: 0 0 5px var(--color-neon-cyan);
}

/* Circuit nodes - reuse existing styles */
.product-circuit-card .circuit-nodes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.product-circuit-card .circuit-nodes::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  width: 6px;
  height: 6px;
  background: var(--color-neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-neon-cyan), 0 0 20px var(--color-neon-cyan);
  animation: pulse 2s ease-in-out infinite;
}

.product-circuit-card .circuit-nodes::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 6px;
  height: 6px;
  background: var(--color-neon-magenta);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-neon-magenta), 0 0 20px var(--color-neon-magenta);
  animation: pulse 2s ease-in-out infinite 0.5s;
}

/* Circuit paths - reuse existing styles */
.product-circuit-card .circuit-paths {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.product-circuit-card .circuit-paths::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 1px;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.3), transparent);
}

.product-circuit-card .circuit-paths::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 100, 0.3), transparent);
}

/* Product card action buttons */
.product-circuit-card .card-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Direct children of card-actions (link and form) should be equal width */
.product-circuit-card .card-actions > a.view-product-btn,
.product-circuit-card .card-actions > form,
.product-circuit-card .card-actions > button {
  flex: 1 1 0;
  min-width: 120px;
  display: flex;
}

/* Form should have no margin and stretch to fill */
.product-circuit-card .card-actions > form {
  margin: 0;
}

/* Base button styling */
.product-circuit-card .card-actions .neon-button {
  padding: 10px 20px;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

/* Link button (View Product) */
.product-circuit-card .card-actions > a.view-product-btn {
  width: 100%;
}

/* Button inside form (Add to Cart) - should fill the form */
.product-circuit-card .card-actions > form > button.add-to-cart-btn {
  width: 100%;
  flex: 1;
}

/* Direct button child (Sold Out) */
.product-circuit-card .card-actions > button.add-to-cart-btn {
  width: 100%;
}

.product-circuit-card .card-actions .view-product-btn {
  background: transparent;
  border: 1px solid var(--color-neon-cyan);
  color: var(--color-neon-cyan);
}

.product-circuit-card .card-actions .view-product-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.product-circuit-card .card-actions .add-to-cart-btn {
  background: var(--color-neon-cyan);
  border: 1px solid var(--color-neon-cyan);
  color: var(--color-dark-wood);
  font-weight: bold;
}

.product-circuit-card .card-actions .add-to-cart-btn:hover {
  background: var(--color-neon-magenta);
  border-color: var(--color-neon-magenta);
  box-shadow: 0 0 15px rgba(255, 0, 100, 0.5);
}

/* Fix dropdown icon collision with text */
.product-circuit-card .card__information-volume-pricing-note--button {
  padding-right: 2rem !important;
}

.product-circuit-card .card__information-volume-pricing-note {
  padding-right: 2rem;
}

/* Responsive adjustments */
@media screen and (max-width: 749px) {
  .product-circuit-card:hover {
    transform: translateY(-4px);
  }

  .product-circuit-card .card-actions {
    flex-direction: column;
  }

  .product-circuit-card .card-actions .neon-button {
    width: 100%;
  }
}
