/*
Estilos elegantes para la sección de productos
*/
.productos-elegantes {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}
.productos-elegantes h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
  letter-spacing: 2px;
}
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.producto-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 24px 18px 32px 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.producto-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.producto-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}
.producto-card h3 {
  font-size: 1.2rem;
  margin: 10px 0 8px 0;
  color: #333;
}
.producto-card .descripcion {
  font-size: 0.98rem;
  color: #666;
  margin-bottom: 16px;
}
.producto-card .precio {
  font-size: 1.1rem;
  color: #1e88e5;
  font-weight: bold;
  margin-bottom: 18px;
}
.producto-card button {
  background: linear-gradient(90deg, #1e88e5 0%, #43cea2 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.producto-card button:hover {
  background: linear-gradient(90deg, #43cea2 0%, #1e88e5 100%);
}
