body {
  font-family: sans-serif;
  margin: 0;
  padding: 20px;
  background: #f9f9f9;
}
.title {
  text-align: center;
  color: #333;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.product-card {
  width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
}
.product-card p {
  font-size: 14px;
  color: #555;
}
.product-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}