

.producto-wrapper {
  margin-top: 20px;
}

/* Título principal */
.product-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2e6d4f;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

/* Imagen principal con efecto zoom */
.zoom-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.zoom-img:hover {
  transform: scale(1.05);
}

/* Miniaturas */
.thumbnail-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border 0.3s ease;
}

.thumbnail-img:hover {
  border-color: #2e6d4f;
}

/* Tarjeta de información moderna con iluminación en hover */
.info-card-vertical {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  color: #333;
  position: relative;
  transition: box-shadow 0.4s ease;
}

/* Efecto de iluminación verde claro al pasar el cursor */
.info-card-vertical:hover {
  box-shadow: 0 0 20px 4px rgba(46, 125, 80, 0.2);
}

/* Subtítulo del producto */
.info-card-vertical h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2e6d4f;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

/* Texto de descripción */
#productDescription p {
  margin-bottom: 12px;
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}

/* Etiquetas */
.badge.bg-primary {
  background-color: #2e6d4f !important;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 14px;
  margin-right: 6px;
}

/* Texto adicional */
.text-negro {
  color: #111;
  font-weight: bold;
  margin-top: 10px;
  font-size: 16px;
}



