Hi,
I was able to reproduce the problem on your website. What's funny is that it depends on the date selected. Sometimes it worked fine and sometimes it didn't.
Reading online, it looks like it's because the format of dates in some languages (in English) of Joomla doesn't follow the format supported by PHP to read dates.
Changing the line:
if(!is_numeric($date)) $date = strtotime($date);
to:
if(!is_numeric($date)) $date = strtotime(str_replace('-','/', $date));
in the file administrator/components/com_hikashop/helpers/helper.php fixed the problem on your website. We'll include this change on our end to.