body {
  margin: 0;
  font-family: Arial;
  background: linear-gradient(180deg, #000, #111, #222);
  color: white;
}

.title {
  text-align: center;
  margin: 30px;
  font-size: 3em;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product {
  background: #111;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.product:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,255,255,0.5);
}

.product img {
  width: 100%;
  border-radius: 10px;
}

.buy-btn {
  background: white;
  color: black;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}