body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 40px;
  background: #f3f4f6;
}

.detail-container {
  display: flex;
  gap: 40px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.image-box img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.info-box {
  flex: 1;
}

.harga {
  font-size: 24px;
  font-weight: bold;
  color: #2e7d64;
}
.btn-pesan {
  display: inline-block;
  background-color: #2e7d64;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-pesan:hover {
  background-color: #245d4f;
}
