.producto-detalle {
  width: 300px;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.producto-detalle h2 {
  font-size: 24px;
  margin-bottom: 10px;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.producto-detalle p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.product-buttons {
  display: flex;
  gap: 10px;
}

.product-buttons button {
  padding: 10px 15px;
  border: none;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-buttons button:hover {
  background-color: #0056b3;
}

.products-wrapper {
  flex-grow: 1;
  overflow: hidden;
}

.products-container {
  display: flex;
  gap: 20px;
  transition: transform 0.2s;
}

.product-card {
  width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.product-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.product-price {
  font-size: 16px;
  font-weight: bold;
  color: #28a745;
}

.productos_texto {
  width: 320px;
  padding: 25px;
  background-color: #fdfdfd00;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 250px;
}

.productos_texto h2 {
  font-size: 24px;
  margin-bottom: 15px;
  text-decoration: underline;
  color: #222;
}

.productos_texto p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.5;
}

.productos_texto button {
  padding: 10px 18px;
  margin-right: 10px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.productos_texto button:hover {
  background-color: #0056b3;
}
.seccion-productos {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Alinea arriba ambos elementos */
  gap: 40px;
  padding: 40px;
  margin-top: 150px;
  width: 100%;
}

/* Elimina margin-top en .products-wrapper para evitar desfase */
.products-wrapper {
  position: relative;
  width: 50%;
  overflow: hidden;
  border: 2px solid black;
  float: right; /* ← importante quitar float */
  margin-top: 150px; /* ← evitar desfase vertical */
}

#productTitle{
  /*animation: neonGlow 1.15s infinite alternate;*/
  
    text-shadow:
      0 0 5px #0ff,
      0 0 10px #0ff,
      0 0 20px #0ff,
      0 0 40px #0ff;
    
  color: #0ff;
}

#productDescription{
  color: white;
}

#buyButton{
 background-color: #B026FF;
}

#learnMoreButton{
  background-color: #B026FF;
}

#buyButton:hover{
  background-color: #39FF14;
}

#learnMoreButton:hover{
  background-color: #39FF14;
}

/**/