body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.produk-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.produk {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 220px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.produk img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.harga {
  font-weight: bold;
  color: #2c7;
  margin-top: 10px;
}

.btn-pesan {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.2s;
}

.btn-pesan:hover {
  background: #1ebe57;
}
