$( document ).ready(function(){
"use strict";
$('.link-cart-index').hover(function(event){
$('.cart-i').hover(function(){
$(this).addClass('active-cart-1');
},
function(){
$(this).removeClass('active-cart-1');
});
event.preventDefault();
});
});