// Product - View More Button
const $products = $('.item-group-slider .slick-slide');

$products.each(function(index){
    let href = $(this).find('.itemTitle a').attr('href');
    $(this).find('.itemDetail').append($(`<a href="${href}" class="cta-btn">View More</a>`));
});