$(async function(){if($("section.product-detail .product-book").length){await getTokenSetupHeaders();var n=$("section.product-detail .product-book").data("key");$.ajax({type:"POST",url:window.apiEndpoint+"/Product/FindProductByContentKey",data:{contentKey:n,siteName:"jhm"}}).done(function(n){n.stockItems.forEach(function(n){var t=$(".stock-item.template:first").clone();t.removeClass("template");t.find(".medium").text(n.medium);t.find(".price").text(n.price);t.find(".sku").text(n.sku);$(".stock-items").append(t)});var t={name:n.title,id:n.contentId,category:n.category,price:n.stockItems[0].price};recordProductImpression(t);RegisterEmarsysProductView()});$("body").on("click",".add-product",function(){var n=$(this).closest(".stock-item").find(".sku").text(),t=getPageInfo();$.ajax({type:"POST",url:window.apiEndpoint+"/Cart/Add/Product",data:{shoppingCartType:1,cartId:sessionStorage.getItem(window.cartIdKey),sku:n,pageInfo:t}}).done(function(n){var t,i;$(".cart-modal .success").hide();$(".cart-modal .error").hide();n.success?(updateSessionStorage(n),updateCartItemCount(),n.cartItemCount===1?$(".cart-modal .cart-count").text("(1 item):"):$(".cart-modal .cart-count").text("("+n.cartItemCount+" items):"),$(".cart-modal .cart-subtotal-price").text(n.cartCheckoutTotal),$(".cart-modal .cart-item-title").text(n.cartTitle),$(".cart-modal .cart-item-image").attr("src",n.cartImage),$(".cart-modal .success").show(),t=n.googleCart.cartItems[n.googleCart.cartItems.length-1],t&&(i={Name:t.name,Id:t.sku,Price:t.price,Category:t.category,Quantity:1},recordAddToCart(i))):($(".cart-modal .error .message").text(n.message),$(".cart-modal .error").show());$(".cart-modal").modal("show")})})}})