.producto-detalle {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

main.producto-detalle {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-container {
  width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;  
  align-items: center;     
}

.carousel {
  width: 100%;
  height: 380px;
  position: relative;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Cada imagen del carrusel */
.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; 
}

.carousel-item.active {
  left: 0;
  opacity: 1;
  position: relative;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background-color: #f5f5f5;
  display: block;
  margin: auto;
}

/* Indicadores */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}

.carousel-texto {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* Puntitos del carrusel */
.indicator {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: #333;
}

/* Sección de información del producto */
.info-producto {
  flex: 1;
  min-width: 300px;
  max-width: 480px;           
  margin: 0 auto;             
  text-align: left;          
}

.info-producto h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.info-producto ul {
  list-style: none;
  padding: 0;
}

.info-producto li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}

.info-producto li strong {
  color: #000;
}

/* Formulario de agregar al carrito */
form {
  margin-top: 20px;
  max-width: 480px;     
  margin-left: auto;   
  margin-right: auto;  
  text-align: left;    
}

form label {
  margin-right: 10px;
  font-weight: 500;
}

form input[type="number"] {
  padding: 4px;
  font-size: 14px;
}

form button {
  display: inline-block;
  padding: 8px 14px;
  background-color: #007bff;
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.2s ease;
  border: 2px solid #007bff;
}

form button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  main.producto-detalle {
    flex-direction: column;
    align-items: center;
  }

  .carousel-container {
    width: 100%;
    max-width: 480px;
  }

  .info-producto {
    width: 100%;
  }
}
