/* Progress Steps */
.progress-steps{ display:flex; align-items:center; justify-content:center; gap:11px; }
.progress-steps .step{ font-size:13px; color:rgba(31,27,22,0.40); padding:8px 18px; border-radius:999px; border:1px solid rgba(233,225,217,0.95); background: rgba(255,255,255,0.60); }
.progress-steps .step.on{ color:var(--text); border-color:rgba(215,178,124,0.46); background:rgba(215,178,124,0.28); }
.progress-steps .dot{ width:7px; height:7px; border-radius:999px; background:rgba(233,225,217,1); }

/* Info Pop */
.infopop-mask{
  position:fixed; left:0; right:0; top:0; bottom:0;
  background:rgba(0,0,0,0.28);
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
}
.infopop-panel{
  width:72%;
  background:rgba(255,255,255,0.96);
  border-radius:28px;
  border:1px solid rgba(233,225,217,0.85);
  padding:18px 21px 21px;
  box-shadow:0 22px 70px rgba(184,107,75,0.16);
}
.infopop-title{ text-align:center; font-weight:800; font-size:18px; }
.infopop-body{ text-align:center; color:var(--muted); font-size:14px; margin-top:11px; font-weight:500; }
.infopop-btn{ margin-top:18px; height:40px; border-radius:999px; background:var(--brand2); color:#FFF1E6; display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:800; }
.infopop-btn:active{ transform:scale(0.985); }

/* Badge Toast */
.badgetoast-mask{
  position:fixed; left:0; right:0; top:0; bottom:0;
  background:rgba(0,0,0,0.28);
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
}
.badgetoast-panel{
  width:82%;
  background:rgba(255,255,255,0.96);
  border-radius:24px;
  border:1px solid rgba(233,225,217,0.85);
  padding:18px 16px 16px;
  box-shadow:0 20px 60px rgba(184,107,75,0.16);
  animation:badgetoast-pop 260ms ease-out;
}
@keyframes badgetoast-pop{ from{ transform:scale(0.92); opacity:0;} to{ transform:scale(1); opacity:1;} }
.badgetoast-badge{ width:120px; height:120px; margin:4px auto 8px; border-radius:999px; object-fit:contain; }
.badgetoast-title{ text-align:center; font-size:14px; color:var(--muted); }
.badgetoast-name{ text-align:center; font-size:20px; font-weight:800; margin-top:4px; }
.badgetoast-desc{ text-align:center; color:var(--muted); font-size:12px; margin-top:8px; line-height:18px; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; }
.badgetoast-hint{ text-align:center; color:rgba(109,98,89,0.85); font-size:12px; margin-top:6px; }
.badgetoast-btn{ margin-top:14px; height:44px; border-radius:999px; background:var(--brand); color:#FFF1E6; display:flex; align-items:center; justify-content:center; font-weight:800; }
.badgetoast-btn:active{ transform:scale(0.985); background:#8F4F37; }

/* Global Toast */
.toast{
  position:fixed;
  left:50%;
  bottom:18%;
  transform:translateX(-50%);
  background:rgba(31,27,22,0.86);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  z-index:99999;
  max-width:86%;
  text-align:center;
}
