/* CONTENEDOR */
.products {
  padding: 50px 20px;
}

/* INTERIOR */
.products-inner {
  max-width: 1200px;
  margin: auto;
}

/* TITULO */
.products-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  position: relative;
}

.products-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: red;
  display: block;
  margin: 10px auto 0;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;

  /* 🔥 CLAVE */
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 3px;
}

/* IMG */
.product-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TITULO */
.product-card h3 {
  font-size: 14px;
  margin: 5px 0;
}

/* DESC */
.product-card p {
  font-size: 12px;
  color: #666;
}

/* LISTA */
.product-card ul {
  text-align: left;
  font-size: 12px;
  margin: 10px 0;
  padding-left: 15px;

  /* 🔥 empuja el botón abajo */
  flex-grow: 1;
}

/* BOTON */
.products .btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: red;
  color: #fff;

  padding: 8px 14px;
  border-radius: 5px;

  font-size: 12px;
  font-weight: 600;
  text-decoration: none;

  margin-top: auto;
  transition: 0.3s;
}

/* ICONO BOTON */
.btn-card img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

/* HOVER */
.products .btn-card:hover {
  background: #cc0000;
  transform: scale(1.05);
}

/* CONTENEDOR BOTON */
.products-more {
  text-align: center;
  margin-top: 30px;
}

/* BOTON VER PRODUCTO */
.btn-more {
  display: center;
  padding: 12px 30px;
  border: 2px solid red;
  color: red;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

/* HOVER */
.btn-more:hover {
  background: red;
  color: #fff;
}

/*boton de mercado*/
.product-btn-mercado {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: #ffcc00;
  color: #000;

  padding: 8px 14px;
  border-radius: 5px;

  font-size: 12px;
  font-weight: 600;
  text-decoration: none;

  margin-top: auto;
  transition: 0.3s;
}

.product-btn-mercado:hover {
  background: #e6b800;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
