
/* Estilos del bundle */
.bundle-section {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.bundle-option {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* Estilos de tallas */
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.size-option {
  width: 45px;
  height: 45px;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-option.selected {
  border-color: #e2001a;
  background: #e2001a;
  color: white;
}

/* Estilos del carrusel */
.carousel-container {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  min-width: 100%;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

/* Resto de estilos que estaban inline... */
