.fondo-producto {
  background-color: #f8f9fa;
  padding: .5rem 0; /* opcional: para dar aire arriba y abajo */
}

.producto-imagen-principal {
   width: 90%;
   height: auto;
   object-fit: cover;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}
.producto-imagen-principal:hover {
   transform: scale(1.02);
}
.producto-galeria img {
   width: 80px;
   height: 80px;
   object-fit: cover;
   border-radius: 8px;
   margin-right: 10px;
   cursor: pointer;
   border: 2px solid transparent;
   transition: border-color 0.3s ease;
}
.producto-galeria img.active, .producto-galeria img:hover {
   border-color: #007bff;
}
.producto-titulo {
   font-size: 32px;
   font-weight: bold;
   margin-bottom: 20px;
   color: #333;
}
.producto-precio {
   font-size: 28px;
   color: #28a745;
   margin-bottom: 20px;
}
.producto-stock {
   font-size: 18px;
   margin-bottom: 20px;
}
.producto-descripcion {
   font-size: 18px;
   color: #555;
   margin-bottom: 30px;
}
.especificaciones {
   background-color: #fff;
   padding: 20px;
   border-radius: 10px;
   margin-bottom: 30px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.especificaciones h3 {
   font-size: 24px;
   margin-bottom: 15px;
   color: #333;
}
.especificaciones ul {
   list-style-type: none;
   padding: 0;
}
.especificaciones ul li {
   font-size: 16px;
   margin-bottom: 10px;
   color: #666;
}
.btn-comprar {
   width: 100%;
   padding: 15px;
   font-size: 18px;
   font-weight: bold;
   background-color: #007bff;
   border: none;
   transition: background-color 0.3s ease;
}
.btn-comprar:hover {
   background-color: #0056b3;
}
.btn-comprar:disabled {
   background-color: #6c757d;
   cursor: not-allowed;
}
.reseñas {
   background-color: #fff;
   padding: 20px;
   border-radius: 10px;
   margin-bottom: 30px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.reseñas h3 {
   font-size: 24px;
   margin-bottom: 15px;
   color: #333;
}
.reseña {
   margin-bottom: 15px;
   padding-bottom: 15px;
   border-bottom: 1px solid #eee;
}
.reseña:last-child {
   border-bottom: none;
}
.reseña .estrella {
   color: #ffc107;
   margin-right: 5px;
}
.productos-relacionados {
   margin-top: 50px;
}
.producto-relacionado {
   background-color: #fff;
   padding: 15px;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}
.producto-relacionado:hover {
   transform: translateY(-5px);
}
.producto-relacionado img {
   width: 100%;
   height: 150px;
   object-fit: cover;
   border-radius: 8px;
}
.stock-badge {
   display: inline-block;
   padding: 5px 12px;
   border-radius: 20px;
   font-size: 14px;
   font-weight: bold;
   margin: 10px 0;
   text-align: center;
   white-space: nowrap;
}
.hay-stock {
   background-color: #28a745;
   color: white;
}
.proximamente {
   background-color: #ffc107;
   color: black;
}

