! Change class (Get rid of the highlight product) !

<script>
$('.product.highlight-product.col-sm-12.col-md-8').addClass('col-sm-6 col-md-4').removeClass('highlight-product col-md-8');
$('.col-xs-8.col-lg-6').addClass('col-lg-12').removeClass('col-lg-6');
</script>

 A nebo spíš

<script type="text/javascript">
function removeHighlight(){if($("#products .highlight-product").length){var i=$("#products .highlight-product").last(),l=i.find(".img img").attr({src:i.find(".img img").attr("src").replace("big","detail"),"data-src":i.find(".img img").attr("data-src").replace("big","detail")}),e=i.prev(".product");e.clone().insertBefore(e),e.find(".name").replaceWith(i.find(".name")),e.find(".img img").replaceWith(l),e.find(".prices").replaceWith(i.find(".prices")),e.find(".prices .col-lg-6").toggleClass("col-lg-6 col-lg-12"),e.find(".prices .tools").addClass("col-lg-10 col-lg-offset-1"),e.find(".prices .icon-cart").length?(e.find(".prices form .visible-lg-inline-block").addClass("col-lg-12"),$(".tools",e).append('<a href="'+$(".product-link",i).attr("href")+'" title="Detail" class="btn col-lg-12">Detail</a>')):$('.tools a[title="Detail"]',e).addClass("col-lg-12"),i.remove()}}removeHighlight(),$(document).ajaxSuccess(function(){removeHighlight()});
</script>