.homepage-products {
  padding: 60px 20px;
  background: #0f1115;
}

.products-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #1b1d23;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 14px;
  color: #c7c9d1;
  margin: 2px 0;
}

.product-card .btn {
  margin-top: auto;
  padding: 10px 15px;
  background: #00d1ff;
  color: #0f1115;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background: #00b1cc;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 209, 255, 0.2);
}

/* Responsive */

@media (max-width: 900px) {
  .products-wrapper {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .products-wrapper {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

