/** Shopify CDN: Minification failed

Line 67:8 Expected identifier but found whitespace
Line 67:9 Unexpected "12px"
Line 147:0 Comments in CSS use "/* ... */" instead of "//"
Line 148:0 Comments in CSS use "/* ... */" instead of "//"
Line 149:0 Comments in CSS use "/* ... */" instead of "//"
Line 157:4 Comments in CSS use "/* ... */" instead of "//"
Line 165:4 Comments in CSS use "/* ... */" instead of "//"
Line 171:4 Comments in CSS use "/* ... */" instead of "//"
Line 198:8 Comments in CSS use "/* ... */" instead of "//"
Line 205:4 Comments in CSS use "/* ... */" instead of "//"
... and 1 more hidden warnings

**/
/* ============================================
   FE1SS Gaming Animations - Premium Effects
   ============================================ */

/* --- GLITCH TEXT EFFECT --- */
.fe1ss-glitch {
  position: relative;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(-2px, 1px); filter: hue-rotate(90deg); }
  93% { transform: translate(2px, -1px); filter: hue-rotate(180deg); }
  95% { transform: translate(-1px, 2px); filter: hue-rotate(270deg); }
  97% { transform: translate(1px, -2px); filter: hue-rotate(360deg); }
}

/* --- RGB GLOW EN PRODUCT CARDS --- */
.card-wrapper:hover .card,
.card-wrapper:hover {
  box-shadow: 0 0 10px #ff0000, 0 0 20px #ff000066, 0 0 40px #ff000033;
  transition: box-shadow 0.3s ease;
}

/* --- SHINE EFFECT EN CARDS --- */
.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.card-wrapper:hover .card::after {
  left: 130%;
}
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  box-shadow: 0 0 10px #ff0000, 0 0 20px #ff000088;
}


  width: 30px;
  height: 30px;
  border: 1px solid #ff000088;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: all 0.15s ease;
}

/* --- PARALLAX HERO --- */
.fe1ss-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* --- SEPARADORES ANIMADOS --- */
.fe1ss-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  animation: divider-pulse 2s ease-in-out infinite;
}

@keyframes divider-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; box-shadow: 0 0 10px #ff0000; }
}

/* --- BREAKPOINTS FULL HD / 4K --- */
@media (min-width: 1920px) {
  .page-width {
    max-width: 1800px;
  }
  body {
    font-size: 18px;
  }
}

@media (min-width: 2560px) {
  .page-width {
    max-width: 2400px;
  }
  body {
    font-size: clamp(16px, 1vw, 22px);
  }
}

@media (min-width: 3840px) {
  .page-width {
    max-width: 3600px;
  }
  body {
    font-size: clamp(18px, 0.8vw, 28px);
  }
}

/* --- AOS CUSTOM ANIMATIONS --- */
[data-aos="fe1ss-fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fe1ss-fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
// ============================================================
// FE1SS GAMING GALLERY — Negro + Rojo RGB
// ============================================================
(function () {
  function initGamingGallery() {
    const mainImg = document.querySelector('.product__media-item--active img, .product-single__photo--main img, [data-main-image] img');
    const thumbs = document.querySelectorAll('.product__media-item img, .product-single__thumbnail img, [data-thumbnail] img');

    if (!mainImg || thumbs.length === 0) return;

    // Estilo fondo negro en el contenedor de galería
    const galleryWrapper = mainImg.closest('.product__media-wrapper, .product-single__photos, [data-product-media-wrapper]');
    if (galleryWrapper) {
      galleryWrapper.style.background = '#0a0a0a';
      galleryWrapper.style.borderRadius = '8px';
      galleryWrapper.style.padding = '8px';
    }

    // Borde rojo en imagen principal
    mainImg.style.border = '2px solid #e60000';
    mainImg.style.borderRadius = '6px';
    mainImg.style.boxShadow = '0 0 18px rgba(230,0,0,0.55)';
    mainImg.style.transition = 'box-shadow 0.3s ease';

    // Thumbnails — RGB rojo al seleccionar
    thumbs.forEach(function (thumb) {
      const item = thumb.closest('li, .product__media-item, [data-thumbnail-item]');
      thumb.style.border = '2px solid #333';
      thumb.style.borderRadius = '4px';
      thumb.style.cursor = 'pointer';
      thumb.style.transition = 'border 0.2s ease, box-shadow 0.2s ease';

      thumb.addEventListener('mouseenter', function () {
        thumb.style.border = '2px solid #e60000';
        thumb.style.boxShadow = '0 0 10px rgba(230,0,0,0.6)';
      });
      thumb.addEventListener('mouseleave', function () {
        if (!thumb.classList.contains('fe1ss-active')) {
          thumb.style.border = '2px solid #333';
          thumb.style.boxShadow = 'none';
        }
      });
      thumb.addEventListener('click', function () {
        thumbs.forEach(function (t) {
          t.classList.remove('fe1ss-active');
          t.style.border = '2px solid #333';
          t.style.boxShadow = 'none';
        });
        thumb.classList.add('fe1ss-active');
        thumb.style.border = '2px solid #e60000';
        thumb.style.boxShadow = '0 0 14px rgba(230,0,0,0.8)';
        // Actualizar imagen principal
        const fullSrc = thumb.getAttribute('data-src') || thumb.src;
        mainImg.src = fullSrc;
        mainImg.style.boxShadow = '0 0 24px rgba(230,0,0,0.7)';
      });
    });

    // Título del producto en rojo gaming
    const productTitle = document.querySelector('.product__title h1, .product-single__title, h1.product__title');
    if (productTitle) {
      productTitle.style.color = '#e60000';
      productTitle.style.textShadow = '0 0 12px rgba(230,0,0,0.5)';
      productTitle.style.fontWeight = '800';
      productTitle.style.letterSpacing = '1px';
      productTitle.style.textTransform = 'uppercase';
    }
  }

  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', initGamingGallery);
  } else {
    initGamingGallery();
  }

  // Re-ejecutar si Shopify recarga la sección (tema 2.0)
  document.addEventListener('shopify:section:load', initGamingGallery);
})();
/* ============================================================
   FE1SS GAMING GALLERY — Negro + Rojo (Whisper Theme)
   ============================================================ */

/* Fondo negro en sección de producto */
.product__media-wrapper,
.product__media-list,
.product-media-container,
.product__media-item {
  background: #0a0a0a !important;
}

/* Borde rojo en imágenes de galería */
.product__media img,
.product__media-item img,
.product-media-container img {
  border: 2px solid #e60000 !important;
  border-radius: 6px !important;
  box-shadow: 0 0 18px rgba(230, 0, 0, 0.5) !important;
  transition: box-shadow 0.3s ease !important;
}

.product__media img:hover,
.product__media-item img:hover {
  box-shadow: 0 0 28px rgba(230, 0, 0, 0.85) !important;
}

/* Título en rojo gaming */
.product__title h1,
h1.product__title,
.product__info-wrapper h1 {
  color: #e60000 !important;
  text-shadow: 0 0 12px rgba(230, 0, 0, 0.5) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
/* Fondo negro forzado — Whisper Theme */
.product__media-wrapper,
.product__media-list,
.product__media-item,
.product__media,
.product-single__photos,
.product__info-container,
.product__info-wrapper,
section.product,
.product-template {
  background-color: #0a0a0a !important;
}

/* Título rojo gaming */
.product__title,
.product__title h1,
.product-single__title {
  color: #e60000 !important;
  text-shadow: 0 0 12px rgba(230,0,0,0.5) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
/* Override fuerte — título rojo */
.product__title *,
.product__title h1,
h1.product__title,
[class*="product"] h1,
.product__info-wrapper h1 {
  color: #e60000 !important;
  text-shadow: 0 0 12px rgba(230,0,0,0.5) !important;
  font-weight: 800 !important;
}

/* Fondo negro — override fuerte */
body.template-product .product__media-wrapper,
body.template-product .product__media-list,
body.template-product .product__media-item,
body.template-product .product__media {
  background: #0a0a0a !important;
}
/* Fondo negro galería — fix final */
body.template-product,
body.template-product .page-width,
body.template-product .product,
body.template-product .product__media-wrapper,
body.template-product .product__media-list,
body.template-product .product__media-item,
body.template-product .product__media,
body.template-product .product__info-wrapper {
  background-color: #0a0a0a !important;
  background: #0a0a0a !important;
}
/* KILL gradiente RGB del tema en título */
.product__title h1,
.product__title h1 *,
h1.product__title,
h1.product__title * {
  background: #0a0a0a !important;
  background-image: none !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: #e60000 !important;
  color: #e60000 !important;
  text-shadow: none !important;
  filter: none !important;
  animation: none !important;
}
