.products-page {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  font-family: "Poppins", sans-serif;
}

.title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #ff5722;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARDS */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0 5px;
  font-size: 19px;
}

.price {
  color: #444;
  margin-bottom: 12px;
}

/* BUTTON */
.buy-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #ff5722;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
}

.buy-btn:hover {
  background: #d94b1e;
  opacity: 0.9;
}



