/*****************************************/
/* Rekomendasi Page */
/*****************************************/

.products {
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #777;
}

.product-card .price {
  font-size: 1rem;
  font-weight: 400;
  color: #9aa6b2;
  display: block;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .products {
    padding: 4rem 8rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .products {
    padding: 4rem 8rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .products h2 {
    font-size: 1.3rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.8rem;
  }
}

/* Mobile */
@media (max-width: 425px) {
  .products {
    padding: 4rem 4rem;
  }

  .products h2 {
    font-size: 1.4rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card {
    padding: 0.8rem;
  }

  .product-card img {
    height: 150px;
  }
}
