Hi,
Can you try this property:
.hikashop_product_main_image_thumb, .hikashop_product_main_image{
height: auto !important;
}
You have to edit the view "product / show_tabular" in HikaShop > Display > Views and remove the first description part:
<div id="hikashop_product_description_main_mini" class="hikashop_product_description_main_mini">
<?php
//DISPLAY the product description
$resume = substr(strip_tags(preg_replace('#<hr *id="system-readmore" */>#i','',$this->element->product_description)),0,300);
$resume .= "...<a href='#description'>See more</a>";
echo JHTML::_('content.prepare',$resume);
?>
</div>