body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #1da0e0;
  padding: 18px 0;
  text-align: center;
}

.navbar h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Kotak Produk */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 20px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #FFBC4C;
  border-radius: 12px;
  background: #fff;
  padding: 14px 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s;
}

.product-item:hover {
  border-color: #1da0e0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.product-icon {
  width: 26px;
  height: 26px;
}

/* Deskripsi kotak terpisah */
.item-description {
  display: none;
  border: 1px solid #1da0e0;
  border-radius: 10px;
  padding: 12px;
  background: #fafafa;
  font-size: 14px;
  color: #444;
}

.order-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: #1da0e0;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.order-btn:hover {
  background: #0d7abf;
}

/* Rules Box */
.info-box {
  margin: 30px 20px;
  padding: 16px 18px; /* diperkecil dari sebelumnya */
  background: #fff;
  border-left: 5px solid #1da0e0;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-box h2 {
  margin: 0 0 10px 0; /* kecilkan jarak atas & bawah judul */
  font-size: 19px;
  font-weight: 700;
  color: #1da0e0;
}

.info-box p {
  margin-bottom: 8px; /* jarak antar paragraf lebih rapat */
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  color: #333;
}

.info-box p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #FFBC4C; /* bullet kuning */
}
