/* app/static/css/detalle_producto.css */

/* === ESTILOS ESPECÍFICOS DE LA FICHA === */

/* Galería - Contenedor principal */
.gallery-container {
  background-color: white;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Marco de la imagen principal (Zoom) */
.main-img-frame {
  position: relative;
  overflow: hidden; 
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  cursor: crosshair; 
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  width: 100%;
  z-index: 1; 
}

/* La Imagen Principal */
.main-img {
  width: 100%;
  height: 100%; 
  object-fit: contain; 
  display: block;
  transition: transform 0.1s ease-out; 
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

.main-img.zoomed {
  transform: scale(2); 
}

.pointer-events-none { pointer-events: none; }

/* Miniaturas */
.thumb {
  border: 2px solid #eee;
  transition: all 0.2s ease;
  opacity: 0.7;
}
.thumb:hover { opacity: 1; }
.thumb-active {
  border-color: #29BDEF !important;
  opacity: 1;
  transform: scale(1.05);
}

/* Caja de Precios */
.price-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 5px solid #29BDEF; 
}

/* Stepper Cantidad */
.qty-input-group { width: 130px; }
.qty-input-group input {
  text-align: center; font-weight: bold; border-left: 0; border-right: 0;
}
.qty-input-group .btn { border-color: #ced4da; }

/* Caja Envíos */
.shipping-box {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.hover-underline:hover { text-decoration: underline !important; }

/* === SLIDER RELACIONADOS === */
.related-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem 2rem 0.5rem; 
  scrollbar-width: none; 
}
.related-track::-webkit-scrollbar { display: none; }

.related-slide {
  flex: 0 0 280px; /* Ancho fijo para las tarjetas relacionadas */
  scroll-snap-align: start;
  position: relative;
}

/* Flechas Slider */
.slider-arrow {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #eee;
  color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.slider-arrow:hover { background: #29BDEF; color: white; }
.slider-arrow.prev { left: -20px; }
.slider-arrow.next { right: -20px; }


/* Ajustes Responsive */
@media (max-width: 768px) {
  .main-img-frame { height: 350px; }
  .gallery-container { min-height: auto; }
}