:root{
  --bg:#ffffff;
  --muted:#6b7280;
  --accent:#ff6b6b;
  --accent-dark:#b51b1b;
  --card:#fff;
  --max:760px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:'Poppins',system-ui;
  background:linear-gradient(180deg,#fffaf6,#ffffff);
  color:#0f172a;
  display:flex;
  justify-content:center;
  padding:28px;
  font-size:18px; /* FONT LEBIH BESAR */
}

.wrap{
  width:100%;
  max-width:var(--max);
}

.panel{
  background:var(--card);
  padding:26px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(2,6,23,0.08);
  margin-bottom:5px;
}

h1{
  font-size:26px;
  font-weight:800;
  margin:0 0 14px 0;
  line-height:1.3;
}

.section-title{
  margin:0 0 10px 0;
  font-size:24px;
  font-weight:700;
}

p.lead{
  color:var(--muted);
  margin:0 0 16px 0;
  line-height:1.7;
  font-size:18px;
}

.list{
  margin:12px 0;
  padding-left:20px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.images{
  display:flex;
  gap:14px;
  margin-top:18px;
}

.images img{
  width:100%;
  height:200px;
  object-fit:contain;
  border-radius:12px;
  flex:1;
}

.old{
  text-decoration:line-through;
  color:var(--muted);
  font-weight:600;
  font-size:20px;
}

.price{
  font-weight:900;
  font-size:28px;
  color:var(--accent-dark);
}

.price-row{
  display:flex;
  gap:14px;
  align-items:center;
}

.cta{
  display:block;
  background:var(--accent);
  color:#fff;
  padding:16px 22px;
  border-radius:14px;
  text-align:center;
  font-weight:800;
  margin-top:18px;
  font-size:20px;
}

.cta.wa{
  background:#1EBE5A;
}

.danger{
  color:#b51b1b;
  font-weight:800;
}

.small{
  font-size:16px;
  color:var(--muted);
}



@media(max-width:560px){
  .images img{
    height:140px;
  }
  h1{ font-size:22px; }
  .price{ font-size:24px; }
}
