body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

header {
  background: #4CAF50;
  color: white;
  text-align: center;
  padding: 20px;
}

.products {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.product {
  background: white;
  width: 260px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  border-radius: 6px;
}

.price {
  color: #e91e63;
  font-size: 18px;
  font-weight: bold;
}

.contact {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 10px;
  color: #666;
}
