/* ===== NOTIFICATION BADGE ===== */
.notif-badge{
  position:absolute;top:-4px;right:-4px;min-width:18px;height:18px;
  border-radius:9px;background:var(--danger);color:#fff;font-size:10px;
  font-weight:700;display:flex;align-items:center;justify-content:center;
  padding:0 4px;pointer-events:none;animation:notifPop .2s ease-out;
}
@keyframes notifPop{from{transform:scale(0)}to{transform:scale(1)}}
.notif-toast{
  position:fixed;top:16px;right:16px;z-index:9000;
  background:var(--bg-primary);backdrop-filter:blur(16px);
  border:1px solid var(--border);border-radius:12px;
  padding:12px 18px;color:var(--text-primary);font-size:13px;
  box-shadow:0 8px 32px rgba(0,0,0,.5);animation:toastIn .3s ease-out;
  max-width:320px;cursor:pointer;
}
@keyframes toastIn{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:none}}
.notif-toast .nt-title{font-weight:600;margin-bottom:2px;}
.notif-toast .nt-body{color:var(--text-secondary);font-size:12px;}
