/* DETALLE */

.list-content {
  width: 66%;
  margin: 1rem auto;
}

.products-list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;

  margin-left: 1.5rem;
}

.product-card {
  width: 300px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  color: white;
  padding: 1rem;
  position: relative;
  overflow: hidden; /* <-- evita que se vea fuera del borde */
}

.product-card img {
  height: 80%;
  width: auto;
  transition: transform 0.4s ease; /* <-- animación suave */
}

.product-card:hover img {
  transform: scale(1.1); /* <-- agranda visualmente */
}

.product-card p {
  width: 90%;
  color: white;
}

/* PRUEBA */

/* Ocultamos todas las tarjetas excepto las primeras 6 */
.product-card {
  display: none;
}

.product-card.visible {
  display: flex;
}

.ver-mas-btn {
  display: block;
  margin-left: auto;
  margin-right: 10rem;
  margin-bottom: 4rem;
  /* margin: 2rem auto; */
  padding: 0.75rem 2rem;
  color: #0068b4;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1.5rem;
  text-decoration: underline;
  transition: background 0.2s;
  font-weight: 600;
}

.ver-mas-btn:hover {
  background-color: #333;
}
