Its because your hikashop_product_name has gone over two lines.
The way I solved it was to expand the product name area to stop the box automatically resizing by :
1. Go into the System..configuration..CSS..Front End CSS edit
2. Find : span.hikashop_product_name
3. insert a height worth over two lines in my case it was height: 30px;
Example is :
span.hikashop_product_name{
text-align: center;
display:block;
margin-bottom:5px;
height:30px;
}
This solved a lot of box placement issues for me.
Hope that helps.