.featured-products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
}

.category-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

/* === TARJETA DE PRODUCTO === */
.card-product {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  transition: all 0.25s ease;
}

/* === IMAGEN === */
.image-product {
  width: 40%;
  cursor: pointer;
}

.image-product img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* === INFO === */
.info-product {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.name-product {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #222;
  margin: 2px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.name-product:hover {
  color: #0073e6;
}

.brand-product {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 8px;
}

.price-product {
  font-size: 1.1rem;
  font-weight: bold;
  color: #111;
}

/* === ESPACIO VACÍO === */
.empty-space {
  height: 350px;
  background-color: #f9f9f9;
  border: 2px dashed #e5e5e5;
  border-radius: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .featured-products-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .featured-products-container {
    grid-template-columns: 1fr;
    padding: 5px 15px;
  }


  .image-product,
  .info-product {
    width: 40%;
  }

}
