/** Shopify CDN: Minification failed

Line 642:0 Unexpected "<"

**/
/* =============================================
   CSS ULTRA ÉPICO - COLECCIONES CINEMATOGRÁFICAS
   ============================================= */

.template-collection .card__content > .card-information {
  display: none !important;
}

/* === BANNER HERO ULTRA ÉPICO === */
.collection_title.title-wrapper,
div.collection_title.title-wrapper,
.title-wrapper.title-wrapper--no-top-margin,
body.template-collection .collection_title.title-wrapper,
body.template-collection div.collection_title.title-wrapper {
  text-align: center !important;
  width: 100% !important;
  padding: 6rem 3rem !important;
  background: linear-gradient(135deg, #3B5998 0%, #5B7FC8 50%, #8B9DC3 100%) !important;
  border-radius: 30px !important;
  margin-bottom: 4rem !important;
  position: relative !important;
  min-height: 350px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 20px 60px rgba(59, 89, 152, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
  overflow: hidden !important;
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
}

/* Partículas flotantes */
.collection_title.title-wrapper::before {
  content: "✨💫⭐🌟✨💫⭐🌟" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  font-size: 3rem !important;
  opacity: 0.2 !important;
  animation: float-particles 20s linear infinite !important;
  pointer-events: none !important;
  z-index: 1 !important;
  letter-spacing: 4rem !important;
  line-height: 8rem !important;
}

@keyframes float-particles {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Efecto de resplandor pulsante */
.collection_title.title-wrapper::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 300px !important;
  height: 300px !important;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%) !important;
  transform: translate(-50%, -50%) !important;
  animation: pulse-glow 3s ease-in-out infinite !important;
  z-index: 0 !important;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

/* Título principal MEGA ÉPICO */
.collection_title h2,
.title-wrapper h2,
h2.title,
body.template-collection .collection_title h2,
body.template-collection .title-wrapper h2 {
  text-align: center !important;
  font-size: 5rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 200% auto !important;
  text-transform: uppercase !important;
  letter-spacing: 5px !important;
  text-shadow: none !important;
  margin: 0 auto 2rem auto !important;
  padding: 2rem 4rem !important;
  display: inline-block !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 80px !important;
  border: 5px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(20px) !important;
  position: relative !important;
  z-index: 2 !important;
  animation: title-shimmer 4s linear infinite, float-title 4s ease-in-out infinite !important;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(255, 215, 0, 0.4) inset !important;
}

@keyframes title-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

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

/* Subtítulo con animación de escritura */
.collection_title.title-wrapper .subtitle-epic {
  display: block !important;
  font-size: 1.8rem !important;
  color: white !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5) !important;
  margin-top: 1.5rem !important;
  position: relative !important;
  z-index: 2 !important;
  letter-spacing: 2px !important;
  animation: fade-in 1s ease-in !important;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Agregar subtítulo con JavaScript */
.collection_title.title-wrapper {
  position: relative !important;
}

.collection_title svg,
.title-wrapper svg {
  display: none !important;
}

/* === CONTENEDOR === */
.template-collection .collection,
.template-collection .collection.page-width {
  max-width: 100% !important;
  padding: 0 2rem !important;
}

.template-collection .page-width {
  max-width: 1600px !important;
  margin: 0 auto !important;
}

/* === GRID ÉPICO === */
.template-collection .product-grid,
.template-collection ul.product-grid,
.template-collection .grid.product-grid,
.template-collection ul#product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.template-collection .grid__item,
.template-collection li.grid__item {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  animation: fade-in-up 0.6s ease-out backwards !important;
}

.template-collection .grid__item:nth-child(1) { animation-delay: 0.1s !important; }
.template-collection .grid__item:nth-child(2) { animation-delay: 0.2s !important; }
.template-collection .grid__item:nth-child(3) { animation-delay: 0.3s !important; }
.template-collection .grid__item:nth-child(4) { animation-delay: 0.4s !important; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === TARJETAS ULTRA ÉPICAS === */
.template-collection .card-wrapper {
  height: 100% !important;
  width: 100% !important;
  perspective: 1000px !important;
}

.template-collection .card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  width: 100% !important;
  background: white !important;
  border: 2px solid rgba(59, 89, 152, 0.1) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
  position: relative !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
  transform-style: preserve-3d !important;
}

.template-collection .card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(59, 89, 152, 0.05) 0%, transparent 50%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.template-collection .card:hover {
  border-color: #3B5998 !important;
  box-shadow: 
    0 20px 60px rgba(59, 89, 152, 0.25),
    0 0 80px rgba(255, 215, 0, 0.3),
    0 0 0 1px rgba(59, 89, 152, 0.2) inset !important;
  transform: translateY(-15px) rotateX(5deg) scale(1.03) !important;
}

.template-collection .card:hover::before {
  opacity: 1 !important;
}

.template-collection .card__inner {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Imagen con efecto zoom */
.template-collection .card__media {
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  padding: 1.5rem !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}

.template-collection .card__media::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(circle, transparent 40%, rgba(59, 89, 152, 0.1) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.template-collection .card:hover .card__media::after {
  opacity: 1 !important;
}

.template-collection .card__media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.5s ease !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1)) !important;
}

.template-collection .card:hover .card__media img {
  transform: scale(1.15) !important;
}

/* Badge épico */
.template-collection .card__badge {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  padding: 0.5rem 1rem !important;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f) !important;
  color: white !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  border-radius: 20px !important;
  z-index: 10 !important;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  animation: badge-pulse 2s ease-in-out infinite !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Contenido de la tarjeta */
.template-collection .card__content {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  flex: 1 !important;
  border-top: 2px solid rgba(59, 89, 152, 0.1) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
  background: white !important;
}

.template-collection .card__information {
  flex: 1 !important;
  width: 100% !important;
}

.template-collection .card__heading {
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  color: #2c3e50 !important;
  font-weight: 700 !important;
  margin: 0 0 1rem 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  width: 100% !important;
  min-height: 3.1rem !important;
  text-align: center !important;
  transition: color 0.3s ease !important;
}

.template-collection .card__heading a {
  color: #2c3e50 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.template-collection .card:hover .card__heading a {
  color: #3B5998 !important;
  text-shadow: 0 2px 8px rgba(59, 89, 152, 0.3) !important;
}

/* Precio épico */
.template-collection .price {
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #3B5998, #5B7FC8) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin: 0.5rem 0 !important;
  line-height: 1.2 !important;
  width: 100% !important;
  text-align: center !important;
  filter: drop-shadow(0 2px 4px rgba(59, 89, 152, 0.2)) !important;
}

.template-collection .price--on-sale .price-item--regular {
  color: #95a5a6 !important;
  text-decoration: line-through !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
  -webkit-text-fill-color: #95a5a6 !important;
}

.template-collection .price--on-sale .price-item--sale {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2.2rem !important;
}

/* Botón ultra épico */
.template-collection .card__content button,
.template-collection .quick-add-button,
.template-collection .card button {
  width: 100% !important;
  padding: 1rem 1.5rem !important;
  background: linear-gradient(135deg, #3B5998 0%, #5B7FC8 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-top: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 6px 20px rgba(59, 89, 152, 0.4) !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  position: relative !important;
  overflow: hidden !important;
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
}

.template-collection .card__content button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transition: left 0.6s ease !important;
}

.template-collection .card__content button:hover::before {
  left: 100% !important;
}

.template-collection .card__content button:hover,
.template-collection .quick-add-button:hover {
  background: linear-gradient(135deg, #5B7FC8 0%, #3B5998 100%) !important;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(59, 89, 152, 0.6) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
}

/* === BOTÓN VER TODO ÉPICO === */
.center.collection__view-all,
.collection__view-all {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  margin: 5rem 0 !important;
}

a.button[href*="/collections"],
a.link.underlined-link[href*="/collections"] {
  display: inline-block !important;
  padding: 1.5rem 4rem !important;
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%) !important;
  color: #2c3e50 !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  border-radius: 60px !important;
  border: 5px solid white !important;
  box-shadow: 
    0 10px 40px rgba(255, 215, 0, 0.5),
    0 0 60px rgba(255, 215, 0, 0.3) inset !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  transition: all 0.5s ease !important;
  text-align: center !important;
  margin: 0 auto !important;
  position: relative !important;
  overflow: hidden !important;
  animation: button-glow 2s ease-in-out infinite !important;
}

@keyframes button-glow {
  0%, 100% { box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3) inset; }
  50% { box-shadow: 0 15px 60px rgba(255, 215, 0, 0.7), 0 0 80px rgba(255, 215, 0, 0.5) inset; }
}

a.button[href*="/collections"]::before,
a.link.underlined-link[href*="/collections"]::before {
  content: "🌟" !important;
  position: absolute !important;
  left: 2rem !important;
  font-size: 1.5rem !important;
  animation: star-spin 2s linear infinite !important;
}

a.button[href*="/collections"]::after,
a.link.underlined-link[href*="/collections"]::after {
  content: "🌟" !important;
  position: absolute !important;
  right: 2rem !important;
  font-size: 1.5rem !important;
  animation: star-spin 2s linear infinite reverse !important;
}

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

a.link.underlined-link[href*="/collections"]:hover,
a.button[href*="/collections"]:hover {
  background: linear-gradient(135deg, #ffc107 0%, #ffd700 100%) !important;
  transform: translateY(-8px) scale(1.08) !important;
  box-shadow: 
    0 20px 60px rgba(255, 215, 0, 0.8),
    0 0 100px rgba(255, 215, 0, 0.6) inset !important;
  border-color: white !important;
  color: #2c3e50 !important;
}

/* === RESPONSIVE === */
@media screen and (min-width: 1200px) {
  .template-collection .product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.5rem !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 1199px) {
  .template-collection .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
  }
  .collection_title h2 {
    font-size: 3.5rem !important;
    padding: 1.5rem 3rem !important;
  }
  .collection_title.title-wrapper {
    padding: 4rem 2rem !important;
    min-height: 280px !important;
  }
}

@media screen and (max-width: 749px) {
  .template-collection .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .collection_title h2 {
    font-size: 2.5rem !important;
    padding: 1rem 2rem !important;
    letter-spacing: 2px !important;
  }
  .collection_title.title-wrapper {
    padding: 3rem 1rem !important;
    min-height: 220px !important;
  }
  .collection_title.title-wrapper .subtitle-epic {
    font-size: 1.2rem !important;
  }
  .template-collection .card {
    border-radius: 15px !important;
  }
  .template-collection .card__content {
    padding: 1rem !important;
  }
  .template-collection .price {
    font-size: 1.8rem !important;
  }
  a.button[href*="/collections"],
  a.link.underlined-link[href*="/collections"] {
    padding: 1.2rem 2.5rem !important;
    font-size: 1rem !important;
    letter-spacing: 2px !important;
  }
}

/* === PÁGINAS INDIVIDUALES === */
.collection-hero__title,
h1.collection-hero__title {
  text-align: center !important;
  font-size: 5rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 200% auto !important;
  text-transform: uppercase !important;
  letter-spacing: 5px !important;
  margin: 0 auto 2rem auto !important;
  padding: 5rem 4rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: transparent !important;
  border-radius: 30px !important;
  border: 5px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 
    0 20px 60px rgba(59, 89, 152, 0.4),
    0 0 80px rgba(255, 215, 0, 0.4) inset !important;
  position: relative !important;
  min-height: 350px !important;
  animation: title-shimmer 4s linear infinite, float-title 4s ease-in-out infinite !important;
  backdrop-filter: blur(20px) !important;
}

/* Script para agregar subtítulo */
.collection-subtitle-epic {
  display: block !important;
  font-size: 1.8rem !important;
  color: white !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5) !important;
  margin-top: 1.5rem !important;
  letter-spacing: 2px !important;
  text-transform: none !important;
  animation: fade-in 1s ease-in !important;
}

@media screen and (max-width: 749px) {
  .collection-hero__title {
    font-size: 2.5rem !important;
    padding: 3rem 1.5rem !important;
    min-height: 220px !important;
    letter-spacing: 2px !important;
  }
  .collection-subtitle-epic {
    font-size: 1.2rem !important;
  }
}

/* JavaScript para agregar subtítulo automáticamente */
<script>
document.addEventListener('DOMContentLoaded', function() {
  const titleWrapper = document.querySelector('.collection_title.title-wrapper h2');
  if (titleWrapper && !titleWrapper.querySelector('.subtitle-epic')) {
    const subtitle = document.createElement('span');
    subtitle.className = 'subtitle-epic';
    subtitle.innerHTML = '✨ Encuentra los mejores productos aquí ✨';
    titleWrapper.appendChild(subtitle);
  }
  
  const heroTitle = document.querySelector('.collection-hero__title');
  if (heroTitle && !heroTitle.querySelector('.collection-subtitle-epic')) {
    const subtitle = document.createElement('span');
    subtitle.className = 'collection-subtitle-epic';
    subtitle.innerHTML = '✨ Encuentra los mejores productos aquí ✨';
    heroTitle.appendChild(subtitle);
  }
});
</script>