/* Título principal */
.Neo_product {
  font-size: 28px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 40px;
  font-family: 'Kola';
  /*animation: flicker 0.15s infinite alternate;*/
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 40px #0ff;
  color: #ffffff;
}

/* Contenedor principal */
.products-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

/* Grid de tarjetas */
.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  padding-bottom: 60px;
}

/* Tarjetas individuales */
.product-card {
  background-color: #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 16px;
  width: 220px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  background-color: #292929;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 12px;
}

/* Botones */
.product-card button {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background-color: #B026FF;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background-color: #00ffcc;
}

