/** Shopify CDN: Minification failed

Line 1009:9 Expected identifier but found whitespace
Line 1542:54 Expected "}" to go with "{"

**/
/* ================================================
   LEGENDARY LATAM - BUNDLE SYSTEM STYLES
   LUXURY BLACK & DARK GOLD THEME
   ================================================ */

:root {
  /* LUXURY THEME - Black & Dark Gold */
  --legendary-black: #0a0a0a;
  --legendary-dark: #1a1a1a;
  --legendary-charcoal: #2a2a2a;
  --legendary-gold: #d4af37;
  --legendary-dark-gold: #b8941e;
  --legendary-silver: #c0c0c0;
  --legendary-rose-gold: #b76e79;
  
  /* Colores funcionales */
  --legendary-success: #d4af37;
  --legendary-warning: #b8941e;
  --legendary-danger: #8b0000;
  --legendary-info: #c0c0c0;
  
  /* Gradientes */
  --legendary-gradient-primary: linear-gradient(135deg, #d4af37 0%, #b8941e 100%);
  --legendary-gradient-secondary: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
  --legendary-gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --legendary-gradient-accent: linear-gradient(135deg, #b76e79 0%, #8b5a5f 100%);
  
  /* Efectos */
  --legendary-glass-bg: rgba(212, 175, 55, 0.05);
  --legendary-glass-border: rgba(212, 175, 55, 0.2);
  --legendary-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --legendary-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --legendary-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --legendary-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --legendary-glow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
  --legendary-glow-intense: 0 0 40px rgba(212, 175, 55, 0.6);
}

/* ================================================
   LAYOUT PRINCIPAL DEL PRODUCTO
   ================================================ */

.legendary-product-bundle {
  padding: 80px 0;
  background: var(--legendary-gradient-dark);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.legendary-product-bundle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.legendary-product-bundle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--legendary-gradient-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.product-bundle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .legendary-product-bundle {
    padding: 60px 0;
  }
  
  .product-bundle-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ================================================
   GALERÍA DE IMÁGENES
   ================================================ */

.product-bundle-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.product-main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--legendary-dark);
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--legendary-shadow-xl);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.product-main-image:hover {
  border-color: var(--legendary-gold);
  box-shadow: 
    var(--legendary-shadow-xl),
    var(--legendary-glow-gold);
}

.product-featured-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-main-image:hover .product-featured-image {
  transform: scale(1.05);
}

.zoom-button {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid var(--legendary-gold);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--legendary-shadow-md);
  color: var(--legendary-gold);
}

.zoom-button:hover {
  transform: scale(1.1);
  background: var(--legendary-gold);
  color: var(--legendary-black);
  box-shadow: var(--legendary-glow-gold);
}

/* Thumbnails */
.product-thumbnails {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--legendary-gold) var(--legendary-dark);
}

.product-thumbnails::-webkit-scrollbar {
  height: 8px;
}

.product-thumbnails::-webkit-scrollbar-track {
  background: var(--legendary-dark);
  border-radius: 4px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
  background: var(--legendary-gradient-primary);
  border-radius: 4px;
}

.thumbnail-item {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--legendary-charcoal);
  transition: all 0.3s ease;
  background: var(--legendary-dark);
}

.thumbnail-item:hover {
  border-color: var(--legendary-gold);
  transform: translateY(-4px);
  box-shadow: var(--legendary-shadow-md);
}

.thumbnail-item.active {
  border-color: var(--legendary-gold);
  box-shadow: 
    var(--legendary-shadow-md),
    0 0 20px rgba(212, 175, 55, 0.4);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: var(--legendary-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.trust-badge svg {
  flex-shrink: 0;
  color: var(--legendary-gold);
}

/* ================================================
   INFORMACIÓN DEL PRODUCTO
   ================================================ */

.product-bundle-info {
  background: var(--legendary-dark);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--legendary-shadow-xl);
}

@media (max-width: 768px) {
  .product-bundle-info {
    padding: 32px 24px;
  }
}

/* Header del Producto */
.product-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 32px;
}

.product-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.badge-sale {
  background: var(--legendary-gradient-primary);
  color: var(--legendary-black);
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.badge-new {
  background: var(--legendary-gradient-secondary);
  color: var(--legendary-black);
}

.badge-bestseller {
  background: var(--legendary-gradient-accent);
  color: #ffffff;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.product-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 32px;
  }
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.stars {
  color: var(--legendary-gold);
  font-size: 22px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.rating-count {
  color: #a0a0a0;
  font-size: 15px;
  font-weight: 500;
}

/* Precio */
.product-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.price {
  font-weight: 700;
}

.price-current {
  font-size: 48px;
  color: var(--legendary-gold);
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.price-current.price-updating {
  animation: priceChange 0.6s ease;
}

@keyframes priceChange {
  0% { transform: scale(1); }
  50% { 
    transform: scale(1.1); 
    color: var(--legendary-silver);
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
  }
  100% { transform: scale(1); }
}

.price-compare {
  font-size: 32px;
  color: #666;
  text-decoration: line-through;
}

/* Stock Indicator */
.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 2px solid;
}

.stock-low {
  background: rgba(139, 0, 0, 0.2);
  color: #ff4444;
  border-color: rgba(139, 0, 0, 0.4);
  animation: urgency 2s ease-in-out infinite;
}

@keyframes urgency {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.stock-available {
  background: rgba(212, 175, 55, 0.2);
  color: var(--legendary-gold);
  border-color: rgba(212, 175, 55, 0.4);
}

.stock-out {
  background: rgba(100, 100, 100, 0.2);
  color: #999;
  border-color: rgba(100, 100, 100, 0.4);
}

/* ================================================
   SISTEMA DE BUNDLES
   ================================================ */

.bundle-selector-container {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.bundle-selector-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: var(--legendary-gradient-primary);
  animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
  to { left: 50%; }
}

.bundle-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--legendary-gold);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bundle-subtitle {
  color: #a0a0a0;
  margin: 0 0 32px 0;
  font-size: 16px;
}

.bundle-options {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.bundle-option {
  position: relative;
  cursor: pointer;
  display: block;
}

.bundle-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bundle-card {
  position: relative;
  background: var(--legendary-dark);
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--legendary-gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bundle-option:hover .bundle-card {
  border-color: var(--legendary-gold);
  transform: translateY(-6px);
  box-shadow: 
    var(--legendary-shadow-lg),
    var(--legendary-glow-gold);
}

.bundle-option:hover .bundle-card::before {
  opacity: 0.1;
}

.bundle-option input:checked ~ .bundle-card {
  border-color: var(--legendary-gold);
  background: var(--legendary-gradient-primary);
  color: var(--legendary-black);
  box-shadow: 
    var(--legendary-shadow-lg),
    var(--legendary-glow-intense);
  transform: translateY(-4px);
}

.bundle-option input:checked ~ .bundle-card::before {
  opacity: 0;
}

.bundle-option input:checked ~ .bundle-card .bundle-label,
.bundle-option input:checked ~ .bundle-card .bundle-save,
.bundle-option input:checked ~ .bundle-card .bundle-price,
.bundle-option input:checked ~ .bundle-card .bundle-discount,
.bundle-option input:checked ~ .bundle-card .bundle-bonus {
  color: var(--legendary-black);
}

.bundle-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--legendary-gradient-accent);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.5);
  z-index: 10;
}

.bundle-popular .bundle-badge {
  background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
  animation: badgePulse 2s ease-in-out infinite;
}

.bundle-bestseller .bundle-badge {
  background: var(--legendary-gradient-primary);
  color: var(--legendary-black);
}

.bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bundle-label {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.bundle-save {
  font-size: 15px;
  font-weight: 600;
  color: var(--legendary-gold);
  background: rgba(212, 175, 55, 0.2);
  padding: 6px 16px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.bundle-pricing {
  margin-bottom: 12px;
}

.bundle-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--legendary-gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.bundle-discount {
  font-size: 15px;
  color: #999;
  display: block;
}

.bundle-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--legendary-gold);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ================================================
   SELECTOR DE VARIANTES
   ================================================ */

.variant-selector {
  margin-bottom: 32px;
}

.variant-input-wrapper {
  margin-bottom: 24px;
}

.variant-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--legendary-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.variant-button,
.variant-swatch {
  position: relative;
  cursor: pointer;
}

.variant-button input,
.variant-swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-button span {
  display: block;
  padding: 12px 24px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  background: var(--legendary-dark);
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.variant-button:hover span {
  border-color: var(--legendary-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.variant-button input:checked ~ span {
  border-color: var(--legendary-gold);
  background: var(--legendary-gold);
  color: var(--legendary-black);
  box-shadow: var(--legendary-glow-gold);
}

.swatch-color {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.swatch-color::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.variant-swatch:hover .swatch-color {
  border-color: var(--legendary-gold);
  transform: scale(1.15);
  box-shadow: var(--legendary-glow-gold);
}

.variant-swatch input:checked ~ .swatch-color {
  border-color: var(--legendary-gold);
  box-shadow: 
    0 0 0 4px rgba(212, 175, 55, 0.3),
    var(--legendary-glow-gold);
}

.variant-swatch input:checked ~ .swatch-color::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ================================================
   SELECTOR DE CANTIDAD
   ================================================ */

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.quantity-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--legendary-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quantity-input {
  display: flex;
  align-items: center;
  background: var(--legendary-dark);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  overflow: hidden;
}

.quantity-btn {
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--legendary-gold);
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: 700;
}

.quantity-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--legendary-gold);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-field {
  width: 70px;
  height: 50px;
  border: none;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  border-right: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: transparent;
  -moz-appearance: textfield;
}

.quantity-field::-webkit-outer-spin-button,
.quantity-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-field:focus {
  outline: none;
  color: var(--legendary-gold);
}

/* ================================================
   BOTONES DE ACCIÓN
   ================================================ */

.product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--legendary-gradient-primary);
  color: var(--legendary-black);
  box-shadow: 
    var(--legendary-shadow-md),
    var(--legendary-glow-gold);
  flex: 1;
  min-width: 220px;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    var(--legendary-shadow-lg),
    var(--legendary-glow-intense);
}

.btn-primary:active {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--legendary-gold);
  border: 2px solid var(--legendary-gold);
  flex: 1;
  min-width: 180px;
}

.btn-secondary:hover {
  background: var(--legendary-gold);
  color: var(--legendary-black);
  transform: translateY(-4px);
  box-shadow: var(--legendary-shadow-md);
}

.btn-wishlist {
  width: 64px;
  height: 64px;
  padding: 0;
  background: var(--legendary-dark);
  color: var(--legendary-gold);
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.btn-wishlist:hover {
  color: var(--legendary-rose-gold);
  border-color: var(--legendary-rose-gold);
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(183, 110, 121, 0.5);
}

.btn-wishlist.active {
  color: var(--legendary-rose-gold);
  background: rgba(183, 110, 121, 0.2);
  border-color: var(--legendary-rose-gold);
  animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1.1); }
}

.btn svg {
  flex-shrink: 0;
  z-index: 1;
}

.btn-text,
.btn-price {
  z-index: 1;
}

/* Loading State */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn-loading .btn-text {
  opacity: 0;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(10, 10, 10, 0.3);
  border-top-color: var(--legendary-black);
  border-radius: 50%;
  animation: btnSpinner 0.6s linear infinite;
}

@keyframes btnSpinner {
  to { transform: rotate(360deg); }
}

/* ================================================
   BARRA DE ENVÍO GRATIS
   ================================================ */

.free-shipping-bar {
  background: var(--legendary-gradient-dark);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.free-shipping-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--legendary-gradient-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 
  /* ... TODO LO ANTERIOR ... */

.progress-fill {
  height: 100%;
  background: var(--legendary-gradient-primary);
  border-radius: 12px;
  transition: width 0.6s ease;
  box-shadow: 
    0 0 15px rgba(212, 175, 55, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.shipping-message {
  margin: 0;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  color: #ffffff;
}

.shipping-message strong {
  color: var(--legendary-gold);
  font-weight: 700;
}

.amount-remaining {
  color: var(--legendary-gold);
  font-weight: 700;
}

/* ================================================
   ACORDEÓN DE DESCRIPCIÓN
   ================================================ */

.product-description-wrapper {
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  padding-top: 40px;
  margin-top: 40px;
}

.accordion-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: var(--legendary-gold);
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.accordion-item[open] .accordion-header h3 {
  color: var(--legendary-gold);
}

.accordion-header svg {
  transition: transform 0.3s ease;
  color: var(--legendary-gold);
}

.accordion-item[open] .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 0 32px 0;
  color: #cccccc;
  line-height: 1.8;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefits-list,
.usage-steps {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.benefits-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.usage-steps {
  counter-reset: step-counter;
}

.usage-steps li {
  counter-increment: step-counter;
  position: relative;
  padding: 16px 0 16px 60px;
  margin-bottom: 16px;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.usage-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 12px;
  width: 40px;
  height: 40px;
  background: var(--legendary-gradient-primary);
  color: var(--legendary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--legendary-glow-gold);
}

.ingredients-text {
  font-size: 15px;
  line-height: 1.8;
  color: #aaaaaa;
}

/* ================================================
   EFECTOS ESPECIALES
   ================================================ */

/* Efecto de brillo en hover para tarjetas */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.shine-effect:hover::before {
  left: 150%;
}

/* Borde animado luxury */
.border-glow {
  position: relative;
  background: var(--legendary-dark);
}

.border-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--legendary-gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.border-glow:hover::before {
  opacity: 1;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1200px) {
  .product-bundle-grid {
    gap: 60px;
  }
  
  .product-title {
    font-size: 38px;
  }
  
  .bundle-selector-container {
    padding: 32px;
  }
}

@media (max-width: 1024px) {
  .legendary-product-bundle {
    padding: 60px 0;
  }
  
  .product-bundle-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .product-bundle-gallery {
    position: static;
  }
  
  .product-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .legendary-product-bundle {
    padding: 40px 0;
  }
  
  .product-bundle-grid {
    gap: 40px;
    padding: 0 16px;
  }
  
  .product-bundle-info {
    padding: 32px 24px;
  }
  
  .product-title {
    font-size: 28px;
  }
  
  .price-current {
    font-size: 36px;
  }
  
  .bundle-selector-container {
    padding: 24px;
  }
  
  .bundle-title {
    font-size: 22px;
  }
  
  .bundle-card {
    padding: 20px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: auto;
  }
  
  .btn-wishlist {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 100;
    box-shadow: 
      var(--legendary-shadow-lg),
      var(--legendary-glow-gold);
  }
  
  .thumbnail-item {
    width: 70px;
    height: 70px;
  }
  
  .trust-badges {
    gap: 12px;
  }
  
  .trust-badge {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 24px;
  }
  
  .price-current {
    font-size: 32px;
  }
  
  .bundle-title {
    font-size: 20px;
  }
  
  .bundle-price {
    font-size: 32px;
  }
  
  .btn {
    padding: 16px 32px;
    font-size: 15px;
  }
}

/* ================================================
   ANIMACIONES GLOBALES
   ================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-bundle-gallery {
  animation: fadeInLeft 0.8s ease-out;
}

.product-bundle-info {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.bundle-option {
  animation: scaleIn 0.6s ease-out both;
}

.bundle-option:nth-child(1) {
  animation-delay: 0.1s;
}

.bundle-option:nth-child(2) {
  animation-delay: 0.2s;
}

.bundle-option:nth-child(3) {
  animation-delay: 0.3s;
}

/* ================================================
   ESTADOS DE CARGA Y TRANSICIONES
   ================================================ */

.loading-state {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading-state::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top-color: var(--legendary-gold);
  border-radius: 50%;
  animation: loadingSpin 0.8s linear infinite;
}

@keyframes loadingSpin {
  to { transform: rotate(360deg); }
}

/* Transiciones suaves para todo */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   PREFERENCIAS DE ACCESIBILIDAD
   ================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Alto contraste */
@media (prefers-contrast: high) {
  .bundle-card {
    border-width: 4px;
  }
  
  .btn {
    border-width: 3px;
  }
}

/* ================================================
   IMPRESIÓN
   ================================================ */

@media print {
  .legendary-product-bundle::before,
  .legendary-product-bundle::after,
  .luxury-particles-container,
  .whatsapp-float,
  .btn-wishlist {
    display: none !important;
  }
  
  .product-bundle-grid {
    display: block;
  }
  
  .product-bundle-info,
  .product-bundle-gallery {
    page-break-inside: avoid;
  }
}

/* ================================================
   FIN DEL ARCHIVO
   ================================================ */