/* CSS para el producto */
.product-gallery {
  display: flex;
  gap: 20px;
}

/* Swiper de miniaturas - vertical a la izquierda */
.thumbs-swiper {
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  width: 100px !important;
  height: 400px !important;
  flex-shrink: 0;
}

.thumbs-swiper .swiper-wrapper {
  flex-direction: column;
}

.thumbs-swiper .swiper-slide {
  width: 100% !important;
  height: 90px !important;
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #007bff;
}

.thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Swiper principal - ocupa el resto del espacio */
.main-swiper {
  flex: 1;
  height: 400px !important;
}

.main-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
}

/* Estilos para el selector de colores */
.color-selector {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.color-option {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.color-option:hover,
.color-option.active {
  border-color: #007bff;
  transform: scale(1.1);
}

.color-option.active::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-size: 12px;
}

.color-navy {
  background-color: #1e3a8a;
}

.color-cream {
  background-color: #fef3c7;
}

.color-red {
  background-color: #dc2626;
}

.color-brown {
  background-color: #92400e;
}

.color-black {
  background-color: #1f2937;
}

/* Información del producto */
.product-info {
  padding: 20px 0;
}

.product-title {
  font-size: 2.2rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
}

.product-description {
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-primary {
  background: #007bff;
  border: none;
  padding: 12px 30px;
  font-weight: 400;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
  }

  .thumbs-swiper {
    width: 100% !important;
    height: 80px !important;
    order: 2;
  }

  .thumbs-swiper .swiper-wrapper {
    flex-direction: row;
  }

  .thumbs-swiper .swiper-slide {
    width: 80px !important;
    height: 70px !important;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .main-swiper {
    height: 300px !important;
    order: 1;
  }
}
