I was able to check your website.
I think I now understand what you want.
You will have to edit the file "listing_div" of the view "product" via the menu Display->Views and change the line:
<?php if(in_array($pagination,array('bottom','both')) && $this->params->get('show_limit') && $this->pageInfo->elements->total > $this->pageInfo->limit->value){ $this->pagination->form = '_bottom'; ?>
to:
<?php if(in_array($pagination,array('bottom','both')) && $this->params->get('show_limit')){ $this->pagination->form = '_bottom'; ?>
so that it always displays the pagination area regardless of whether all the products are displayed or not.