.donate-wrapper { padding-top:100px; padding-bottom:80px; background:#f8fbff; min-height:100vh; }
.donate-container { max-width:1100px; margin:0 auto; padding:0 24px; }
.donate-title { font-size:26px; font-weight:800; color:#1a202c; margin-bottom:24px; }
.donate-grid { display:grid; grid-template-columns:1fr 1fr; gap:30px; }

/* Program Card */
.program-preview { background:white; border:2px solid var(--orange); border-radius:16px; padding:16px; display:flex; gap:16px; margin-bottom:28px; }
.program-preview img { width:110px; height:90px; border-radius:10px; object-fit:cover; flex-shrink:0; }
.program-preview-info h4 { font-size:16px; font-weight:700; color:#1a202c; margin:0 0 5px; }
.program-preview-info p  { font-size:12px; color:#718096; margin:0 0 10px; line-height:1.5; }
.tag-sm { display:inline-block; background:rgba(232,101,10,.1); color:var(--orange); border-radius:20px; padding:2px 10px; font-size:11px; font-weight:600; margin:0 4px 4px 0; }

/* Buttons */
.section-label { font-size:15px; font-weight:700; color:#1a202c; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.btn-choice-grid { display:grid; gap:10px; margin-bottom:20px; }
.btn-choice-grid.col-3 { grid-template-columns:repeat(3,1fr); }
.btn-choice-grid.col-5 { grid-template-columns:repeat(3,1fr); }
.btn-choice { padding:12px 8px; border:1.5px solid #e2e8f0; border-radius:10px; background:white; color:#1a202c; font-weight:600; font-size:13px; cursor:pointer; text-align:center; transition:all .2s; font-family:'Poppins',sans-serif; }
.btn-choice:hover, .btn-choice.active { border-color:var(--orange); background:rgba(232,101,10,.06); color:var(--orange); }

/* Custom nominal */
.custom-nominal { display:none; margin-bottom:20px; }
.custom-nominal.show { display:block; }

/* Sapaan */
.sapaan-row { display:flex; gap:10px; margin-bottom:16px; }

/* Form */
.form-group { margin-bottom:14px; }
.form-group input, .form-group textarea { width:100%; padding:13px 16px; border:1.5px solid #e2e8f0; border-radius:10px; font-size:14px; font-family:'Poppins',sans-serif; color:#1a202c; outline:none; transition:border-color .2s; background:white; }
.form-group input:focus, .form-group textarea:focus { border-color:var(--orange); }
.form-group input::placeholder, .form-group textarea::placeholder { color:#a0aec0; }

/* Toggle anonim */
.toggle-row { display:flex; align-items:center; gap:12px; padding:12px 0; margin-bottom:14px; font-size:13px; color:#4a5568; font-weight:500; }
.toggle-sw { width:44px; height:24px; background:#cbd5e0; border-radius:50px; position:relative; cursor:pointer; transition:background .2s; flex-shrink:0; }
.toggle-sw.on { background:var(--orange); }
.toggle-sw::after { content:''; position:absolute; top:3px; left:3px; width:18px; height:18px; background:white; border-radius:50%; transition:transform .2s; box-shadow:0 1px 4px rgba(0,0,0,.15); }
.toggle-sw.on::after { transform:translateX(20px); }

/* Total */
.total-box { background:white; border:1px solid #edf2f7; border-radius:14px; padding:16px 20px; margin-bottom:16px; box-shadow:0 2px 10px rgba(0,0,0,.04); }
.total-box .lbl { font-size:13px; color:#718096; }
.total-box .amount { font-size:22px; font-weight:800; color:#1a202c; }
.total-box .fee-row { display:flex; justify-content:space-between; font-size:12px; color:#718096; margin-top:6px; padding-top:6px; border-top:1px dashed #edf2f7; }
.total-box .fee-row.highlight { color:#e8650a; font-weight:600; }
.total-box .fee-row .fee-free { color:#00a651; font-weight:600; }

/* Submit */
.btn-submit { width:100%; padding:16px; background:var(--orange); color:white; border:none; border-radius:14px; font-size:16px; font-weight:700; cursor:pointer; font-family:'Poppins',sans-serif; transition:all .3s; display:flex; align-items:center; justify-content:center; gap:10px; box-shadow:0 4px 14px rgba(232,101,10,.3); }
.btn-submit:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 8px 20px rgba(232,101,10,.4); }
.btn-submit:disabled { background:#cbd5e0; cursor:not-allowed; transform:none; box-shadow:none; }

/* Floating History Button */
.btn-floating-history {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(232,101,10,.4);
  border: 3px solid white;
  cursor: pointer;
  transition: all .3s;
  z-index: 100;
  text-decoration: none;
}
.btn-floating-history:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(232,101,10,.5);
  color: white;
}

@keyframes pulse-pay {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,166,81,.5); }
  50% { box-shadow: 0 0 0 8px rgba(0,166,81,0); }
}
@media(max-width:768px) {
  .donate-grid { grid-template-columns:1fr; }
  .btn-choice-grid.col-3, .btn-choice-grid.col-5 { grid-template-columns:repeat(2,1fr); }
  .btn-floating-history { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 20px; }
}
