        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading280").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist280").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist280').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 280;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading280").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:280},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading280").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist280").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist280").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger280').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item280').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close280') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view280').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view280').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper280').find('.cd-slider280'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view280 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view280').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view280').height())/2;
		jQuery('.cd-quick-view280').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView280(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close280'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper280').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info280').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view280').hasClass('velocity-animating') && jQuery('.cd-quick-view280').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation280(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view280').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view280').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view280').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view280').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view280').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view280').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation280(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view280').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading279").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist279").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist279').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 279;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading279").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:279},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading279").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist279").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist279").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger279').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item279').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close279') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view279').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view279').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper279').find('.cd-slider279'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view279 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view279').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view279').height())/2;
		jQuery('.cd-quick-view279').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView279(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close279'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper279').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info279').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view279').hasClass('velocity-animating') && jQuery('.cd-quick-view279').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation279(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view279').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view279').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view279').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view279').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view279').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view279').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation279(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view279').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading278").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist278").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist278').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 278;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading278").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:278},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading278").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist278").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist278").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger278').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item278').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close278') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view278').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view278').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper278').find('.cd-slider278'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view278 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view278').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view278').height())/2;
		jQuery('.cd-quick-view278').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView278(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close278'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper278').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info278').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view278').hasClass('velocity-animating') && jQuery('.cd-quick-view278').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation278(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view278').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view278').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view278').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view278').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view278').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view278').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation278(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view278').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading277").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist277").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist277').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 277;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading277").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:277},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading277").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist277").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist277").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger277').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item277').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close277') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView277( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView277( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view277').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view277').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper277').find('.cd-slider277'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view277 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view277').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view277').height())/2;
		jQuery('.cd-quick-view277').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView277(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close277'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper277').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info277').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view277').hasClass('velocity-animating') && jQuery('.cd-quick-view277').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation277(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item277'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view277').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view277').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view277').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view277').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view277').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view277').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation277(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item277'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view277').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading276").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist276").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist276').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 276;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading276").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:276},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading276").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist276").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist276").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist276").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist276").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist276").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist276").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist276").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist276").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist276").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist276").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist276").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist276").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger276').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item276').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close276') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView276( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView276( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view276').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view276').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper276').find('.cd-slider276'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view276 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view276').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view276').height())/2;
		jQuery('.cd-quick-view276').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView276(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close276'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper276').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info276').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view276').hasClass('velocity-animating') && jQuery('.cd-quick-view276').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation276(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item276'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view276').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view276').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view276').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view276').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view276').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view276').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation276(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item276'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view276').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading275").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist275").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist275').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 275;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading275").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:275},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading275").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist275").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist275").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist275").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist275").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist275").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist275").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist275").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist275").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist275").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist275").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist275").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist275").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger275').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item275').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close275') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView275( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView275( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view275').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view275').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper275').find('.cd-slider275'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view275 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view275').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view275').height())/2;
		jQuery('.cd-quick-view275').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView275(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close275'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper275').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info275').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view275').hasClass('velocity-animating') && jQuery('.cd-quick-view275').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation275(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item275'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view275').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view275').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view275').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view275').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view275').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view275').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation275(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item275'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view275').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading274").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist274").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist274').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 274;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading274").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:274},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading274").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist274").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist274").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist274").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist274").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist274").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist274").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist274").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist274").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist274").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist274").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist274").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist274").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger274').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item274').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close274') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView274( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView274( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view274').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view274').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper274').find('.cd-slider274'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view274 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view274').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view274').height())/2;
		jQuery('.cd-quick-view274').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView274(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close274'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper274').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info274').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view274').hasClass('velocity-animating') && jQuery('.cd-quick-view274').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation274(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item274'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view274').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view274').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view274').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view274').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view274').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view274').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation274(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item274'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view274').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_3 .ajax-loading273").css("visibility", "hidden");
				jQuery(".woosmart_layout_3 .woosmart_view_wishlist273").hide();
                jQuery('.woosmart_layout_3 .woosmart_add_to_wishlist273').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 273;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_3 .ajax-loading273").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:273},
						complete: function(){
							jQuery(".woosmart_layout_3 .ajax-loading273").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist273").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist273").show();
								jQuery(".woosmart_layout_3 .product-already-in-wishlist273").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-already-in-wishlist273").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-already-in-wishlist273").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-already-in-wishlist273").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_3 .woosmart_add_to_wishlist273").remove();
								jQuery(".woosmart_layout_3 .woosmart_view_wishlist273").show();
								jQuery(".woosmart_layout_3 .product-added-to-wishlist273").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_3 .product-added-to-wishlist273").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_3 .product-added-to-wishlist273").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_3 .product-added-to-wishlist273").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger273').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item273').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close273') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView273( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView273( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view273').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view273').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper273').find('.cd-slider273'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view273 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view273').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view273').height())/2;
		jQuery('.cd-quick-view273').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView273(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close273'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper273').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info273').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view273').hasClass('velocity-animating') && jQuery('.cd-quick-view273').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation273(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item273'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view273').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view273').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view273').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view273').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view273').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view273').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation273(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item273'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view273').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
	<script>
	jQuery (document).ready(function(){
	jQuery(".woosmart_layout_3 .product-item-1 .item-buttons").addClass("v-hidden");
	jQuery(".woosmart_layout_3 .quick_view").addClass("v-hidden");		
	jQuery(".woosmart_layout_3 .product-item-1").hover(function() {
		jQuery(this).find(".item-buttons").removeClass("v-hidden");
		jQuery(this).find(".item-buttons a").removeClass("v-hidden");
		jQuery(this).find(".quick_view").removeClass("v-visible");
		jQuery(this).find(".item-buttons").addClass("v-visible");
	}, function() {
		jQuery(this).find(".item-buttons").removeClass("v-visible");
		jQuery(this).find(".item-buttons").addClass("v-hidden");
		jQuery(this).find(".item-buttons a").addClass("v-hidden");
		jQuery(this).find(".quick_view").addClass("v-hidden");
	});
	
	});
	</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_6 .ajax-loading280").css("visibility", "hidden");
				jQuery(".woosmart_layout_6 .woosmart_view_wishlist280").hide();
                jQuery('.woosmart_layout_6 .woosmart_add_to_wishlist280').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 280;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_6 .ajax-loading280").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:280},
						complete: function(){
							jQuery(".woosmart_layout_6 .ajax-loading280").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist280").css('display','block');
								jQuery(".woosmart_layout_6 .product-already-in-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-already-in-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-already-in-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-already-in-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist280").css('display','block');
								jQuery(".woosmart_layout_6 .product-added-to-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-added-to-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-added-to-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-added-to-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_6 .ajax-loading279").css("visibility", "hidden");
				jQuery(".woosmart_layout_6 .woosmart_view_wishlist279").hide();
                jQuery('.woosmart_layout_6 .woosmart_add_to_wishlist279').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 279;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_6 .ajax-loading279").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:279},
						complete: function(){
							jQuery(".woosmart_layout_6 .ajax-loading279").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist279").css('display','block');
								jQuery(".woosmart_layout_6 .product-already-in-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-already-in-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-already-in-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-already-in-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist279").css('display','block');
								jQuery(".woosmart_layout_6 .product-added-to-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-added-to-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-added-to-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-added-to-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_6 .ajax-loading278").css("visibility", "hidden");
				jQuery(".woosmart_layout_6 .woosmart_view_wishlist278").hide();
                jQuery('.woosmart_layout_6 .woosmart_add_to_wishlist278').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 278;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_6 .ajax-loading278").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:278},
						complete: function(){
							jQuery(".woosmart_layout_6 .ajax-loading278").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist278").css('display','block');
								jQuery(".woosmart_layout_6 .product-already-in-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-already-in-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-already-in-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-already-in-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist278").css('display','block');
								jQuery(".woosmart_layout_6 .product-added-to-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-added-to-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-added-to-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-added-to-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_6 .ajax-loading277").css("visibility", "hidden");
				jQuery(".woosmart_layout_6 .woosmart_view_wishlist277").hide();
                jQuery('.woosmart_layout_6 .woosmart_add_to_wishlist277').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 277;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_6 .ajax-loading277").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:277},
						complete: function(){
							jQuery(".woosmart_layout_6 .ajax-loading277").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist277").css('display','block');
								jQuery(".woosmart_layout_6 .product-already-in-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-already-in-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-already-in-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-already-in-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist277").css('display','block');
								jQuery(".woosmart_layout_6 .product-added-to-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-added-to-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-added-to-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-added-to-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_6 .ajax-loading276").css("visibility", "hidden");
				jQuery(".woosmart_layout_6 .woosmart_view_wishlist276").hide();
                jQuery('.woosmart_layout_6 .woosmart_add_to_wishlist276').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 276;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_6 .ajax-loading276").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:276},
						complete: function(){
							jQuery(".woosmart_layout_6 .ajax-loading276").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist276").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist276").css('display','block');
								jQuery(".woosmart_layout_6 .product-already-in-wishlist276").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-already-in-wishlist276").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-already-in-wishlist276").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-already-in-wishlist276").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist276").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist276").css('display','block');
								jQuery(".woosmart_layout_6 .product-added-to-wishlist276").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-added-to-wishlist276").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-added-to-wishlist276").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-added-to-wishlist276").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_6 .ajax-loading275").css("visibility", "hidden");
				jQuery(".woosmart_layout_6 .woosmart_view_wishlist275").hide();
                jQuery('.woosmart_layout_6 .woosmart_add_to_wishlist275').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 275;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_6 .ajax-loading275").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:275},
						complete: function(){
							jQuery(".woosmart_layout_6 .ajax-loading275").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist275").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist275").css('display','block');
								jQuery(".woosmart_layout_6 .product-already-in-wishlist275").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-already-in-wishlist275").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-already-in-wishlist275").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-already-in-wishlist275").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_6 .woosmart_add_to_wishlist275").remove();
								jQuery(".woosmart_layout_6 .woosmart_view_wishlist275").css('display','block');
								jQuery(".woosmart_layout_6 .product-added-to-wishlist275").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_6 .product-added-to-wishlist275").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_6 .product-added-to-wishlist275").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_6 .product-added-to-wishlist275").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
	<script>
	jQuery(document).ready(function(){
		jQuery('.shop-products-slider').owlCarousel({
			loop: true,
			autoplayHoverPause: true,
			autoplay: true,					
			dots: true,
			nav: false,
			dotsSpeed: 2000,		
			autoplaySpeed: 2000,
			//slideBy: 'page',
			items: 3
		});		
			});
	</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_10 .ajax-loading280").css("visibility", "hidden");
				jQuery(".woosmart_layout_10 .woosmart_view_wishlist280").hide();
                jQuery('.woosmart_layout_10 .woosmart_add_to_wishlist280').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 280;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_10 .ajax-loading280").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:280},
						complete: function(){
							jQuery(".woosmart_layout_10 .ajax-loading280").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist280").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-already-in-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-already-in-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-already-in-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-already-in-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist280").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-added-to-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-added-to-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-added-to-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-added-to-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger280').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item280').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close280') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view280').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view280').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper280').find('.cd-slider280'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view280 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view280').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view280').height())/2;
		jQuery('.cd-quick-view280').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView280(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close280'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper280').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info280').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view280').hasClass('velocity-animating') && jQuery('.cd-quick-view280').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation280(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view280').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view280').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view280').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view280').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view280').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view280').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation280(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view280').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_10 .ajax-loading279").css("visibility", "hidden");
				jQuery(".woosmart_layout_10 .woosmart_view_wishlist279").hide();
                jQuery('.woosmart_layout_10 .woosmart_add_to_wishlist279').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 279;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_10 .ajax-loading279").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:279},
						complete: function(){
							jQuery(".woosmart_layout_10 .ajax-loading279").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist279").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-already-in-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-already-in-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-already-in-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-already-in-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist279").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-added-to-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-added-to-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-added-to-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-added-to-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger279').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item279').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close279') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view279').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view279').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper279').find('.cd-slider279'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view279 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view279').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view279').height())/2;
		jQuery('.cd-quick-view279').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView279(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close279'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper279').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info279').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view279').hasClass('velocity-animating') && jQuery('.cd-quick-view279').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation279(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view279').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view279').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view279').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view279').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view279').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view279').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation279(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view279').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_10 .ajax-loading278").css("visibility", "hidden");
				jQuery(".woosmart_layout_10 .woosmart_view_wishlist278").hide();
                jQuery('.woosmart_layout_10 .woosmart_add_to_wishlist278').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 278;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_10 .ajax-loading278").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:278},
						complete: function(){
							jQuery(".woosmart_layout_10 .ajax-loading278").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist278").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-already-in-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-already-in-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-already-in-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-already-in-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist278").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-added-to-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-added-to-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-added-to-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-added-to-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger278').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item278').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close278') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view278').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view278').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper278').find('.cd-slider278'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view278 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view278').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view278').height())/2;
		jQuery('.cd-quick-view278').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView278(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close278'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper278').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info278').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view278').hasClass('velocity-animating') && jQuery('.cd-quick-view278').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation278(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view278').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view278').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view278').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view278').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view278').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view278').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation278(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view278').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_10 .ajax-loading277").css("visibility", "hidden");
				jQuery(".woosmart_layout_10 .woosmart_view_wishlist277").hide();
                jQuery('.woosmart_layout_10 .woosmart_add_to_wishlist277').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 277;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_10 .ajax-loading277").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:277},
						complete: function(){
							jQuery(".woosmart_layout_10 .ajax-loading277").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist277").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-already-in-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-already-in-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-already-in-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-already-in-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_10 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_10 .woosmart_view_wishlist277").css('display','inline-block');
								jQuery(".woosmart_layout_10 .product-added-to-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_10 .product-added-to-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_10 .product-added-to-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_10 .product-added-to-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger277').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item277').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close277') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView277( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView277( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view277').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view277').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper277').find('.cd-slider277'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view277 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view277').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view277').height())/2;
		jQuery('.cd-quick-view277').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView277(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close277'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper277').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info277').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view277').hasClass('velocity-animating') && jQuery('.cd-quick-view277').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation277(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item277'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view277').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view277').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view277').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view277').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view277').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view277').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation277(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item277'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view277').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading242").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist242").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist242').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 242;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading242").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:242},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading242").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist242").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist242").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist242").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist242").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist242").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist242").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist242").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist242").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist242").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist242").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist242").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist242").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger242').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item242').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close242') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView242( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView242( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view242').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view242').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper242').find('.cd-slider242'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view242 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view242').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view242').height())/2;
		jQuery('.cd-quick-view242').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView242(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close242'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper242').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info242').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view242').hasClass('velocity-animating') && jQuery('.cd-quick-view242').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation242(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item242'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view242').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view242').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view242').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view242').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view242').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view242').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation242(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item242'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view242').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading235").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist235").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist235').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 235;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading235").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:235},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading235").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist235").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist235").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist235").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist235").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist235").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist235").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist235").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist235").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist235").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist235").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist235").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist235").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger235').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item235').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close235') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView235( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView235( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view235').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view235').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper235').find('.cd-slider235'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view235 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view235').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view235').height())/2;
		jQuery('.cd-quick-view235').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView235(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close235'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper235').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info235').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view235').hasClass('velocity-animating') && jQuery('.cd-quick-view235').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation235(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item235'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view235').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view235').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view235').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view235').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view235').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view235').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation235(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item235'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view235').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading234").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist234").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist234').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 234;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading234").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:234},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading234").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist234").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist234").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist234").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist234").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist234").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist234").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist234").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist234").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist234").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist234").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist234").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist234").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger234').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item234').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close234') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView234( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView234( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view234').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view234').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper234').find('.cd-slider234'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view234 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view234').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view234').height())/2;
		jQuery('.cd-quick-view234').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView234(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close234'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper234').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info234').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view234').hasClass('velocity-animating') && jQuery('.cd-quick-view234').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation234(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item234'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view234').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view234').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view234').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view234').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view234').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view234').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation234(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item234'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view234').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading233").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist233").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist233').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 233;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading233").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:233},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading233").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist233").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist233").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist233").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist233").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist233").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist233").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist233").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist233").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist233").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist233").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist233").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist233").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger233').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item233').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close233') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView233( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView233( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view233').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view233').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper233').find('.cd-slider233'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view233 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view233').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view233').height())/2;
		jQuery('.cd-quick-view233').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView233(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close233'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper233').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info233').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view233').hasClass('velocity-animating') && jQuery('.cd-quick-view233').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation233(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item233'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view233').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view233').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view233').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view233').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view233').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view233').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation233(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item233'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view233').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading232").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist232").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist232').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 232;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading232").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:232},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading232").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist232").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist232").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist232").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist232").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist232").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist232").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist232").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist232").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist232").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist232").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist232").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist232").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger232').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item232').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close232') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView232( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView232( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view232').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view232').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper232').find('.cd-slider232'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view232 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view232').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view232').height())/2;
		jQuery('.cd-quick-view232').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView232(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close232'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper232').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info232').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view232').hasClass('velocity-animating') && jQuery('.cd-quick-view232').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation232(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item232'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view232').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view232').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view232').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view232').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view232').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view232').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation232(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item232'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view232').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading231").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist231").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist231').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 231;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading231").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:231},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading231").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist231").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist231").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist231").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist231").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist231").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist231").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist231").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist231").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist231").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist231").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist231").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist231").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger231').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item231').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close231') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView231( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView231( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view231').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view231').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper231').find('.cd-slider231'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view231 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view231').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view231').height())/2;
		jQuery('.cd-quick-view231').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView231(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close231'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper231').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info231').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view231').hasClass('velocity-animating') && jQuery('.cd-quick-view231').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation231(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item231'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view231').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view231').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view231').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view231').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view231').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view231').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation231(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item231'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view231').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading230").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist230").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist230').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 230;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading230").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:230},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading230").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist230").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist230").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist230").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist230").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist230").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist230").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist230").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist230").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist230").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist230").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist230").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist230").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger230').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item230').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close230') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView230( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView230( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view230').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view230').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper230').find('.cd-slider230'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view230 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view230').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view230').height())/2;
		jQuery('.cd-quick-view230').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView230(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close230'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper230').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info230').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view230').hasClass('velocity-animating') && jQuery('.cd-quick-view230').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation230(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item230'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view230').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view230').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view230').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view230').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view230').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view230').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation230(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item230'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view230').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_11 .ajax-loading226").css("visibility", "hidden");
				jQuery(".woosmart_layout_11 .woosmart_view_wishlist226").hide();
                jQuery('.woosmart_layout_11 .woosmart_add_to_wishlist226').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 226;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_11 .ajax-loading226").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:226},
						complete: function(){
							jQuery(".woosmart_layout_11 .ajax-loading226").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist226").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist226").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-already-in-wishlist226").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-already-in-wishlist226").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-already-in-wishlist226").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-already-in-wishlist226").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_11 .woosmart_add_to_wishlist226").remove();
								jQuery(".woosmart_layout_11 .woosmart_view_wishlist226").css('display','inline-block');
								jQuery(".woosmart_layout_11 .product-added-to-wishlist226").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_11 .product-added-to-wishlist226").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_11 .product-added-to-wishlist226").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_11 .product-added-to-wishlist226").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger226').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item226').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close226') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView226( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView226( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view226').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view226').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper226').find('.cd-slider226'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view226 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view226').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view226').height())/2;
		jQuery('.cd-quick-view226').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView226(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close226'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper226').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info226').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view226').hasClass('velocity-animating') && jQuery('.cd-quick-view226').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation226(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item226'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view226').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view226').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view226').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view226').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view226').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view226').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation226(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item226'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view226').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_12 .ajax-loading66").css("visibility", "hidden");
				jQuery(".woosmart_layout_12 .woosmart_view_wishlist66").hide();
                jQuery('.woosmart_layout_12 .woosmart_add_to_wishlist66').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 66;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_12 .ajax-loading66").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:66},
						complete: function(){
							jQuery(".woosmart_layout_12 .ajax-loading66").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist66").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-already-in-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-already-in-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-already-in-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-already-in-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist66").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-added-to-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-added-to-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-added-to-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-added-to-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger66').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item66').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close66') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view66').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view66').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper66').find('.cd-slider66'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view66 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view66').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view66').height())/2;
		jQuery('.cd-quick-view66').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView66(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close66'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper66').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info66').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view66').hasClass('velocity-animating') && jQuery('.cd-quick-view66').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation66(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view66').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view66').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view66').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view66').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view66').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view66').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation66(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view66').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_12 .ajax-loading200").css("visibility", "hidden");
				jQuery(".woosmart_layout_12 .woosmart_view_wishlist200").hide();
                jQuery('.woosmart_layout_12 .woosmart_add_to_wishlist200').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 200;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_12 .ajax-loading200").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:200},
						complete: function(){
							jQuery(".woosmart_layout_12 .ajax-loading200").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist200").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-already-in-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-already-in-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-already-in-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-already-in-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist200").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-added-to-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-added-to-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-added-to-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-added-to-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger200').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item200').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close200') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view200').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view200').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper200').find('.cd-slider200'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view200 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view200').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view200').height())/2;
		jQuery('.cd-quick-view200').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView200(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close200'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper200').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info200').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view200').hasClass('velocity-animating') && jQuery('.cd-quick-view200').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation200(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view200').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view200').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view200').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view200').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view200').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view200').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation200(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view200').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_12 .ajax-loading18").css("visibility", "hidden");
				jQuery(".woosmart_layout_12 .woosmart_view_wishlist18").hide();
                jQuery('.woosmart_layout_12 .woosmart_add_to_wishlist18').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 18;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_12 .ajax-loading18").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:18},
						complete: function(){
							jQuery(".woosmart_layout_12 .ajax-loading18").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist18").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist18").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-already-in-wishlist18").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-already-in-wishlist18").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-already-in-wishlist18").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-already-in-wishlist18").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist18").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist18").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-added-to-wishlist18").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-added-to-wishlist18").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-added-to-wishlist18").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-added-to-wishlist18").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger18').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item18').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close18') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView18( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView18( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view18').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view18').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper18').find('.cd-slider18'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view18 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view18').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view18').height())/2;
		jQuery('.cd-quick-view18').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView18(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close18'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper18').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info18').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view18').hasClass('velocity-animating') && jQuery('.cd-quick-view18').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation18(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item18'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view18').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view18').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view18').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view18').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view18').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view18').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation18(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item18'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view18').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_12 .ajax-loading19").css("visibility", "hidden");
				jQuery(".woosmart_layout_12 .woosmart_view_wishlist19").hide();
                jQuery('.woosmart_layout_12 .woosmart_add_to_wishlist19').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 19;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_12 .ajax-loading19").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:19},
						complete: function(){
							jQuery(".woosmart_layout_12 .ajax-loading19").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist19").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-already-in-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-already-in-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-already-in-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-already-in-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_12 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_12 .woosmart_view_wishlist19").css('display','inline-block');
								jQuery(".woosmart_layout_12 .product-added-to-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_12 .product-added-to-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_12 .product-added-to-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_12 .product-added-to-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger19').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item19').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close19') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view19').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view19').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper19').find('.cd-slider19'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view19 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view19').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view19').height())/2;
		jQuery('.cd-quick-view19').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView19(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close19'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper19').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info19').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view19').hasClass('velocity-animating') && jQuery('.cd-quick-view19').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation19(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view19').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view19').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view19').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view19').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view19').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view19').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation19(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view19').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_8 .ajax-loading280").css("visibility", "hidden");
				jQuery(".woosmart_layout_8 .woosmart_view_wishlist280").hide();
                jQuery('.woosmart_layout_8 .woosmart_add_to_wishlist280').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 280;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_8 .ajax-loading280").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:280},
						complete: function(){
							jQuery(".woosmart_layout_8 .ajax-loading280").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist280").css('display','block');
								jQuery(".woosmart_layout_8 .product-already-in-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-already-in-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-already-in-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-already-in-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist280").css('display','block');
								jQuery(".woosmart_layout_8 .product-added-to-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-added-to-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-added-to-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-added-to-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger280').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item280').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close280') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view280').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view280').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper280').find('.cd-slider280'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view280 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view280').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view280').height())/2;
		jQuery('.cd-quick-view280').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView280(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close280'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper280').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info280').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view280').hasClass('velocity-animating') && jQuery('.cd-quick-view280').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation280(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view280').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view280').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view280').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view280').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view280').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view280').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation280(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view280').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_8 .ajax-loading279").css("visibility", "hidden");
				jQuery(".woosmart_layout_8 .woosmart_view_wishlist279").hide();
                jQuery('.woosmart_layout_8 .woosmart_add_to_wishlist279').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 279;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_8 .ajax-loading279").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:279},
						complete: function(){
							jQuery(".woosmart_layout_8 .ajax-loading279").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist279").css('display','block');
								jQuery(".woosmart_layout_8 .product-already-in-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-already-in-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-already-in-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-already-in-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist279").css('display','block');
								jQuery(".woosmart_layout_8 .product-added-to-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-added-to-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-added-to-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-added-to-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger279').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item279').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close279') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view279').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view279').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper279').find('.cd-slider279'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view279 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view279').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view279').height())/2;
		jQuery('.cd-quick-view279').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView279(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close279'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper279').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info279').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view279').hasClass('velocity-animating') && jQuery('.cd-quick-view279').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation279(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view279').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view279').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view279').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view279').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view279').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view279').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation279(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view279').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_8 .ajax-loading278").css("visibility", "hidden");
				jQuery(".woosmart_layout_8 .woosmart_view_wishlist278").hide();
                jQuery('.woosmart_layout_8 .woosmart_add_to_wishlist278').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 278;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_8 .ajax-loading278").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:278},
						complete: function(){
							jQuery(".woosmart_layout_8 .ajax-loading278").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist278").css('display','block');
								jQuery(".woosmart_layout_8 .product-already-in-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-already-in-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-already-in-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-already-in-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist278").css('display','block');
								jQuery(".woosmart_layout_8 .product-added-to-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-added-to-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-added-to-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-added-to-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger278').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item278').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close278') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view278').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view278').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper278').find('.cd-slider278'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view278 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view278').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view278').height())/2;
		jQuery('.cd-quick-view278').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView278(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close278'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper278').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info278').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view278').hasClass('velocity-animating') && jQuery('.cd-quick-view278').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation278(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view278').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view278').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view278').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view278').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view278').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view278').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation278(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view278').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_8 .ajax-loading277").css("visibility", "hidden");
				jQuery(".woosmart_layout_8 .woosmart_view_wishlist277").hide();
                jQuery('.woosmart_layout_8 .woosmart_add_to_wishlist277').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 277;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_8 .ajax-loading277").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:277},
						complete: function(){
							jQuery(".woosmart_layout_8 .ajax-loading277").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist277").css('display','block');
								jQuery(".woosmart_layout_8 .product-already-in-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-already-in-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-already-in-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-already-in-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_8 .woosmart_add_to_wishlist277").remove();
								jQuery(".woosmart_layout_8 .woosmart_view_wishlist277").css('display','block');
								jQuery(".woosmart_layout_8 .product-added-to-wishlist277").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_8 .product-added-to-wishlist277").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_8 .product-added-to-wishlist277").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_8 .product-added-to-wishlist277").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger277').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item277').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close277') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView277( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView277( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view277').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view277').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper277').find('.cd-slider277'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view277 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view277').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view277').height())/2;
		jQuery('.cd-quick-view277').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView277(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close277'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper277').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info277').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view277').hasClass('velocity-animating') && jQuery('.cd-quick-view277').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation277(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item277'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view277').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view277').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view277').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view277').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view277').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view277').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation277(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item277'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view277').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_14 .ajax-loading280").css("visibility", "hidden");
				jQuery(".woosmart_layout_14 .woosmart_view_wishlist280").hide();
                jQuery('.woosmart_layout_14 .woosmart_add_to_wishlist280').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 280;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_14 .ajax-loading280").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:280},
						complete: function(){
							jQuery(".woosmart_layout_14 .ajax-loading280").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_14 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_14 .woosmart_view_wishlist280").css('display','inline-block');
								jQuery(".woosmart_layout_14 .product-already-in-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_14 .product-already-in-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_14 .product-already-in-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_14 .product-already-in-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_14 .woosmart_add_to_wishlist280").remove();
								jQuery(".woosmart_layout_14 .woosmart_view_wishlist280").css('display','inline-block');
								jQuery(".woosmart_layout_14 .product-added-to-wishlist280").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_14 .product-added-to-wishlist280").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_14 .product-added-to-wishlist280").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_14 .product-added-to-wishlist280").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger280').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item280').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close280') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView280( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view280').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view280').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper280').find('.cd-slider280'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view280 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view280').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view280').height())/2;
		jQuery('.cd-quick-view280').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView280(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close280'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper280').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info280').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view280').hasClass('velocity-animating') && jQuery('.cd-quick-view280').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation280(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view280').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view280').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view280').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view280').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view280').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view280').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation280(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item280'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view280').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_14 .ajax-loading279").css("visibility", "hidden");
				jQuery(".woosmart_layout_14 .woosmart_view_wishlist279").hide();
                jQuery('.woosmart_layout_14 .woosmart_add_to_wishlist279').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 279;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_14 .ajax-loading279").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:279},
						complete: function(){
							jQuery(".woosmart_layout_14 .ajax-loading279").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_14 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_14 .woosmart_view_wishlist279").css('display','inline-block');
								jQuery(".woosmart_layout_14 .product-already-in-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_14 .product-already-in-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_14 .product-already-in-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_14 .product-already-in-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_14 .woosmart_add_to_wishlist279").remove();
								jQuery(".woosmart_layout_14 .woosmart_view_wishlist279").css('display','inline-block');
								jQuery(".woosmart_layout_14 .product-added-to-wishlist279").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_14 .product-added-to-wishlist279").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_14 .product-added-to-wishlist279").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_14 .product-added-to-wishlist279").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger279').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item279').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close279') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView279( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view279').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view279').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper279').find('.cd-slider279'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view279 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view279').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view279').height())/2;
		jQuery('.cd-quick-view279').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView279(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close279'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper279').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info279').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view279').hasClass('velocity-animating') && jQuery('.cd-quick-view279').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation279(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view279').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view279').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view279').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view279').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view279').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view279').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation279(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item279'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view279').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_14 .ajax-loading278").css("visibility", "hidden");
				jQuery(".woosmart_layout_14 .woosmart_view_wishlist278").hide();
                jQuery('.woosmart_layout_14 .woosmart_add_to_wishlist278').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 278;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_14 .ajax-loading278").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:278},
						complete: function(){
							jQuery(".woosmart_layout_14 .ajax-loading278").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_14 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_14 .woosmart_view_wishlist278").css('display','inline-block');
								jQuery(".woosmart_layout_14 .product-already-in-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_14 .product-already-in-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_14 .product-already-in-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_14 .product-already-in-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_14 .woosmart_add_to_wishlist278").remove();
								jQuery(".woosmart_layout_14 .woosmart_view_wishlist278").css('display','inline-block');
								jQuery(".woosmart_layout_14 .product-added-to-wishlist278").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_14 .product-added-to-wishlist278").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_14 .product-added-to-wishlist278").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_14 .product-added-to-wishlist278").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger278').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item278').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close278') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView278( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view278').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view278').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper278').find('.cd-slider278'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view278 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view278').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view278').height())/2;
		jQuery('.cd-quick-view278').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView278(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close278'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper278').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info278').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view278').hasClass('velocity-animating') && jQuery('.cd-quick-view278').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation278(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view278').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view278').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view278').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view278').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view278').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view278').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation278(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item278'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view278').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading66").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist66").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist66').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 66;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading66").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:66},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading66").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist66").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist66").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger66').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item66').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close66') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view66').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view66').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper66').find('.cd-slider66'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view66 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view66').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view66').height())/2;
		jQuery('.cd-quick-view66').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView66(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close66'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper66').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info66').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view66').hasClass('velocity-animating') && jQuery('.cd-quick-view66').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation66(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view66').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view66').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view66').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view66').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view66').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view66').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation66(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view66').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading200").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist200").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist200').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 200;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading200").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:200},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading200").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist200").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist200").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger200').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item200').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close200') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view200').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view200').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper200').find('.cd-slider200'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view200 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view200').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view200').height())/2;
		jQuery('.cd-quick-view200').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView200(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close200'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper200').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info200').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view200').hasClass('velocity-animating') && jQuery('.cd-quick-view200').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation200(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view200').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view200').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view200').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view200').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view200').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view200').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation200(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view200').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading18").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist18").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist18').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 18;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading18").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:18},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading18").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist18").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist18").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist18").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist18").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist18").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist18").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist18").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist18").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist18").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist18").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist18").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist18").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger18').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item18').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close18') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView18( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView18( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view18').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view18').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper18').find('.cd-slider18'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view18 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view18').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view18').height())/2;
		jQuery('.cd-quick-view18').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView18(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close18'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper18').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info18').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view18').hasClass('velocity-animating') && jQuery('.cd-quick-view18').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation18(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item18'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view18').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view18').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view18').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view18').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view18').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view18').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation18(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item18'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view18').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading19").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist19").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist19').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 19;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading19").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:19},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading19").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist19").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist19").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger19').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item19').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close19') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view19').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view19').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper19').find('.cd-slider19'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view19 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view19').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view19').height())/2;
		jQuery('.cd-quick-view19').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView19(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close19'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper19').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info19').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view19').hasClass('velocity-animating') && jQuery('.cd-quick-view19').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation19(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view19').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view19').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view19').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view19').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view19').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view19').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation19(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view19').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading20").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist20").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist20').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 20;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading20").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:20},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading20").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist20").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist20").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist20").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist20").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist20").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist20").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist20").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist20").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist20").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist20").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist20").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist20").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger20').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item20').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close20') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView20( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView20( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view20').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view20').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper20').find('.cd-slider20'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view20 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view20').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view20').height())/2;
		jQuery('.cd-quick-view20').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView20(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close20'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper20').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info20').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view20').hasClass('velocity-animating') && jQuery('.cd-quick-view20').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation20(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item20'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view20').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view20').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view20').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view20').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view20').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view20').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation20(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item20'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view20').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading21").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist21").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist21').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 21;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading21").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:21},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading21").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist21").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist21").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger21').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item21').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close21') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view21').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view21').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper21').find('.cd-slider21'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view21 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view21').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view21').height())/2;
		jQuery('.cd-quick-view21').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView21(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close21'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper21').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info21').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view21').hasClass('velocity-animating') && jQuery('.cd-quick-view21').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation21(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view21').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view21').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view21').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view21').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view21').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view21').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation21(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view21').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading22").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist22").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist22').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 22;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading22").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:22},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading22").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist22").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist22").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist22").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist22").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist22").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist22").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist22").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist22").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist22").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist22").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist22").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist22").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger22').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item22').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close22') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView22( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView22( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view22').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view22').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper22').find('.cd-slider22'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view22 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view22').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view22').height())/2;
		jQuery('.cd-quick-view22').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView22(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close22'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper22').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info22').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view22').hasClass('velocity-animating') && jQuery('.cd-quick-view22').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation22(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item22'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view22').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view22').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view22').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view22').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view22').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view22').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation22(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item22'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view22').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_2 .ajax-loading23").css("visibility", "hidden");
				jQuery(".woosmart_layout_2 .woosmart_view_wishlist23").hide();
                jQuery('.woosmart_layout_2 .woosmart_add_to_wishlist23').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 23;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_2 .ajax-loading23").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:23},
						complete: function(){
							jQuery(".woosmart_layout_2 .ajax-loading23").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist23").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist23").show();
								jQuery(".woosmart_layout_2 .product-already-in-wishlist23").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-already-in-wishlist23").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-already-in-wishlist23").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-already-in-wishlist23").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_2 .woosmart_add_to_wishlist23").remove();
								jQuery(".woosmart_layout_2 .woosmart_view_wishlist23").show();
								jQuery(".woosmart_layout_2 .product-added-to-wishlist23").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_2 .product-added-to-wishlist23").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_2 .product-added-to-wishlist23").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_2 .product-added-to-wishlist23").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger23').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item23').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close23') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView23( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView23( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view23').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view23').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper23').find('.cd-slider23'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view23 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view23').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view23').height())/2;
		jQuery('.cd-quick-view23').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView23(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close23'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper23').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info23').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view23').hasClass('velocity-animating') && jQuery('.cd-quick-view23').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation23(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item23'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view23').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view23').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view23').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view23').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view23').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view23').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation23(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item23'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view23').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger242').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item242').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close242') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView242( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView242( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view242').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view242').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper242').find('.cd-slider242'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view242 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view242').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view242').height())/2;
		jQuery('.cd-quick-view242').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView242(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close242'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper242').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info242').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view242').hasClass('velocity-animating') && jQuery('.cd-quick-view242').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation242(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item242'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view242').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view242').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view242').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view242').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view242').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view242').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation242(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item242'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view242').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger235').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item235').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close235') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView235( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView235( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view235').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view235').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper235').find('.cd-slider235'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view235 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view235').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view235').height())/2;
		jQuery('.cd-quick-view235').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView235(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close235'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper235').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info235').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view235').hasClass('velocity-animating') && jQuery('.cd-quick-view235').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation235(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item235'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view235').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view235').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view235').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view235').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view235').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view235').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation235(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item235'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view235').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger234').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item234').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close234') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView234( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView234( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view234').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view234').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper234').find('.cd-slider234'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view234 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view234').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view234').height())/2;
		jQuery('.cd-quick-view234').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView234(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close234'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper234').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info234').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view234').hasClass('velocity-animating') && jQuery('.cd-quick-view234').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation234(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item234'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view234').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view234').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view234').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view234').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view234').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view234').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation234(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item234'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view234').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger233').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item233').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close233') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView233( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView233( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view233').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view233').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper233').find('.cd-slider233'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view233 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view233').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view233').height())/2;
		jQuery('.cd-quick-view233').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView233(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close233'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper233').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info233').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view233').hasClass('velocity-animating') && jQuery('.cd-quick-view233').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation233(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item233'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view233').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view233').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view233').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view233').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view233').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view233').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation233(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item233'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view233').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger232').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item232').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close232') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView232( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView232( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view232').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view232').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper232').find('.cd-slider232'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view232 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view232').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view232').height())/2;
		jQuery('.cd-quick-view232').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView232(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close232'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper232').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info232').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view232').hasClass('velocity-animating') && jQuery('.cd-quick-view232').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation232(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item232'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view232').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view232').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view232').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view232').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view232').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view232').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation232(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item232'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view232').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger231').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item231').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close231') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView231( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView231( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view231').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view231').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper231').find('.cd-slider231'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view231 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view231').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view231').height())/2;
		jQuery('.cd-quick-view231').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView231(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close231'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper231').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info231').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view231').hasClass('velocity-animating') && jQuery('.cd-quick-view231').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation231(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item231'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view231').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view231').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view231').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view231').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view231').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view231').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation231(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item231'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view231').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger230').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item230').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close230') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView230( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView230( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view230').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view230').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper230').find('.cd-slider230'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view230 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view230').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view230').height())/2;
		jQuery('.cd-quick-view230').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView230(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close230'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper230').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info230').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view230').hasClass('velocity-animating') && jQuery('.cd-quick-view230').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation230(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item230'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view230').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view230').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view230').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view230').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view230').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view230').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation230(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item230'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view230').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger226').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item226').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close226') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView226( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView226( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view226').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view226').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper226').find('.cd-slider226'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view226 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view226').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view226').height())/2;
		jQuery('.cd-quick-view226').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView226(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close226'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper226').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info226').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view226').hasClass('velocity-animating') && jQuery('.cd-quick-view226').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation226(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item226'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view226').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view226').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view226').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view226').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view226').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view226').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation226(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item226'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view226').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading66").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist66").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist66').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 66;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading66").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:66},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading66").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist66").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist66").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger66').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item66').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close66') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view66').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view66').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper66').find('.cd-slider66'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view66 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view66').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view66').height())/2;
		jQuery('.cd-quick-view66').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView66(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close66'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper66').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info66').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view66').hasClass('velocity-animating') && jQuery('.cd-quick-view66').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation66(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view66').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view66').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view66').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view66').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view66').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view66').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation66(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view66').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading200").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist200").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist200').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 200;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading200").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:200},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading200").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist200").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist200").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger200').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item200').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close200') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view200').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view200').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper200').find('.cd-slider200'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view200 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view200').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view200').height())/2;
		jQuery('.cd-quick-view200').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView200(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close200'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper200').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info200').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view200').hasClass('velocity-animating') && jQuery('.cd-quick-view200').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation200(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view200').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view200').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view200').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view200').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view200').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view200').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation200(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view200').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading19").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist19").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist19').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 19;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading19").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:19},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading19").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist19").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist19").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger19').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item19').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close19') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view19').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view19').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper19').find('.cd-slider19'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view19 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view19').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view19').height())/2;
		jQuery('.cd-quick-view19').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView19(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close19'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper19').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info19').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view19').hasClass('velocity-animating') && jQuery('.cd-quick-view19').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation19(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view19').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view19').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view19').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view19').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view19').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view19').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation19(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view19').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading21").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist21").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist21').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 21;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading21").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:21},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading21").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist21").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist21").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger21').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item21').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close21') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view21').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view21').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper21').find('.cd-slider21'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view21 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view21').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view21').height())/2;
		jQuery('.cd-quick-view21').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView21(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close21'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper21').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info21').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view21').hasClass('velocity-animating') && jQuery('.cd-quick-view21').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation21(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view21').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view21').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view21').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view21').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view21').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view21').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation21(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view21').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading24").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist24").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist24').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 24;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading24").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:24},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading24").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist24").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist24").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist24").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist24").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist24").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist24").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist24").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist24").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist24").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist24").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist24").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist24").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger24').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item24').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close24') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView24( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView24( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view24').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view24').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper24').find('.cd-slider24'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view24 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view24').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view24').height())/2;
		jQuery('.cd-quick-view24').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView24(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close24'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper24').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info24').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view24').hasClass('velocity-animating') && jQuery('.cd-quick-view24').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation24(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item24'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view24').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view24').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view24').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view24').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view24').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view24').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation24(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item24'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view24').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading27").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist27").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist27').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 27;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading27").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:27},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading27").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist27").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist27").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist27").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist27").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist27").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist27").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist27").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist27").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist27").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist27").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist27").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist27").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger27').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item27').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close27') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView27( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView27( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view27').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view27').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper27').find('.cd-slider27'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view27 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view27').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view27').height())/2;
		jQuery('.cd-quick-view27').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView27(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close27'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper27').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info27').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view27').hasClass('velocity-animating') && jQuery('.cd-quick-view27').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation27(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item27'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view27').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view27').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view27').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view27').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view27').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view27').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation27(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item27'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view27').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading28").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist28").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist28').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 28;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading28").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:28},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading28").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist28").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist28").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist28").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist28").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist28").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist28").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist28").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist28").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist28").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist28").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist28").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist28").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger28').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item28').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close28') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView28( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView28( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view28').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view28').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper28').find('.cd-slider28'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view28 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view28').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view28').height())/2;
		jQuery('.cd-quick-view28').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView28(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close28'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper28').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info28').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view28').hasClass('velocity-animating') && jQuery('.cd-quick-view28').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation28(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item28'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view28').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view28').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view28').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view28').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view28').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view28').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation28(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item28'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view28').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_4 .ajax-loading202").css("visibility", "hidden");
				jQuery(".woosmart_layout_4 .woosmart_view_wishlist202").hide();
                jQuery('.woosmart_layout_4 .woosmart_add_to_wishlist202').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 202;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_4 .ajax-loading202").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:202},
						complete: function(){
							jQuery(".woosmart_layout_4 .ajax-loading202").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist202").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist202").css('display','block');
								jQuery(".woosmart_layout_4 .product-already-in-wishlist202").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-already-in-wishlist202").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-already-in-wishlist202").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-already-in-wishlist202").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_4 .woosmart_add_to_wishlist202").remove();
								jQuery(".woosmart_layout_4 .woosmart_view_wishlist202").css('display','block');
								jQuery(".woosmart_layout_4 .product-added-to-wishlist202").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_4 .product-added-to-wishlist202").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_4 .product-added-to-wishlist202").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_4 .product-added-to-wishlist202").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger202').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item202').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close202') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView202( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView202( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view202').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view202').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper202').find('.cd-slider202'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view202 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view202').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view202').height())/2;
		jQuery('.cd-quick-view202').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView202(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close202'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper202').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info202').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view202').hasClass('velocity-animating') && jQuery('.cd-quick-view202').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation202(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item202'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view202').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view202').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view202').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view202').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view202').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view202').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation202(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item202'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view202').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading66").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist66").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist66').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 66;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading66").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:66},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading66").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist66").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist66").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger66').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item66').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close66') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view66').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view66').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper66').find('.cd-slider66'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view66 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view66').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view66').height())/2;
		jQuery('.cd-quick-view66').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView66(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close66'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper66').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info66').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view66').hasClass('velocity-animating') && jQuery('.cd-quick-view66').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation66(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view66').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view66').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view66').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view66').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view66').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view66').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation66(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view66').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading200").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist200").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist200').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 200;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading200").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:200},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading200").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist200").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist200").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger200').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item200').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close200') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view200').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view200').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper200').find('.cd-slider200'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view200 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view200').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view200').height())/2;
		jQuery('.cd-quick-view200').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView200(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close200'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper200').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info200').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view200').hasClass('velocity-animating') && jQuery('.cd-quick-view200').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation200(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view200').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view200').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view200').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view200').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view200').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view200').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation200(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view200').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading19").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist19").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist19').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 19;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading19").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:19},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading19").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist19").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist19").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger19').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item19').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close19') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view19').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view19').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper19').find('.cd-slider19'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view19 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view19').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view19').height())/2;
		jQuery('.cd-quick-view19').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView19(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close19'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper19').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info19').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view19').hasClass('velocity-animating') && jQuery('.cd-quick-view19').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation19(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view19').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view19').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view19').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view19').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view19').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view19').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation19(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view19').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading21").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist21").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist21').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 21;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading21").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:21},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading21").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist21").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist21").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger21').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item21').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close21') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view21').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view21').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper21').find('.cd-slider21'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view21 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view21').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view21').height())/2;
		jQuery('.cd-quick-view21').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView21(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close21'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper21').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info21').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view21').hasClass('velocity-animating') && jQuery('.cd-quick-view21').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation21(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view21').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view21').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view21').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view21').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view21').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view21').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation21(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view21').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading24").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist24").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist24').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 24;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading24").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:24},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading24").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist24").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist24").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist24").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist24").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist24").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist24").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist24").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist24").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist24").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist24").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist24").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist24").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger24').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item24').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close24') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView24( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView24( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view24').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view24').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper24').find('.cd-slider24'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view24 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view24').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view24').height())/2;
		jQuery('.cd-quick-view24').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView24(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close24'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper24').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info24').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view24').hasClass('velocity-animating') && jQuery('.cd-quick-view24').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation24(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item24'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view24').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view24').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view24').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view24').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view24').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view24').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation24(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item24'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view24').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading27").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist27").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist27').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 27;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading27").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:27},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading27").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist27").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist27").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist27").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist27").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist27").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist27").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist27").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist27").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist27").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist27").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist27").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist27").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger27').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item27').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close27') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView27( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView27( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view27').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view27').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper27').find('.cd-slider27'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view27 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view27').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view27').height())/2;
		jQuery('.cd-quick-view27').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView27(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close27'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper27').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info27').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view27').hasClass('velocity-animating') && jQuery('.cd-quick-view27').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation27(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item27'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view27').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view27').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view27').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view27').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view27').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view27').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation27(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item27'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view27').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading28").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist28").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist28').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 28;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading28").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:28},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading28").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist28").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist28").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist28").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist28").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist28").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist28").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist28").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist28").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist28").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist28").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist28").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist28").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger28').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item28').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close28') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView28( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView28( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view28').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view28').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper28').find('.cd-slider28'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view28 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view28').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view28').height())/2;
		jQuery('.cd-quick-view28').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView28(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close28'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper28').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info28').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view28').hasClass('velocity-animating') && jQuery('.cd-quick-view28').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation28(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item28'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view28').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view28').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view28').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view28').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view28').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view28').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation28(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item28'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view28').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_15 .ajax-loading202").css("visibility", "hidden");
				jQuery(".woosmart_layout_15 .woosmart_view_wishlist202").hide();
                jQuery('.woosmart_layout_15 .woosmart_add_to_wishlist202').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 202;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_15 .ajax-loading202").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:202},
						complete: function(){
							jQuery(".woosmart_layout_15 .ajax-loading202").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist202").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist202").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-already-in-wishlist202").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-already-in-wishlist202").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-already-in-wishlist202").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-already-in-wishlist202").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_15 .woosmart_add_to_wishlist202").remove();
								jQuery(".woosmart_layout_15 .woosmart_view_wishlist202").css('display','inline-block');
								jQuery(".woosmart_layout_15 .product-added-to-wishlist202").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_15 .product-added-to-wishlist202").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_15 .product-added-to-wishlist202").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_15 .product-added-to-wishlist202").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger202').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item202').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close202') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView202( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView202( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view202').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view202').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper202').find('.cd-slider202'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view202 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view202').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view202').height())/2;
		jQuery('.cd-quick-view202').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView202(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close202'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper202').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info202').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view202').hasClass('velocity-animating') && jQuery('.cd-quick-view202').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation202(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item202'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view202').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view202').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view202').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view202').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view202').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view202').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation202(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item202'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view202').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading66").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist66").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist66').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 66;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading66").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:66},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading66").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist66").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist66").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist66").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist66").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist66").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist66").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist66").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger66').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item66').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close66') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView66( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view66').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view66').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper66').find('.cd-slider66'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view66 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view66').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view66').height())/2;
		jQuery('.cd-quick-view66').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView66(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close66'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper66').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info66').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view66').hasClass('velocity-animating') && jQuery('.cd-quick-view66').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation66(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view66').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view66').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view66').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view66').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view66').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view66').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation66(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item66'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view66').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading200").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist200").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist200').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 200;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading200").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:200},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading200").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist200").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist200").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist200").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist200").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist200").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist200").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist200").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger200').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item200').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close200') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView200( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view200').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view200').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper200').find('.cd-slider200'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view200 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view200').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view200').height())/2;
		jQuery('.cd-quick-view200').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView200(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close200'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper200').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info200').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view200').hasClass('velocity-animating') && jQuery('.cd-quick-view200').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation200(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view200').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view200').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view200').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view200').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view200').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view200').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation200(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item200'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view200').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading19").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist19").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist19').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 19;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading19").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:19},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading19").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist19").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist19").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist19").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist19").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist19").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist19").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist19").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger19').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item19').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close19') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView19( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view19').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view19').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper19').find('.cd-slider19'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view19 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view19').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view19').height())/2;
		jQuery('.cd-quick-view19').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView19(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close19'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper19').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info19').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view19').hasClass('velocity-animating') && jQuery('.cd-quick-view19').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation19(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view19').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view19').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view19').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view19').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view19').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view19').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation19(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item19'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view19').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading21").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist21").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist21').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 21;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading21").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:21},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading21").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist21").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist21").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist21").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist21").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist21").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist21").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist21").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger21').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item21').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close21') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView21( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view21').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view21').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper21').find('.cd-slider21'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view21 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view21').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view21').height())/2;
		jQuery('.cd-quick-view21').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView21(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close21'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper21').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info21').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view21').hasClass('velocity-animating') && jQuery('.cd-quick-view21').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation21(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view21').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view21').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view21').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view21').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view21').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view21').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation21(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item21'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view21').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading24").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist24").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist24').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 24;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading24").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:24},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading24").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist24").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist24").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist24").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist24").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist24").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist24").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist24").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist24").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist24").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist24").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist24").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist24").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger24').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item24').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close24') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView24( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView24( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view24').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view24').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper24').find('.cd-slider24'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view24 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view24').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view24').height())/2;
		jQuery('.cd-quick-view24').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView24(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close24'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper24').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info24').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view24').hasClass('velocity-animating') && jQuery('.cd-quick-view24').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation24(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item24'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view24').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view24').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view24').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view24').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view24').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view24').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation24(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item24'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view24').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading27").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist27").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist27').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 27;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading27").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:27},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading27").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist27").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist27").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist27").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist27").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist27").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist27").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist27").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist27").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist27").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist27").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist27").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist27").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger27').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item27').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close27') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView27( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView27( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view27').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view27').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper27').find('.cd-slider27'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view27 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view27').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view27').height())/2;
		jQuery('.cd-quick-view27').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView27(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close27'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper27').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info27').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view27').hasClass('velocity-animating') && jQuery('.cd-quick-view27').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation27(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item27'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view27').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view27').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view27').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view27').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view27').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view27').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation27(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item27'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view27').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading28").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist28").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist28').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 28;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading28").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:28},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading28").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist28").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist28").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist28").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist28").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist28").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist28").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist28").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist28").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist28").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist28").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist28").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist28").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger28').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item28').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close28') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView28( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView28( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view28').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view28').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper28').find('.cd-slider28'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view28 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view28').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view28').height())/2;
		jQuery('.cd-quick-view28').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView28(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close28'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper28').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info28').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view28').hasClass('velocity-animating') && jQuery('.cd-quick-view28').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation28(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item28'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view28').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view28').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view28').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view28').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view28').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view28').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation28(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item28'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view28').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".woosmart_layout_7 .ajax-loading202").css("visibility", "hidden");
				jQuery(".woosmart_layout_7 .woosmart_view_wishlist202").hide();
                jQuery('.woosmart_layout_7 .woosmart_add_to_wishlist202').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 202;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".woosmart_layout_7 .ajax-loading202").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:202},
						complete: function(){
							jQuery(".woosmart_layout_7 .ajax-loading202").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist202").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist202").css('display','block');
								jQuery(".woosmart_layout_7 .product-already-in-wishlist202").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-already-in-wishlist202").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-already-in-wishlist202").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-already-in-wishlist202").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_layout_7 .woosmart_add_to_wishlist202").remove();
								jQuery(".woosmart_layout_7 .woosmart_view_wishlist202").css('display','block');
								jQuery(".woosmart_layout_7 .product-added-to-wishlist202").fadeIn(1000, function() { 
									jQuery(".woosmart_layout_7 .product-added-to-wishlist202").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".woosmart_layout_7 .product-added-to-wishlist202").fadeOut(1000, function() { 
										jQuery(".woosmart_layout_7 .product-added-to-wishlist202").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<script>
jQuery(document).ready(function(jQuery){
	//final width --> this is the quick view image slider width
	//maxQuickWidth --> this is the max-width of the quick-view panel
	var sliderFinalWidth = 400,
		maxQuickWidth = 900;

	//open the quick view panel
	jQuery('.cd-trigger202').on('click', function(event){
		var selectedImage = jQuery(this).parent('.cd-item202').children('img'),
			slectedImageUrl = selectedImage.attr('src');

		jQuery('body').addClass('overlay-layer');
		animateQuickView(selectedImage, sliderFinalWidth, maxQuickWidth, 'open');

		//update the visible slider image in the quick view panel
		//you don't need to implement/use the updateQuickView if retrieving the quick view data with ajax
		updateQuickView(slectedImageUrl);
	});

	//close the quick view panel
	jQuery('body').on('click', function(event){
		if( jQuery(event.target).is('.cd-close202') || jQuery(event.target).is('body.overlay-layer')) {
			closeQuickView202( sliderFinalWidth, maxQuickWidth);
		}
	});
	jQuery(document).keyup(function(event){
		//check if user has pressed 'Esc'
    	if(event.which=='27'){
			closeQuickView202( sliderFinalWidth, maxQuickWidth);
		}
	});

	//quick view slider implementation
	jQuery('.cd-quick-view202').on('click', '.cd-slider-navigation a', function(){
		updateSlider(jQuery(this));
	});

	//center quick-view on window resize
	jQuery(window).on('resize', function(){
		if(jQuery('.cd-quick-view202').hasClass('is-visible')){
			window.requestAnimationFrame(resizeQuickView);
		}
	});

	function updateSlider(navigation) {
		var sliderConatiner = navigation.parents('.cd-slider-wrapper202').find('.cd-slider202'),
			activeSlider = sliderConatiner.children('.selected').removeClass('selected');
		if ( navigation.hasClass('cd-next') ) {
			( !activeSlider.is(':last-child') ) ? activeSlider.next().addClass('selected') : sliderConatiner.children('li').eq(0).addClass('selected'); 
		} else {
			( !activeSlider.is(':first-child') ) ? activeSlider.prev().addClass('selected') : sliderConatiner.children('li').last().addClass('selected');
		} 
	}

	function updateQuickView(url) {
		jQuery('.cd-quick-view202 .cd-slider li').removeClass('selected').find('img[src="'+ url +'"]').parent('li').addClass('selected');
	}

	function resizeQuickView() {
		var quickViewLeft = (jQuery(window).width() - jQuery('.cd-quick-view202').width())/2,
			quickViewTop = (jQuery(window).height() - jQuery('.cd-quick-view202').height())/2;
		jQuery('.cd-quick-view202').css({
		    "top": quickViewTop,
		    "left": quickViewLeft,
		});
	} 

	function closeQuickView202(finalWidth, maxQuickWidth) {
		var close = jQuery('.cd-close202'),
			activeSliderUrl = close.siblings('.cd-slider-wrapper202').find('.selected img').attr('src'),
			selectedImage = jQuery('.cd-item-info202').find('img');
		//update the image in the gallery
		if( !jQuery('.cd-quick-view202').hasClass('velocity-animating') && jQuery('.cd-quick-view202').hasClass('add-content')) {
			selectedImage.attr('src', activeSliderUrl);
			animateQuickView(selectedImage, finalWidth, maxQuickWidth, 'close');
		} else {
			closeNoAnimation202(selectedImage, finalWidth, maxQuickWidth);
		}
	}

	function animateQuickView(image, finalWidth, maxQuickWidth, animationType) {
		//store some image data (width, top position, ...)
		//store window data to calculate quick view panel position
		var parentListItem = image.parent('.cd-item202'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width(),
			heightSelected = image.height(),
			windowWidth = jQuery(window).width(),
			windowHeight = jQuery(window).height(),
			finalLeft = (windowWidth - finalWidth)/2,
			finalHeight = finalWidth * heightSelected/widthSelected,
			finalTop = (windowHeight - finalHeight)/2,
			quickViewWidth = ( windowWidth * .8 < maxQuickWidth ) ? windowWidth * .8 : maxQuickWidth ,
			quickViewLeft = (windowWidth - quickViewWidth)/2;

		if( animationType == 'open') {
			//hide the image in the gallery
			parentListItem.addClass('empty-box');
			//place the quick view over the image gallery and give it the dimension of the gallery image
			jQuery('.cd-quick-view202').css({
			    "top": topSelected,
			    "left": leftSelected,
			    "width": widthSelected,
			}).velocity({
				//animate the quick view: animate its width and center it in the viewport
				//during this animation, only the slider image is visible
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 1000, [ 400, 20 ], function(){
				//animate the quick view: animate its width to the final value
				jQuery('.cd-quick-view202').addClass('animate-width').velocity({
					'left': quickViewLeft+'px',
			    	'width': quickViewWidth+'px',
				}, 300, 'ease' ,function(){
					//show quick view content
					jQuery('.cd-quick-view202').addClass('add-content');
				});
			}).addClass('is-visible');
		} else {
			//close the quick view reverting the animation
			jQuery('.cd-quick-view202').removeClass('add-content').velocity({
			    'top': finalTop+ 'px',
			    'left': finalLeft+'px',
			    'width': finalWidth+'px',
			}, 300, 'ease', function(){
				jQuery('body').removeClass('overlay-layer');
				jQuery('.cd-quick-view202').removeClass('animate-width').velocity({
					"top": topSelected,
				    "left": leftSelected,
				    "width": widthSelected,
				}, 500, 'ease', function(){
					jQuery('.cd-quick-view202').removeClass('is-visible');
					parentListItem.removeClass('empty-box');
				});
			});
		}
	}
	function closeNoAnimation202(image, finalWidth, maxQuickWidth) {
		var parentListItem = image.parent('.cd-item202'),
			topSelected = image.offset().top - jQuery(window).scrollTop(),
			leftSelected = image.offset().left,
			widthSelected = image.width();

		jQuery('body').removeClass('overlay-layer');
		parentListItem.removeClass('empty-box');
		jQuery('.cd-quick-view202').velocity("stop").removeClass('add-content animate-width is-visible').css({
			"top": topSelected,
		    "left": leftSelected,
		    "width": widthSelected,
		});
	}
});
</script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".ajax-loading18").css("visibility", "hidden");
                jQuery('.woosmart_add_to_wishlist18').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 18;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".ajax-loading18").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:18},
						complete: function(){
							jQuery(".ajax-loading18").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_add_to_wishlist18").remove();
								jQuery(".woosmart_wishlist_path18").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");								
								jQuery(".product-already-in-wishlist18").fadeIn(1000, function() { 
									jQuery(".product-already-in-wishlist18").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-already-in-wishlist18").fadeOut(1000, function() { 
										jQuery(".product-already-in-wishlist18").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_add_to_wishlist18").remove();
								jQuery(".woosmart_wishlist_path18").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");
								jQuery(".product-added-to-wishlist18").fadeIn(1000, function() { 
									jQuery(".product-added-to-wishlist18").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-added-to-wishlist18").fadeOut(1000, function() { 
										jQuery(".product-added-to-wishlist18").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".ajax-loading20").css("visibility", "hidden");
                jQuery('.woosmart_add_to_wishlist20').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 20;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".ajax-loading20").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:20},
						complete: function(){
							jQuery(".ajax-loading20").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_add_to_wishlist20").remove();
								jQuery(".woosmart_wishlist_path20").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");								
								jQuery(".product-already-in-wishlist20").fadeIn(1000, function() { 
									jQuery(".product-already-in-wishlist20").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-already-in-wishlist20").fadeOut(1000, function() { 
										jQuery(".product-already-in-wishlist20").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_add_to_wishlist20").remove();
								jQuery(".woosmart_wishlist_path20").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");
								jQuery(".product-added-to-wishlist20").fadeIn(1000, function() { 
									jQuery(".product-added-to-wishlist20").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-added-to-wishlist20").fadeOut(1000, function() { 
										jQuery(".product-added-to-wishlist20").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".ajax-loading22").css("visibility", "hidden");
                jQuery('.woosmart_add_to_wishlist22').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 22;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".ajax-loading22").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:22},
						complete: function(){
							jQuery(".ajax-loading22").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_add_to_wishlist22").remove();
								jQuery(".woosmart_wishlist_path22").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");								
								jQuery(".product-already-in-wishlist22").fadeIn(1000, function() { 
									jQuery(".product-already-in-wishlist22").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-already-in-wishlist22").fadeOut(1000, function() { 
										jQuery(".product-already-in-wishlist22").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_add_to_wishlist22").remove();
								jQuery(".woosmart_wishlist_path22").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");
								jQuery(".product-added-to-wishlist22").fadeIn(1000, function() { 
									jQuery(".product-added-to-wishlist22").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-added-to-wishlist22").fadeOut(1000, function() { 
										jQuery(".product-added-to-wishlist22").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".ajax-loading23").css("visibility", "hidden");
                jQuery('.woosmart_add_to_wishlist23').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 23;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".ajax-loading23").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:23},
						complete: function(){
							jQuery(".ajax-loading23").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_add_to_wishlist23").remove();
								jQuery(".woosmart_wishlist_path23").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");								
								jQuery(".product-already-in-wishlist23").fadeIn(1000, function() { 
									jQuery(".product-already-in-wishlist23").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-already-in-wishlist23").fadeOut(1000, function() { 
										jQuery(".product-already-in-wishlist23").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_add_to_wishlist23").remove();
								jQuery(".woosmart_wishlist_path23").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");
								jQuery(".product-added-to-wishlist23").fadeIn(1000, function() { 
									jQuery(".product-added-to-wishlist23").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-added-to-wishlist23").fadeOut(1000, function() { 
										jQuery(".product-added-to-wishlist23").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".ajax-loading25").css("visibility", "hidden");
                jQuery('.woosmart_add_to_wishlist25').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 25;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".ajax-loading25").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:25},
						complete: function(){
							jQuery(".ajax-loading25").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_add_to_wishlist25").remove();
								jQuery(".woosmart_wishlist_path25").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");								
								jQuery(".product-already-in-wishlist25").fadeIn(1000, function() { 
									jQuery(".product-already-in-wishlist25").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-already-in-wishlist25").fadeOut(1000, function() { 
										jQuery(".product-already-in-wishlist25").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_add_to_wishlist25").remove();
								jQuery(".woosmart_wishlist_path25").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");
								jQuery(".product-added-to-wishlist25").fadeIn(1000, function() { 
									jQuery(".product-added-to-wishlist25").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-added-to-wishlist25").fadeOut(1000, function() { 
										jQuery(".product-added-to-wishlist25").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
        <script>
            jQuery(document).ready(function(){
				jQuery(".ajax-loading26").css("visibility", "hidden");
                jQuery('.woosmart_add_to_wishlist26').on("click", function(e){
                    //Stop the form from submitting itself to the server.
                    e.preventDefault();
					var data = {};                 
                    var p_id = 26;
                    jQuery.ajax({
                        type: "POST",
						  beforeSend: function(){
							jQuery(".ajax-loading26").css("visibility", "visible");
						  },
                        url: "https://fluentthemes.com/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-add-to-wishlist.php",
                        data: {p_id:26},
						complete: function(){
							jQuery(".ajax-loading26").css("visibility", "hidden");
						  },
                        success: function(data){
							if(data == "exist"){
								jQuery(".woosmart_add_to_wishlist26").remove();
								jQuery(".woosmart_wishlist_path26").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");								
								jQuery(".product-already-in-wishlist26").fadeIn(1000, function() { 
									jQuery(".product-already-in-wishlist26").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-already-in-wishlist26").fadeOut(1000, function() { 
										jQuery(".product-already-in-wishlist26").css("display", "none");
									});
								  }, 5000);	
							}
							if(data == "new"){
								jQuery(".woosmart_add_to_wishlist26").remove();
								jQuery(".woosmart_wishlist_path26").append("<a href='https://fluentthemes.com/wp-plugins/woosmart-catalog/wishlist/'  class='added_to_wishlist'></a>");
								jQuery(".product-added-to-wishlist26").fadeIn(1000, function() { 
									jQuery(".product-added-to-wishlist26").css("display", "block");
								});
								setTimeout(function() {
									jQuery(".product-added-to-wishlist26").fadeOut(1000, function() { 
										jQuery(".product-added-to-wishlist26").css("display", "none");
									});
								  }, 5000);	
							}						
                        },
						error: function(data){
						alert('Something was wrong. Please try again later.');
						  },
					  
                    });
                });
            });
        </script>
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /home/u734121537/domains/fluentthemes.com/public_html/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-functions.php:1160) in <b>/home/u734121537/domains/fluentthemes.com/public_html/wp-plugins/woosmart-catalog/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1794</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /home/u734121537/domains/fluentthemes.com/public_html/wp-plugins/woosmart-catalog/wp-content/plugins/the-woosmart-products-catalog/modules/includes/woosmart-functions.php:1160) in <b>/home/u734121537/domains/fluentthemes.com/public_html/wp-plugins/woosmart-catalog/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1794</b><br />
{"id":295,"date":"2019-10-18T04:06:36","date_gmt":"2019-10-18T04:06:36","guid":{"rendered":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/?page_id=295"},"modified":"2019-10-23T07:58:00","modified_gmt":"2019-10-23T07:58:00","slug":"homepage","status":"publish","type":"page","link":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/","title":{"rendered":"HomePage"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1545214084079{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8221; el_id=&#8221;home&#8221;][vc_column]<!-- Start Header Section-->\r\n\t<div style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-header-min-min.png);background-size: contain;background-position: top;background-repeat: no-repeat;\" class=\"cambd dif-mobile-bg\">\r\n        <header class=\"header cambd header-section-one\"  >\r\n            <div class=\"container\">\r\n                <div class=\"row header-row\">\r\n                    <!-- Main title -->\r\n                    <div class=\"col-sm-12 col-md-6 align-self-center main-title\">\r\n\t\t\t\t\t\r\n                        <p class=\"light bold small main-suptitle sm-white heading1\">Fifteen+ Unique Layouts<\/p>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <h1 class=\"heading2 sm-white\">WooSmart - <span class='thin'>An Extension of WooCommerce to Showcase Products<\/span><\/h1>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <!-- Buttons -->\r\n                        <a href=\"#demos\">\r\n                            <div class=\"button bg-color-1\">Explore Layouts<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n                        <a class=\"gray link sm-white\" href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\">Download WooSmart <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\t\t\r\n                    <\/div>\r\n                    <!-- Main title end -->\r\n\t\t\t\t\t\t\t\t\t\t\r\n                    <!-- Phone -->\r\n                    <div class=\"col-12 col-md-6 align-self-center header-phone\">\r\n                        <img decoding=\"async\" class=\"jump\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/Untitled-3.png\" alt=\"\">\r\n                    <\/div>\r\n                    <!-- Phone end -->\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\r\n                    <!-- Social icons -->\r\n                    <div class=\"social-icons\">\r\n                        <ul>\r\n                            <li><a href=\"#\"><i class=\"fab fa-twitter\"><\/i><\/a><\/li>\r\n                            <li><a href=\"#\"><i class=\"fab fa-facebook\"><\/i><\/a><\/li>\r\n                            <li><a href=\"#\"><i class=\"fab fa-dribbble\"><\/i><\/a><\/li>\r\n                            <li><a href=\"#\"><i class=\"fab fa-behance\"><\/i><\/a><\/li>\r\n                        <\/ul>\r\n                    <\/div>\r\n                    <!-- Social icons end -->\r\n\t\t\t\t\t\t\t\t\t\t\t\r\n                <\/div>\r\n\t\t\t\t\t\t\t\t\r\n                <!-- Tooltip -->\r\n                <div class=\"header-tooltip\"><i class=\"fas scroll-arrow bounce fa-angle-double-down\"><\/i>\r\n                    <p class=\"light thin small sm-white heading3\" >Scroll Down<\/p>\r\n                <\/div>\r\n                <!-- Tooltip end -->\r\n\t\t\t\t\t\t\t\t\r\n            <\/div>\r\n        <\/header>\r\n        <!-- End Header end -->\r\n\t\t<!-- How it works -->\r\n        <section  class=\"hiw p-90-35 cambd\">\r\n            <div class=\"line\"><\/div>\r\n            <div class=\"container\">\r\n                <!-- Section title -->\r\n                <div class=\"section-title sm-ac mb-70\">\r\n                    <p class=\"light bold small sec2_heading1\">Ready to go<\/p>\r\n                    <h2 class=\"sec2_heading2\"><span class='thin'>How it<\/span> Works<\/h2>\r\n                    <p class=\"light thin sec2_heading3\">4 Easy steps to follow.<\/p>\r\n                <\/div>\r\n                <!-- Section title end -->\r\n                <div class=\"row\">\r\n\t\t\t\t\r\n\t\t\t\t\r\n                    <!-- Item 1 -->\r\n                    <div class=\"col-6 col-sm-6 col-md-3 hiw-item mb-30\">\r\n                        <div class=\"bg-color-2 puls mb-30 fbox_step_number\" style=\"animation-delay: 0s\">1<\/div>\r\n                        <p class=\"bold fbox_title\">Activate Plugin<\/p>\r\n                        <p class=\"light thin fbox_desc\">Download, install and activate the plugin in your WordPress<\/p>\r\n                    <\/div>\r\n\t\t\t\t\r\n\t\t\t\t\r\n                    <!-- Item 2 -->\r\n                    <div class=\"col-6 col-sm-6 col-md-3 hiw-item mb-30\">\r\n                        <div class=\"bg-color-2 puls mb-30 fbox_step_number\" style=\"animation-delay: .75s\">2<\/div>\r\n                        <p class=\"bold fbox_title\">Drag &amp; Drop Element<\/p>\r\n                        <p class=\"light thin fbox_desc\">Just drag and drop any layout you want in anywhere of your page<\/p>\r\n                    <\/div>\r\n\t\t\t\t\r\n\t\t\t\t\r\n                    <!-- Item 3 -->\r\n                    <div class=\"col-6 col-sm-6 col-md-3 hiw-item mb-30\">\r\n                        <div class=\"bg-color-2 puls mb-30 fbox_step_number\" style=\"animation-delay: 1.5s\">3<\/div>\r\n                        <p class=\"bold fbox_title\">Choose Design<\/p>\r\n                        <p class=\"light thin fbox_desc\">Choose desired colors and category of your products<\/p>\r\n                    <\/div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n                    <!-- Item 4 -->\r\n                    <div class=\"col-6 col-sm-6 col-md-3 hiw-item mb-30\">\r\n                        <div class=\"bg-color-2 puls mb-30 fbox_step_number\" style=\"animation-delay: 2.25s\">4<\/div>\r\n                        <p class=\"bold fbox_title\">Enjoy!<\/p>\r\n                        <p class=\"light thin fbox_desc\">After finishing these steps you can view the products at front-end<\/p>\r\n                    <\/div>\r\n\t\t\t\t\t\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n\t\t<\/div>\r\n        <!-- How it works end -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<style>\r\n@media (max-width: 768px){\r\n.dif-mobile-bg{\r\n    background-image: url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg) !important;\r\n}\r\n}\r\n<\/style>\r\n\r\n<style>\r\n.cambd .line{\r\n  top: 300px;\t\r\n}\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 ijhge\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">We presented just a couple of layouts here as demos<\/p>\r\n                            <h2 class=\"h1 white heading2\">View a Few Layouts<\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Each layout has its own settings to let you customize as you wat<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"#demos\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">View Layouts<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" aria-haspopup=\"true\">Purchase Now <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.ijhge .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1571763416491{margin-top: 50px !important;}&#8221; el_id=&#8221;demos&#8221;][vc_column]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 kkijl\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 3<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 3<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n<section class=\"cabde p-30-0-30 woosmart_layout_3\">\r\n<div class=\"container\"><div class=\"row\"><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist280 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist280 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=280\" class=\"woosmart_add_to_wishlist280 cursor-point\" data-product-id=\"280\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading280\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist280 cursor-point\" data-product-id=\"280\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item280\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger280\" data-product-id=\"280\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Special Coffee<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>140.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view280\">\r\n<div class=\"row cd-item-info cd-item-info280\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Special Coffee<\/h2>\r\n<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action280\">\r\n<li>\r\n<a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close280\">Close<\/a>\r\n<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist279 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist279 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=279\" class=\"woosmart_add_to_wishlist279 cursor-point\" data-product-id=\"279\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading279\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist279 cursor-point\" data-product-id=\"279\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item279\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger279\" data-product-id=\"279\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Sir Coffee<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view279\">\r\n<div class=\"row cd-item-info cd-item-info279\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Sir Coffee<\/h2>\r\n<h3><span><span>&#036;<\/span>20.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action279\">\r\n<li>\r\n<a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close279\">Close<\/a>\r\n<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist278 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist278 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=278\" class=\"woosmart_add_to_wishlist278 cursor-point\" data-product-id=\"278\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading278\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist278 cursor-point\" data-product-id=\"278\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item278\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger278\" data-product-id=\"278\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Macho Coffee<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>50.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view278\">\r\n<div class=\"row cd-item-info cd-item-info278\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Macho Coffee<\/h2>\r\n<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action278\">\r\n<li>\r\n<a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close278\">Close<\/a>\r\n<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cold-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist277 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist277 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=277\" class=\"woosmart_add_to_wishlist277 cursor-point\" data-product-id=\"277\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading277\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist277 cursor-point\" data-product-id=\"277\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item277\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger277\" data-product-id=\"277\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=277\" rel=\"nofollow\" data-product_id=\"277\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cold-coffee\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Cold Coffee<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>100.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view277\">\r\n<div class=\"row cd-item-info cd-item-info277\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Cold Coffee<\/h2>\r\n<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action277\">\r\n<li>\r\n<a href=\"?add-to-cart=277\" rel=\"nofollow\" data-product_id=\"277\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close277\">Close<\/a>\r\n<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-zeber\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe2.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist276 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist276 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe2.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=276\" class=\"woosmart_add_to_wishlist276 cursor-point\" data-product-id=\"276\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading276\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist276 cursor-point\" data-product-id=\"276\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item276\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger276\" data-product-id=\"276\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe2.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=276\" rel=\"nofollow\" data-product_id=\"276\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-zeber\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Coffee Zeber<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>50.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view276\">\r\n<div class=\"row cd-item-info cd-item-info276\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe2.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Coffee Zeber<\/h2>\r\n<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action276\">\r\n<li>\r\n<a href=\"?add-to-cart=276\" rel=\"nofollow\" data-product_id=\"276\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close276\">Close<\/a>\r\n<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-brazilia\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee6.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist275 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist275 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee6.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=275\" class=\"woosmart_add_to_wishlist275 cursor-point\" data-product-id=\"275\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading275\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist275 cursor-point\" data-product-id=\"275\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item275\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger275\" data-product-id=\"275\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee6.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=275\" rel=\"nofollow\" data-product_id=\"275\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-brazilia\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Coffee Brazilia<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>100.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view275\">\r\n<div class=\"row cd-item-info cd-item-info275\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee6.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Coffee Brazilia<\/h2>\r\n<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action275\">\r\n<li>\r\n<a href=\"?add-to-cart=275\" rel=\"nofollow\" data-product_id=\"275\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close275\">Close<\/a>\r\n<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cafiana-mari\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist274 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist274 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=274\" class=\"woosmart_add_to_wishlist274 cursor-point\" data-product-id=\"274\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading274\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist274 cursor-point\" data-product-id=\"274\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item274\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger274\" data-product-id=\"274\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=274\" rel=\"nofollow\" data-product_id=\"274\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cafiana-mari\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Cafiana Mari<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>280.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view274\">\r\n<div class=\"row cd-item-info cd-item-info274\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Cafiana Mari<\/h2>\r\n<h3><span><span>&#036;<\/span>280.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action274\">\r\n<li>\r\n<a href=\"?add-to-cart=274\" rel=\"nofollow\" data-product_id=\"274\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close274\">Close<\/a>\r\n<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n<div class=\"col-md-12 nopadding\">\r\n<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/black-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist273 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist273 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n<\/div>\r\n<div class=\"shadow-brdr\"><div class=\"item-buttons product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8.jpg\" class=\"cursor-point\" data-lightbox=\"featured-image\">\r\n<i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=273\" class=\"woosmart_add_to_wishlist273 cursor-point\" data-product-id=\"273\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading273\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist273 cursor-point\" data-product-id=\"273\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item273\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger273\" data-product-id=\"273\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=273\" rel=\"nofollow\" data-product_id=\"273\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/black-coffee\/\">\r\n<h3 class=\"product-name animate-300 hover-color-primary\">Black Coffee<\/h3>\r\n<\/a>\r\n\r\n<div class=\"product-price-1 mb-4\">\r\n<span class=\"\"><span><span>&#036;<\/span>140.00<\/span><\/span>\r\n<\/div>\r\n\r\n <\/div>\r\n<\/article>\r\n <\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view273\">\r\n<div class=\"row cd-item-info cd-item-info273\">\r\n<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8.jpg\" alt=\"Featured-image\"><\/div>\r\n<div class=\"col-md-8\">\r\n<h2>Black Coffee<\/h2>\r\n<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n<ul class=\"pl-0 cd-item-action cd-item-action273\">\r\n<li>\r\n<a href=\"?add-to-cart=273\" rel=\"nofollow\" data-product_id=\"273\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<a href=\"#0\" class=\"cd-close cd-close273\">Close<\/a>\r\n<\/div><\/div>\r\n<\/div>\r\n<\/section>\r\n<style>\r\n.woosmart_layout_3 a:active,\r\n.woosmart_layout_3 a:hover {\r\n\ttext-decoration: none;\r\n}\r\n\r\n.woosmart_layout_3 .animate-300 {\r\n\t-webkit-transition: .3s;\r\n\ttransition: .3s;\r\n}\r\n\r\n.woosmart_layout_3 .thumbnail {\r\n\tdisplay: block;\r\n\toverflow: hidden;\r\n}\r\n\r\n.woosmart_layout_3 .thumbnail a,\r\n.woosmart_layout_3 .thumbnail img {\r\n\tdisplay: block;\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_3 .thumbnail.animate-zoom img {\r\n\t-webkit-transition: .5s ease;\r\n\ttransition: .5s ease;\r\n}\r\n\r\n.woosmart_layout_3 .thumbnail.animate-zoom:hover img {\r\n\t-webkit-transform: scale(1.1);\r\n\ttransform: scale(1.1);\r\n}\r\n\r\n.woosmart_layout_3 .stars-rating {\r\n\tfont-size: 12px;\r\n}\r\n\r\n.woosmart_layout_3 .stars-rating span {\r\n\tcolor: #a5a5a5;\r\n}\r\n\r\n.woosmart_layout_3 .stars-rating[data-rate=\"5\"] span {\r\n\tcolor: #fdba0a;\r\n}\r\n\r\n.woosmart_layout_3 .product-item-1 {\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_3 .product-item-1 .product-name {\r\n\tfont-size: 18px;\r\n\tfont-weight: 700;\r\n\ttext-transform: uppercase;\r\n\tcolor: #333;\r\n\tmargin: 8px 0;\r\n}\r\n\r\n.woosmart_layout_3 .product-item-1 .item-buttons {\r\n\tposition: relative;\r\n\tz-index: 1;\r\n\ttop: -30px;\r\n}\r\n\r\n.woosmart_layout_3 .product-action-buttons-1 a {\r\n\tposition: relative;\r\n\tdisplay: block;\r\n\twidth: 55px;\r\n\theight: 60px;\r\n\tline-height: 60px;\r\n\ttext-align: center;\r\n\tbackground: #1a1a1a;\r\n\tcolor: #fff;\r\n\tfont-size: 12px;\r\n\tborder-right: 1px solid #2f2f2f;\r\n\t-webkit-transition: .4s ease;\r\n\ttransition: .4s ease;\r\n}\r\n\r\n.woosmart_layout_3 .product-action-buttons-1 a:last-child {\r\n\tborder-right: none;\r\n}\r\n\r\n.woosmart_layout_3 .woosmart-page-post-page .text-box img {\r\n\twidth: auto;\r\n}\r\n\r\n.woosmart_layout_3 .shadow-brdr {\r\n\tborder: 1px solid transparent!important;\r\n\t-webkit-box-shadow: 0 4px 22px 5px #f1f1f1;\r\n\tbox-shadow: 0 4px 22px 5px #f1f1f1;\r\n}\r\n\r\n.woosmart_layout_3 .product-item-1 .item-buttons {\r\n\tposition: relative;\r\n\tz-index: 1;\r\n\tmargin-top: -30px;\r\n\tbackground: rgba(26, 26, 26, .5);\r\n}\r\n\r\n.woosmart_layout_3 .v-visible {\r\n\tvisibility: visible;\r\n\ttransition: .5s;\r\n}\r\n\r\n.woosmart_layout_3 .shadow-brdr {\r\n\tbox-shadow: none;\r\n\ttext-align: left;\r\n}\r\n\r\n.woosmart_layout_3 .thumbnail img {\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_3 .product-action-buttons-1 a {\r\n\tbackground: 0 0;\r\n\tborder: none;\r\n}\r\n\r\n.woosmart_layout_3 .product-action-buttons-1 a:hover {\r\n\tbackground: 0 0;\r\n}\r\n\r\n.woosmart_layout_3 .cursor-point {\r\n\tcursor: pointer;\r\n}\r\n\r\n.woosmart_layout_3 .ribbon2 {\r\n\twidth: 60px;\r\n\tpadding: 10px 0;\r\n\tposition: absolute;\r\n\ttop: -6px;\r\n\tleft: 25px;\r\n\ttext-align: center;\r\n\tborder-top-left-radius: 3px;\r\n\tz-index: 1;\r\n\tbackground: #a52a2a;\r\n}\r\n\r\n.woosmart_layout_3 .ribbon2::before {\r\n\theight: 0;\r\n\twidth: 0;\r\n\tright: -5.5px;\r\n\ttop: 0.1px;\r\n\tborder-bottom: 6px solid #8D5A20;\r\n\tborder-right: 6px solid transparent;\r\n}\r\n\r\n.woosmart_layout_3 .ribbon2::before,\r\n.woosmart_layout_3 .ribbon2::after {\r\n\tcontent: \"\";\r\n\tposition: absolute;\r\n}\r\n\r\n.woosmart_layout_3 .ribbon2::after {\r\n\theight: 0;\r\n\twidth: 0;\r\n\tbottom: -29.5px;\r\n\tleft: 0;\r\n\tborder-left: 30px solid #a52a2a;\r\n\tborder-right: 30px solid #a52a2a;\r\n\tborder-bottom: 30px solid transparent;\r\n}\r\n.woosmart_layout_3 .added_to_cart{\r\n\tline-height: 48px !important;\r\n    display: inline-table !important;\r\n\tborder-radius:0;\t\r\n}\r\n.woosmart_layout_3 .add_to_cart_button.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_3 .product-action-buttons-1 a:hover{\r\n\tbackground-color:#a52a2a;\r\n}\r\n.woosmart_layout_3 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n    top: 20px;\r\n    left: 20px;\r\n}\r\n.woosmart_layout_3 .product-added-to-wishlist,.woosmart_layout_3 .product-already-in-wishlist{\r\n\tposition:absolute;\r\n\tdisplay:none;\r\n\ttext-align: center;\r\n    background: #fff;\r\n    padding: 10px;\r\n    width: 100%;\r\n}\r\n.woosmart_layout_3 .v-visible{\r\n\tvisibility:visible;\r\n\ttransition:0.5s;\r\n}\r\n.woosmart_layout_3 .v-hidden{\r\n\tvisibility:hidden;\t\r\n}\r\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_3.cabde  .ribbon2::before{\r\n\t\tborder-bottom: 6px solid #f5c648;\r\n\t}\t\t\r\n\t<\/style>\r\n\t<style>\t\r\n\t.woosmart_layout_3.cabde  .ribbon2::after{\r\n\t\tborder-left: 30px solid #f5c648;\r\n\t\tborder-right: 30px solid #f5c648;\t\t\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_3.cabde  .ribbon2{\r\n\t\tbackground-color:#f5c648;\r\n\t}\t\t\r\n\t<\/style>[vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 jgeih\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.jgeih .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 klikj\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 5<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 5<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n[vc_empty_space height=&#8221;10px&#8221;]<section class=\"p-30-0-30 cdeab woosmart_layout_5\">\r\n\t<div class=\"container\"><div class=\"row\">\r\n\t\t<div class=\"col-xl-8\">\r\n\t\t<div class=\"row\"><div class=\"col-sm-6 col-lg-4\">\r\n\t\t\t\t<article class=\"product-item-4\"><div class=\"position-relative\">\r\n\t\t\t\t<div class=\"thumbnail animate-zoom\">\r\n\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/watch\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/wch4.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist266 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist266 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div><\/div>\r\n\t\t\t\t\t\t<div class=\"price-n-rating d-flex justify-content-between align-items-center\">\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<div class=\"product-price-2\" >\r\n\t\t\t\t\t\t\t<span><span>&#036;<\/span>150.00<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"item-content text-center\">\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/watch\/\" class=\"no-color\" >\r\n\t\t\t\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Nice Watch<\/h3>\r\n\t\t\t\t\t\t<\/a><a href=\"?add-to-cart=266\" rel=\"nofollow\" data-product_id=\"266\" data-product_sku=\"\" data-quantity=\"1\" class=\"button m-0 button-default rounded-capsule product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a><div class=\"row \"><\/div><\/div>\r\n\t\t\t\t<\/article>\r\n\t\t\t<\/div><div class=\"col-sm-6 col-lg-4\">\r\n\t\t\t\t<article class=\"product-item-4\"><div class=\"position-relative\">\r\n\t\t\t\t<div class=\"thumbnail animate-zoom\">\r\n\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sports-shoe\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/shoered.png\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist265 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist265 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div><\/div>\r\n\t\t\t\t\t\t<div class=\"price-n-rating d-flex justify-content-between align-items-center\">\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<div class=\"product-price-2\" >\r\n\t\t\t\t\t\t\t<span><span>&#036;<\/span>50.00<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"item-content text-center\">\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sports-shoe\/\" class=\"no-color\" >\r\n\t\t\t\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Sports Shoe<\/h3>\r\n\t\t\t\t\t\t<\/a><a href=\"?add-to-cart=265\" rel=\"nofollow\" data-product_id=\"265\" data-product_sku=\"\" data-quantity=\"1\" class=\"button m-0 button-default rounded-capsule product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a><div class=\"row \"><\/div><\/div>\r\n\t\t\t\t<\/article>\r\n\t\t\t<\/div><div class=\"col-sm-6 col-lg-4\">\r\n\t\t\t\t<article class=\"product-item-4\"><div class=\"position-relative\">\r\n\t\t\t\t<div class=\"thumbnail animate-zoom\">\r\n\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/for-all\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/fashiion-girls.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist257 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist257 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div><\/div>\r\n\t\t\t\t\t\t<div class=\"price-n-rating d-flex justify-content-between align-items-center\">\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<div class=\"product-price-2\" >\r\n\t\t\t\t\t\t\t<span><span>&#036;<\/span>100.00<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"item-content text-center\">\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/for-all\/\" class=\"no-color\" >\r\n\t\t\t\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >For All<\/h3>\r\n\t\t\t\t\t\t<\/a><a href=\"?add-to-cart=257\" rel=\"nofollow\" data-product_id=\"257\" data-product_sku=\"\" data-quantity=\"1\" class=\"button m-0 button-default rounded-capsule product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a><div class=\"row \"><\/div><\/div>\r\n\t\t\t\t<\/article>\r\n\t\t\t<\/div>\t<\/div>\r\n\t\t\t\t<\/div><div class=\"col-xl-4\">\r\n\t\t\t\t\t\t<article class=\"article-with-overlay-6\">\r\n\t\t\t\t\t\t<div class=\"thumbnail\">\r\n\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/men1.jpg\" alt=\"featured-image\">\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product-category\/mens-clothing\/\">\r\n\t\t\t\t\t\t\t\t<div class=\"overlay d-flex flex-column justify-content-end\">\r\n\t\t\t\t\t\t\t\t\t<h2 class=\"item-title\">\r\n\t\t\t\t\t\t\t\t\tMen&#039;s Clothing\r\n\t\t\t\t\t\t\t\t\t<\/h2>\r\n\t\t\t\t\t\t\t\t\t<h4 class=\"item-sub-title\">\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t<\/h4>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\t<\/article>\r\n\t\t\t\t\t<\/div><div class=\"col-xl-4\">\r\n\t\t\t\t\t\t<article class=\"article-with-overlay-6\">\r\n\t\t\t\t\t\t\t<div class=\"thumbnail\">\r\n\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/women2.jpg\" alt=\"featured-image\">\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product-category\/womens-clothing\/\">\r\n\t\t\t\t\t\t\t\t<div class=\"overlay d-flex flex-column justify-content-end\">\r\n\t\t\t\t\t\t\t\t\t<h2 class=\"item-title\">\r\n\t\t\t\t\t\t\t\t\tWomen&#039;s Clothing\r\n\t\t\t\t\t\t\t\t\t<\/h2>\r\n\t\t\t\t\t\t\t\t\t<h4 class=\"item-sub-title\">\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t<\/h4>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\t<\/article>\r\n\t\t\t\t\t<\/div>\r\n\t\t<div class=\"col-xl-8\">\r\n\t\t<div class=\"row\"><div class=\"col-sm-6 col-lg-4\">\r\n\t\t\t\t<article class=\"product-item-4\"><div class=\"position-relative\">\r\n\t\t\t\t<div class=\"thumbnail animate-zoom\">\r\n\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/xan-dress\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/f3d.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist254 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist254 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div><\/div>\r\n\t\t\t\t\t\t<div class=\"price-n-rating d-flex justify-content-between align-items-center\">\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<div class=\"product-price-2\" >\r\n\t\t\t\t\t\t\t<span><span>&#036;<\/span>150.00<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"item-content text-center\">\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/xan-dress\/\" class=\"no-color\" >\r\n\t\t\t\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Xan Dress<\/h3>\r\n\t\t\t\t\t\t<\/a><a href=\"?add-to-cart=254\" rel=\"nofollow\" data-product_id=\"254\" data-product_sku=\"\" data-quantity=\"1\" class=\"button m-0 button-default rounded-capsule product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a><div class=\"row \"><\/div><\/div>\r\n\t\t\t\t<\/article>\r\n\t\t\t<\/div><div class=\"col-sm-6 col-lg-4\">\r\n\t\t\t\t<article class=\"product-item-4\"><div class=\"position-relative\">\r\n\t\t\t\t<div class=\"thumbnail animate-zoom\">\r\n\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ear-ring\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/rigns7.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist253 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist253 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div><\/div>\r\n\t\t\t\t\t\t<div class=\"price-n-rating d-flex justify-content-between align-items-center\">\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<div class=\"product-price-2\" >\r\n\t\t\t\t\t\t\t<span><span>&#036;<\/span>50.00<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"item-content text-center\">\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ear-ring\/\" class=\"no-color\" >\r\n\t\t\t\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Ear Ring<\/h3>\r\n\t\t\t\t\t\t<\/a><a href=\"?add-to-cart=253\" rel=\"nofollow\" data-product_id=\"253\" data-product_sku=\"\" data-quantity=\"1\" class=\"button m-0 button-default rounded-capsule product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a><div class=\"row \"><\/div><\/div>\r\n\t\t\t\t<\/article>\r\n\t\t\t<\/div><div class=\"col-sm-6 col-lg-4\">\r\n\t\t\t\t<article class=\"product-item-4\"><div class=\"position-relative\">\r\n\t\t\t\t<div class=\"thumbnail animate-zoom\">\r\n\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ring\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/rings3.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist252 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist252 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div><\/div>\r\n\t\t\t\t\t\t<div class=\"price-n-rating d-flex justify-content-between align-items-center\">\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<div class=\"product-price-2\" >\r\n\t\t\t\t\t\t\t<span><span>&#036;<\/span>20.00<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t<div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><span class='fas fa-star' style=\"color:#ffffff\"><\/span><\/div>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"item-content text-center\">\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ring\/\" class=\"no-color\" >\r\n\t\t\t\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Wedding Ring<\/h3>\r\n\t\t\t\t\t\t<\/a><a href=\"?add-to-cart=252\" rel=\"nofollow\" data-product_id=\"252\" data-product_sku=\"\" data-quantity=\"1\" class=\"button m-0 button-default rounded-capsule product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a><div class=\"row \"><\/div><\/div>\r\n\t\t\t\t<\/article>\r\n\t\t\t<\/div>\t<\/div>\r\n\t\t\t\t<\/div><\/div>\r\n\t\t\t<\/div>\r\n\t\t<\/section>\n<style>\n@media (max-width:768px) {\n.woosmart_layout_5 .product-price-2 {\n\t\tfloat: left;\n\t}\n.woosmart_layout_5 \t.stars-rating {\n\t\ttext-align: left;\n\t}\n}\n\n.woosmart_layout_5 .product-item-4 .price-n-rating {\n\tpadding: 0 27px;\n}\n\n.woosmart_layout_5 a.button {\n\tfont-size: inherit;\n\tfont-weight: 600;\n}\n\n.woosmart_layout_5 a:active,\n.woosmart_layout_5 a:hover {\n\ttext-decoration: none;\n}\n\n.woosmart_layout_5 a.no-color,\n.woosmart_layout_5 a.no-color:active,\n.woosmart_layout_5 a.no-color:hover {\n\tcolor: inherit;\n}\n\n.woosmart_layout_5 .rounded-capsule {\n\tborder-radius: 30px;\n}\n\n.woosmart_layout_5 .animate-300 {\n\t-webkit-transition: .3s;\n\ttransition: .3s;\n}\n\n.woosmart_layout_5 .button {\n\tpadding: 14px 48px;\n\toutline: 0;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-size: 12px;\n\tfont-weight: 700;\n\tline-height: inherit !important;\n\ttext-align: center;\n\tborder: 1px solid;\n\tborder-color: transparent;\n\tcolor: #444;\n}\n\n.woosmart_layout_5 .button-default {\n\tbackground: #fff;\n\tborder-color: #bbb;\n\tcolor: #444;\n}\n\n.woosmart_layout_5 .button-default:hover {\n\tcolor: #fff;\n\tborder: transparent;\n}\n\n.woosmart_layout_5 .thumbnail {\n\tdisplay: block;\n\toverflow: hidden;\n}\n\n.woosmart_layout_5 .thumbnail a,\n.woosmart_layout_5 .thumbnail img {\n\tdisplay: block;\n\twidth: 100%;\n}\n\n.woosmart_layout_5 .thumbnail.animate-zoom img {\n\t-webkit-transition: .5s ease;\n\ttransition: .5s ease;\n}\n\n.woosmart_layout_5 .thumbnail.animate-zoom:hover img {\n\t-webkit-transform: scale(1.1);\n\ttransform: scale(1.1);\n}\n\n.woosmart_layout_5 .stars-rating {\n\tfont-size: 12px;\n}\n\n.woosmart_layout_5 .stars-rating span {\n\tcolor: #a5a5a5;\n}\n\n.woosmart_layout_5 .stars-rating[data-rate=\"5\"] span {\n\tcolor: #fdba0a;\n}\n\n.woosmart_layout_5 .product-item-4 {\n\tmargin-bottom: 62px;\n\tposition: relative;\n}\n\n.woosmart_layout_5 .product-item-4 .thumbnail {\n\tbackground: #f5f5f5;\n}\n\n.woosmart_layout_5 .product-item-4 .price-n-rating {\n\tposition: absolute;\n\tleft: 0;\n\tbottom: 0;\n\twidth: 100%;\n\theight: 53px;\n\tbackground: rgba(0, 0, 0, .5);\n\tcolor: #fff;\n\tpadding: 0 30px;\n}\n\n.woosmart_layout_5 .product-item-4 .item-content {\n\tpadding-top: 25px;\n}\n\n.woosmart_layout_5 .product-item-4 .product-name {\n\tmargin: 10px 0 25px;\n\tfont-size: 18px;\n\tfont-weight: 700;\n\ttext-transform: uppercase;\n}\n\n.woosmart_layout_5 .product-item-4 .item-badge {\n\twidth: 45px;\n\theight: 45px;\n\tline-height: 45px;\n\ttext-align: center;\n\tborder-radius: 50%;\n\tfont-size: 10px;\n\tfont-weight: 700;\n\ttext-transform: uppercase;\n\tposition: absolute;\n\ttop: -10px;\n\tright: -10px;\n\tz-index: 1;\n}\n\n.woosmart_layout_5 .product-item-4 .item-badge-red {\n\tbackground: #e53333;\n\tcolor: #fff;\n}\n\n.woosmart_layout_5 .product-item-4 .button {\n\t-webkit-transition: .4s;\n\ttransition: .4s;\n}\n\n.woosmart_layout_5 .product-item-4 .button:hover {\n\tcolor: #fff;\n\tborder-color: transparent;\n\tbackground-color: rgba(0,172,237,1);\n}\n\n.woosmart_layout_5 .article-with-overlay-6 {\n\tposition: relative;\n\tmargin-bottom: 60px;\n}\n\n.woosmart_layout_5 .article-with-overlay-6 .overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tcolor: #fff;\n\tpadding: 60px 48px;\n\tbackground: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .3)), to(rgba(0, 0, 0, 0)));\n\tbackground: linear-gradient(to top, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0));\n}\n\n.woosmart_layout_5 .article-with-overlay-6 .item-title {\n\tfont-size: 22px;\n\ttext-transform: uppercase;\n\tfont-weight: 700;\n\tmargin: 0 0 18px;\n\tcolor: #fff;\n}\n\n.woosmart_layout_5 .article-with-overlay-6 .item-sub-title {\n\tmargin: 0;\n\tfont-size: 14px;\n}\n\n.woosmart_layout_5 .article-with-overlay-6 .thumbnail img {\n\t-webkit-transition: .5s;\n\ttransition: .5s;\n}\n\n.woosmart_layout_5 .article-with-overlay-6:hover .thumbnail img {\n\t-webkit-transform: scale(1.1);\n\ttransform: scale(1.1);\n}\n\n@media (max-width:767px) {\n.woosmart_layout_5 \t.product-item-4 {\n\t\tmargin-bottom: 25px;\n\t}\n}\n\n.woosmart_layout_5 .ajax_add_to_cart.added {\n\tdisplay: none;\n}\n.woosmart_layout_5  .add_to_cart_button:hover {\n\tcolor: #444;\n\tborder: 1px solid #bbb;\t\n}\n.woosmart_layout_5  .added_to_cart {\n\tpadding: 14px 48px;\n\toutline: 0;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 500;\n\tline-height: 20px;\n\ttext-align: center;\n\tborder: 1px solid;\n\tcolor: #444;\n\tborder-color: #bbb;\n\tborder-radius:30px;\n\tbackground-color:transparent;\n}\n\n.woosmart_layout_5  .added_to_cart:hover {\n\tcolor: #fff;\n\tbackground: rgba(0,172,237,1);\t\n}\n\n@media (max-width:575px) {\n.woosmart_layout_5 .product-item-4 .button {\n\t\tpadding: 14px 35px!important;\n\t}\n}\n.woosmart_layout_5 .wishlist_loader{\n    width: 16px;\n    top: 16px;\n    left: 38px;\n    position: absolute;\n}\n.woosmart_layout_5 .woosmart_add_to_wishlist,.woosmart_layout_5 .cd-trigger{\n\tposition:inherit;\n\theight: inherit;\n    line-height: inherit;\n    width:auto;\t\n\tpadding: 12px 37px;\n    border-radius: 30px;\n    border: 1px solid;\n    color: #444;\n    border-color: #bbb;\n    background: transparent;\n    text-align: center;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    color: #444;\n    visibility: visible;\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\n    -moz-transition: opacity 0.2s, background-color 0.2s;\n    transition: opacity 0.2s, background-color 0.2s;\n    display: inline-block;\n    margin-top: 5px;\n}\n.woosmart_layout_5  .woosmart_view_wishlist{\n\tpadding: 12px 37px;\n    border-radius: 30px;\n    border: 1px solid;\n    color: #444;\n    border-color: #bbb;\n    background: transparent;\n    text-align: center;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    color: #444;\n    visibility: visible;\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\n    -moz-transition: opacity 0.2s, background-color 0.2s;\n    transition: opacity 0.2s, background-color 0.2s;\n    display: inline-block;\n    margin-top: 5px;\t\n}\n.woosmart_layout_5 .woosmart_add_to_wishlist:hover,.woosmart_layout_5  .woosmart_view_wishlist:hover,.woosmart_layout_5 .cd-trigger:hover{\n\tbackground: rgba(0,172,237,1);\n\tcolor:#fff;\n}\n.woosmart_layout_5 .product-added-to-wishlist,.woosmart_layout_5 .product-already-in-wishlist{\n\tposition:absolute;\n\tdisplay:none;\n\ttext-align: center;\n    background: rgba(255, 255, 255, 0.7);\n    padding: 10px;\n    width: 100%;\n    top: 105px;\t\n}\n.woosmart_layout_5 .m-15{\n\tmargin:15px;\n}\n<\/style>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 hgeij\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">Visual Composer <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.hgeij .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 jklik\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 6<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 6<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n[vc_empty_space height=&#8221;10px&#8221;]<section class=\"p-30-0-30 dbaec woosmart_layout_6\">\r\n\t<div class=\"container\"><div class=\"row\">\r\n\t<div class=\"col-md-3\">\r\n\t<div class=\"title-section\">\r\n\t\r\n\t<h2 >Trendy Products<\/h2>\r\n\t\r\n\t<div class=\"eltd-separator\" ><\/div>\r\n\t\r\n\t<p >Lorem ipsum dolor sit amet cons etur Donec nec eros egetpe et no erat Maecenas Lorimes cenasgu ultricies tristiq eget consect etur Donec nec eros egetpellentesque.<\/p>\r\n\t\r\n\t\r\n\t<a class=\"button button-secondary mt-3\" href=\"\">View All<\/a>\r\n\t\r\n\t<\/div>\r\n\t<\/div>\r\n\t<div class=\"col-md-9\">\r\n\t<div class=\"shop-products-slider owl-carousel\"><div class=\"item\"><div class=\"col-md-12 mt-2\">\r\n\t<div class=\"col-md-12 nopadding\">\r\n\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"featured-image\"><\/a>\r\n\t<div class=\"product-added-to-wishlist product-added-to-wishlist280 hide\">\r\n\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t<\/div>\r\n\t<div class=\"product-already-in-wishlist product-already-in-wishlist280 hide\" style=\"display:none\">\r\n\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t<\/div><\/div><div class=\"row ml-0 mr-0\"><div class=\"col-md-12 text-center pt-3 pb-3\"><div class=\"wishlist_wrapper row\"><div class=\"col-md-12 p-0\"><a href=\"?add_to_wishlist=280\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist280 cursor-point\" data-product-id=\"280\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading280\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist280 cursor-point\" data-product-id=\"280\" ><i class=\"fas fa-list\"><\/i><\/a><\/div><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\"  class=\"product_title\">\r\n\t<h3 class=\"product-name animate-300 hover-color-primary\" >Special Coffee<\/h3>\r\n\t<\/a>\r\n\t<div class=\"product-price-1 mb-4 text-center\" >\r\n\t<span><span>&#036;<\/span>140.00<\/span>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<\/div><\/div><\/article>\r\n\t<\/div>\r\n\t<\/div><div class=\"item\"><div class=\"col-md-12 mt-2\">\r\n\t<div class=\"col-md-12 nopadding\">\r\n\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"featured-image\"><\/a>\r\n\t<div class=\"product-added-to-wishlist product-added-to-wishlist279 hide\">\r\n\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t<\/div>\r\n\t<div class=\"product-already-in-wishlist product-already-in-wishlist279 hide\" style=\"display:none\">\r\n\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t<\/div><\/div><div class=\"row ml-0 mr-0\"><div class=\"col-md-12 text-center pt-3 pb-3\"><div class=\"wishlist_wrapper row\"><div class=\"col-md-12 p-0\"><a href=\"?add_to_wishlist=279\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist279 cursor-point\" data-product-id=\"279\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading279\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist279 cursor-point\" data-product-id=\"279\" ><i class=\"fas fa-list\"><\/i><\/a><\/div><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\"  class=\"product_title\">\r\n\t<h3 class=\"product-name animate-300 hover-color-primary\" >Sir Coffee<\/h3>\r\n\t<\/a>\r\n\t<div class=\"product-price-1 mb-4 text-center\" >\r\n\t<span><span>&#036;<\/span>20.00<\/span>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<\/div><\/div><\/article>\r\n\t<\/div>\r\n\t<\/div><div class=\"item\"><div class=\"col-md-12 mt-2\">\r\n\t<div class=\"col-md-12 nopadding\">\r\n\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"featured-image\"><\/a>\r\n\t<div class=\"product-added-to-wishlist product-added-to-wishlist278 hide\">\r\n\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t<\/div>\r\n\t<div class=\"product-already-in-wishlist product-already-in-wishlist278 hide\" style=\"display:none\">\r\n\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t<\/div><\/div><div class=\"row ml-0 mr-0\"><div class=\"col-md-12 text-center pt-3 pb-3\"><div class=\"wishlist_wrapper row\"><div class=\"col-md-12 p-0\"><a href=\"?add_to_wishlist=278\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist278 cursor-point\" data-product-id=\"278\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading278\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist278 cursor-point\" data-product-id=\"278\" ><i class=\"fas fa-list\"><\/i><\/a><\/div><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\"  class=\"product_title\">\r\n\t<h3 class=\"product-name animate-300 hover-color-primary\" >Macho Coffee<\/h3>\r\n\t<\/a>\r\n\t<div class=\"product-price-1 mb-4 text-center\" >\r\n\t<span><span>&#036;<\/span>50.00<\/span>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<\/div><\/div><\/article>\r\n\t<\/div>\r\n\t<\/div><div class=\"item\"><div class=\"col-md-12 mt-2\">\r\n\t<div class=\"col-md-12 nopadding\">\r\n\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cold-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"featured-image\"><\/a>\r\n\t<div class=\"product-added-to-wishlist product-added-to-wishlist277 hide\">\r\n\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t<\/div>\r\n\t<div class=\"product-already-in-wishlist product-already-in-wishlist277 hide\" style=\"display:none\">\r\n\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t<\/div><\/div><div class=\"row ml-0 mr-0\"><div class=\"col-md-12 text-center pt-3 pb-3\"><div class=\"wishlist_wrapper row\"><div class=\"col-md-12 p-0\"><a href=\"?add_to_wishlist=277\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist277 cursor-point\" data-product-id=\"277\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading277\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist277 cursor-point\" data-product-id=\"277\" ><i class=\"fas fa-list\"><\/i><\/a><\/div><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cold-coffee\/\"  class=\"product_title\">\r\n\t<h3 class=\"product-name animate-300 hover-color-primary\" >Cold Coffee<\/h3>\r\n\t<\/a>\r\n\t<div class=\"product-price-1 mb-4 text-center\" >\r\n\t<span><span>&#036;<\/span>100.00<\/span>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<\/div><\/div><\/article>\r\n\t<\/div>\r\n\t<\/div><div class=\"item\"><div class=\"col-md-12 mt-2\">\r\n\t<div class=\"col-md-12 nopadding\">\r\n\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-zeber\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe2.jpg\" alt=\"featured-image\"><\/a>\r\n\t<div class=\"product-added-to-wishlist product-added-to-wishlist276 hide\">\r\n\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t<\/div>\r\n\t<div class=\"product-already-in-wishlist product-already-in-wishlist276 hide\" style=\"display:none\">\r\n\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t<\/div><\/div><div class=\"row ml-0 mr-0\"><div class=\"col-md-12 text-center pt-3 pb-3\"><div class=\"wishlist_wrapper row\"><div class=\"col-md-12 p-0\"><a href=\"?add_to_wishlist=276\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist276 cursor-point\" data-product-id=\"276\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading276\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist276 cursor-point\" data-product-id=\"276\" ><i class=\"fas fa-list\"><\/i><\/a><\/div><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-zeber\/\"  class=\"product_title\">\r\n\t<h3 class=\"product-name animate-300 hover-color-primary\" >Coffee Zeber<\/h3>\r\n\t<\/a>\r\n\t<div class=\"product-price-1 mb-4 text-center\" >\r\n\t<span><span>&#036;<\/span>50.00<\/span>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<\/div><\/div><\/article>\r\n\t<\/div>\r\n\t<\/div><div class=\"item\"><div class=\"col-md-12 mt-2\">\r\n\t<div class=\"col-md-12 nopadding\">\r\n\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-brazilia\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee6.jpg\" alt=\"featured-image\"><\/a>\r\n\t<div class=\"product-added-to-wishlist product-added-to-wishlist275 hide\">\r\n\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t<\/div>\r\n\t<div class=\"product-already-in-wishlist product-already-in-wishlist275 hide\" style=\"display:none\">\r\n\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t<\/div><\/div><div class=\"row ml-0 mr-0\"><div class=\"col-md-12 text-center pt-3 pb-3\"><div class=\"wishlist_wrapper row\"><div class=\"col-md-12 p-0\"><a href=\"?add_to_wishlist=275\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist275 cursor-point\" data-product-id=\"275\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading275\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist275 cursor-point\" data-product-id=\"275\" ><i class=\"fas fa-list\"><\/i><\/a><\/div><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/coffee-brazilia\/\"  class=\"product_title\">\r\n\t<h3 class=\"product-name animate-300 hover-color-primary\" >Coffee Brazilia<\/h3>\r\n\t<\/a>\r\n\t<div class=\"product-price-1 mb-4 text-center\" >\r\n\t<span><span>&#036;<\/span>100.00<\/span>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<\/div><\/div><\/article>\r\n\t<\/div>\r\n\t<\/div><\/div>\r\n\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t<\/div>\r\n\t<\/section>\r\n<style>\r\n@media (max-width:768px) {\r\n\t.woosmart_layout_6 .stars-rating {\r\n\t\ttext-align: left;\r\n\t}\r\n}\r\n\r\n.woosmart_layout_6 .animate-300 {\r\n\t-webkit-transition: .3s;\r\n\ttransition: .3s;\r\n}\r\n\r\n.woosmart_layout_6 .button {\r\n    padding: 14px 48px;\r\n    outline: 0;\r\n    display: inline-block;\r\n    cursor: pointer;\r\n    font-size: 16px;\r\n    font-weight: 700;\r\n    line-height: 20px;\r\n    text-align: center;\r\n    border: 1px solid;\r\n    border-color: transparent;\r\n    color: #fff;\r\n    text-decoration: none;\r\n}\r\n\r\n.woosmart_layout_6 .thumbnail {\r\n\tdisplay: block;\r\n\toverflow: hidden;\r\n}\r\n\r\n.woosmart_layout_6 .thumbnail a,\r\n.woosmart_layout_6 .thumbnail img {\r\n\tdisplay: block;\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_6 .thumbnail.animate-zoom img {\r\n\t-webkit-transition: .5s ease;\r\n\ttransition: .5s ease;\r\n}\r\n\r\n.woosmart_layout_6 .thumbnail.animate-zoom:hover img {\r\n\t-webkit-transform: scale(1.1);\r\n\ttransform: scale(1.1);\r\n}\r\n\r\n.woosmart_layout_6 .stars-rating {\r\n\tfont-size: 12px;\r\n}\r\n\r\n.woosmart_layout_6 .stars-rating span {\r\n\tcolor: #a5a5a5;\r\n}\r\n\r\n.woosmart_layout_6 .stars-rating[data-rate=\"5\"] span {\r\n\tcolor: #fdba0a;\r\n}\r\n\r\n.woosmart_layout_6 .eltd-separator {\r\n\tposition: relative;\r\n\tdisplay: block;\r\n\tvertical-align: middle;\r\n\tborder-bottom: 5px solid #000;\r\n\tmargin: 12px 0;\r\n\twidth: 45px;\r\n}\r\n\r\n.woosmart_layout_6 .product-item-1 {\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_6 .product-item-1 .product-name {\r\n\tfont-size: 18px;\r\n\tfont-weight: 700;\r\n\ttext-transform: uppercase;\r\n\tcolor: #333;\r\n\tmargin: 8px 0;\r\n}\r\n.woosmart_layout_6  .product_title{\r\n\twidth:100%;\r\n}\r\n.woosmart_layout_6 .product-price-1 {\r\n\twidth:100%;\r\n}\r\n\r\n@media (max-width:575px) {\r\n\t.woosmart_layout_6  .product-price-1 {\r\n\t\ttext-align: center!important;\r\n\t}\r\n}\r\n\r\n.woosmart_layout_6 .layout-4 .button-secondary {\r\n\tborder-color: transparent;\r\n\tcolor: #fff;\r\n\t-webkit-transition: .3s;\r\n\ttransition: .3s;\r\n}\r\n\r\n.woosmart_layout_6 .layout-4 .button-secondary:hover {\r\n\tcolor: #fff;\r\n}\r\n\r\n.woosmart_layout_6  .thumbnail img {\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_6  .product-price-1 del {\r\n\tfont-size: 15px;\r\n\tfont-weight: 400;\r\n}\r\n\r\n.woosmart_layout_6  .product-price-1 {\r\n\tpadding-top: 5px;\r\n\ttext-align: right;\r\n\tfont-weight: 700;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_6  .stars-rating {\r\n\tpadding-top: 5px;\r\n}\r\n\r\n.woosmart_layout_6  .product-price-1 ins {\r\n\ttext-decoration: none;\r\n\tcolor: #fc3c2a;\r\n\tfont-weight: 700;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_6  .product-price-1 del {\r\n\tfont-size: 12px;\r\n\tcolor: #999;\r\n}\r\n\r\n@media (max-width:768px) {\r\n\t.woosmart_layout_6  .stars-rating {\r\n\t\ttext-align: center;\r\n\t}\r\n}\r\n.woosmart_layout_6 .sale-badge{\r\n    position: absolute;\r\n    background: #bf0000;\r\n    width: 50px;\r\n    height: 50px;\r\n    line-height: 47px;\r\n    right: 0;\r\n    top: 0;\r\n    color: #fff;\r\n\tz-index:1;\t\r\n}\r\n.woosmart_layout_6 a:hover{\r\n\ttext-decoration:none;\r\n}\r\n.woosmart_layout_6 .wishlist_wrapper{\r\n\r\n    width: 100%;\r\n    text-align: center;\r\n    margin: auto;\r\n}\r\n\r\n.woosmart_layout_6 .wishlist_loader{\r\n\twidth: 16px !important;\r\n    position: absolute;\r\n\ttop: 16px;\r\n\tleft: 46%;\r\n}\r\n.woosmart_layout_6 .woosmart_add_to_wishlist{\r\n\tposition: relative;\r\n    height: 50px;\r\n    line-height: 50px;\r\n    width: 100%;\r\n    bottom: 0;\r\n    left: 0;\r\n    background: rgba(0, 0, 0, 0.1);\r\n    text-align: center;\r\n    -webkit-font-smoothing: antialiased;\r\n    -moz-osx-font-smoothing: grayscale;\r\n    color: #ffffff;\r\n    display: block;\r\n    visibility: visible;\r\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\r\n    -moz-transition: opacity 0.2s, background-color 0.2s;\r\n    transition: opacity 0.2s, background-color 0.2s;\r\n}\r\n.woosmart_layout_6  .woosmart_view_wishlist{\r\n\tdisplay:none;\r\n\tposition: relative;\r\n    height: 50px;\r\n    line-height: 50px;\r\n    width: 100%;\r\n    bottom: 0;\r\n    left: 0;\r\n    background: rgba(0, 0, 0, 0.1);\r\n    text-align: center;\r\n    -webkit-font-smoothing: antialiased;\r\n    -moz-osx-font-smoothing: grayscale;\r\n    color: #ffffff;\r\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\r\n    -moz-transition: opacity 0.2s, background-color 0.2s;\r\n    transition: opacity 0.2s, background-color 0.2s;\t\r\n}\r\n.woosmart_layout_6 .woosmart_add_to_wishlist:hover,.woosmart_layout_6  .woosmart_view_wishlist:hover{\r\n\tbackground: rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.woosmart_layout_6 .product-added-to-wishlist,.woosmart_layout_6 .product-already-in-wishlist{\r\n\tposition:absolute;\r\n\tdisplay:none;\r\n\ttext-align: center;\r\n    background: rgba(255, 255, 255, 0.7);\r\n    padding: 10px;\r\n    width: 100%;\r\n    top: 105px;\t\r\n}\r\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_6.dbaec .button{\r\n\t\tcolor: #ffffff;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_6.dbaec .button{\r\n\t\tbackground-color: #52256d;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_6.dbaec .button:hover{\r\n\t\tcolor: #ffffff;\r\n\t}\r\n\t<\/style>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 ijehg\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.ijehg .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 lkkji\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 10<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 10<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n[vc_empty_space height=&#8221;10px&#8221;]\n<section class=\"ceabd p-30-0-30 woosmart_layout_10\">\n   <div class=\"container\">\n      <div class=\"row\">\n<div class=\"col-md-12 col-xs-12 pull-right\">\n   <div class=\"section-titles m-bottom4\">\n     \n   <\/div>\n   <div class=\"col-md-12 col-sm-12 m-bottom4 left-padd0\">\n       <div class=\"menu-card\">\n<div class=\"product-added-to-wishlist product-added-to-wishlist280 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist280 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div>\n         <div class=\"menu-items\">\n            <h3 >Special Coffee<\/h3>\n            <span class=\"price\" style=\"color:#000000\"><span><span>&#036;<\/span>140.00<\/span><\/span>\n            <div class=\"dotted-lines\"><\/div>\t\t\t\n         <\/div>\n\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span>\n\t\t  <\/div>\n\t\t  <p >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><div class=\"col-md-12 p-0\"><a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><a href=\"?add_to_wishlist=280\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist280 cursor-point\" data-product-id=\"280\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading280\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist280 cursor-point\" data-product-id=\"280\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item280\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger280\" data-product-id=\"280\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\n      <\/div><div class=\"cd-quick-view cd-quick-view280\">\n\t<div class=\"row cd-item-info cd-item-info280\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Special Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action280\">\n\t<li>\n\t<a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close280\">Close<\/a>\n\t<\/div>\n       <div class=\"menu-card\">\n<div class=\"product-added-to-wishlist product-added-to-wishlist279 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist279 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div>\n         <div class=\"menu-items\">\n            <h3 >Sir Coffee<\/h3>\n            <span class=\"price\" style=\"color:#000000\"><span><span>&#036;<\/span>20.00<\/span><\/span>\n            <div class=\"dotted-lines\"><\/div>\t\t\t\n         <\/div>\n\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span>\n\t\t  <\/div>\n\t\t  <p >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><div class=\"col-md-12 p-0\"><a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><a href=\"?add_to_wishlist=279\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist279 cursor-point\" data-product-id=\"279\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading279\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist279 cursor-point\" data-product-id=\"279\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item279\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger279\" data-product-id=\"279\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\n      <\/div><div class=\"cd-quick-view cd-quick-view279\">\n\t<div class=\"row cd-item-info cd-item-info279\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Sir Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>20.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action279\">\n\t<li>\n\t<a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close279\">Close<\/a>\n\t<\/div>\n       <div class=\"menu-card\">\n<div class=\"product-added-to-wishlist product-added-to-wishlist278 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist278 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div>\n         <div class=\"menu-items\">\n            <h3 >Macho Coffee<\/h3>\n            <span class=\"price\" style=\"color:#000000\"><span><span>&#036;<\/span>50.00<\/span><\/span>\n            <div class=\"dotted-lines\"><\/div>\t\t\t\n         <\/div>\n\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span>\n\t\t  <\/div>\n\t\t  <p >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><div class=\"col-md-12 p-0\"><a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><a href=\"?add_to_wishlist=278\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist278 cursor-point\" data-product-id=\"278\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading278\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist278 cursor-point\" data-product-id=\"278\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item278\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger278\" data-product-id=\"278\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\n      <\/div><div class=\"cd-quick-view cd-quick-view278\">\n\t<div class=\"row cd-item-info cd-item-info278\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Macho Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action278\">\n\t<li>\n\t<a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close278\">Close<\/a>\n\t<\/div>\n       <div class=\"menu-card\">\n<div class=\"product-added-to-wishlist product-added-to-wishlist277 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist277 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div>\n         <div class=\"menu-items\">\n            <h3 >Cold Coffee<\/h3>\n            <span class=\"price\" style=\"color:#000000\"><span><span>&#036;<\/span>100.00<\/span><\/span>\n            <div class=\"dotted-lines\"><\/div>\t\t\t\n         <\/div>\n\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span><span class='fas fa-star' style='color:#f79468'><\/span>\n\t\t  <\/div>\n\t\t  <p >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><div class=\"col-md-12 p-0\"><a href=\"?add-to-cart=277\" rel=\"nofollow\" data-product_id=\"277\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><a href=\"?add_to_wishlist=277\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist277 cursor-point\" data-product-id=\"277\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading277\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist277 cursor-point\" data-product-id=\"277\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item277\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger277\" data-product-id=\"277\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\n      <\/div><div class=\"cd-quick-view cd-quick-view277\">\n\t<div class=\"row cd-item-info cd-item-info277\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Cold Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action277\">\n\t<li>\n\t<a href=\"?add-to-cart=277\" rel=\"nofollow\" data-product_id=\"277\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close277\">Close<\/a>\n\t<\/div><\/div>\n\t\t<\/div><\/div>\n   <\/div>\n<\/section>\r\n<style>\r\n.woosmart_layout_10 a:hover{\r\n\ttext-decoration:none;\r\n}\r\n.woosmart_layout_10 .menu-card {\r\n\tmargin-bottom: 40px;\r\n}\r\n\r\n.woosmart_layout_10 .menu-items {\r\n\toverflow: hidden;\r\n\tposition: relative;\r\n\tz-index: 1;\r\n}\r\n\r\n.woosmart_layout_10 .menu-items h3 {\r\n\tbackground: #fff;\r\n\tdisplay: inline;\r\n\tfloat: left;\r\n\tmargin: 5px 0;\r\n\tpadding-right: 10px;\r\n\ttext-align: left;\r\n\tcolor: #010101;\r\n\tfont-size: 20px;\r\n}\r\n\r\n.woosmart_layout_10 .menu-items .price {\r\n\tbackground: #fff;\r\n\tcolor: #b91319;\r\n\tfloat: right;\r\n\tfont-size: 20px;\r\n\tfont-style: italic;\r\n\tfont-weight: 700;\r\n\tmargin: 3px 0;\r\n\tpadding-left: 10px;\r\n}\r\n\r\n.woosmart_layout_10 .menu-items .dotted-lines {\r\n\tborder-top: 2px dotted #ccc;\r\n\tleft: 0;\r\n\tposition: absolute;\r\n\ttop: 18px;\r\n\twidth: 100%;\r\n\tz-index: -1;\r\n}\r\n\r\n.woosmart_layout_10 .section-titles {\r\n\tmargin-bottom: 20px;\r\n}\r\n\r\n.woosmart_layout_10 .font-bold {\r\n\tfont-weight: 600 !important;\r\n}\r\n\r\n.woosmart_layout_10 .uppercase {\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_10 .font-black {\r\n\tcolor: #000;\r\n}\r\n\r\n.woosmart_layout_10 .font35 {\r\n\tfont-size: 35px !important;\r\n}\r\n\r\n.woosmart_layout_10 .m-bottom4 {\r\n\tmargin-bottom: 40px;\r\n}\r\n\r\n.woosmart_layout_10 .left-padd0 {\r\n\tpadding-left: 0px !important;\r\n}\r\n.woosmart_layout_10 .ajax_add_to_cart.loading:after {\r\n\tfont-family: \"Font Awesome 5 Free\";\r\n\tcontent: \"\\f110\";\r\n\tvertical-align: top;\r\n\tfont-weight: 900;\r\n\tposition: absolute;\r\n\ttop: 6px;\r\n    right: 6px;\r\n\t-webkit-animation: spin 2s linear infinite;\r\n\tanimation: spin 2s linear infinite;\r\n}\r\n.woosmart_layout_10 .add_to_cart_button.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_10 .add_to_cart_button{\r\n\tposition:relative\r\n}\r\n.woosmart_layout_10 .add_to_cart_button,.woosmart_layout_10 .added_to_cart,.woosmart_layout_10 .button {\r\n    border-radius: 0;\r\n    text-transform: uppercase;\r\n\tbackground-color:#EF0400;\r\n\tborder:0;\r\n\tpadding: 5px 25px 5px 25px;\r\n\tdisplay:inline-block;\r\n\tmargin-right: 10px;\r\n}\r\n.woosmart_layout_10 .add_to_cart_button:hover,.woosmart_layout_10 .added_to_cart:hover,.woosmart_layout_10 .cd-trigger:hover,.woosmart_layout_10 .woosmart_add_to_wishlist:hover,.woosmart_layout_10 .woosmart_view_wishlist, .woosmart_layout_10 .button:hover{\r\n\tbackground-color:#EF0400;\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_10 .woosmart_add_to_wishlist{\r\n\tposition:relative;\r\n}\r\n.woosmart_layout_10 .add_to_cart_button:focus,.woosmart_layout_10 .added_to_cart:focus{\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_10 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n    top: 8px;\r\n    left: 24px;\r\n}\r\n.woosmart_layout_10 .cd-trigger{\r\n\tposition:inherit;\r\n\theight: inherit;\r\n    line-height: inherit;\r\n}\r\n.woosmart_layout_10 .cd-item{\r\n\tdisplay:inline-block;\r\n}\r\n.woosmart_layout_10 .cd-trigger{\r\n\twidth:93%;\r\n}\r\n.woosmart_layout_10 .product-added-to-wishlist,.woosmart_layout_10 .product-already-in-wishlist{\r\n    position: absolute;\r\n    display: none;\r\n    text-align: center;\r\n    background: rgba(255, 255, 255, 0.75);\r\n    padding: 10px;\r\n    width: 100%;\r\n    z-index: 2;\t\r\n}\r\n.woosmart_layout_10 .stars-rating{\r\n\tfont-size: 12px;\r\n    margin-bottom: 10px;\r\n    color: #db8118;\r\n}\r\n<\/style>\n\t<style>\n\t.woosmart_layout_10.ceabd .button,.woosmart_layout_10.ceabd .added_to_cart{\n\t\tcolor:#ffffff;\n\t}\n\t<\/style>\n\t<style>\n\t.woosmart_layout_10.ceabd .button,.woosmart_layout_10.ceabd .added_to_cart{\n\t\tbackground-color:#f79468;\n\t}\n\t<\/style>\n\t<style>\n\t.woosmart_layout_10.ceabd .button:hover,.woosmart_layout_10.ceabd .added_to_cart:hover{\n\t\tbackground-color:#f78656;\n\t}\n\t<\/style>\n\t<style>\n\t.woosmart_layout_10.ceabd .menu-items h3, .woosmart_layout_10.ceabd .menu-items .price{\n\t\tbackground-color:#f7f8fc;\n\t}\n\t<\/style>[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 jghei\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">Visual Composer <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.jghei .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 ikklj\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 11<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 11<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"eacdb p-30-0-30 woosmart_layout_11\">\r\n   <div class=\"container\">\r\n      <div class=\"row\"><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist242 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist242 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED8.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Ligua Basa<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><span><span>&#036;<\/span>99.00<\/span><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=242\" rel=\"nofollow\" data-product_id=\"242\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=242\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist242 cursor-point\" data-product-id=\"242\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading242\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist242 cursor-point\" data-product-id=\"242\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item242\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger242\" data-product-id=\"242\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED8.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view242\">\r\n\t<div class=\"row cd-item-info cd-item-info242\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED8.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ligua Basa<\/h2>\r\n\t<h3><span><span>&#036;<\/span>99.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action242\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=242\" rel=\"nofollow\" data-product_id=\"242\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close242\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist235 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist235 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED7.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Couple Oil<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><span><span>&#036;<\/span>100.00<\/span><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=235\" rel=\"nofollow\" data-product_id=\"235\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=235\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist235 cursor-point\" data-product-id=\"235\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading235\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist235 cursor-point\" data-product-id=\"235\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item235\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger235\" data-product-id=\"235\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED7.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view235\">\r\n\t<div class=\"row cd-item-info cd-item-info235\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED7.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Couple Oil<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action235\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=235\" rel=\"nofollow\" data-product_id=\"235\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close235\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\"><div class=\"sale-badge\" style=\"background-color:#6dab3c;color:#ffffff;\">\r\n\t<span>SALE<\/span>\r\n\t<\/div>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist234 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist234 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED6.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Chandan<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><del><span><span>&#036;<\/span>900.00<\/span><\/del> <ins><span><span>&#036;<\/span>500.00<\/span><\/ins><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=234\" rel=\"nofollow\" data-product_id=\"234\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=234\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist234 cursor-point\" data-product-id=\"234\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading234\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist234 cursor-point\" data-product-id=\"234\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item234\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger234\" data-product-id=\"234\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED6.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view234\">\r\n\t<div class=\"row cd-item-info cd-item-info234\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED6.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Chandan<\/h2>\r\n\t<h3><del><span><span>&#036;<\/span>900.00<\/span><\/del> <ins><span><span>&#036;<\/span>500.00<\/span><\/ins><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action234\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=234\" rel=\"nofollow\" data-product_id=\"234\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close234\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist233 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist233 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED5.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Skin Care<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><span><span>&#036;<\/span>100.00<\/span><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=233\" rel=\"nofollow\" data-product_id=\"233\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=233\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist233 cursor-point\" data-product-id=\"233\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading233\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist233 cursor-point\" data-product-id=\"233\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item233\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger233\" data-product-id=\"233\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED5.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view233\">\r\n\t<div class=\"row cd-item-info cd-item-info233\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED5.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Skin Care<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action233\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=233\" rel=\"nofollow\" data-product_id=\"233\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close233\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist232 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist232 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED4.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Masu Vasa<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><span><span>&#036;<\/span>280.00<\/span><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=232\" rel=\"nofollow\" data-product_id=\"232\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=232\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist232 cursor-point\" data-product-id=\"232\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading232\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist232 cursor-point\" data-product-id=\"232\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item232\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger232\" data-product-id=\"232\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED4.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view232\">\r\n\t<div class=\"row cd-item-info cd-item-info232\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED4.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Masu Vasa<\/h2>\r\n\t<h3><span><span>&#036;<\/span>280.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action232\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=232\" rel=\"nofollow\" data-product_id=\"232\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close232\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist231 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist231 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED3.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Hair Oil<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><span><span>&#036;<\/span>140.00<\/span><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=231\" rel=\"nofollow\" data-product_id=\"231\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=231\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist231 cursor-point\" data-product-id=\"231\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading231\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist231 cursor-point\" data-product-id=\"231\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item231\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger231\" data-product-id=\"231\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED3.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view231\">\r\n\t<div class=\"row cd-item-info cd-item-info231\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED3.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Hair Oil<\/h2>\r\n\t<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action231\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=231\" rel=\"nofollow\" data-product_id=\"231\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close231\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist230 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist230 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED2.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Care Cream<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><span><span>&#036;<\/span>50.00<\/span><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=230\" rel=\"nofollow\" data-product_id=\"230\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=230\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist230 cursor-point\" data-product-id=\"230\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading230\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist230 cursor-point\" data-product-id=\"230\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item230\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger230\" data-product-id=\"230\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED2.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view230\">\r\n\t<div class=\"row cd-item-info cd-item-info230\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED2.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Care Cream<\/h2>\r\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action230\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=230\" rel=\"nofollow\" data-product_id=\"230\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close230\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"m-bottom3\">\r\n\t   <div class=\"text-center pro-display\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist226 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist226 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t   \r\n\t\t  <div class=\"m-bottom2\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/med1.jpg\" alt=\"featured-image\"><\/div>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span><span class='fas fa-star' style='color:#4aaa00'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-thin font-black m-bottom2\" >Body Scurb<\/h3>\r\n\t\t  <h2 class=\"font20 font-bold font-color m-bottom1\" style=\"color:#575061\"><span><span>&#036;<\/span>140.00<\/span><\/h2>\r\n\t\t  <div class=\"full-wid left m-top2 mb-2\"><a href=\"?add-to-cart=226\" rel=\"nofollow\" data-product_id=\"226\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div><div class=\"mb-2\"><a href=\"?add_to_wishlist=226\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist226 cursor-point\" data-product-id=\"226\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading226\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist226 cursor-point\" data-product-id=\"226\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item226\"><a href=\"#0\" class=\" button cursor-point cd-trigger cd-trigger226\" data-product-id=\"226\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/med1.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><\/div>\t\t\t\t  \r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view226\">\r\n\t<div class=\"row cd-item-info cd-item-info226\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/med1.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Body Scurb<\/h2>\r\n\t<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action226\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=226\" rel=\"nofollow\" data-product_id=\"226\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close226\">Close<\/a>\r\n\t<\/div><\/div>\r\n   <\/div>\r\n<\/section>\r\n<style>\r\n.woosmart_layout_11 .ajax_add_to_cart.loading:after {\r\n\tfont-family: \"Font Awesome 5 Free\";\r\n\tcontent: \"\\f110\";\r\n\tvertical-align: top;\r\n\tfont-weight: 900;\r\n\tposition: absolute;\r\n\ttop: 6px;\r\n    right: 6px;\r\n\t-webkit-animation: spin 2s linear infinite;\r\n\tanimation: spin 2s linear infinite;\r\n}\r\n.woosmart_layout_11 .add_to_cart_button.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_11 .add_to_cart_button{\r\n\tposition:relative\r\n}\r\n.woosmart_layout_11 .add_to_cart_button,.woosmart_layout_11 .added_to_cart,.woosmart_layout_11 .button {\r\n    border-radius: 0;\r\n    text-transform: uppercase;\r\n\tbackground-color:#EF0400;\r\n\tborder:0;\r\n\tpadding: 5px 25px 5px 25px;\r\n\tdisplay:inline-block;\r\n}\r\n.woosmart_layout_11 .button {\r\n\tmargin-right: 10px;\r\n}\r\n.woosmart_layout_11 .add_to_cart_button,.woosmart_layout_11 .added_to_cart {\r\n\tmargin-right: 5px;\r\n}\r\n.woosmart_layout_11 .add_to_cart_button:hover,.woosmart_layout_11 .added_to_cart:hover,.woosmart_layout_11 .cd-trigger:hover,.woosmart_layout_11 .woosmart_add_to_wishlist:hover,.woosmart_layout_11 .woosmart_view_wishlist, .woosmart_layout_11 .button:hover{\r\n\tbackground-color:#EF0400;\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_11 .woosmart_add_to_wishlist{\r\n\tposition:relative;\r\n}\r\n.woosmart_layout_11 .add_to_cart_button:focus,.woosmart_layout_11 .added_to_cart:focus{\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_11 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n    top: 8px;\r\n    left: 24px;\r\n}\r\n.woosmart_layout_11 .cd-trigger{\r\n\tposition:inherit;\r\n\theight: inherit;\r\n    line-height: inherit;\r\n}\r\n.woosmart_layout_11 .cd-item{\r\n\tdisplay:inline-block;\r\n}\r\n.woosmart_layout_11 .cd-trigger{\r\n\twidth:93%;\r\n}\r\n.woosmart_layout_11 .product-added-to-wishlist,.woosmart_layout_11 .product-already-in-wishlist{\r\n    position: absolute;\r\n    display: none;\r\n    text-align: center;\r\n    background: rgba(255, 255, 255, 0.75);\r\n    padding: 10px;\r\n    width: 99%;\r\n    z-index: 2;\t\r\n}\r\n.woosmart_layout_11 .stars-rating{\r\n\tfont-size: 12px;\r\n    margin-bottom: 10px;\r\n    color: #db8118;\r\n}\r\n.woosmart_layout_11 .left {\r\n\tfloat: left!important;\r\n}\r\n\r\n.woosmart_layout_11 .full-wid {\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_11 .btn {\r\n\tpadding: 10px 35px;\r\n\tfont-size: 15px;\r\n}\r\n\r\n.woosmart_layout_11 .button a.boxed-color-xs {\r\n\tborder: 0;\r\n\tfont-size: 14px;\r\n\tmargin-bottom: 30px;\r\n\tcolor: #fff;\r\n}\r\n\r\n.woosmart_layout_11 .button a.boxed-color-xs {\r\n\tbackground: #b91319;\r\n\tborder-radius: 0;\r\n\tpadding: 8px 15px;\r\n}\r\n\r\n.woosmart_layout_11 .button a.boxed-color-xs:hover {\r\n\tborder: 0 solid;\r\n\tbackground: #2c2c2c;\r\n\tcolor: #fff;\r\n}\r\n\r\n.woosmart_layout_11 .font-thin {\r\n\tfont-weight: 400 !important;\r\n}\r\n\r\n.woosmart_layout_11 .font-bold {\r\n\tfont-weight: 600 !important;\r\n}\r\n\r\n.woosmart_layout_11 .uppercase {\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_11 .font-color {\r\n\tcolor: #b91319;\r\n}\r\n\r\n.woosmart_layout_11 .font-black {\r\n\tcolor: #000;\r\n}\r\n\r\n.woosmart_layout_11 .font20 {\r\n\tfont-size: 20px!important;\r\n}\r\n\r\n.woosmart_layout_11 .m-top2 {\r\n\tmargin-top: 20px;\r\n}\r\n\r\n.woosmart_layout_11 .m-bottom1 {\r\n\tmargin-bottom: 10px;\r\n}\r\n\r\n.woosmart_layout_11 .m-bottom2 {\r\n\tmargin-bottom: 20px!important;\r\n}\r\n\r\n.woosmart_layout_11 .m-bottom3 {\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_11 .btn {\r\n\tborder-radius: 0!important;\r\n}\r\n\r\n.woosmart_layout_11 img {\r\n\tmax-width: 100%;\r\n\theight: auto;\r\n}\r\n\r\n.woosmart_layout_11 .pro-display {\r\n\tborder: solid 1px #efeef4;\r\n\toverflow: hidden;\r\n\ttransition: all 0.3s ease 0s;\r\n\tposition:relative;\r\n}\r\n\r\n.woosmart_layout_11 .pro-display:hover {\r\n\tborder: solid 1px #aad18b;\r\n\toverflow: hidden;\r\n}\r\n.woosmart_layout_11 a:hover{\r\n\ttext-decoration:none;\r\n}\r\n.woosmart_layout_11 .pro-display h3{\r\n\tfont-size:20px;\r\n}\r\n@media only screen and (max-width: 1024px) {\r\n\t.woosmart_layout_11 .woosmart_add_to_wishlist,.woosmart_layout_11 .woosmart_view_wishlist{\r\n\t\tdisplay: block;\r\n\t\toverflow: hidden;\r\n\t\twidth: max-content;\r\n\t\tmargin: auto;\t\t\r\n\t}\r\n\t.woosmart_layout_11 .cd-item {\r\n\t\tdisplay:none;\r\n\t}\r\n}\r\n.woosmart_layout_11 .sale-badge{\r\n    position: absolute;\r\n    background: #bf0000;\r\n    width: 50px;\r\n    height: 50px;\r\n    line-height: 47px;\r\n    right: 0;\r\n    top: 0;\r\n    color: #fff;\r\n\tz-index:1;\t\r\n}\r\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_11.eacdb .button,.woosmart_layout_11.eacdb .added_to_cart{\r\n\t\tcolor:#6dab3c;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_11.eacdb .button,.woosmart_layout_11.eacdb .added_to_cart{\r\n\t\tbackground-color:#efefef;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_11.eacdb .button:hover,.woosmart_layout_11.eacdb .added_to_cart:hover{\r\n\t\tcolor:#ffffff;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_11.eacdb .button:hover,.woosmart_layout_11.eacdb .added_to_cart:hover{\r\n\t\tbackground-color:#6dab3c;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_11.eacdb .pro-display:hover{\r\n\t\tborder-color:#81d742;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_11.eacdb .sale-badge{\r\n\t\tbackground-color:#6dab3c;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_11.eacdb .sale-badge span{\r\n\t\tcolor:#ffffff;\r\n\t}\t\r\n\t<\/style>[vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 ihgej\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.ihgej .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 jlkik\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 12<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 12<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"edcba p-30-0-30 woosmart_layout_12\">\r\n   <div class=\"container\">\r\n      <div class=\"row\"><div class=\"col-md-6 mb-4\"><div class=\"customad-block\">\t\r\n   <div class=\"row\">\r\n   <div class=\"col-md-4\">\r\n   <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"featured-image\"><\/div>\r\n   <div class=\"col-md-8\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist66 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist66 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n      <h2 class=\"font-bold font-color font25 m-bottom2 uppercase\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\" class=\"font-bold font-color font25 uppercase\" style=\"color:#5286af\">Patient Ninja<\/a><\/h2>\r\n\t  <h6 ><span><span>&#036;<\/span>35.00<\/span><\/h6>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n      <p class=\"m-bottom2\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"product_type_simple add_to_cart_button ajax_add_to_cart\">Shop Now <i class=\"fas fa-arrow-circle-right\"><\/i><\/a><a href=\"?add_to_wishlist=66\" class=\"btn woosmart_add_to_wishlist woosmart_add_to_wishlist66 cursor-point\" data-product-id=\"66\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading66\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"btn woosmart_view_wishlist woosmart_view_wishlist66 cursor-point\" data-product-id=\"66\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item66\"><a href=\"#0\" class=\"btn  cursor-point cd-trigger cd-trigger66\" data-product-id=\"66\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n   <\/div>\r\n   <\/div>\r\n   <\/div><\/div><div class=\"cd-quick-view cd-quick-view66\">\r\n\t<div class=\"row cd-item-info cd-item-info66\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Patient Ninja<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action66\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close66\">Close<\/a>\r\n\t<\/div><div class=\"col-md-6 mb-4\"><div class=\"customad-block\">\t\r\n   <div class=\"row\">\r\n   <div class=\"col-md-4\">\r\n   <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"featured-image\"><\/div>\r\n   <div class=\"col-md-8\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist200 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist200 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n      <h2 class=\"font-bold font-color font25 m-bottom2 uppercase\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\" class=\"font-bold font-color font25 uppercase\" style=\"color:#5286af\">Nuture Hoodie<\/a><\/h2>\r\n\t  <h6 ><span><span>&#036;<\/span>100.00<\/span><\/h6>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n      <p class=\"m-bottom2\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_simple add_to_cart_button ajax_add_to_cart\">Shop Now <i class=\"fas fa-arrow-circle-right\"><\/i><\/a><a href=\"?add_to_wishlist=200\" class=\"btn woosmart_add_to_wishlist woosmart_add_to_wishlist200 cursor-point\" data-product-id=\"200\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading200\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"btn woosmart_view_wishlist woosmart_view_wishlist200 cursor-point\" data-product-id=\"200\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item200\"><a href=\"#0\" class=\"btn  cursor-point cd-trigger cd-trigger200\" data-product-id=\"200\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n   <\/div>\r\n   <\/div>\r\n   <\/div><\/div><div class=\"cd-quick-view cd-quick-view200\">\r\n\t<div class=\"row cd-item-info cd-item-info200\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Nuture Hoodie<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action200\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close200\">Close<\/a>\r\n\t<\/div><div class=\"col-md-6 mb-4\"><div class=\"customad-block\"><div class=\"sale-badge\" style=\"background-color:#52256d;color:#ffffff;\">\r\n\t<span>SALE<\/span>\r\n\t<\/div>\t\r\n   <div class=\"row\">\r\n   <div class=\"col-md-4\">\r\n   <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" alt=\"featured-image\"><\/div>\r\n   <div class=\"col-md-8\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist18 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist18 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n      <h2 class=\"font-bold font-color font25 m-bottom2 uppercase\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-3\/\" class=\"font-bold font-color font25 uppercase\" style=\"color:#5286af\">Woo Logo<\/a><\/h2>\r\n\t  <h6 ><del><span><span>&#036;<\/span>20.00<\/span><\/del> <ins><span><span>&#036;<\/span>18.00<\/span><\/ins><\/h6>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n      <p class=\"m-bottom2\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><a href=\"?add-to-cart=18\" rel=\"nofollow\" data-product_id=\"18\" data-product_sku=\"T-SHIRT-WOO-LOGO\" data-quantity=\"1\" class=\"product_type_simple add_to_cart_button ajax_add_to_cart\">Shop Now <i class=\"fas fa-arrow-circle-right\"><\/i><\/a><a href=\"?add_to_wishlist=18\" class=\"btn woosmart_add_to_wishlist woosmart_add_to_wishlist18 cursor-point\" data-product-id=\"18\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading18\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"btn woosmart_view_wishlist woosmart_view_wishlist18 cursor-point\" data-product-id=\"18\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item18\"><a href=\"#0\" class=\"btn  cursor-point cd-trigger cd-trigger18\" data-product-id=\"18\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n   <\/div>\r\n   <\/div>\r\n   <\/div><\/div><div class=\"cd-quick-view cd-quick-view18\">\r\n\t<div class=\"row cd-item-info cd-item-info18\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Logo<\/h2>\r\n\t<h3><del><span><span>&#036;<\/span>20.00<\/span><\/del> <ins><span><span>&#036;<\/span>18.00<\/span><\/ins><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action18\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=18\" rel=\"nofollow\" data-product_id=\"18\" data-product_sku=\"T-SHIRT-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close18\">Close<\/a>\r\n\t<\/div><div class=\"col-md-6 mb-4\"><div class=\"customad-block\">\t\r\n   <div class=\"row\">\r\n   <div class=\"col-md-4\">\r\n   <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"featured-image\"><\/div>\r\n   <div class=\"col-md-8\">\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist19 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist19 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\r\n      <h2 class=\"font-bold font-color font25 m-bottom2 uppercase\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\" class=\"font-bold font-color font25 uppercase\" style=\"color:#5286af\">Woo Nuture<\/a><\/h2>\r\n\t  <h6 ><span><span>&#036;<\/span>35.00<\/span><\/h6>\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span><span class='fas fa-star' style='color:#52256d'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n      <p class=\"m-bottom2\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p><a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"product_type_simple add_to_cart_button ajax_add_to_cart\">Shop Now <i class=\"fas fa-arrow-circle-right\"><\/i><\/a><a href=\"?add_to_wishlist=19\" class=\"btn woosmart_add_to_wishlist woosmart_add_to_wishlist19 cursor-point\" data-product-id=\"19\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading19\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"btn woosmart_view_wishlist woosmart_view_wishlist19 cursor-point\" data-product-id=\"19\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item19\"><a href=\"#0\" class=\"btn  cursor-point cd-trigger cd-trigger19\" data-product-id=\"19\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n   <\/div>\r\n   <\/div>\r\n   <\/div><\/div><div class=\"cd-quick-view cd-quick-view19\">\r\n\t<div class=\"row cd-item-info cd-item-info19\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Nuture<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action19\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close19\">Close<\/a>\r\n\t<\/div><\/div>\r\n   <\/div>\r\n<\/section>\n<style>\n.woosmart_layout_12 .ajax_add_to_cart.loading:after {\n    font-family: \"Font Awesome 5 Free\";\n    content: \"\\f110\";\n    vertical-align: top;\n    font-weight: 900;\n    position: absolute;\n    top: -1px;\n    right: -20px;\n    -webkit-animation: spin 2s linear infinite;\n    animation: spin 2s linear infinite;\n}\n.woosmart_layout_12 .cd-quick-view .ajax_add_to_cart.loading:after {\n    font-family: \"Font Awesome 5 Free\";\n    content: \"\\f110\";\n    vertical-align: top;\n    font-weight: 900;\n    position: absolute;\n    top: -1px;\n    right: 8px;\n    -webkit-animation: spin 2s linear infinite;\n    animation: spin 2s linear infinite;\n}\n.woosmart_layout_12 .add_to_cart_button.added{\n\tdisplay:none;\n}\n.woosmart_layout_12 .add_to_cart_button{\n\tposition:relative\n}\n\n.woosmart_layout_12 .btn {\n\tmargin-right: 10px;\n\tcolor:#fff;\n\twidth: 45px;\n}\n.woosmart_layout_12 .ajax_add_to_cart,.woosmart_layout_12 .added_to_cart {\n\tmargin-right: 25px;\n\tbackground: transparent;\n    border: 0;\n    padding: 0;\n}\n.woosmart_layout_12 .woosmart_add_to_wishlist,.woosmart_layout_12 .woosmart_view_wishlist{\n\tposition:relative;\n\tbackground:#ff0000;\n\tcolor:#fff;\n\tborder:0;\n\twidth:40px;\n\theight:40px;\n}\n.woosmart_layout_12 .add_to_cart_button:focus,.woosmart_layout_12 .added_to_cart:focus{\n\tcolor:#fff;\n}\n.woosmart_layout_12 .wishlist_loader{\n\twidth: 16px;\n    position: absolute;\n    top: 8px;\n    left: 12px;\n}\n.woosmart_layout_12 .cd-trigger{\n\tposition: inherit;\n    background: #ff0000;\n    color: #fff;\n    border: 0;\n    height: 40px;\t\n}\n.woosmart_layout_12 .cd-trigger:hover{\n\tbackground:#ff0000\n}\n.woosmart_layout_12 .cd-item{\n\tdisplay:inline-block;\n}\n\n.woosmart_layout_12 .product-added-to-wishlist,.woosmart_layout_12 .product-already-in-wishlist{\n    position: absolute;\n    display: none;\n    text-align: center;\n    background: rgba(255, 255, 255, 0.75);\n    padding: 10px;\n    width: 99%;\n    z-index: 2;\t\n}\n.woosmart_layout_12 .stars-rating{\n\tfont-size: 12px;\n    margin-bottom: 5px;\n    color: #db8118;\n}\n\n.woosmart_layout_12 .sale-badge{\n    position: absolute;\n    background: #bf0000;\n    width: 50px;\n    height: 50px;\n    line-height: 47px;\n    left: 0;\n    top: 0;\n    color: #fff;\n\tz-index:1;\n    text-align:center;\n}\n.woosmart_layout_12 .font-bold {\n\tfont-weight: 600!important;\n}\n\n.woosmart_layout_12 .uppercase {\n\ttext-transform: uppercase;\n}\n\n.woosmart_layout_12 .font-color {\n\tcolor: #b91319;\n}\n\n.woosmart_layout_12 .font25 {\n\tfont-size: 25px!important;\n}\n\n.woosmart_layout_12 .m-top2 {\n\tmargin-top: 20px;\n}\n\n.woosmart_layout_12 .m-bottom2 {\n\tmargin-bottom: 20px!important;\n}\n\n.woosmart_layout_12 img {\n\tmax-width: 100%;\n\theight: auto;\n}\n\n.woosmart_layout_12 .customad-block {\n\tborder: solid 1px #aad18b;\n\tpadding: 15px 25px 15px 15px;\n\toverflow: hidden;\n\tposition:relative;\n}\n\n.woosmart_layout_12 .customad-block a {\n\tfont-size: 18px;\n\ttext-transform: uppercase;\n\tfont-weight: 700;\n}\n\n.woosmart_layout_12 .customad-block a:hover {\n\ttext-decoration: none;\n}\n\n.woosmart_layout_12 .customad-block a:focus {\n\tcolor: inherit;\n\ttext-decoration:none;\n\toutline:0;\n}\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_12.edcba .customad-block .ajax_add_to_cart,.woosmart_layout_12.edcba .customad-block .added_to_cart{\r\n\t\tcolor:#5286af;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_12.edcba .customad-block{\r\n\t\tborder-color:#efefef;\r\n\t}\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_12.edcba .sale-badge{\r\n\t\tbackground-color:#52256d;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_12.edcba .sale-badge span{\r\n\t\tcolor:#ffffff;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t .woosmart_layout_12.edcba .btn{\r\n\t\tbackground-color:#52256d;\r\n\t}\t\r\n\t<\/style>[vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 iegjh\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.iegjh .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 kjilk\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 8<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 8<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\n<section class=\"ebcda p-30-0-30 woosmart_layout_8\">\n   <div class=\"container\">\n      <div class=\"row\"><div class=\"col-md-3 col-sm-6 col-xs-12 m-bottom5\">\n\t\t\t   <div class=\"menu-card\">\n\t\t\t\t  <div class=\"m-bottom2\">\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"featured-image\"><\/a>\n<div class=\"product-added-to-wishlist product-added-to-wishlist280 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist280 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div><\/div>\n\t\t\t\t\t<div class=\"m-top1 row p-0 m-0\">\n\t\t\t\t  <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=280\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist280 cursor-point\" data-product-id=\"280\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading280\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist280 cursor-point\" data-product-id=\"280\" ><i class=\"fas fa-list\"><\/i><\/a>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t  <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item280\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger280\" data-product-id=\"280\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t\t<\/div>\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span>\n                  <\/div>\n                  \n\t\t\t\t  <div class=\"menu-items\">\n\t\t\t\t\t <h3 class=\"font-bold font-black\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\" style=\"color:#45362f\">Special Coffee<\/a><\/h3>\n\t\t\t\t\t \n\t\t\t\t\t <span class=\"price\" style=\"color:#773e4f\"><span><span>&#036;<\/span>140.00<\/span><\/span>\n\t\t\t\t\t \n\t\t\t\t\t <div class=\"dotted-lines\"><\/div>\n\t\t\t\t  <\/div>\n\t\t\t\t  <p class=\"m-top1\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p>\n\t\t\t\t  <div class=\"full-wid left m-top1 col-md-12 p-0\"><a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\n\n\t\t\t   <\/div>\n\t\t\t<\/div><div class=\"cd-quick-view cd-quick-view280\">\n\t<div class=\"row cd-item-info cd-item-info280\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Special Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action280\">\n\t<li>\n\t<a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close280\">Close<\/a>\n\t<\/div><div class=\"col-md-3 col-sm-6 col-xs-12 m-bottom5\">\n\t\t\t   <div class=\"menu-card\">\n\t\t\t\t  <div class=\"m-bottom2\">\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"featured-image\"><\/a>\n<div class=\"product-added-to-wishlist product-added-to-wishlist279 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist279 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div><\/div>\n\t\t\t\t\t<div class=\"m-top1 row p-0 m-0\">\n\t\t\t\t  <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=279\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist279 cursor-point\" data-product-id=\"279\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading279\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist279 cursor-point\" data-product-id=\"279\" ><i class=\"fas fa-list\"><\/i><\/a>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t  <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item279\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger279\" data-product-id=\"279\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t\t<\/div>\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span>\n                  <\/div>\n                  \n\t\t\t\t  <div class=\"menu-items\">\n\t\t\t\t\t <h3 class=\"font-bold font-black\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\" style=\"color:#45362f\">Sir Coffee<\/a><\/h3>\n\t\t\t\t\t \n\t\t\t\t\t <span class=\"price\" style=\"color:#773e4f\"><span><span>&#036;<\/span>20.00<\/span><\/span>\n\t\t\t\t\t \n\t\t\t\t\t <div class=\"dotted-lines\"><\/div>\n\t\t\t\t  <\/div>\n\t\t\t\t  <p class=\"m-top1\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p>\n\t\t\t\t  <div class=\"full-wid left m-top1 col-md-12 p-0\"><a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\n\n\t\t\t   <\/div>\n\t\t\t<\/div><div class=\"cd-quick-view cd-quick-view279\">\n\t<div class=\"row cd-item-info cd-item-info279\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Sir Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>20.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action279\">\n\t<li>\n\t<a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close279\">Close<\/a>\n\t<\/div><div class=\"col-md-3 col-sm-6 col-xs-12 m-bottom5\">\n\t\t\t   <div class=\"menu-card\">\n\t\t\t\t  <div class=\"m-bottom2\">\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"featured-image\"><\/a>\n<div class=\"product-added-to-wishlist product-added-to-wishlist278 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist278 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div><\/div>\n\t\t\t\t\t<div class=\"m-top1 row p-0 m-0\">\n\t\t\t\t  <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=278\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist278 cursor-point\" data-product-id=\"278\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading278\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist278 cursor-point\" data-product-id=\"278\" ><i class=\"fas fa-list\"><\/i><\/a>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t  <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item278\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger278\" data-product-id=\"278\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t\t<\/div>\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span>\n                  <\/div>\n                  \n\t\t\t\t  <div class=\"menu-items\">\n\t\t\t\t\t <h3 class=\"font-bold font-black\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\" style=\"color:#45362f\">Macho Coffee<\/a><\/h3>\n\t\t\t\t\t \n\t\t\t\t\t <span class=\"price\" style=\"color:#773e4f\"><span><span>&#036;<\/span>50.00<\/span><\/span>\n\t\t\t\t\t \n\t\t\t\t\t <div class=\"dotted-lines\"><\/div>\n\t\t\t\t  <\/div>\n\t\t\t\t  <p class=\"m-top1\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p>\n\t\t\t\t  <div class=\"full-wid left m-top1 col-md-12 p-0\"><a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\n\n\t\t\t   <\/div>\n\t\t\t<\/div><div class=\"cd-quick-view cd-quick-view278\">\n\t<div class=\"row cd-item-info cd-item-info278\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Macho Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action278\">\n\t<li>\n\t<a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close278\">Close<\/a>\n\t<\/div><div class=\"col-md-3 col-sm-6 col-xs-12 m-bottom5\">\n\t\t\t   <div class=\"menu-card\">\n\t\t\t\t  <div class=\"m-bottom2\">\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cold-coffee\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"featured-image\"><\/a>\n<div class=\"product-added-to-wishlist product-added-to-wishlist277 hide\">\n<span class=\"feedback\">Product added to wishlist!<\/span>\n<\/div>\n<div class=\"product-already-in-wishlist product-already-in-wishlist277 hide\" style=\"display:none\">\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\n<\/div><\/div>\n\t\t\t\t\t<div class=\"m-top1 row p-0 m-0\">\n\t\t\t\t  <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=277\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist277 cursor-point\" data-product-id=\"277\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading277\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist277 cursor-point\" data-product-id=\"277\" ><i class=\"fas fa-list\"><\/i><\/a>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t  <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item277\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger277\" data-product-id=\"277\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\t  \n\t\t\t\t  <\/div>\n\t\t\t\t\t<\/div>\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span>\n                  <\/div>\n                  \n\t\t\t\t  <div class=\"menu-items\">\n\t\t\t\t\t <h3 class=\"font-bold font-black\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/cold-coffee\/\" style=\"color:#45362f\">Cold Coffee<\/a><\/h3>\n\t\t\t\t\t \n\t\t\t\t\t <span class=\"price\" style=\"color:#773e4f\"><span><span>&#036;<\/span>100.00<\/span><\/span>\n\t\t\t\t\t \n\t\t\t\t\t <div class=\"dotted-lines\"><\/div>\n\t\t\t\t  <\/div>\n\t\t\t\t  <p class=\"m-top1\" >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p>\n\t\t\t\t  <div class=\"full-wid left m-top1 col-md-12 p-0\"><a href=\"?add-to-cart=277\" rel=\"nofollow\" data-product_id=\"277\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\n\n\t\t\t   <\/div>\n\t\t\t<\/div><div class=\"cd-quick-view cd-quick-view277\">\n\t<div class=\"row cd-item-info cd-item-info277\">\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee4.jpg\" alt=\"Featured-image\"><\/div>\n\t<div class=\"col-md-8\">\n\t<h2>Cold Coffee<\/h2>\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\n\t<ul class=\"pl-0 cd-item-action cd-item-action277\">\n\t<li>\n\t<a href=\"?add-to-cart=277\" rel=\"nofollow\" data-product_id=\"277\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\n\t<\/li>\n\t<\/ul>\n\t<\/div>\n\t<\/div>\n\t<a href=\"#0\" class=\"cd-close cd-close277\">Close<\/a>\n\t<\/div><\/div>\n   <\/div>\n<\/section>\n<style>\n.woosmart_layout_8 .ajax_add_to_cart:focus{\n\tcolor:#fff;\n}\n.woosmart_layout_8 a:hover{\n\ttext-decoration:none;\n}\n.woosmart_layout_8 .ajax_add_to_cart{\n\tposition:relative;\n\tpadding: 5px 25px 5px 25px;\n\tborder-radius:0px;\n\tborder:0;\n\tbackground-color:#C8001E;\n\ttext-transform:uppercase;\n}\n.woosmart_layout_8 .ajax_add_to_cart:hover,.woosmart_layout_8 .added_to_cart:hover{\n\tcolor:#fff;\n\tbackground-color:#2C2C2C;\n}\n.woosmart_layout_8 .ajax_add_to_cart.added{\n\tdisplay:none;\n}\n.woosmart_layout_8 .ajax_add_to_cart.loading:after {\n\tfont-family: \"Font Awesome 5 Free\";\n\tcontent: \"\\f110\";\n\tvertical-align: top;\n\tfont-weight: 900;\n\tposition: absolute;\n\ttop: 5px;\n    right: 6px;\n\t-webkit-animation: spin 2s linear infinite;\n\tanimation: spin 2s linear infinite;\n}\n.woosmart_layout_8 .added_to_cart{\n\tpadding: 5px 25px 5px 25px;\t\n\tborder-radius:0px;\n\tbackground-color:#C8001E;\n\tborder:0;\n\ttext-transform:uppercase;\t\n}\n.woosmart_layout_8 .left {\n\tfloat: left !important;\n}\n\n.woosmart_layout_8  .full-wid {\n\twidth: 100%;\n}\n\n.woosmart_layout_8 .menu-card {\n\tmargin-bottom: 40px;\n}\n\n.woosmart_layout_8 .menu-items {\n\toverflow: hidden;\n\tposition: relative;\n\tz-index: 1;\n}\n\n.woosmart_layout_8 .menu-items h3 {\n\tbackground: #fff;\n\tdisplay: inline;\n\tfloat: left;\n\tmargin: 5px 0;\n\tpadding-right: 10px;\n\ttext-align: left;\n\tcolor: #010101;\n\tfont-size: 20px;\n}\n\n.woosmart_layout_8 .menu-items .price {\n    background: #fff;\n    color: #b91319;\n    float: right;\n    font-size: 14px;\n    font-style: italic;\n    font-weight: 500;\n    margin: 8px 0;\n    padding-left: 10px;\n}\n\n.woosmart_layout_8 .menu-items .dotted-lines {\n\tborder-top: 2px dotted #ccc;\n\tleft: 0;\n\tposition: absolute;\n\ttop: 18px;\n\twidth: 100%;\n\tz-index: -1;\n}\n\n.woosmart_layout_8 .font-bold {\n\tfont-weight: 600!important;\n}\n\n.woosmart_layout_8 .uppercase {\n\ttext-transform: uppercase;\n}\n\n.woosmart_layout_8 .font-white {\n\tcolor: #FFF!important;\n}\n\n.woosmart_layout_8 .font-black {\n\tcolor: #000;\n}\n\n.woosmart_layout_8 .m-top1 {\n\tmargin-top: 10px;\n}\n\n.woosmart_layout_8 .m-bottom2 {\n\tmargin-bottom: 20px!important;\n}\n\n.woosmart_layout_8 .m-bottom5 {\n\tmargin-bottom: 50px;\n}\n\n.woosmart_layout_8 img {\n\tmax-width: 100%;\n\theight: auto;\n}\n.woosmart_layout_8 .menu-items h3 a {\n    color: #262526;\n    font-weight: 500;\n    letter-spacing: .1em;\n    text-transform: uppercase;\n\tfont-size: 14px;\t\n}\n.woosmart_layout_8 .wishlist_loader{\n\twidth: 16px;\n    position: absolute;\n\ttop: 16px;\n    left: 53px;\n}\n.woosmart_layout_8 .woosmart_add_to_wishlist{\n\tposition: relative;\n    height: 50px;\n    line-height: 50px;\n    width: 100%;\n    bottom: 0;\n    left: 0;\n    background: rgba(0, 0, 0, 0.1);\n    text-align: center;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    color: #ffffff;\n    display: block;\n    visibility: visible;\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\n    -moz-transition: opacity 0.2s, background-color 0.2s;\n    transition: opacity 0.2s, background-color 0.2s;\n}\n.woosmart_layout_8  .woosmart_view_wishlist{\n\tdisplay:none;\n\tposition: relative;\n    height: 50px;\n    line-height: 50px;\n    width: 100%;\n    bottom: 0;\n    left: 0;\n    background: rgba(0, 0, 0, 0.1);\n    text-align: center;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    color: #ffffff;\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\n    -moz-transition: opacity 0.2s, background-color 0.2s;\n    transition: opacity 0.2s, background-color 0.2s;\t\n}\n.woosmart_layout_8 .woosmart_add_to_wishlist:hover,.woosmart_layout_8  .woosmart_view_wishlist:hover{\n\tbackground: rgba(0, 0, 0, 0.2);\n}\n.woosmart_layout_8 .cd-trigger:hover {\n  color: #fff;\n}\n.woosmart_layout_8 .product-added-to-wishlist,.woosmart_layout_8 .product-already-in-wishlist{\n\tposition:absolute;\n\tdisplay:none;\n\ttext-align: center;\n    background: rgba(255, 255, 255, 0.7);\n    padding: 10px;\n    width: 100%;\n    top: 105px;\t\n}\n.woosmart_layout_8 .stars-rating{\n\tfont-size: 12px;\n    margin-top: 12px;\n    color: #a62b2b;\t\n}\n.woosmart_layout_8  .m-bottom2{\n    position:relative;\n}\n<\/style>\n\t<style>\n\t.woosmart_layout_8.ebcda .button,.woosmart_layout_8.ebcda .added_to_cart{\n\t\tbackground-color:#65323e;\n\t}\t\n\t<\/style>\n\t<style>\n\t.woosmart_layout_8.ebcda .button:hover,.woosmart_layout_8.ebcda .added_to_cart:hover{\n\t\tcolor:#ffffff;\n\t}\t\n\t<\/style>\n\t<style>\n\t.woosmart_layout_8.ebcda .button:hover,.woosmart_layout_8.ebcda .added_to_cart:hover{\n\t\tbackground-color:#773e4f;\n\t}\t\n\t<\/style>\n\t<style>\n\t.woosmart_layout_8.ebcda .woosmart_add_to_wishlist,.woosmart_layout_8.ebcda .cd-trigger,.woosmart_layout_8.ebcda .woosmart_view_wishlist{\n\t\tbackground-color:#1f1c1b;\n\t}\t\n\t<\/style>\n\t<style>\n\t.woosmart_layout_8.ebcda .woosmart_add_to_wishlist:hover,.woosmart_layout_8.ebcda .cd-trigger:hover,.woosmart_layout_8.ebcda .woosmart_view_wishlist:hover{\n\t\tbackground-color:#773e4f;\n\t}\t\n\t<\/style>\n\t<style>\n\t.woosmart_layout_8.ebcda .menu-items h3,.woosmart_layout_8.ebcda .menu-items .price{\n\t\tbackground-color:#f7f8fc;\n\t}\t\n\t<\/style>[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 ejigh\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.ejigh .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 kilkj\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 14<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 14<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"cdaeb p-30-0-30 woosmart_layout_14\">\r\n   <div class=\"container\">\r\n      <div class=\"row\"><div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\t<div class=\"menu-card\">\t\r\n\t   <div class=\"m-bottom2\">\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist280 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist280 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\t   \r\n\t   <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"featured-image\"><\/a><\/div>\r\n\t   <div class=\"star-rating nodisplay\"><\/div>\r\n\t   <div class=\"menu-items\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-bold font-black text-center\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/special-coffee\/\" >Special Coffee<\/a><\/h3>\r\n\t\t  <span class=\"price text-left\" ><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>140.00<\/bdi><\/span><\/span>\r\n\t\t  <div class=\"dotted-lines\"><\/div>\r\n\t   <\/div>\r\n\t   <div class=\"pricing-action text-right\"><a href=\"?add_to_wishlist=280\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist280 cursor-point\" data-product-id=\"280\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading280\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist280 cursor-point\" data-product-id=\"280\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item280\"><a href=\"#0\" class=\"button  cursor-point cd-trigger cd-trigger280\" data-product-id=\"280\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t   <\/div>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view280\">\r\n\t<div class=\"row cd-item-info cd-item-info280\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee8-1.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Special Coffee<\/h2>\r\n\t<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action280\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=280\" rel=\"nofollow\" data-product_id=\"280\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close280\">Close<\/a>\r\n\t<\/div><div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\t<div class=\"menu-card\">\t\r\n\t   <div class=\"m-bottom2\">\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist279 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist279 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\t   \r\n\t   <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"featured-image\"><\/a><\/div>\r\n\t   <div class=\"star-rating nodisplay\"><\/div>\r\n\t   <div class=\"menu-items\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-bold font-black text-center\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/sir-coffee\/\" >Sir Coffee<\/a><\/h3>\r\n\t\t  <span class=\"price text-left\" ><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>20.00<\/bdi><\/span><\/span>\r\n\t\t  <div class=\"dotted-lines\"><\/div>\r\n\t   <\/div>\r\n\t   <div class=\"pricing-action text-right\"><a href=\"?add_to_wishlist=279\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist279 cursor-point\" data-product-id=\"279\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading279\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist279 cursor-point\" data-product-id=\"279\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item279\"><a href=\"#0\" class=\"button  cursor-point cd-trigger cd-trigger279\" data-product-id=\"279\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t   <\/div>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view279\">\r\n\t<div class=\"row cd-item-info cd-item-info279\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffe3.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Sir Coffee<\/h2>\r\n\t<h3><span><span>&#036;<\/span>20.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action279\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=279\" rel=\"nofollow\" data-product_id=\"279\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close279\">Close<\/a>\r\n\t<\/div><div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n\t<div class=\"menu-card\">\t\r\n\t   <div class=\"m-bottom2\">\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist278 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist278 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\t   \r\n\t   <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"featured-image\"><\/a><\/div>\r\n\t   <div class=\"star-rating nodisplay\"><\/div>\r\n\t   <div class=\"menu-items\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span><span class='fas fa-star' style='color:#925768'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t  <h3 class=\"font-bold font-black text-center\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/macho-coffee\/\" >Macho Coffee<\/a><\/h3>\r\n\t\t  <span class=\"price text-left\" ><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>50.00<\/bdi><\/span><\/span>\r\n\t\t  <div class=\"dotted-lines\"><\/div>\r\n\t   <\/div>\r\n\t   <div class=\"pricing-action text-right\"><a href=\"?add_to_wishlist=278\" class=\"button woosmart_add_to_wishlist woosmart_add_to_wishlist278 cursor-point\" data-product-id=\"278\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading278\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"button woosmart_view_wishlist woosmart_view_wishlist278 cursor-point\" data-product-id=\"278\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item278\"><a href=\"#0\" class=\"button  cursor-point cd-trigger cd-trigger278\" data-product-id=\"278\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t   <\/div>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view278\">\r\n\t<div class=\"row cd-item-info cd-item-info278\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/coffee7.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Macho Coffee<\/h2>\r\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action278\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=278\" rel=\"nofollow\" data-product_id=\"278\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close278\">Close<\/a>\r\n\t<\/div><\/div>\r\n   <\/div>\r\n<\/section>\r\n<style>\r\n.woosmart_layout_14 .ajax_add_to_cart.loading:after {\r\n    font-family: \"Font Awesome 5 Free\";\r\n    content: \"\\f110\";\r\n\tvertical-align: middle;\r\n    font-weight: 900;\r\n    position: absolute;\r\n    top: 15%;\r\n    right: 32px;\r\n    color: #cd5c5c;\r\n    -webkit-animation: spin 2s linear infinite;\r\n    animation: spin 2s linear infinite;\r\n    font-size: 21px;\r\n}\r\n.woosmart_layout_14 .cd-quick-view .ajax_add_to_cart.loading:after {\r\n    font-family: \"Font Awesome 5 Free\";\r\n    content: \"\\f110\";\r\n    vertical-align: top;\r\n    font-weight: 900;\r\n    position: absolute;\r\n    top: -1px;\r\n    right: 8px;\r\n    -webkit-animation: spin 2s linear infinite;\r\n    animation: spin 2s linear infinite;\r\n\tcolor:#fff;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_14 .add_to_cart_button{\r\n\tposition:relative\r\n}\r\n\r\n\r\n.woosmart_layout_14 .woosmart_add_to_wishlist,.woosmart_layout_14 .woosmart_view_wishlist{\r\n\tposition:relative;\r\n\tcolor:#fff;\r\n\twidth: 34px;\r\n    height: 34px;\r\n    background-color: #f9a392;\r\n    border-right: 1px solid #fff;\r\n    border-left: none;\r\n    border-top: none;\r\n    border-bottom: none;\r\n    padding: 5px;\r\n\tborder-radius:0;\r\n    display: inline-block;\t\t\r\n}\r\n.woosmart_layout_14 .add_to_cart_button:focus,.woosmart_layout_14 .added_to_cart:focus{\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_14 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n    top: 8px;\r\n    left: 8px;\r\n}\r\n.woosmart_layout_14 .cd-trigger{\r\n\tposition: inherit;\r\n\tleft:inherit;\r\n\theight: auto;\r\n    line-height: initial;\t\r\n    background-color: #f9a392;\r\n    border-right: 1px solid #fff;\r\n    border-left: none;\r\n    border-top: none;\r\n    border-bottom: none;\r\n    padding: 5px;\r\n\tborder-radius:0;\r\n    display: inline-block;\r\n\twidth: 34px;\r\n    height: 34px;\r\n}\r\n.woosmart_layout_14 .cd-trigger:hover{\r\n    border-right: 1px solid #fff;\r\n    border-left: none;\r\n    border-top: none;\r\n    border-bottom: none;\t\r\n}\r\n.woosmart_layout_14 .cd-quick-view .ajax_add_to_cart.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_14 .cd-quick-view .added_to_cart,.woosmart_layout_14 .cd-quick-view .added_to_cart:hover{\r\n\tfont-size:16px;\r\n}\r\n.woosmart_layout_14 .cd-item{\r\n\tdisplay:inline-block;\r\n}\r\n\r\n.woosmart_layout_14 .product-added-to-wishlist,.woosmart_layout_14 .product-already-in-wishlist{\r\n    position: absolute;\r\n    display: none;\r\n    text-align: center;\r\n    background: rgba(255, 255, 255, 0.75);\r\n    padding: 10px;\r\n    width: 100%;\r\n    z-index: 2;\r\n    top: 0;\t\r\n}\r\n.woosmart_layout_14 .stars-rating{\r\n\tfont-size: 12px;\r\n    margin-bottom: 5px;\r\n    color: #db8118;\r\n}\r\n\r\n.woosmart_layout_14 .sale-badge{\r\n\tmargin: -.5em -.5em 0 0;\r\n    width: 40px;\r\n    height: 40px;\r\n    border-radius: 50%;\r\n    color: #fff;\r\n    display: block;\r\n    position: absolute;\r\n    left: -8px;\r\n    top: 0px;\r\n    text-align: center;\r\n    line-height: 38px;\r\n    font-size: 1em;\r\n    z-index: 3;\r\n    border: 1px solid #fff;\r\n    -webkit-box-shadow: 0 2px 1px rgba(0,0,0,.15);\r\n    box-shadow: 0 2px 1px rgba(0,0,0,.15);\r\n    background: #e99a63;\t\r\n}\r\n\r\n.woosmart_layout_14 .menu-card:hover {\r\n\tborder: 1px solid #f9a392;\r\n}\r\n\r\n.woosmart_layout_14 .menu-items{\r\n\ttext-align: center;\r\n    padding-bottom: 20px;\t\r\n}\r\n.woosmart_layout_14 .menu-items a {\r\n\tcolor: #010101;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.woosmart_layout_14 .button.add_to_cart_button,\r\n.woosmart_layout_14 .button.ajax_add_to_cart {\r\n\tmargin-top: 0;\r\n}\r\n\r\n\r\n.woosmart_layout_14 .product .menu-items h3 a {\r\n\tcolor: #262526 ;\r\n\tfont-weight: 500;\r\n\tletter-spacing: .1em;\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_14 .nodisplay {\r\n\tdisplay: none ;\r\n}\r\n\r\n.woosmart_layout_14 .pricing-action .add_to_cart_button,\r\n.woosmart_layout_14 .added_to_cart ,\r\n.woosmart_layout_14 .pricing-action .ajax_add_to_cart,\r\n.woosmart_layout_14 .pricing-action .product_type_simple {\r\n\tcolor: #fff;\r\n\tfont-size: 10px;\r\n\ttext-transform: uppercase;\r\n\toutline: 0;\r\n\tbox-shadow: none;\r\n\tletter-spacing: 1px;\r\n\tline-height: 24px;\r\n\tfont-weight: 400;\r\n\tborder-radius: 0;\r\n}\r\n\r\n.woosmart_layout_14 .pricing-action .add_to_cart_button:hover,\r\n.woosmart_layout_14 .added_to_cart:hover,\r\n.woosmart_layout_14 .pricing-action .ajax_add_to_cart:hover,\r\n.woosmart_layout_14 .pricing-action .product_type_simple:hover {\r\n\tcolor: #fff;\r\n\tfont-size: 10px;\r\n\ttext-transform: uppercase;\r\n\toutline: 0;\r\n\tbox-shadow: none;\r\n\tletter-spacing: 1px;\r\n\tline-height: 24px;\r\n\tfont-weight: 400;\r\n\tborder-radius: 0;\r\n\ttext-decoration:none;\r\n}\r\n\r\n.woosmart_layout_14 .pricing-action {\r\n\tpadding-top: 0px;\r\n\tpadding-bottom: 0px;\r\n}\r\n\r\n.woosmart_layout_14 .price {\r\n\tpadding-bottom: 15px;\r\n}\r\n\r\n.woosmart_layout_14 .text-left {\r\n\ttext-align: center;\r\n\tfloat: none;\r\n}\r\n\r\n.woosmart_layout_14 .text-right {\r\n\ttop: 0px;\r\n\tright: 15px;\r\n\toverflow: hidden;\r\n\tposition: absolute;\r\n}\r\n\r\n.woosmart_layout_14 .text-right a.added {\r\n\tdisplay: none ;\r\n}\r\n\r\n.woosmart_layout_14 .menu-card .menu-items h3 a {\r\n\tpadding: .5em 0 .2em 0;\r\n\tfont-size: 14px;\r\n\tfont-weight: 600;\r\n\tline-height: 1.3em;\r\n\ttext-transform: uppercase;\r\n\tletter-spacing: 0.05em;\r\n\tcolor: #323232;\r\n}\r\n\r\n.woosmart_layout_14 .menu-card {\r\n\tborder: 1px solid #F1F1F1;\r\n\tborder-radius: 0;\r\n\tmargin-bottom: 35px;\r\n}\r\n\r\n.woosmart_layout_14 h3 a,\r\n.woosmart_layout_14 h3 {\r\n\tletter-spacing: 1px;\r\n}\r\n.woosmart_layout_14 .pricing-action .add_to_cart_button, .woosmart_layout_14 .pricing-action .product_type_simple, .woosmart_layout_14 .pricing-action .ajax_add_to_cart,.woosmart_layout_14 .added_to_cart{\r\n    background-color: #f9a392;\r\n    border: none;\r\n    padding: 5px;\r\n    display: inline-block;\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_14 .cd-trigger:hover{\r\n    background-color: #f9a392;\r\n    padding: 5px;\r\n    display: inline-block;\r\n\tcolor:#fff;\t\r\n}\r\n.woosmart_layout_14 .m-bottom2{\r\n\tposition:relative;\r\n}\r\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_14.cdaeb .sale-badge{\r\n\t\tbackground-color:#5d3d46;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_14.cdaeb .woosmart_add_to_wishlist, .woosmart_layout_14.cdaeb .woosmart_view_wishlist,.woosmart_layout_14.cdaeb .cd-trigger,.woosmart_layout_14.cdaeb .pricing-action .add_to_cart_button, .woosmart_layout_14.cdaeb .pricing-action .product_type_simple, .woosmart_layout_14.cdaeb .pricing-action .ajax_add_to_cart,.woosmart_layout_14.cdaeb .added_to_cart{\r\n\t\tbackground-color:#5d3d46;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_14.cdaeb .menu-card:hover{\r\n\t\tborder-color:#d1d1d1;\r\n\t}\t\r\n\t<\/style>[vc_empty_space height=&#8221;10px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 ijheg\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.ijheg .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 klkji\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 2<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 2<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n<section class=\"edacb p-30-0-30 woosmart_layout_2\">\r\n\t<div class=\"container\">\r\n\t\t\t\t<div class=\"row\"><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist66 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist66 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons66 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=66\" class=\"hover-background-primary woosmart_add_to_wishlist66 cursor-point\" data-product-id=\"66\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading66\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist66 cursor-point\" data-product-id=\"66\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item66\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger66 cursor-point\" data-product-id=\"66\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Patient Ninja<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view66\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info66\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Patient Ninja<\/h2>\r\n\t\t\t\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action66\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close66\">Close<\/a>\r\n\t\t<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist200 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist200 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons200 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=200\" class=\"hover-background-primary woosmart_add_to_wishlist200 cursor-point\" data-product-id=\"200\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading200\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist200 cursor-point\" data-product-id=\"200\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item200\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger200 cursor-point\" data-product-id=\"200\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Nuture Hoodie<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><span><span>&#036;<\/span>100.00<\/span><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view200\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info200\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Nuture Hoodie<\/h2>\r\n\t\t\t\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action200\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close200\">Close<\/a>\r\n\t\t<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"ribbon\">\r\n\t\t\t  <div class=\"ribbon-wrap\">\r\n\t\t\t\t<span class=\"ribbon6\" >Sale<\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t<\/div><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-3\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist18 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist18 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons18 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=18\" class=\"hover-background-primary woosmart_add_to_wishlist18 cursor-point\" data-product-id=\"18\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading18\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist18 cursor-point\" data-product-id=\"18\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item18\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger18 cursor-point\" data-product-id=\"18\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=18\" rel=\"nofollow\" data-product_id=\"18\" data-product_sku=\"T-SHIRT-WOO-LOGO\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-3\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Woo Logo<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><del><span><span>&#036;<\/span>20.00<\/span><\/del> <ins><span><span>&#036;<\/span>18.00<\/span><\/ins><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view18\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info18\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Woo Logo<\/h2>\r\n\t\t\t\t<h3><del><span><span>&#036;<\/span>20.00<\/span><\/del> <ins><span><span>&#036;<\/span>18.00<\/span><\/ins><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action18\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"?add-to-cart=18\" rel=\"nofollow\" data-product_id=\"18\" data-product_sku=\"T-SHIRT-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close18\">Close<\/a>\r\n\t\t<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist19 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist19 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons19 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=19\" class=\"hover-background-primary woosmart_add_to_wishlist19 cursor-point\" data-product-id=\"19\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading19\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist19 cursor-point\" data-product-id=\"19\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item19\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger19 cursor-point\" data-product-id=\"19\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Woo Nuture<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view19\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info19\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Woo Nuture<\/h2>\r\n\t\t\t\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action19\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close19\">Close<\/a>\r\n\t\t<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-3\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_6_front.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist20 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist20 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons20 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_6_front.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=20\" class=\"hover-background-primary woosmart_add_to_wishlist20 cursor-point\" data-product-id=\"20\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading20\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist20 cursor-point\" data-product-id=\"20\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item20\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger20 cursor-point\" data-product-id=\"20\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_6_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=20\" rel=\"nofollow\" data-product_id=\"20\" data-product_sku=\"T-SHIRT-WOO-NINJA\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-3\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Woo Ninja<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view20\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info20\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_6_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Woo Ninja<\/h2>\r\n\t\t\t\t<h3><span><span>&#036;<\/span>20.00<\/span><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action20\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"?add-to-cart=20\" rel=\"nofollow\" data-product_id=\"20\" data-product_sku=\"T-SHIRT-WOO-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close20\">Close<\/a>\r\n\t\t<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist21 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist21 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons21 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=21\" class=\"hover-background-primary woosmart_add_to_wishlist21 cursor-point\" data-product-id=\"21\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading21\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist21 cursor-point\" data-product-id=\"21\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item21\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger21 cursor-point\" data-product-id=\"21\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-2\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Woo Hoodies<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view21\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info21\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Woo Hoodies<\/h2>\r\n\t\t\t\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action21\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close21\">Close<\/a>\r\n\t\t<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/premium-quality-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_2_front.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist22 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist22 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons22 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_2_front.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=22\" class=\"hover-background-primary woosmart_add_to_wishlist22 cursor-point\" data-product-id=\"22\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading22\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist22 cursor-point\" data-product-id=\"22\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item22\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger22 cursor-point\" data-product-id=\"22\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_2_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"?add-to-cart=22\" rel=\"nofollow\" data-product_id=\"22\" data-product_sku=\"T-SHIRT-PREMIUM-QUALITY\" data-quantity=\"1\" class=\"product_type_button product_type_simple add_to_cart_button ajax_add_to_cart  hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/premium-quality-2\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Premium Quality<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view22\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info22\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_2_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Premium Quality<\/h2>\r\n\t\t\t\t<h3><span><span>&#036;<\/span>20.00<\/span><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action22\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"?add-to-cart=22\" rel=\"nofollow\" data-product_id=\"22\" data-product_sku=\"T-SHIRT-PREMIUM-QUALITY\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close22\">Close<\/a>\r\n\t\t<\/div><div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n\t\t\t<div class=\"col-md-12 nopadding\">\r\n\t\t\t\t<article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-3\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_4_front.jpg\" alt=\"featured-image\"><\/a>\r\n\t\t\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist23 hide\">\r\n\t\t\t\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist23 hide\" style=\"display:none\">\r\n\t\t\t\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"shadow-brdr\"><div class=\"item-buttons item-buttons23 product-action-buttons-1 d-flex justify-content-center\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_4_front.jpg\" class=\"hover-background-primary cursor-point\" data-lightbox=\"featured-image\"><i class=\"fas fa-search\"><\/i><\/a><a href=\"?add_to_wishlist=23\" class=\"hover-background-primary woosmart_add_to_wishlist23 cursor-point\" data-product-id=\"23\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading23\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"hover-background-primary woosmart_view_wishlist woosmart_view_wishlist23 cursor-point\" data-product-id=\"23\" ><i class=\"fas fa-list\"><\/i><\/a><span class=\"cd-item cd-item23\"><a href=\"#0\" class=\"hover-background-primary woosmart_quick_view cd-trigger cd-trigger23 cursor-point\" data-product-id=\"23\"><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_4_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-3\/\" rel=\"nofollow\" data-product_id=\"23\" data-product_sku=\"T-SHIRT-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"product_type_button product_type_variable add_to_cart_button   hover-background-primary\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><\/div><div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><\/div><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-3\/\">\r\n\t\t\t\t<h3 class=\"product-name animate-300 hover-color-primary\" >Ship Your Idea<\/h3>\r\n\t\t\t<\/a>\r\n\t\t\t\r\n\t\t\t<div class=\"product-price-1 mb-4\">\r\n\t\t\t\t<span ><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n\t\t\t<\/div>\r\n\t\t\t\r\n\t<\/div><\/article>\r\n\t<\/div>\r\n<\/div><div class=\"cd-quick-view cd-quick-view23\">\r\n\t\t\t<div class=\"row cd-item-info cd-item-info23\">\r\n\t\t\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_4_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t\t\t<div class=\"col-md-8\">\r\n\t\t\t\t<h2>Ship Your Idea<\/h2>\r\n\t\t\t\t<h3><span><span>&#036;<\/span>20.00<\/span><\/h3>\r\n\t\t\t\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t\t\t\t<ul class=\"pl-0 cd-item-action cd-item-action23\">\r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-3\/\" rel=\"nofollow\" data-product_id=\"23\" data-product_sku=\"T-SHIRT-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"button product_type_button product_type_variable add_to_cart_button ajax_add_to_cart\" variable>Select options<\/a>\r\n\t\t\t\t\t<\/li>\t\t\t\t\t\r\n\t\t\t\t<\/ul>\t\t\r\n\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<a href=\"#0\" class=\"cd-close cd-close23\">Close<\/a>\r\n\t\t<\/div><\/div>\r\n\t\t\t<\/div>\r\n\t\t<\/section>\r\n<style>\r\n.woosmart_layout_2 a:hover{\r\n\ttext-decoration:none;\r\n}\r\n.woosmart_layout_2 .stars-rating[data-rate=\"5\"] span {\r\n\tcolor: #fc3c2a;\r\n\tfont-size: 10px;\r\n}\r\n\r\n.woosmart_layout_2 .animate-300 {\r\n\t-webkit-transition: .3s;\r\n\ttransition: .3s;\r\n}\r\n\r\n.woosmart_layout_2 .thumbnail {\r\n\tdisplay: block;\r\n\toverflow: hidden;\r\n}\r\n\r\n.woosmart_layout_2 .thumbnail a,\r\n.woosmart_layout_2 .thumbnail img {\r\n\tdisplay: block;\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_2 .thumbnail.animate-zoom img {\r\n\t-webkit-transition: .5s ease;\r\n\ttransition: .5s ease;\r\n}\r\n\r\n.woosmart_layout_2 .thumbnail.animate-zoom:hover img {\r\n\t-webkit-transform: scale(1.1);\r\n\ttransform: scale(1.1);\r\n}\r\n\r\n.woosmart_layout_2 .stars-rating {\r\n\tfont-size: 12px;\r\n}\r\n\r\n.woosmart_layout_2 .stars-rating span {\r\n\tcolor: #a5a5a5;\r\n}\r\n\r\n.woosmart_layout_2 .product-item-1 {\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_2 .product-item-1 .product-name {\r\n\tfont-family: Poppins, san-serif;\r\n\tfont-size: 18px;\r\n\tfont-weight: 700;\r\n\ttext-transform: uppercase;\r\n\tcolor: #333;\r\n\tmargin: 8px 0;\r\n}\r\n\r\n.woosmart_layout_2 .product-item-1 .item-buttons {\r\n\tposition: relative;\r\n\tz-index: 1;\r\n\ttop: -30px;\r\n}\r\n\r\n.woosmart_layout_2 .product-action-buttons-1 a {\r\n\tposition: relative;\r\n\tdisplay: block;\r\n\twidth: 55px;\r\n\theight: 60px;\r\n\tline-height: 60px;\r\n\ttext-align: center;\r\n\tbackground: #1a1a1a;\r\n\tcolor: #fff;\r\n\tfont-size: 12px;\r\n\tborder-right: 1px solid #2f2f2f;\r\n\t-webkit-transition: .4s ease;\r\n\ttransition: .4s ease;\r\n}\r\n\r\n.woosmart_layout_2 .product-action-buttons-1 a:last-child {\r\n\tborder-right: none;\r\n}\r\n\r\n.woosmart_layout_2 .product-price-1 {\r\n\tfont-family: Poppins;\r\n}\r\n\r\n.woosmart_layout_2 .woosmart-page-post-page .text-box img {\r\n\twidth: auto;\r\n}\r\n\r\n.woosmart_layout_2 .ribbon-wrap {\r\n\twidth: 100%;\r\n\theight: 188px;\r\n\tposition: absolute;\r\n\ttop: -8px;\r\n\tleft: 8px;\r\n\toverflow: hidden;\r\n}\r\n\r\n.woosmart_layout_2 .ribbon-wrap:after,\r\n.woosmart_layout_2 .ribbon-wrap:before {\r\n\tcontent: \"\";\r\n\tposition: absolute;\r\n}\r\n\r\n.woosmart_layout_2 .ribbon-wrap:before {\r\n\twidth: 40px;\r\n\theight: 8px;\r\n\tright: 100px;\r\n\tbackground: #b20403;\r\n\tborder-radius: 8px 8px 0 0;\r\n}\r\n\r\n.woosmart_layout_2 .ribbon-wrap:after {\r\n\twidth: 8px;\r\n\theight: 40px;\r\n\tright: 0;\r\n\ttop: 100px;\r\n\tbackground: #b20403;\r\n\tborder-radius: 0 8px 8px 0;\r\n}\r\n\r\n.woosmart_layout_2 .ribbon6 {\r\n\twidth: 200px;\r\n\theight: 40px;\r\n\tline-height: 40px;\r\n\tposition: absolute;\r\n\ttop: 30px;\r\n\tright: -50px;\r\n\tz-index: 1;\r\n\toverflow: hidden;\r\n\t-webkit-transform: rotate(45deg);\r\n\ttransform: rotate(45deg);\r\n\tbox-shadow: 0 0 0 3px #e50102, 0 21px 5px -18px rgba(0, 0, 0, .6);\r\n\tbackground: #e50102;\r\n\ttext-align: center;\r\n\tcolor: #fff;\r\n\tfont-size: 17px;\r\n}\r\n\r\n@media (min-width:500px) {\r\n\t.woosmart_layout_2 .ribbon {\r\n\t\twidth: 48%;\r\n\t}\r\n}\r\n\r\n.woosmart_layout_2 .shadow-brdr {\r\n\tborder: 1px solid transparent!important;\r\n\t-webkit-box-shadow: 0 4px 22px 5px #f1f1f1;\r\n\tbox-shadow: 0 4px 22px 5px #f1f1f1;\r\n}\r\n\r\n.woosmart_layout_2 .cursor-point {\r\n\tcursor: pointer;\r\n}\r\n\r\n.woosmart_layout_2 .product-price-1 ins {\r\n\ttext-decoration: none;\r\n\tcolor: #fc3c2a;\r\n\tfont-weight: 700;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_2 .product-price-1 del {\r\n\tfont-size: 12px;\r\n\tcolor: #999;\r\n}\r\n\r\n@media (max-width:768px) {\r\n\t.woosmart_layout_2 .stars-rating {\r\n\t\ttext-align: center;\r\n\t}\r\n}\r\n.woosmart_layout_2 a.hover-background-primary:hover,.woosmart_layout_2 .added_to_cart:hover,.woosmart_layout_2 .add_to_cart_button:hover{\r\n\tbackground-color:red !important;\r\n\tcolor:#fff ;\r\n}\r\n.woosmart_layout_2 .item-buttons .added_to_cart{\r\n\twidth: auto !important;\r\n    line-height: 48px !important;\r\n    border: none !important;\r\n    border-radius: 0 !important;\t\r\n}\r\n.woosmart_layout_2 .product-added-to-wishlist,.woosmart_layout_2 .product-already-in-wishlist{\r\n\tposition:absolute;\r\n\tdisplay:none;\r\n\ttext-align: center;\r\n    background: #fff;\r\n    padding: 10px;\r\n    margin-top: 40px;\r\n    width: 99%;\r\n}\r\n.woosmart_layout_2 .woosmart_view_wishlist{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_2 .wishlist_loader{\r\n\twidth: 16px !important;\r\n    position: absolute;\r\n    top: 20px;\r\n    left: 20px;\r\n}\r\n<\/style>[vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 gejhi\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.gejhi .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 klkij\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 13<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 13<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"becad p-30-0-30 woosmart_layout_13\">\r\n   <div class=\"container\">\r\n      <div class=\"row\">\r\n   <div class=\"col-md-3\">\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED8.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=242\" rel=\"nofollow\" data-product_id=\"242\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item242\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger242\" data-product-id=\"242\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED8.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ligua-basa\/\" >Ligua Basa<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>99.00<\/bdi><\/span>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view242\">\r\n\t<div class=\"row cd-item-info cd-item-info242\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED8.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ligua Basa<\/h2>\r\n\t<h3><span><span>&#036;<\/span>99.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action242\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=242\" rel=\"nofollow\" data-product_id=\"242\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close242\">Close<\/a>\r\n\t<\/div>\r\n   <div class=\"col-md-3\">\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED7.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=235\" rel=\"nofollow\" data-product_id=\"235\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item235\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger235\" data-product-id=\"235\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED7.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/couple-oil\/\" >Couple Oil<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>100.00<\/bdi><\/span>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view235\">\r\n\t<div class=\"row cd-item-info cd-item-info235\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED7.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Couple Oil<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action235\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=235\" rel=\"nofollow\" data-product_id=\"235\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close235\">Close<\/a>\r\n\t<\/div>\r\n   <div class=\"col-md-3\">   \r\n   <span class=\"sale-badge\">Sale!<\/span>\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED6.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=234\" rel=\"nofollow\" data-product_id=\"234\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item234\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger234\" data-product-id=\"234\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED6.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/rup-chandan\/\" >Chandan<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>900.00<\/bdi><\/span><\/del> <ins><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>500.00<\/bdi><\/span><\/ins>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view234\">\r\n\t<div class=\"row cd-item-info cd-item-info234\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED6.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Chandan<\/h2>\r\n\t<h3><del><span><span>&#036;<\/span>900.00<\/span><\/del> <ins><span><span>&#036;<\/span>500.00<\/span><\/ins><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action234\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=234\" rel=\"nofollow\" data-product_id=\"234\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close234\">Close<\/a>\r\n\t<\/div>\r\n   <div class=\"col-md-3\">\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED5.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=233\" rel=\"nofollow\" data-product_id=\"233\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item233\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger233\" data-product-id=\"233\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED5.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/skin-care\/\" >Skin Care<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>100.00<\/bdi><\/span>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view233\">\r\n\t<div class=\"row cd-item-info cd-item-info233\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED5.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Skin Care<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action233\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=233\" rel=\"nofollow\" data-product_id=\"233\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close233\">Close<\/a>\r\n\t<\/div>\r\n   <div class=\"col-md-3\">\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED4.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=232\" rel=\"nofollow\" data-product_id=\"232\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item232\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger232\" data-product-id=\"232\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED4.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/masuka-vasa\/\" >Masu Vasa<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>280.00<\/bdi><\/span>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view232\">\r\n\t<div class=\"row cd-item-info cd-item-info232\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED4.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Masu Vasa<\/h2>\r\n\t<h3><span><span>&#036;<\/span>280.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action232\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=232\" rel=\"nofollow\" data-product_id=\"232\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close232\">Close<\/a>\r\n\t<\/div>\r\n   <div class=\"col-md-3\">\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED3.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=231\" rel=\"nofollow\" data-product_id=\"231\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item231\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger231\" data-product-id=\"231\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED3.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/hair-oil\/\" >Hair Oil<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>140.00<\/bdi><\/span>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view231\">\r\n\t<div class=\"row cd-item-info cd-item-info231\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED3.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Hair Oil<\/h2>\r\n\t<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action231\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=231\" rel=\"nofollow\" data-product_id=\"231\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close231\">Close<\/a>\r\n\t<\/div>\r\n   <div class=\"col-md-3\">\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED2.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=230\" rel=\"nofollow\" data-product_id=\"230\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item230\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger230\" data-product-id=\"230\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED2.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/care-cream\/\" >Care Cream<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>50.00<\/bdi><\/span>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view230\">\r\n\t<div class=\"row cd-item-info cd-item-info230\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/MED2.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Care Cream<\/h2>\r\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action230\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=230\" rel=\"nofollow\" data-product_id=\"230\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close230\">Close<\/a>\r\n\t<\/div>\r\n   <div class=\"col-md-3\">\r\n\t<div class=\"project-item\">\r\n\t   <div class=\"project-item-inner\">\r\n\t\t  <figure class=\"alignnone project-img\">\r\n\t\t\t <img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/med1.jpg\" alt=\"featured-image\">\r\n\t\t\t <div class=\"overlay\"><a href=\"?add-to-cart=226\" rel=\"nofollow\" data-product_id=\"226\" data-product_sku=\"\" data-quantity=\"1\" class=\"dlink product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart\"><\/i><\/a><span class=\"cd-item cd-item226\"><a href=\"#0\" class=\"zoom  cursor-point cd-trigger cd-trigger226\" data-product-id=\"226\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/med1.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t\t\t\r\n\t\t\t\t\r\n\t\t\t <\/div>\r\n\t\t  <\/figure>\r\n\t\t  <div class=\"project-desc\">\r\n\t\t\t  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span><span class='fas fa-star' style='color:#efa330'><\/span>\r\n\t\t\t  <\/div>\r\n\t\t\t  \r\n\t\t\t <h4 class=\"title\" ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/body-scurb\/\" >Body Scurb<\/a><\/h4>\r\n\t\t\t <span class=\"price\">\r\n\t\t\t <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>140.00<\/bdi><\/span>\r\n\t\t\t <\/span>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t<\/div>\r\n\t<\/div><div class=\"cd-quick-view cd-quick-view226\">\r\n\t<div class=\"row cd-item-info cd-item-info226\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/med1.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Body Scurb<\/h2>\r\n\t<h3><span><span>&#036;<\/span>140.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action226\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=226\" rel=\"nofollow\" data-product_id=\"226\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close226\">Close<\/a>\r\n\t<\/div><\/div>\r\n   <\/div>\r\n<\/section>\r\n<style>\r\n.woosmart_layout_13 .ajax_add_to_cart.loading:after {\r\n    font-family: \"Font Awesome 5 Free\";\r\n    content: \"\\f110\";\r\n\tvertical-align: middle;\r\n    font-weight: 900;\r\n    position: absolute;\r\n    top: 46%;\r\n    right: 42px;\r\n    color: #cd5c5c;\r\n    -webkit-animation: spin 2s linear infinite;\r\n    animation: spin 2s linear infinite;\r\n    font-size: 21px;\r\n}\r\n.woosmart_layout_13 .cd-quick-view .ajax_add_to_cart.loading:after {\r\n    font-family: \"Font Awesome 5 Free\";\r\n    content: \"\\f110\";\r\n    vertical-align: top;\r\n    font-weight: 900;\r\n    position: absolute;\r\n    top: -1px;\r\n    right: 8px;\r\n    -webkit-animation: spin 2s linear infinite;\r\n    animation: spin 2s linear infinite;\r\n\tcolor:#fff;\r\n\tfont-size: 16px;\r\n}\r\n.woosmart_layout_13 .add_to_cart_button.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_13 .add_to_cart_button{\r\n\tposition:relative\r\n}\r\n\r\n.woosmart_layout_13 .btn {\r\n\tmargin-right: 10px;\r\n\tcolor:#fff;\r\n\twidth: 45px;\r\n}\r\n.woosmart_layout_13 .add_to_cart_button,.woosmart_layout_13 .added_to_cart {\r\n\tmargin-right: 25px;\r\n\tbackground: transparent;\r\n    border: 0;\r\n    padding: 0;\r\n}\r\n.woosmart_layout_13 .woosmart_add_to_wishlist,.woosmart_layout_13 .woosmart_view_wishlist{\r\n\tposition:relative;\r\n\tbackground:#ff0000;\r\n\tcolor:#fff;\r\n\tborder:0;\r\n\twidth:40px;\r\n\theight:40px;\r\n}\r\n.woosmart_layout_13 .add_to_cart_button:focus,.woosmart_layout_13 .added_to_cart:focus{\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_13 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n    top: 8px;\r\n    left: 12px;\r\n}\r\n.woosmart_layout_13 .cd-trigger{\r\n\tposition: inherit;\r\n\tleft:inherit;\r\n\theight: auto;\r\n    line-height: initial;\t\r\n}\r\n\r\n.woosmart_layout_13 .cd-item{\r\n\tdisplay:inline-block;\r\n}\r\n\r\n.woosmart_layout_13 .product-added-to-wishlist,.woosmart_layout_13 .product-already-in-wishlist{\r\n    position: absolute;\r\n    display: none;\r\n    text-align: center;\r\n    background: rgba(255, 255, 255, 0.75);\r\n    padding: 10px;\r\n    width: 99%;\r\n    z-index: 2;\t\r\n}\r\n.woosmart_layout_13 .stars-rating{\r\n\tfont-size: 12px;\r\n    margin-bottom: 5px;\r\n    color: #db8118;\r\n}\r\n\r\n.woosmart_layout_13 .sale-badge{\r\n    margin: -.5em -.5em 0 0;\r\n\twidth: 40px;\r\n    height: 40px;\r\n    border-radius: 50%;\r\n    color: #fff;\r\n    display: block;\r\n    position: absolute;\r\n    right: 15px;\r\n    top: 0px;\r\n    text-align: center;\r\n    line-height: 38px;\r\n    font-size: 1em;\r\n    z-index: 3;\r\n    border: 1px solid #fff;\r\n    -webkit-box-shadow: 0 2px 1px rgba(0,0,0,.15);\r\n    box-shadow: 0 2px 1px rgba(0,0,0,.15);\r\n\tbackground: #49a32b;\t\r\n}\r\n.woosmart_layout_13 .price {\r\n\tpadding: 10px 0 10px 20px;\r\n}\r\n\r\n.woosmart_layout_13 .dlink i,.woosmart_layout_13 .zoom i{\r\n\tposition:relative;\r\n\ttop: 40%;\r\n}\r\n.woosmart_layout_13 .dlink:hover,\r\n.woosmart_layout_13 .zoom:hover {\r\n\tcolor: #fff !important;\r\n\tbackground-color: #49a32b !important;\r\n}\r\n\r\n.woosmart_layout_13 .amount {\r\n\tcolor: #49a32b;\r\n}\r\n\r\n.woosmart_layout_13 .project-item .project-img>img {\r\n\tbackground-color: transparent;\r\n\tborder-bottom: 1px solid #cecece;\r\n\tborder-radius: 0;\r\n\tmax-width: 100%;\r\n\tpadding: 6px 6px 0;\r\n\ttransition: all .2s ease-in-out 0s;\r\n}\r\n\r\n.woosmart_layout_13 .project-desc .price {\r\n\tpadding: 0;\r\n\tfont-size:8px;\r\n}\r\n\r\n.woosmart_layout_13 .price .amount {\r\n\tfont-size: 2em;\r\n\ttext-decoration:none;\r\n}\r\n\r\n.woosmart_layout_13 .products .product .project-item-inner {\r\n\tposition: relative;\r\n}\r\n\r\n.woosmart_layout_13 .products .product .project-desc {\r\n\ttext-align: left;\r\n}\r\n\r\n.woosmart_layout_13 .products .product .project-desc .title {\r\n\tmargin-bottom: .5em;\r\n}\r\n\r\n.woosmart_layout_13 .project-item {\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_13 .project-item .project-item-inner {\r\n\tbackground: 0 0;\r\n\t-webkit-transition: .2s;\r\n\ttransition: .2s;\r\n\tborder: 1px solid #eee;\r\n}\r\n\r\n.woosmart_layout_13 .project-item .project-img {\r\n\tposition: relative;\r\n\toverflow: hidden;\r\n\tmargin: 0;\r\n}\r\n\r\n.woosmart_layout_13 .project-item .project-img>img {\r\n\tmargin-bottom: 0;\r\n\twidth: 100%;\r\n\theight: auto;\r\n}\r\n\r\n.woosmart_layout_13 .project-item .overlay {\r\n\tposition: absolute;\r\n\ttop: 6px;\r\n\tleft: 6px;\r\n\toverflow: hidden;\r\n\tright: 6px;\r\n\tbottom: 0;\r\n\topacity: 0;\r\n\t-webkit-transition: .2s;\r\n\ttransition: .2s;\r\n}\r\n.woosmart_layout_13 .project-item .ajax_add_to_cart.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_13 .project-item .added_to_cart{\r\n\tcolor: #49a32b;\r\n    position: absolute;\r\n    top: 48%;\r\n    left: 28px;\r\n    text-decoration: none;\r\n    font-size: 38px;\r\n    text-align: center;\r\n    z-index: 2;\r\n    font-size: 15px;\r\n    display: block;\r\n    top: 0;\r\n    bottom: 0;\r\n    width: 50%;\r\n    left: 0;\r\n    border-radius: 0;\r\n    padding-top: 50%;\r\n\tbackground: rgba(255, 255, 255, .9);\r\n\ttext-decoration: none;\t\r\n}\r\n\r\n.woosmart_layout_13 .project-item .added_to_cart:hover{\r\n\tbackground-color:#49a32b;\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_13 .project-item .dlink,\r\n.woosmart_layout_13 .project-item .zoom {\r\n\tdisplay: block;\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\tbottom: 0;\r\n\twidth: 50%;\r\n\tcolor: #49a32b;\r\n\tbackground: rgba(255, 255, 255, .9);\r\n\ttext-decoration: none;\r\n\topacity: 0;\r\n\tfilter: alpha(opacity=0);\r\n\t-webkit-transition: .3s;\r\n\ttransition: .3s;\r\n\tfont-size: 38px;\r\n\ttext-align: center;\r\n\tz-index: 2;\r\n}\r\n\r\n\r\n\r\n.woosmart_layout_13 .project-item .dlink .fa,\r\n.woosmart_layout_13 .project-item .zoom .fa {\r\n\tposition: absolute;\r\n\tleft: 50%;\r\n\ttop: 50%;\r\n\tmargin: -19px 0 0 -19px;\r\n}\r\n\r\n.woosmart_layout_13 .project-item .dlink {\r\n\tleft: 0;\r\n\t-webkit-transform: translate(-100%, 0);\r\n\t-ms-transform: translate(-100%, 0);\r\n\ttransform: translate(-100%, 0);\r\n}\r\n\r\n.woosmart_layout_13 .project-item .zoom {\r\n\tright: 0;\r\n\t-webkit-transform: translate(100%, 0);\r\n\t-ms-transform: translate(100%, 0);\r\n\ttransform: translate(100%, 0);\r\n}\r\n\r\n.woosmart_layout_13 .project-item .zoom .fa-file-text-o {\r\n\tmargin-left: -13px;\r\n}\r\n\r\n.woosmart_layout_13 .project-item .project-img:hover .overlay {\r\n\topacity: 1;\r\n\tfilter: alpha(opacity=100);\r\n}\r\n\r\n.woosmart_layout_13 .project-item .project-img:hover .dlink,\r\n.woosmart_layout_13 .project-item .project-img:hover .zoom {\r\n\topacity: 1;\r\n\tfilter: alpha(opacity=100);\r\n\t-webkit-transform: translate(0, 0);\r\n\t-ms-transform: translate(0, 0);\r\n\ttransform: translate(0, 0);\r\n}\r\n\r\n.woosmart_layout_13 .project-desc {\r\n\ttext-align: center;\r\n\tpadding: 25px 20px;\r\n}\r\n\r\n.woosmart_layout_13 .project-desc .title {\r\n\tmargin-bottom: 5px;\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_13 .project-desc .title>a {\r\n\tcolor: #2f2f2f;\r\n}\r\n\r\n.woosmart_layout_13 .project-desc .title>a:hover {\r\n\tcolor: #dc2a0b;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.woosmart_layout_13 .project-item figure {\r\n\tposition: relative;\r\n\toverflow: hidden;\r\n\ttext-align: center;\r\n\tcursor: pointer;\r\n}\r\n\r\n.woosmart_layout_13 .project-item figure img {\r\n\tposition: relative;\r\n\tdisplay: block;\r\n\tmin-height: 100%;\r\n\tmax-width: 100%;\r\n\topacity: .8;\r\n}\r\n\r\n.woosmart_layout_13 .products .product .project-desc .price .amount,\r\n.woosmart_layout_13 .project-desc h4 {\r\n\tfont-size: 15px;\r\n}\r\n\r\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_13.becad .sale-badge{\r\n\t\tbackground-color:#efa330;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_13.becad .sale-badge span{\r\n\t\tcolor:#ffffff;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_13.becad .amount{\r\n\t\tcolor: #efa330 !important;\r\n\t}\t\r\n\t<\/style>[vc_empty_space height=&#8221;30px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 gehij\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.gehij .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 ljkki\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 9<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 9<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"eadcb p-30-0-30 woosmart_layout_9\">\r\n   <div class=\"container\">\r\n      <div class=\"row\">\r\n   <div class=\"col-md-4\">\r\n   <div class=\"services-we-do m-bottom4\">\r\n   <div class=\"post-img\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-3\/\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" class=\"img-responsive attachment-full\" alt=\"featured-image\"><span class=\"dine-time\" style=\"background-color:#212121\"><del><span><span>&#036;<\/span>20.00<\/span><\/del> <ins><span><span>&#036;<\/span>18.00<\/span><\/ins><\/span><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist18 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist18 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>   \r\n   <\/div>\r\n   <div class=\"service-info coffee\">\r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span>\r\n                  <\/div>\r\n                  \r\n      <h3 class=\"font-black font-bold font20 uppercase m-bottom2\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-3\/\" style=\"color:#212121\">Woo Logo<\/a><\/h3>\r\n      <p >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p>\r\n      <div class=\"full-wid left m-top2 col-md-12 p-0\"><a href=\"?add-to-cart=18\" rel=\"nofollow\" data-product_id=\"18\" data-product_sku=\"T-SHIRT-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n      <div class=\"full-wid left m-top2 col-md-12 p-0\">\r\n\t  <\/div>\r\n   <\/div>\r\n   <\/div>\r\n   <\/div>\r\n   <div class=\"col-md-4\">\r\n   <div class=\"services-we-do m-bottom4\">\r\n   <div class=\"post-img\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-3\/\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_6_front.jpg\" class=\"img-responsive attachment-full\" alt=\"featured-image\"><span class=\"dine-time\" style=\"background-color:#212121\"><span><span>&#036;<\/span>20.00<\/span><\/span><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist20 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist20 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>   \r\n   <\/div>\r\n   <div class=\"service-info coffee\">\r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span>\r\n                  <\/div>\r\n                  \r\n      <h3 class=\"font-black font-bold font20 uppercase m-bottom2\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-3\/\" style=\"color:#212121\">Woo Ninja<\/a><\/h3>\r\n      <p >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p>\r\n      <div class=\"full-wid left m-top2 col-md-12 p-0\"><a href=\"?add-to-cart=20\" rel=\"nofollow\" data-product_id=\"20\" data-product_sku=\"T-SHIRT-WOO-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n      <div class=\"full-wid left m-top2 col-md-12 p-0\">\r\n\t  <\/div>\r\n   <\/div>\r\n   <\/div>\r\n   <\/div>\r\n   <div class=\"col-md-4\">\r\n   <div class=\"services-we-do m-bottom4\">\r\n   <div class=\"post-img\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/premium-quality-2\/\"><img decoding=\"async\"  src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_2_front.jpg\" class=\"img-responsive attachment-full\" alt=\"featured-image\"><span class=\"dine-time\" style=\"background-color:#212121\"><span><span>&#036;<\/span>20.00<\/span><\/span><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist22 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist22 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>   \r\n   <\/div>\r\n   <div class=\"service-info coffee\">\r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span><span class='fas fa-star' style='color:#f7be68'><\/span>\r\n                  <\/div>\r\n                  \r\n      <h3 class=\"font-black font-bold font20 uppercase m-bottom2\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/premium-quality-2\/\" style=\"color:#212121\">Premium Quality<\/a><\/h3>\r\n      <p >Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies...<\/p>\r\n      <div class=\"full-wid left m-top2 col-md-12 p-0\"><a href=\"?add-to-cart=22\" rel=\"nofollow\" data-product_id=\"22\" data-product_sku=\"T-SHIRT-PREMIUM-QUALITY\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n      <div class=\"full-wid left m-top2 col-md-12 p-0\">\r\n\t  <\/div>\r\n   <\/div>\r\n   <\/div>\r\n   <\/div><\/div>\r\n   <\/div>\r\n<\/section>\r\n<style>\r\n.woosmart_layout_9 .m-bottom4 {\r\n\tmargin-bottom: 40px;\r\n}\r\n\r\n.woosmart_layout_9 .left {\r\n\tfloat: left!important;\r\n}\r\n\r\n.woosmart_layout_9 .full-wid {\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_9 .services-we-do,\r\n.woosmart_layout_9 .services-we-do:hover {\r\n\ttransition: box-shadow .2s ease-in-out 0s;\r\n}\r\n\r\n.woosmart_layout_9 .services-we-do {\r\n\tbackground: #fff;\r\n\tbox-shadow: 0 3px 4.7px .3px rgba(0, 0, 0, .24);\r\n\tposition: relative;\r\n}\r\n\r\n.woosmart_layout_9 .services-we-do:hover {\r\n\tbox-shadow: 0 39px 56.4px 3.6px rgba(0, 0, 0, .24);\r\n}\r\n\r\n.woosmart_layout_9 .services-we-do:hover img {\r\n\topacity: .5;\r\n\ttransition: all .3s ease-out 0s;\r\n}\r\n\r\n.woosmart_layout_9 .service-info {\r\n\tpadding: 30px;\r\n}\r\n\r\n.woosmart_layout_9 .service-info.coffee {\r\n\tpadding: 30px;\r\n\toverflow: hidden;\r\n}\r\n\r\n.woosmart_layout_9 .dine-time {\r\n\tbackground-color: rgba(0, 0, 0, .7);\r\n\tcolor: #fff;\r\n\tfont-size: 20px;\r\n\tfont-weight: 700;\r\n\tmargin-top: -38px;\r\n\tpadding: 5px 25px;\r\n\tposition: absolute;\r\n\tright: 0;\r\n\tz-index: 1;\r\n\tbottom: 0;\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_9 .btn {\r\n\tpadding: 10px 35px;\r\n\tfont-size: 15px;\r\n}\r\n\r\n.woosmart_layout_9 .button a.boxed-color-xs {\r\n\tborder: 0;\r\n\tfont-size: 14px;\r\n\tmargin-bottom: 30px;\r\n\tcolor: #fff;\r\n}\r\n\r\n.woosmart_layout_9 .button a.boxed-color-xs {\r\n\tbackground: #b91319;\r\n\tborder-radius: 0;\r\n\tpadding: 8px 15px;\r\n}\r\n\r\n.woosmart_layout_9 .coffee .button a.boxed-color-xs {\r\n\tborder: 0;\r\n\tbackground: #b91319;\r\n\tborder-radius: 0;\r\n\tpadding: 12px 20px;\r\n\tcolor: #fff;\r\n\tfont-size: 15px;\r\n\tfont-weight: 700;\r\n\tmargin-bottom: 0;\r\n}\r\n\r\n.woosmart_layout_9 .button a.boxed-color-xs:hover {\r\n\tborder: 0 solid;\r\n\tbackground: #2c2c2c;\r\n\tcolor: #fff;\r\n}\r\n\r\n.woosmart_layout_9 a:focus,\r\n.woosmart_layout_9 a:hover,\r\n.woosmart_layout_9 a:active {\r\n\toutline: none !important;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.woosmart_layout_9 .font-bold {\r\n\tfont-weight: 600 !important;\r\n}\r\n.woosmart_layout_9 .uppercase {\r\n\ttext-transform: uppercase;\r\n}\r\n.woosmart_layout_9 .font-black {\r\n\tcolor: #000;\r\n}\r\n.woosmart_layout_9 .font20 {\r\n\tfont-size: 20px!important;\r\n}\r\n.woosmart_layout_9 .m-top2 {\r\n\tmargin-top: 20px;\r\n}\r\n.woosmart_layout_9 .m-bottom2 {\r\n\tmargin-bottom: 20px !important;\r\n}\r\n.woosmart_layout_9 .post-img{\r\n\tposition:relative;\r\n}\r\n.woosmart_layout_9 .add_to_cart_button.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_9 .add_to_cart_button{\r\n\tposition:relative\r\n}\r\n.woosmart_layout_9 .add_to_cart_button,.woosmart_layout_9 .added_to_cart,.woosmart_layout_9 .button {\r\n    border-radius: 0;\r\n    text-transform: uppercase;\r\n\tbackground-color:#EF0400;\r\n\tborder:0;\r\n\tpadding: 10px 25px 10px 25px;\r\n\tdisplay:inline-block;\r\n\tmargin-right: 10px;\r\n}\r\n.woosmart_layout_9 .add_to_cart_button:hover,.woosmart_layout_9 .added_to_cart:hover,.woosmart_layout_9 .cd-trigger:hover,.woosmart_layout_9 .woosmart_add_to_wishlist:hover,.woosmart_layout_9 .woosmart_view_wishlist{\r\n\tbackground-color:#EF0400;\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_9 .add_to_cart_button:focus,.woosmart_layout_9 .added_to_cart:focus{\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_9 .ajax_add_to_cart.loading:after {\r\n\tfont-family: \"Font Awesome 5 Free\";\r\n\tcontent: \"\\f110\";\r\n\tvertical-align: top;\r\n\tfont-weight: 900;\r\n\tposition: absolute;\r\n\ttop: 10px;\r\n    right: 6px;\r\n\t-webkit-animation: spin 2s linear infinite;\r\n\tanimation: spin 2s linear infinite;\r\n}\r\n.woosmart_layout_9 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n    top: 13px;\r\n    left: 24px;\r\n}\r\n.woosmart_layout_9 .cd-trigger{\r\n\tposition:inherit;\r\n\theight: inherit;\r\n    line-height: inherit;\r\n}\r\n.woosmart_layout_9 .cd-item{\r\n\tdisplay:inline-block;\r\n}\r\n.woosmart_layout_9 .cd-trigger{\r\n\twidth:93%;\r\n}\r\n.woosmart_layout_9 .product-added-to-wishlist,.woosmart_layout_9 .product-already-in-wishlist{\r\n\tposition:absolute;\r\n\tdisplay:none;\r\n\ttext-align: center;\r\n    background: rgba(255, 255, 255, 0.7);\r\n    padding: 10px;\r\n    width: 100%;\r\n    top: 105px;\t\r\n}\r\n.woosmart_layout_9 .stars-rating{\r\n\tfont-size: 12px;\r\n    margin-bottom: 10px;\r\n    color: #db8118;\r\n}\r\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_9.eadcb .button,.woosmart_layout_9.eadcb .added_to_cart{\r\n\t\tbackground-color:#212121;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_9.eadcb .button:hover,.woosmart_layout_9.eadcb .added_to_cart:hover{\r\n\t\tcolor:#ffffff;\r\n\t}\t\r\n\t<\/style>\r\n\t<style>\r\n\t.woosmart_layout_9.eadcb .button:hover,.woosmart_layout_9.eadcb .added_to_cart:hover{\r\n\t\tbackground-color:#dc2222;\r\n\t}\t\r\n\t<\/style>[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 ejgih\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.ejgih .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 kilkj\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 4<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 4<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"dbeca p-30-0-30 woosmart_layout_4\">\r\n   <div class=\"container\">\r\n      <div class=\"row\">\r\n         \r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist66 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist66 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Patient Ninja<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=66\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist66 cursor-point\" data-product-id=\"66\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading66\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist66 cursor-point\" data-product-id=\"66\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item66\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger66\" data-product-id=\"66\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view66\">\r\n\t<div class=\"row cd-item-info cd-item-info66\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Patient Ninja<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action66\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close66\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist200 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist200 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Nuture Hoodie<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>100.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=200\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist200 cursor-point\" data-product-id=\"200\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading200\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist200 cursor-point\" data-product-id=\"200\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item200\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger200\" data-product-id=\"200\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view200\">\r\n\t<div class=\"row cd-item-info cd-item-info200\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Nuture Hoodie<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action200\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close200\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist19 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist19 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Woo Nuture<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=19\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist19 cursor-point\" data-product-id=\"19\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading19\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist19 cursor-point\" data-product-id=\"19\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item19\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger19\" data-product-id=\"19\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view19\">\r\n\t<div class=\"row cd-item-info cd-item-info19\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Nuture<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action19\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close19\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist21 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist21 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-2\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Woo Hoodies<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=21\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist21 cursor-point\" data-product-id=\"21\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading21\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist21 cursor-point\" data-product-id=\"21\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item21\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger21\" data-product-id=\"21\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view21\">\r\n\t<div class=\"row cd-item-info cd-item-info21\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Hoodies<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action21\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close21\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"sale-badge\">\r\n               <span>SALE<\/span>\r\n            <\/div>\r\n            <div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist24 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist24 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Ship Your Idea<\/h3>\r\n                  <\/a>\r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\" rel=\"nofollow\" data-product_id=\"24\" data-product_sku=\"HOODIE-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"cart_btn product_type_variable add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>30.00<\/span> &ndash; <span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=24\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist24 cursor-point\" data-product-id=\"24\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading24\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist24 cursor-point\" data-product-id=\"24\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item24\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger24\" data-product-id=\"24\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view24\">\r\n\t<div class=\"row cd-item-info cd-item-info24\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ship Your Idea<\/h2>\r\n\t<h3><span><span>&#036;<\/span>30.00<\/span> &ndash; <span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action24\">\r\n\t<li>\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\" rel=\"nofollow\" data-product_id=\"24\" data-product_sku=\"HOODIE-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"button product_type_button product_type_variable add_to_cart_button ajax_add_to_cart\" variable>Select options<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close24\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/happy-ninja\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist27 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist27 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/happy-ninja\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Happy Ninja<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=27\" rel=\"nofollow\" data-product_id=\"27\" data-product_sku=\"HOODIE-HAPPY-NINJA\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=27\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist27 cursor-point\" data-product-id=\"27\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading27\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist27 cursor-point\" data-product-id=\"27\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item27\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger27\" data-product-id=\"27\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view27\">\r\n\t<div class=\"row cd-item-info cd-item-info27\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Happy Ninja<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action27\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=27\" rel=\"nofollow\" data-product_id=\"27\" data-product_sku=\"HOODIE-HAPPY-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close27\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ninja-silhouette\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist28 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist28 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ninja-silhouette\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Ninja Silhouette<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=28\" rel=\"nofollow\" data-product_id=\"28\" data-product_sku=\"HOODIE-NINJA-SILHOUETTE\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>30.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=28\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist28 cursor-point\" data-product-id=\"28\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading28\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist28 cursor-point\" data-product-id=\"28\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item28\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger28\" data-product-id=\"28\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view28\">\r\n\t<div class=\"row cd-item-info cd-item-info28\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ninja Silhouette<\/h2>\r\n\t<h3><span><span>&#036;<\/span>30.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action28\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=28\" rel=\"nofollow\" data-product_id=\"28\" data-product_sku=\"HOODIE-NINJA-SILHOUETTE\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close28\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" ><div class=\"thumbnail animate-zoom d-flex\" >\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/mature-hoodie\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist202 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist202 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/mature-hoodie\/\">\r\n                     <h3 class=\"product-name animate-300\" style=\"width: 150%;\" >Mature Hoodie<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=202\" rel=\"nofollow\" data-product_id=\"202\" data-product_sku=\"\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>50.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=202\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist202 cursor-point\" data-product-id=\"202\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading202\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist202 cursor-point\" data-product-id=\"202\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item202\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger202\" data-product-id=\"202\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view202\">\r\n\t<div class=\"row cd-item-info cd-item-info202\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Mature Hoodie<\/h2>\r\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action202\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=202\" rel=\"nofollow\" data-product_id=\"202\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close202\">Close<\/a>\r\n\t<\/div><\/div>\r\n   <\/div>\r\n<\/section>\r\n\r\n<style>\r\n.woosmart_layout_4 a:active,\r\n.woosmart_layout_4 a:hover {\r\n\ttext-decoration: none;\r\n}\r\n\r\n.woosmart_layout_4 .animate-300 {\r\n\t-webkit-transition: .3s;\r\n\ttransition: .3s;\r\n}\r\n\r\n.woosmart_layout_4 .thumbnail {\r\n\tdisplay: block;\r\n\toverflow: hidden;\r\n}\r\n\r\n.woosmart_layout_4 .thumbnail a,\r\n.woosmart_layout_4 .thumbnail img {\r\n\tdisplay: block;\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_4 .thumbnail.animate-zoom img {\r\n\t-webkit-transition: .5s ease;\r\n\ttransition: .5s ease;\r\n}\r\n\r\n.woosmart_layout_4 .thumbnail.animate-zoom:hover img {\r\n\t-webkit-transform: scale(1.1);\r\n\ttransform: scale(1.1);\r\n}\r\n\r\n.woosmart_layout_4 .stars-rating {\r\n\tfont-size: 12px;\r\n}\r\n\r\n.woosmart_layout_4 .stars-rating span {\r\n\tcolor: #a5a5a5;\r\n}\r\n\r\n.woosmart_layout_4 .stars-rating[data-rate=\"5\"] span {\r\n\tcolor: #fdba0a;\r\n}\r\n\r\n.woosmart_layout_4 .product-item-1 {\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_4 .product-item-1 .product-name {\r\n\tfont-size: 18px;\r\n\tfont-weight: 700;\r\n\ttext-transform: uppercase;\r\n\tcolor: #333;\r\n\tmargin: 8px 0;\r\n}\r\n\r\n.woosmart_layout_4 .product-price-1 {\r\n\tfont-family: Poppins;\r\n}\r\n\r\n@media (max-width:575px) {\r\n\t.woosmart_layout_4 .product-price-1 {\r\n\t\ttext-align: center !important;\r\n\t}\r\n}\r\n\r\n.woosmart_layout_4 .shadow-brdr {\r\n\tborder: 1px solid transparent!important;\r\n\t-webkit-box-shadow: 0 4px 22px 5px #f1f1f1;\r\n\tbox-shadow: 0 4px 22px 5px #f1f1f1;\r\n}\r\n\r\n.woosmart_layout_4 .add_to_cart_button,\r\n.woosmart_layout_4 .product_type_button {\r\n\tcolor: inherit;\r\n\tfont-size: 14px;\r\n}\r\n\r\n.woosmart_layout_4 .product_type_button {\r\n\tfont-size: 12px;\r\n}\r\n\r\n.woosmart_layout_4 .add_to_cart_button:hover i {\r\n\tpadding-left: 10px;\r\n\ttransition: .5s;\r\n}\r\n\r\n.woosmart_layout_4 .added_to_cart {\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_4 .thumbnail img {\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_4 .product-price-1 del {\r\n\tfont-size: 15px;\r\n\tfont-weight: 400;\r\n}\r\n\r\n.woosmart_layout_4 .product-price-1 {\r\n\tpadding-top: 5px;\r\n\ttext-align: right;\r\n\tfont-weight: 700;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_4 .stars-rating {\r\n\tpadding-top: 5px;\r\n}\r\n\r\n.woosmart_layout_4 .ajax_add_to_cart.added {\r\n\tdisplay: none;\r\n}\r\n\r\n.woosmart_layout_4 .product-price-1 ins {\r\n\ttext-decoration: none;\r\n\tcolor: #fc3c2a;\r\n\tfont-weight: 700;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_4 .product-price-1 del {\r\n\tfont-size: 12px;\r\n\tcolor: #999;\r\n}\r\n\r\n@media (max-width:768px) {\r\n\t.woosmart_layout_4 .stars-rating {\r\n\t\ttext-align: center;\r\n\t}\r\n}\r\n.woosmart_layout_4 .sale-badge::before {\r\n    border:38px solid #ce2a2a;\r\n    position:absolute;\r\n    left:0;\r\n    top:0;\r\n    border-bottom-color:transparent !important;\r\n    border-right-color:transparent !important;\r\n\tz-index: 1;\r\n}\r\n.woosmart_layout_4 .sale-badge span{\r\n    z-index: 1;\r\n    position: absolute;\r\n    transform: rotate(-45deg);\r\n    top: 15px;\r\n    left: 8px;\t\r\n}\r\n.woosmart_layout_4 .sale-badge{\r\n\tcolor: #fff;\r\n    position: absolute;\r\n    padding: 10px;\r\n}\r\n.woosmart_layout_4 .cart_btn {\r\n    text-transform: uppercase;\r\n    font-size: 12px !important;\r\n    color: #000;\r\n}\r\n.woosmart_layout_4 .cart_btn::after{\r\n\tposition: absolute;\r\n    color: inherit;\r\n    font-family: \"Font Awesome 5 Free\";\r\n    font-size: 1.2em;\r\n    content: \"\\f061\";\r\n    font-weight: 900;\r\n    display: inline-block;\r\n    font-style: normal;\r\n    font-variant: normal;\r\n    text-rendering: auto;\r\n    -webkit-font-smoothing: antialiased;\r\n    margin-top: 3px;\r\n    margin-left: 3px;\r\n}\r\n.woosmart_layout_4 .cart_btn:hover::after,.woosmart_layout_4 .added_to_cart:hover::after{\r\n\tpadding-left:5px;\r\n\ttransition:0.5s;\r\n}\r\n.woosmart_layout_4 .added_to_cart {\r\n\ttext-transform: uppercase;\r\n    font-size: 12px ;\r\n    color: #000 ;\r\n    background: none;\r\n    border: none;\r\n    padding: 0;\r\n}\r\n.woosmart_layout_4 .added_to_cart::after {\r\n\tposition: absolute;\r\n    color: inherit;\r\n    font-family: \"Font Awesome 5 Free\";\r\n    font-size: 1.2em;\r\n    content: \"\\f061\";\r\n    font-weight: 900;\r\n    display: inline-block;\r\n    font-style: normal;\r\n    font-variant: normal;\r\n    text-rendering: auto;\r\n    -webkit-font-smoothing: antialiased;\r\n    margin-top: 3px;\r\n    margin-left: 3px;\r\n}\r\n.woosmart_layout_4 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n\ttop: 16px;\r\n    left: 53px;\r\n}\r\n.woosmart_layout_4 .woosmart_add_to_wishlist{\r\n\tposition: relative;\r\n    height: 50px;\r\n    line-height: 50px;\r\n    width: 100%;\r\n    bottom: 0;\r\n    left: 0;\r\n    background: rgba(0, 0, 0, 0.1);\r\n    text-align: center;\r\n    -webkit-font-smoothing: antialiased;\r\n    -moz-osx-font-smoothing: grayscale;\r\n    color: #ffffff;\r\n    display: block;\r\n    visibility: visible;\r\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\r\n    -moz-transition: opacity 0.2s, background-color 0.2s;\r\n    transition: opacity 0.2s, background-color 0.2s;\r\n}\r\n.woosmart_layout_4  .woosmart_view_wishlist{\r\n\tdisplay:none;\r\n\tposition: relative;\r\n    height: 50px;\r\n    line-height: 50px;\r\n    width: 100%;\r\n    bottom: 0;\r\n    left: 0;\r\n    background: rgba(0, 0, 0, 0.1);\r\n    text-align: center;\r\n    -webkit-font-smoothing: antialiased;\r\n    -moz-osx-font-smoothing: grayscale;\r\n    color: #ffffff;\r\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\r\n    -moz-transition: opacity 0.2s, background-color 0.2s;\r\n    transition: opacity 0.2s, background-color 0.2s;\t\r\n}\r\n.woosmart_layout_4 .woosmart_add_to_wishlist:hover,.woosmart_layout_4  .woosmart_view_wishlist:hover{\r\n\tbackground: rgba(0, 0, 0, 0.2);\r\n}\r\n.woosmart_layout_4 .cd-trigger:hover {\r\n  color: #fff;\r\n}\r\n.woosmart_layout_4 .product-added-to-wishlist,.woosmart_layout_4 .product-already-in-wishlist{\r\n\tposition:absolute;\r\n\tdisplay:none;\r\n\ttext-align: center;\r\n    background: rgba(255, 255, 255, 0.7);\r\n    padding: 10px;\r\n    width: 100%;\r\n    top: 105px;\t\r\n}\r\n<\/style>[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 ejgih\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.ejgih .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 ilkkj\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 15<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 15<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"dceba p-30-0-30 woosmart_layout_15\">\r\n   <div class=\"container\">\r\n      <div class=\"row\"><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\">\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=66\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist66 cursor-point\" data-product-id=\"66\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading66\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist66 cursor-point\" data-product-id=\"66\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item66\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger66\" data-product-id=\"66\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist66 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist66 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\" >Patient Ninja<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>35.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view66\">\r\n\t<div class=\"row cd-item-info cd-item-info66\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Patient Ninja<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action66\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close66\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\">\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=200\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist200 cursor-point\" data-product-id=\"200\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading200\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist200 cursor-point\" data-product-id=\"200\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item200\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger200\" data-product-id=\"200\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist200 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist200 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\" >Nuture Hoodie<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>100.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view200\">\r\n\t<div class=\"row cd-item-info cd-item-info200\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Nuture Hoodie<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action200\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close200\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\">\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=19\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist19 cursor-point\" data-product-id=\"19\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading19\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist19 cursor-point\" data-product-id=\"19\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item19\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger19\" data-product-id=\"19\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist19 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist19 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\" >Woo Nuture<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>35.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view19\">\r\n\t<div class=\"row cd-item-info cd-item-info19\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Nuture<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action19\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close19\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\">\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=21\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist21 cursor-point\" data-product-id=\"21\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading21\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist21 cursor-point\" data-product-id=\"21\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item21\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger21\" data-product-id=\"21\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist21 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist21 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-2\/\" >Woo Hoodies<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>35.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view21\">\r\n\t<div class=\"row cd-item-info cd-item-info21\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Hoodies<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action21\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close21\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\"><div class=\"sale-badge\" >\r\n\t<span>SALE<\/span>\r\n\t<\/div>\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\" rel=\"nofollow\" data-product_id=\"24\" data-product_sku=\"HOODIE-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_variable add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=24\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist24 cursor-point\" data-product-id=\"24\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading24\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist24 cursor-point\" data-product-id=\"24\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item24\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger24\" data-product-id=\"24\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist24 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist24 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\" >Ship Your Idea<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>30.00<\/bdi><\/span> &ndash; <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>35.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view24\">\r\n\t<div class=\"row cd-item-info cd-item-info24\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ship Your Idea<\/h2>\r\n\t<h3><span><span>&#036;<\/span>30.00<\/span> &ndash; <span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action24\">\r\n\t<li>\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\" rel=\"nofollow\" data-product_id=\"24\" data-product_sku=\"HOODIE-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"button product_type_button product_type_variable add_to_cart_button ajax_add_to_cart\" variable>Select options<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close24\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\">\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"?add-to-cart=27\" rel=\"nofollow\" data-product_id=\"27\" data-product_sku=\"HOODIE-HAPPY-NINJA\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=27\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist27 cursor-point\" data-product-id=\"27\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading27\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist27 cursor-point\" data-product-id=\"27\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item27\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger27\" data-product-id=\"27\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist27 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist27 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/happy-ninja\/\" >Happy Ninja<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>35.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view27\">\r\n\t<div class=\"row cd-item-info cd-item-info27\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Happy Ninja<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action27\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=27\" rel=\"nofollow\" data-product_id=\"27\" data-product_sku=\"HOODIE-HAPPY-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close27\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\">\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"?add-to-cart=28\" rel=\"nofollow\" data-product_id=\"28\" data-product_sku=\"HOODIE-NINJA-SILHOUETTE\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=28\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist28 cursor-point\" data-product-id=\"28\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading28\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist28 cursor-point\" data-product-id=\"28\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item28\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger28\" data-product-id=\"28\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist28 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist28 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ninja-silhouette\/\" >Ninja Silhouette<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>30.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view28\">\r\n\t<div class=\"row cd-item-info cd-item-info28\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ninja Silhouette<\/h2>\r\n\t<h3><span><span>&#036;<\/span>30.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action28\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=28\" rel=\"nofollow\" data-product_id=\"28\" data-product_sku=\"HOODIE-NINJA-SILHOUETTE\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close28\">Close<\/a>\r\n\t<\/div><div class=\"col-md-3\">\r\n\t<div class=\"product-item text-center\">\r\n\t   <div class=\"product-thumb\">\t   \r\n\t\t  <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\">\r\n\t\t  <div class=\"p-overlay\">\r\n\t\t\t <div class=\"group\">\r\n\t\t\t\t<a href=\"?add-to-cart=202\" rel=\"nofollow\" data-product_id=\"202\" data-product_sku=\"\" data-quantity=\"1\" class=\"shopping wishlist_icon product_type_simple add_to_cart_button ajax_add_to_cart\"><i class=\"fas fa-shopping-cart anchor_icon\"><\/i><\/a><a href=\"?add_to_wishlist=202\" class=\"wishlist wishlist_icon woosmart_add_to_wishlist woosmart_add_to_wishlist202 cursor-point\" data-product-id=\"202\"><i class=\"far fa-heart anchor_icon\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading202\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"wishlist wishlist_icon woosmart_view_wishlist woosmart_view_wishlist202 cursor-point\" data-product-id=\"202\" ><i class=\"fas fa-list anchor_icon\"><\/i><\/a><span class=\"cd-item cd-item202\"><a href=\"#0\" class=\"shopping wishlist_icon  cursor-point cd-trigger cd-trigger202\" data-product-id=\"202\" ><i class=\"far fa-eye anchor_icon\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\t  \r\n\t\t\t <\/div>\r\n\t\t<div class=\"product-added-to-wishlist product-added-to-wishlist202 hide\">\r\n\t\t<span class=\"feedback\">Product added to wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t<div class=\"product-already-in-wishlist product-already-in-wishlist202 hide\" style=\"display:none\">\r\n\t\t<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n\t\t<\/div>\r\n\t\t  <\/div>\r\n\t   <\/div>\r\n\t\t  <div class=\"stars-rating justify-content-center mt-2\" data-rate=\"5\"><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span><span class='fas fa-star' style='color:#dd0000'><\/span>\r\n\t\t  <\/div>\r\n\t\t  \r\n\t   <h4 ><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/mature-hoodie\/\" >Mature Hoodie<\/a><\/h4>\r\n\t   <p><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>50.00<\/bdi><\/span><\/p>\r\n\t<\/div><\/div><div class=\"cd-quick-view cd-quick-view202\">\r\n\t<div class=\"row cd-item-info cd-item-info202\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Mature Hoodie<\/h2>\r\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action202\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=202\" rel=\"nofollow\" data-product_id=\"202\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close202\">Close<\/a>\r\n\t<\/div><\/div>\r\n   <\/div>\r\n<\/section>\r\n<style>\r\n.woosmart_layout_15 .ajax_add_to_cart.loading:after {\r\n    font-family: \"Font Awesome 5 Free\";\r\n    content: \"\\f110\";\r\n    vertical-align: middle;\r\n    font-weight: 900;\r\n    position: absolute;\r\n    top: 23%;\r\n    right: 17px;\r\n    color: #cd5c5c;\r\n    -webkit-animation: spin 2s linear infinite;\r\n    animation: spin 2s linear infinite;\r\n}\r\n.woosmart_layout_15 .cd-quick-view .ajax_add_to_cart.loading:after {\r\n    font-family: \"Font Awesome 5 Free\";\r\n    content: \"\\f110\";\r\n    vertical-align: top;\r\n    font-weight: 900;\r\n    position: absolute;\r\n    top: -1px;\r\n    right: 8px;\r\n    -webkit-animation: spin 2s linear infinite;\r\n    animation: spin 2s linear infinite;\r\n\tcolor:#fff;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_15 .add_to_cart_button{\r\n\tposition:relative\r\n}\r\n\r\n\r\n.woosmart_layout_15 .woosmart_add_to_wishlist,.woosmart_layout_15 .woosmart_view_wishlist{\r\n\tposition:relative;\r\n    display: inline-block;\t\t\r\n}\r\n.woosmart_layout_15 .add_to_cart_button:focus,.woosmart_layout_15 .added_to_cart:focus{\r\n\tcolor:#fff;\r\n}\r\n.woosmart_layout_15 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n    top: 20px;\r\n    left: 20px;\r\n}\r\n.woosmart_layout_15 .cd-trigger{\r\n\tposition: inherit;\r\n\tleft:inherit;\r\n\theight: auto;\r\n    line-height: initial;\t\r\n\tborder-radius:0;\r\n    display: inline-block;\r\n\tborder: none;\r\n}\r\n\r\n.woosmart_layout_15 .cd-quick-view .ajax_add_to_cart.added{\r\n\tdisplay:none;\r\n}\r\n.woosmart_layout_15 .cd-quick-view .added_to_cart,.woosmart_layout_15 .cd-quick-view .added_to_cart:hover{\r\n\tfont-size:16px;\r\n}\r\n.woosmart_layout_15 .cd-item{\r\n\tdisplay:inline-block;\r\n\tposition: relative;\r\n}\r\n\r\n.woosmart_layout_15 .product-added-to-wishlist,.woosmart_layout_15 .product-already-in-wishlist{\r\n    position: absolute;\r\n    display: none;\r\n    text-align: center;\r\n    background: rgba(255, 255, 255, 0.75);\r\n    padding: 10px;\r\n    width: 100%;\r\n    z-index: 2;\r\n    top: 0;\t\r\n}\r\n.woosmart_layout_15 .stars-rating{\r\n\tfont-size: 12px;\r\n    margin-bottom: 5px;\r\n    color: #db8118;\r\n}\r\n\r\n.woosmart_layout_15 .sale-badge{\r\n\tmargin: -.5em -.5em 0 0;\r\n    width: 40px;\r\n    height: 40px;\r\n    border-radius: 50%;\r\n    color: #fff;\r\n    display: block;\r\n    position: absolute;\r\n    left: -8px;\r\n    top: 0px;\r\n    text-align: center;\r\n    line-height: 38px;\r\n    font-size: 1em;\r\n    z-index: 3;\r\n    border: 1px solid #fff;\r\n    -webkit-box-shadow: 0 2px 1px rgba(0,0,0,.15);\r\n    box-shadow: 0 2px 1px rgba(0,0,0,.15);\r\n    background: #cf2931;\t\r\n}\r\n.woosmart_layout_15 .ajax_add_to_cart.added{\r\n\tdisplay:none !important;\r\n}\r\n\/*css*\/\r\n.woosmart_layout_15 .left {\r\n\twidth: 36px;\r\n\theight: 36px;\r\n\t-webkit-border-radius: 3px;\r\n\t-moz-border-radius: 3px;\r\n\tborder-radius: 3px;\r\n\tbackground: #fafafa;\r\n\tcolor: #676767;\r\n\tline-height: 36px;\r\n\ttext-align: center;\r\n\tposition: absolute;\r\n\tleft: 219px;\r\n\tbottom: 20px;\r\n\ttransition: .4s;\r\n}\r\n\r\n.woosmart_layout_15 .left:hover {\r\n\tcolor: #fff;\r\n\tbackground: #1c57a1;\r\n\tcursor: pointer;\r\n\ttransition: .4s;\r\n}\r\n\r\n.woosmart_layout_15 .product-item {\r\n\tposition: relative;\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_15 .product-item h4 {\r\n\tmargin: 10px 0 0;\r\n\tcolor: #333333;\r\n\tfont-size: 18px;\r\n\tfont-weight: bold;\r\n\tletter-spacing: 0;\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_15 .product-item h4 a {\r\n\tcolor: #333333;\r\n}\r\n\r\n.woosmart_layout_15 .product-item h4 a:hover {\r\n\tcolor: #1c57a1;\r\n}\r\n\r\n.woosmart_layout_15 .product-item p {\r\n\tmargin: 19px 0 0;\r\n\tcolor: #1c57a1;\r\n\tfont-size: 17px;\r\n\tfont-weight: bold;\r\n\tletter-spacing: 0.03em;\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_15 .ratings {\r\n\tdisplay: table;\r\n\tmargin: 35px auto -4px;\r\n}\r\n\r\n.woosmart_layout_15 .product-thumb {\r\n\tposition: relative;\r\n}\r\n\r\n.woosmart_layout_15 .p-overlay {\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\tleft: 0;\r\n\tright: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tbackground: rgba(0, 0, 0, 0.3);\r\n\topacity: 0;\r\n\ttransition: .4s;\r\n\tfloat: left;\r\n\twidth: auto;\r\n}\r\n\r\n.woosmart_layout_15 .product-item:hover .p-overlay {\r\n\topacity: 1;\r\n}\r\n\r\n.woosmart_layout_15 .p-overlay .group {\r\n\tdisplay: table;\r\n\tmargin: 0 auto;\r\n\tposition: relative;\r\n\ttop: 50%;\r\n\ttransform: translateY(-50%);\r\n}\r\n\r\n.woosmart_layout_15 .p-overlay .group .shopping {\r\n\tbackground: #161616;\r\n}\r\n\r\n.woosmart_layout_15 .p-overlay .group .shopping:hover {\r\n\tbackground: #1c57a1;\r\n}\r\n\r\n.woosmart_layout_15 .p-overlay .group .wishlist {\r\n\tbackground: #1c57a1;\r\n}\r\n\r\n.woosmart_layout_15 .p-overlay .group .wishlist:hover {\r\n\tbackground: #161616;\r\n}\r\n\r\n.woosmart_layout_15 .p-overlay .group a {\r\n\twidth: 54px;\r\n\theight: 54px;\r\n\tdisplay: inline-block;\r\n\tmargin: 0 2px;\r\n}\r\n\r\n@media only screen and (min-width: 420px) and (max-width: 767px) {\r\n.woosmart_layout_15 .left {\r\n\t\tleft: 175px;\r\n\t}\r\n}\r\n\r\n@media all and (max-width: 768px) {\r\n.woosmart_layout_15 \t.left {\r\n\t\tleft: 200px;\r\n\t}\r\n}\r\n\r\n.woosmart_layout_15 .anchor_icon {\r\n\tmargin: 0 auto;\r\n\tposition: relative;\r\n\ttop: 50%;\r\n\ttransform: translateY(-50%);\r\n\tfont-size: 19px;\r\n\tcolor: #fff;\r\n}\r\n\r\n.woosmart_layout_15 .wishlist_icon {\r\n\tposition: relative;\r\n\ttop: -16px;\r\n}\r\n\r\n.woosmart_layout_15 .archive a {\r\n\tcolor: #1c57a1;\r\n}\r\n\r\n.woosmart_layout_15 .archive h4 {\r\n\tfont-weight: 700;\r\n\tcolor: #333333;\r\n\tmargin: 10px 0;\r\n}\r\n\r\n.woosmart_layout_15 .archive img,\r\n.woosmart_layout_15 .archive div {\r\n\tmax-width: 100%;\r\n}\r\n\r\n.woosmart_layout_15 .archive .inner-content img,\r\n.woosmart_layout_15 .archive .inner-content div {\r\n\tmax-width: 100%;\r\n}\r\n\r\n.woosmart_layout_15 .m-top1 {\r\n\tdisplay: none;\r\n}\r\n\r\n.woosmart_layout_15 .shopping {\r\n\twidth: 54px;\r\n\theight: 54px;\r\n\tdisplay: inline-block;\r\n\tmargin: 0 1px 0 10px;\r\n\tborder: 0;\r\n}\r\n\r\n.woosmart_layout_15  .wishlist {\r\n\tposition: absolute;\r\n}\r\n\r\n.woosmart_layout_15  .wishlist_icon {\r\n\tposition: relative;\r\n\ttop: -16px;\r\n}\r\n\r\n.woosmart_layout_15 .custom-form {\r\n\tmargin-top: 37px !important;\r\n}\r\n\r\n@media (max-width:767px) {\r\n\t.woosmart_layout_15  .img-responsive {\r\n\t\tdisplay: inline-block;\r\n\t}\r\n}\r\n\r\n.woosmart_layout_15 .product-item p {\r\n\tmargin: 10px 0 0;\r\n}\r\n\r\n.woosmart_layout_15 .archive .product-item h4 {\r\n\tmargin-top: 15px;\r\n}\r\n\r\n.woosmart_layout_15 .product .product-item h4 {\r\n\tfont-weight: 700;\r\n\tfont-size: 18px;\r\n\tline-height: 1.1;\r\n\tletter-spacing: .02em;\r\n}\r\n\r\n.woosmart_layout_15 .product .product-item {\r\n\tfont-style: normal;\r\n}\r\n.woosmart_layout_15 .added_to_cart{\r\n\tborder-radius: 0;\r\n    position: initial;\r\n    display: initial !important;\r\n    padding-top: 17px;\r\n    padding-bottom: 15px;\r\n    width: 100% !important;\r\n    color: #fff;\r\n    text-decoration: none;\r\n\tbackground:#1c57a1;\r\n\tborder:0\r\n}\r\n.woosmart_layout_15 a:hover{\r\n\ttext-decoration:none;\r\n}\r\n<\/style>[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 igehj\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.igehj .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 jiklk\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 7<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 7<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n\r\n<section class=\"becda p-30-0-30 woosmart_layout_7\">\r\n   <div class=\"container\">\r\n      <div class=\"row\">\r\n         \r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist66 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist66 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/patient-ninja\/\">\r\n                     <h3 class=\"product-name animate-300\" >Patient Ninja<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=66\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist66 cursor-point\" data-product-id=\"66\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading66\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist66 cursor-point\" data-product-id=\"66\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item66\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger66\" data-product-id=\"66\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view66\">\r\n\t<div class=\"row cd-item-info cd-item-info66\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_3_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Patient Ninja<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action66\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=66\" rel=\"nofollow\" data-product_id=\"66\" data-product_sku=\"HOODIE-PATIENT-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close66\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist200 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist200 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/nuture-hoodie\/\">\r\n                     <h3 class=\"product-name animate-300\" >Nuture Hoodie<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>100.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=200\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist200 cursor-point\" data-product-id=\"200\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading200\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist200 cursor-point\" data-product-id=\"200\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item200\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger200\" data-product-id=\"200\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view200\">\r\n\t<div class=\"row cd-item-info cd-item-info200\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_1_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Nuture Hoodie<\/h2>\r\n\t<h3><span><span>&#036;<\/span>100.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action200\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=200\" rel=\"nofollow\" data-product_id=\"200\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close200\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist19 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist19 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-2\/\">\r\n                     <h3 class=\"product-name animate-300\" >Woo Nuture<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=19\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist19 cursor-point\" data-product-id=\"19\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading19\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist19 cursor-point\" data-product-id=\"19\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item19\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger19\" data-product-id=\"19\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view19\">\r\n\t<div class=\"row cd-item-info cd-item-info19\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_6_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Nuture<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action19\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=19\" rel=\"nofollow\" data-product_id=\"19\" data-product_sku=\"HOODIE-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close19\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist21 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist21 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-2\/\">\r\n                     <h3 class=\"product-name animate-300\" >Woo Hoodies<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=21\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist21 cursor-point\" data-product-id=\"21\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading21\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist21 cursor-point\" data-product-id=\"21\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item21\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger21\" data-product-id=\"21\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view21\">\r\n\t<div class=\"row cd-item-info cd-item-info21\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Woo Hoodies<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action21\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=21\" rel=\"nofollow\" data-product_id=\"21\" data-product_sku=\"HOODIE-WOO-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close21\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"sale-badge\" >\r\n\t\t\t\t   <span>SALE<\/span>\r\n\t\t\t\t\t<\/div><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist24 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist24 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\">\r\n                     <h3 class=\"product-name animate-300\" >Ship Your Idea<\/h3>\r\n                  <\/a>\r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\" rel=\"nofollow\" data-product_id=\"24\" data-product_sku=\"HOODIE-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"cart_btn product_type_variable add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>30.00<\/span> &ndash; <span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=24\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist24 cursor-point\" data-product-id=\"24\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading24\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist24 cursor-point\" data-product-id=\"24\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item24\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger24\" data-product-id=\"24\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view24\">\r\n\t<div class=\"row cd-item-info cd-item-info24\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_7_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ship Your Idea<\/h2>\r\n\t<h3><span><span>&#036;<\/span>30.00<\/span> &ndash; <span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action24\">\r\n\t<li>\r\n\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-2\/\" rel=\"nofollow\" data-product_id=\"24\" data-product_sku=\"HOODIE-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"button product_type_button product_type_variable add_to_cart_button ajax_add_to_cart\" variable>Select options<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close24\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/happy-ninja\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist27 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist27 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/happy-ninja\/\">\r\n                     <h3 class=\"product-name animate-300\" >Happy Ninja<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=27\" rel=\"nofollow\" data-product_id=\"27\" data-product_sku=\"HOODIE-HAPPY-NINJA\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>35.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=27\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist27 cursor-point\" data-product-id=\"27\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading27\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist27 cursor-point\" data-product-id=\"27\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item27\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger27\" data-product-id=\"27\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view27\">\r\n\t<div class=\"row cd-item-info cd-item-info27\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_4_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Happy Ninja<\/h2>\r\n\t<h3><span><span>&#036;<\/span>35.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action27\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=27\" rel=\"nofollow\" data-product_id=\"27\" data-product_sku=\"HOODIE-HAPPY-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close27\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ninja-silhouette\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist28 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist28 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ninja-silhouette\/\">\r\n                     <h3 class=\"product-name animate-300\" >Ninja Silhouette<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=28\" rel=\"nofollow\" data-product_id=\"28\" data-product_sku=\"HOODIE-NINJA-SILHOUETTE\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>30.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=28\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist28 cursor-point\" data-product-id=\"28\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading28\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist28 cursor-point\" data-product-id=\"28\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item28\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger28\" data-product-id=\"28\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view28\">\r\n\t<div class=\"row cd-item-info cd-item-info28\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_5_front.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Ninja Silhouette<\/h2>\r\n\t<h3><span><span>&#036;<\/span>30.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action28\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=28\" rel=\"nofollow\" data-product_id=\"28\" data-product_sku=\"HOODIE-NINJA-SILHOUETTE\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close28\">Close<\/a>\r\n\t<\/div>\r\n         <div class=\"col-sm-6 col-lg-4 col-xl-3\">\r\n            <div class=\"col-md-12 nopadding\">\r\n               <article class=\"product-item-1 text-center\" style=\"border:1px solid #f7be68\"><div class=\"thumbnail animate-zoom d-flex\" style=\"border-bottom:1px solid #f7be68\">\r\n            <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/mature-hoodie\/\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"featured-image\"><\/a>\r\n<div class=\"product-added-to-wishlist product-added-to-wishlist202 hide\">\r\n<span class=\"feedback\">Product added to wishlist!<\/span>\r\n<\/div>\r\n<div class=\"product-already-in-wishlist product-already-in-wishlist202 hide\" style=\"display:none\">\r\n<span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n<\/div>\t\t\t\r\n         <\/div>\r\n         <div class=\"shadow-brdr\">\r\n            <div class=\"row ml-0 mr-0\">\r\n               \r\n               <div class=\"col-md-7 text-left pt-3 pb-3\">\r\n                  \r\n                  <div class=\"stars-rating justify-content-center\" data-rate=\"5\"><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span><span class='fas fa-star' ><\/span>\r\n                  <\/div>\r\n                  \r\n                  <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/mature-hoodie\/\">\r\n                     <h3 class=\"product-name animate-300\" >Mature Hoodie<\/h3>\r\n                  <\/a>\r\n                  <a href=\"?add-to-cart=202\" rel=\"nofollow\" data-product_id=\"202\" data-product_sku=\"\" data-quantity=\"1\" class=\"cart_btn product_type_simple add_to_cart_button ajax_add_to_cart\">Add to cart<\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-5 pt-3 pb-3\">\r\n                  <div class=\"product-price-1 mb-4 \" >\r\n                     <span class=\"\"><span><span>&#036;<\/span>50.00<\/span><\/span>\r\n                  <\/div>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><a href=\"?add_to_wishlist=202\" class=\"woosmart_add_to_wishlist woosmart_add_to_wishlist202 cursor-point\" data-product-id=\"202\"><i class=\"far fa-heart\"><\/i><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading202\" alt=\"loading\"><\/a><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wishlist\/\" class=\"woosmart_view_wishlist woosmart_view_wishlist202 cursor-point\" data-product-id=\"202\" ><i class=\"fas fa-list\"><\/i><\/a>\r\n               <\/div>\r\n               \r\n               <div class=\"col-md-6 p-0\"><span class=\"cd-item cd-item202\"><a href=\"#0\" class=\"quick_view cursor-point cd-trigger cd-trigger202\" data-product-id=\"202\" ><i class=\"far fa-eye\"><\/i><\/a><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"item preview\" class=\"d-none\"><\/span>\r\n               <\/div>\r\n               \r\n            <\/div>\r\n         <\/div>\r\n         <\/article>\r\n      <\/div>\r\n   <\/div>\r\n   <div class=\"cd-quick-view cd-quick-view202\">\r\n\t<div class=\"row cd-item-info cd-item-info202\">\r\n\t<div class=\"col-md-4\"><img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/hoodie_2_back.jpg\" alt=\"Featured-image\"><\/div>\r\n\t<div class=\"col-md-8\">\r\n\t<h2>Mature Hoodie<\/h2>\r\n\t<h3><span><span>&#036;<\/span>50.00<\/span><\/h3>\r\n\t<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\/p>\r\n\t<ul class=\"pl-0 cd-item-action cd-item-action202\">\r\n\t<li>\r\n\t<a href=\"?add-to-cart=202\" rel=\"nofollow\" data-product_id=\"202\" data-product_sku=\"\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a>\r\n\t<\/li>\r\n\t<\/ul>\r\n\t<\/div>\r\n\t<\/div>\r\n\t<a href=\"#0\" class=\"cd-close cd-close202\">Close<\/a>\r\n\t<\/div><\/div>\r\n   <\/div>\r\n<\/section>\r\n\r\n<style>\r\n.woosmart_layout_7 a:active,\r\n.woosmart_layout_7 a:hover {\r\n\ttext-decoration: none;\r\n}\r\n\r\n.woosmart_layout_7 .animate-300 {\r\n\t-webkit-transition: .3s;\r\n\ttransition: .3s;\r\n}\r\n\r\n.woosmart_layout_7 .thumbnail {\r\n\tdisplay: block;\r\n\toverflow: hidden;\r\n}\r\n\r\n.woosmart_layout_7 .thumbnail a,\r\n.woosmart_layout_7 .thumbnail img {\r\n\tdisplay: block;\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_7 .thumbnail.animate-zoom img {\r\n\t-webkit-transition: .5s ease;\r\n\ttransition: .5s ease;\r\n}\r\n\r\n.woosmart_layout_7 .thumbnail.animate-zoom:hover img {\r\n\t-webkit-transform: scale(1.1);\r\n\ttransform: scale(1.1);\r\n}\r\n\r\n.woosmart_layout_7 .stars-rating {\r\n\tfont-size: 12px;\r\n}\r\n\r\n.woosmart_layout_7 .stars-rating span {\r\n\tcolor: #a5a5a5;\r\n}\r\n\r\n.woosmart_layout_7 .stars-rating[data-rate=\"5\"] span {\r\n\tcolor: #fdba0a;\r\n}\r\n\r\n.woosmart_layout_7 .product-item-1 {\r\n\tmargin-bottom: 30px;\r\n}\r\n\r\n.woosmart_layout_7 .product-item-1 .product-name {\r\n\tfont-size: 18px;\r\n\tfont-weight: 700;\r\n\ttext-transform: uppercase;\r\n\tcolor: #333;\r\n\tmargin: 8px 0;\r\n}\r\n\r\n.woosmart_layout_7 .product-price-1 {\r\n\tfont-family: Poppins;\r\n}\r\n\r\n@media (max-width:575px) {\r\n\t.woosmart_layout_7 .product-price-1 {\r\n\t\ttext-align: center !important;\r\n\t}\r\n}\r\n\r\n.woosmart_layout_7 .shadow-brdr {\r\n\tborder: 1px solid transparent!important;\r\n\t-webkit-box-shadow: 0 4px 22px 5px #f1f1f1;\r\n\tbox-shadow: 0 4px 22px 5px #f1f1f1;\r\n}\r\n\r\n.woosmart_layout_7 .add_to_cart_button,\r\n.woosmart_layout_7 .product_type_button {\r\n\tcolor: inherit;\r\n\tfont-size: 14px;\r\n}\r\n\r\n.woosmart_layout_7 .product_type_button {\r\n\tfont-size: 12px;\r\n}\r\n\r\n.woosmart_layout_7 .add_to_cart_button:hover i {\r\n\tpadding-left: 10px;\r\n\ttransition: .5s;\r\n}\r\n\r\n.woosmart_layout_7 .added_to_cart {\r\n\ttext-transform: uppercase;\r\n}\r\n\r\n.woosmart_layout_7 .thumbnail img {\r\n\twidth: 100%;\r\n}\r\n\r\n.woosmart_layout_7 .product-price-1 del {\r\n\tfont-size: 15px;\r\n\tfont-weight: 400;\r\n}\r\n\r\n.woosmart_layout_7 .product-price-1 {\r\n\tpadding-top: 5px;\r\n\ttext-align: right;\r\n\tfont-weight: 700;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_7 .stars-rating {\r\n\tpadding-top: 5px;\r\n}\r\n\r\n.woosmart_layout_7 .ajax_add_to_cart.added {\r\n\tdisplay: none;\r\n}\r\n\r\n.woosmart_layout_7 .product-price-1 ins {\r\n\ttext-decoration: none;\r\n\tcolor: #fc3c2a;\r\n\tfont-weight: 700;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.woosmart_layout_7 .product-price-1 del {\r\n\tfont-size: 12px;\r\n\tcolor: #999;\r\n}\r\n\r\n@media (max-width:768px) {\r\n\t.woosmart_layout_7 .stars-rating {\r\n\t\ttext-align: center;\r\n\t}\r\n}\r\n.woosmart_layout_7 .sale-badge{\r\n    color: #fff;\r\n    position: absolute;\r\n    background: #f00707;\r\n    z-index: 1;\r\n    width: 60px;\r\n    height: 60px;\r\n    line-height: 60px;\r\n}\r\n.woosmart_layout_7 .cart_btn {\r\n    text-transform: uppercase;\r\n    font-size: 12px !important;\r\n    color: #000;\r\n}\r\n.woosmart_layout_7 .cart_btn::after{\r\n\tposition: absolute;\r\n    color: inherit;\r\n    font-family: \"Font Awesome 5 Free\";\r\n    font-size: 1.2em;\r\n    content: \"\\f061\";\r\n    font-weight: 900;\r\n    display: inline-block;\r\n    font-style: normal;\r\n    font-variant: normal;\r\n    text-rendering: auto;\r\n    -webkit-font-smoothing: antialiased;\r\n    margin-top: 3px;\r\n    margin-left: 3px;\r\n}\r\n.woosmart_layout_7 .cart_btn:hover::after,.woosmart_layout_7 .added_to_cart:hover::after{\r\n\tpadding-left:5px;\r\n\ttransition:0.5s;\r\n}\r\n.woosmart_layout_7 .added_to_cart {\r\n\ttext-transform: uppercase;\r\n    font-size: 12px ;\r\n    color: #000 ;\r\n    background: none;\r\n    border: none;\r\n    padding: 0;\r\n}\r\n.woosmart_layout_7 .added_to_cart::after {\r\n\tposition: absolute;\r\n    color: inherit;\r\n    font-family: \"Font Awesome 5 Free\";\r\n    font-size: 1.2em;\r\n    content: \"\\f061\";\r\n    font-weight: 900;\r\n    display: inline-block;\r\n    font-style: normal;\r\n    font-variant: normal;\r\n    text-rendering: auto;\r\n    -webkit-font-smoothing: antialiased;\r\n    margin-top: 3px;\r\n    margin-left: 3px;\r\n}\r\n.woosmart_layout_7 .wishlist_loader{\r\n\twidth: 16px;\r\n    position: absolute;\r\n\ttop: 16px;\r\n    left: 53px;\r\n}\r\n.woosmart_layout_7 .woosmart_add_to_wishlist{\r\n\tposition: relative;\r\n    height: 50px;\r\n    line-height: 50px;\r\n    width: 100%;\r\n    bottom: 0;\r\n    left: 0;\r\n    background: rgba(0, 0, 0, 0.1);\r\n    text-align: center;\r\n    -webkit-font-smoothing: antialiased;\r\n    -moz-osx-font-smoothing: grayscale;\r\n    color: #ffffff;\r\n    display: block;\r\n    visibility: visible;\r\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\r\n    -moz-transition: opacity 0.2s, background-color 0.2s;\r\n    transition: opacity 0.2s, background-color 0.2s;\r\n}\r\n.woosmart_layout_7  .woosmart_view_wishlist{\r\n\tdisplay:none;\r\n\tposition: relative;\r\n    height: 50px;\r\n    line-height: 50px;\r\n    width: 100%;\r\n    bottom: 0;\r\n    left: 0;\r\n    background: rgba(0, 0, 0, 0.1);\r\n    text-align: center;\r\n    -webkit-font-smoothing: antialiased;\r\n    -moz-osx-font-smoothing: grayscale;\r\n    color: #ffffff;\r\n    -webkit-transition: opacity 0.2s, background-color 0.2s;\r\n    -moz-transition: opacity 0.2s, background-color 0.2s;\r\n    transition: opacity 0.2s, background-color 0.2s;\t\r\n}\r\n.woosmart_layout_7 .woosmart_add_to_wishlist:hover,.woosmart_layout_7  .woosmart_view_wishlist:hover{\r\n\tbackground: rgba(0, 0, 0, 0.2);\r\n}\r\n.woosmart_layout_7 .cd-trigger:hover {\r\n  color: #fff;\r\n}\r\n.woosmart_layout_7 .product-added-to-wishlist,.woosmart_layout_7 .product-already-in-wishlist{\r\n\tposition:absolute;\r\n\tdisplay:none;\r\n\ttext-align: center;\r\n    background: rgba(255, 255, 255, 0.7);\r\n    padding: 10px;\r\n    width: 100%;\r\n    top: 105px;\t\r\n}\r\n<\/style>\r\n\t<style>\r\n\t.woosmart_layout_7.becda .sale-badge{\r\n\t\tbackground-color:#ffcc36;\r\n\t}\t\r\n\t<\/style>[vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column]<!-- Start Call to Action -->\r\n        <section class=\"call-to-action bg-animation p-90-60 eijgh\"  style=\"background-image:url(https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/ambient-min-1.jpg)\">\r\n            <div class=\"container\">\r\n                <div class=\"row\">\r\n                    <div class=\"col-12 col-lg-7 align-self-center mb-30\">\r\n                        <!-- Section title -->\r\n                        <div class=\"section-title\">\r\n                            <p class=\"white-light bold small heading1\">Built for total flexibility with Woo Products<\/p>\r\n                            <h2 class=\"h1 white heading2\">WPBakery <span class='thin'>Ready<\/span><\/h2>\r\n                            <p class=\"white-light thin m-0 heading3\">Drag and Drop the Product Layout elements and select your Product Category to Show!<\/p>\r\n                        <\/div>\r\n                        <!-- Section title end -->\r\n                    <\/div>\r\n                    <div class=\"col-12 col-lg-5 align-self-center mb-30\">\r\n\t\t\t\t\t\r\n                        <a href=\"https:\/\/codecanyon.net\/item\/woosmart-products-catalog-and-showcase-for-woocommerce\/24911132\/?ref=fluent-themes\" class=\"m-0\" aria-haspopup=\"true\">\r\n                            <div class=\"button bg-color-1\">Purchase Now<\/div>\r\n                        <\/a>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n                        <a class=\"white-link m-0\" href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-doc\/\" aria-haspopup=\"true\">View Documentation <i class=\"fas fa-chevron-right\"><\/i><\/a>\r\n\t\t\t\t\t\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/section>\r\n        <!-- End Call to Action  -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n\r\n.call-to-action.eijgh .bg-color-1{\r\n    background-image: linear-gradient(-180deg, #993ecc 0%, #531975 100%) !important;\r\n}\r\n\r\n\r\n\r\n<\/style>\r\n[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;]<!-- Start Headline Section-->\r\n       \r\n                <div class=\"section-title sm-ac p-15 mb-m5 ikjkl\">\r\n                    <p class=\"light bold small headline1\">View Demo of Layout 1<\/p>\r\n                    <h2 class=\"headline2\"><span class='thin'>Product<\/span> Catalog Layout 1<\/h2>\r\n                    <p class=\"light thin headline3\">More than fifteen smart layouts available to use and each layout has its own settings to let you customize as your needs.<\/p>\r\n                <\/div>\r\n\r\n        <!-- End Headline Section -->\r\n\t\t\r\n<style>\r\n\r\n\r\n\r\n<\/style>\r\n<div class=\"woocommerce woosmart-woo woosmart-woo-grid woosmart_layout_1\">\r\n    <div class=\"woosmart-woo-clearfix\"><\/div>\r\n    <div class=\"woosmart-woo-list-items woosmart-woo-grid-list woosmart-woo-clearfix row\"><div class=\"col-md-4\">\t\r\n        <div class=\" woosmart-woo-span4 first\">\r\n            <div class=\"woosmart-woo-item woosmart-woo-grid-item\">\r\n                <div class=\"woosmart-woo-images\">\r\n                    <div class=\"woosmart-wcwl-add-to-wishlist add-to-wishlist-145\">\r\n\t\t\t\t\t\r\n                        <div class=\"woosmart-wcwl-add-button show\" style=\"display:block\">\r\n                            <a href=\"?add_to_wishlist=18\"  class=\"add_to_wishlist woosmart_add_to_wishlist18\"><\/a>\r\n\t\t\t\t\t\t\t<span class=\"woosmart_wishlist_path18 \"><\/span>\r\n                            <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading18\" alt=\"loading\">\r\n                        <\/div>\r\n\t\t\t\t\t\r\n                        <div class=\"product-added-to-wishlist product-added-to-wishlist18 hide\">\r\n                            <span class=\"feedback\">Product added to wishlist!<\/span>\r\n                        <\/div>\r\n\r\n                        <div class=\"product-already-in-wishlist product-already-in-wishlist18 hide\" style=\"display:none\">\r\n                            <span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n                        <\/div>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/thread.png\" class=\"sale_badge_thread\" alt=\"sale-badge\"\/>\r\n\t\t\t\t\t<span class=\"sale_badge\">SALE<\/span>\r\n\t\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"clear\">\r\n                    <\/div>\r\n                    <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-3\/\">\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-front-thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_front.jpg\" class=\"attachment-shop_catalog size-shop_catalog wp-post-image\" alt=\"featured-image\"><\/div>\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-back-thumbnail\">\r\n                            <img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_1_back.jpg\" class=\"hover-image\" alt=\"featured-image\"><\/div>\r\n                    <\/a>\r\n                <\/div>\r\n                <div class=\"woosmart-woo-info\">\r\n                    <h2 class=\"woosmart-woo-title woosmart-woo-clearfix\">\r\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-logo-3\/\" style=\"color:#47a3da\">Woo Logo<\/a>\r\n\t\t\t\t\t<\/h2>\r\n                    <div class=\"woocommerce woosmart-woo-rating woosmart-woo-clearfix\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span>\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"woosmart-woo-extra\">\r\n                        <div class=\"row\">\r\n                            <div class=\"price-span col-md-12\">\r\n                                <div class=\"woosmart-woo-price\" style=\"color:#47a3da\">\r\n                                    <span class=\"woocommerce-Price-amount amount\"><del><span><span>&#036;<\/span>20.00<\/span><\/del> <ins><span><span>&#036;<\/span>18.00<\/span><\/ins><\/span>\r\n                                <\/div>\r\n                            <\/div>\t\t\t\t\t\t\r\n                            <div class=\"add-to-cart-span col-md-12\">\r\n                                <div class=\"woosmart-woo-addtocart\"><a href=\"?add-to-cart=18\" rel=\"nofollow\" data-product_id=\"18\" data-product_sku=\"T-SHIRT-WOO-LOGO\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            <\/div>\r\n        <\/div><div class=\"col-md-4\">\t\r\n        <div class=\" woosmart-woo-span4 first\">\r\n            <div class=\"woosmart-woo-item woosmart-woo-grid-item\">\r\n                <div class=\"woosmart-woo-images\">\r\n                    <div class=\"woosmart-wcwl-add-to-wishlist add-to-wishlist-145\">\r\n\t\t\t\t\t\r\n                        <div class=\"woosmart-wcwl-add-button show\" style=\"display:block\">\r\n                            <a href=\"?add_to_wishlist=20\"  class=\"add_to_wishlist woosmart_add_to_wishlist20\"><\/a>\r\n\t\t\t\t\t\t\t<span class=\"woosmart_wishlist_path20 \"><\/span>\r\n                            <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading20\" alt=\"loading\">\r\n                        <\/div>\r\n\t\t\t\t\t\r\n                        <div class=\"product-added-to-wishlist product-added-to-wishlist20 hide\">\r\n                            <span class=\"feedback\">Product added to wishlist!<\/span>\r\n                        <\/div>\r\n\r\n                        <div class=\"product-already-in-wishlist product-already-in-wishlist20 hide\" style=\"display:none\">\r\n                            <span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n                        <\/div>\r\n\t\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"clear\">\r\n                    <\/div>\r\n                    <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-3\/\">\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-front-thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_6_front.jpg\" class=\"attachment-shop_catalog size-shop_catalog wp-post-image\" alt=\"featured-image\"><\/div>\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-back-thumbnail\">\r\n                            <img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_6_back.jpg\" class=\"hover-image\" alt=\"featured-image\"><\/div>\r\n                    <\/a>\r\n                <\/div>\r\n                <div class=\"woosmart-woo-info\">\r\n                    <h2 class=\"woosmart-woo-title woosmart-woo-clearfix\">\r\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/woo-ninja-3\/\" style=\"color:#47a3da\">Woo Ninja<\/a>\r\n\t\t\t\t\t<\/h2>\r\n                    <div class=\"woocommerce woosmart-woo-rating woosmart-woo-clearfix\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span>\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"woosmart-woo-extra\">\r\n                        <div class=\"row\">\r\n                            <div class=\"price-span col-md-12\">\r\n                                <div class=\"woosmart-woo-price\" style=\"color:#47a3da\">\r\n                                    <span class=\"woocommerce-Price-amount amount\"><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n                                <\/div>\r\n                            <\/div>\t\t\t\t\t\t\r\n                            <div class=\"add-to-cart-span col-md-12\">\r\n                                <div class=\"woosmart-woo-addtocart\"><a href=\"?add-to-cart=20\" rel=\"nofollow\" data-product_id=\"20\" data-product_sku=\"T-SHIRT-WOO-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            <\/div>\r\n        <\/div><div class=\"col-md-4\">\t\r\n        <div class=\" woosmart-woo-span4 first\">\r\n            <div class=\"woosmart-woo-item woosmart-woo-grid-item\">\r\n                <div class=\"woosmart-woo-images\">\r\n                    <div class=\"woosmart-wcwl-add-to-wishlist add-to-wishlist-145\">\r\n\t\t\t\t\t\r\n                        <div class=\"woosmart-wcwl-add-button show\" style=\"display:block\">\r\n                            <a href=\"?add_to_wishlist=22\"  class=\"add_to_wishlist woosmart_add_to_wishlist22\"><\/a>\r\n\t\t\t\t\t\t\t<span class=\"woosmart_wishlist_path22 \"><\/span>\r\n                            <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading22\" alt=\"loading\">\r\n                        <\/div>\r\n\t\t\t\t\t\r\n                        <div class=\"product-added-to-wishlist product-added-to-wishlist22 hide\">\r\n                            <span class=\"feedback\">Product added to wishlist!<\/span>\r\n                        <\/div>\r\n\r\n                        <div class=\"product-already-in-wishlist product-already-in-wishlist22 hide\" style=\"display:none\">\r\n                            <span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n                        <\/div>\r\n\t\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"clear\">\r\n                    <\/div>\r\n                    <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/premium-quality-2\/\">\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-front-thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_2_front.jpg\" class=\"attachment-shop_catalog size-shop_catalog wp-post-image\" alt=\"featured-image\"><\/div>\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-back-thumbnail\">\r\n                            <img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_2_back.jpg\" class=\"hover-image\" alt=\"featured-image\"><\/div>\r\n                    <\/a>\r\n                <\/div>\r\n                <div class=\"woosmart-woo-info\">\r\n                    <h2 class=\"woosmart-woo-title woosmart-woo-clearfix\">\r\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/premium-quality-2\/\" style=\"color:#47a3da\">Premium Quality<\/a>\r\n\t\t\t\t\t<\/h2>\r\n                    <div class=\"woocommerce woosmart-woo-rating woosmart-woo-clearfix\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span>\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"woosmart-woo-extra\">\r\n                        <div class=\"row\">\r\n                            <div class=\"price-span col-md-12\">\r\n                                <div class=\"woosmart-woo-price\" style=\"color:#47a3da\">\r\n                                    <span class=\"woocommerce-Price-amount amount\"><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n                                <\/div>\r\n                            <\/div>\t\t\t\t\t\t\r\n                            <div class=\"add-to-cart-span col-md-12\">\r\n                                <div class=\"woosmart-woo-addtocart\"><a href=\"?add-to-cart=22\" rel=\"nofollow\" data-product_id=\"22\" data-product_sku=\"T-SHIRT-PREMIUM-QUALITY\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            <\/div>\r\n        <\/div><div class=\"col-md-4\">\t\r\n        <div class=\" woosmart-woo-span4 first\">\r\n            <div class=\"woosmart-woo-item woosmart-woo-grid-item\">\r\n                <div class=\"woosmart-woo-images\">\r\n                    <div class=\"woosmart-wcwl-add-to-wishlist add-to-wishlist-145\">\r\n\t\t\t\t\t\r\n                        <div class=\"woosmart-wcwl-add-button show\" style=\"display:block\">\r\n                            <a href=\"?add_to_wishlist=23\"  class=\"add_to_wishlist woosmart_add_to_wishlist23\"><\/a>\r\n\t\t\t\t\t\t\t<span class=\"woosmart_wishlist_path23 \"><\/span>\r\n                            <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading23\" alt=\"loading\">\r\n                        <\/div>\r\n\t\t\t\t\t\r\n                        <div class=\"product-added-to-wishlist product-added-to-wishlist23 hide\">\r\n                            <span class=\"feedback\">Product added to wishlist!<\/span>\r\n                        <\/div>\r\n\r\n                        <div class=\"product-already-in-wishlist product-already-in-wishlist23 hide\" style=\"display:none\">\r\n                            <span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n                        <\/div>\r\n\t\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"clear\">\r\n                    <\/div>\r\n                    <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-3\/\">\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-front-thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_4_front.jpg\" class=\"attachment-shop_catalog size-shop_catalog wp-post-image\" alt=\"featured-image\"><\/div>\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-back-thumbnail\">\r\n                            <img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_4_front1.jpg\" class=\"hover-image\" alt=\"featured-image\"><\/div>\r\n                    <\/a>\r\n                <\/div>\r\n                <div class=\"woosmart-woo-info\">\r\n                    <h2 class=\"woosmart-woo-title woosmart-woo-clearfix\">\r\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-3\/\" style=\"color:#47a3da\">Ship Your Idea<\/a>\r\n\t\t\t\t\t<\/h2>\r\n                    <div class=\"woocommerce woosmart-woo-rating woosmart-woo-clearfix\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span>\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"woosmart-woo-extra\">\r\n                        <div class=\"row\">\r\n                            <div class=\"price-span col-md-12\">\r\n                                <div class=\"woosmart-woo-price\" style=\"color:#47a3da\">\r\n                                    <span class=\"woocommerce-Price-amount amount\"><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n                                <\/div>\r\n                            <\/div>\t\t\t\t\t\t\r\n                            <div class=\"add-to-cart-span col-md-12\">\r\n                                <div class=\"woosmart-woo-addtocart\"><a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ship-your-idea-3\/\" rel=\"nofollow\" data-product_id=\"23\" data-product_sku=\"T-SHIRT-SHIP-YOUR-IDEA\" data-quantity=\"1\" class=\"button product_type_button product_type_variable add_to_cart_button ajax_add_to_cart\" variable>Select options<\/a><\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            <\/div>\r\n        <\/div><div class=\"col-md-4\">\t\r\n        <div class=\" woosmart-woo-span4 first\">\r\n            <div class=\"woosmart-woo-item woosmart-woo-grid-item\">\r\n                <div class=\"woosmart-woo-images\">\r\n                    <div class=\"woosmart-wcwl-add-to-wishlist add-to-wishlist-145\">\r\n\t\t\t\t\t\r\n                        <div class=\"woosmart-wcwl-add-button show\" style=\"display:block\">\r\n                            <a href=\"?add_to_wishlist=25\"  class=\"add_to_wishlist woosmart_add_to_wishlist25\"><\/a>\r\n\t\t\t\t\t\t\t<span class=\"woosmart_wishlist_path25 \"><\/span>\r\n                            <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading25\" alt=\"loading\">\r\n                        <\/div>\r\n\t\t\t\t\t\r\n                        <div class=\"product-added-to-wishlist product-added-to-wishlist25 hide\">\r\n                            <span class=\"feedback\">Product added to wishlist!<\/span>\r\n                        <\/div>\r\n\r\n                        <div class=\"product-already-in-wishlist product-already-in-wishlist25 hide\" style=\"display:none\">\r\n                            <span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n                        <\/div>\r\n\t\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"clear\">\r\n                    <\/div>\r\n                    <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ninja-silhouette-2\/\">\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-front-thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_5_front.jpg\" class=\"attachment-shop_catalog size-shop_catalog wp-post-image\" alt=\"featured-image\"><\/div>\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-back-thumbnail\">\r\n                            <img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_5_back.jpg\" class=\"hover-image\" alt=\"featured-image\"><\/div>\r\n                    <\/a>\r\n                <\/div>\r\n                <div class=\"woosmart-woo-info\">\r\n                    <h2 class=\"woosmart-woo-title woosmart-woo-clearfix\">\r\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/ninja-silhouette-2\/\" style=\"color:#47a3da\">Ninja Silhouette<\/a>\r\n\t\t\t\t\t<\/h2>\r\n                    <div class=\"woocommerce woosmart-woo-rating woosmart-woo-clearfix\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span>\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"woosmart-woo-extra\">\r\n                        <div class=\"row\">\r\n                            <div class=\"price-span col-md-12\">\r\n                                <div class=\"woosmart-woo-price\" style=\"color:#47a3da\">\r\n                                    <span class=\"woocommerce-Price-amount amount\"><span><span>&#036;<\/span>20.00<\/span><\/span>\r\n                                <\/div>\r\n                            <\/div>\t\t\t\t\t\t\r\n                            <div class=\"add-to-cart-span col-md-12\">\r\n                                <div class=\"woosmart-woo-addtocart\"><a href=\"?add-to-cart=25\" rel=\"nofollow\" data-product_id=\"25\" data-product_sku=\"T-SHIRT-NINJA-SILHOUETTE\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            <\/div>\r\n        <\/div><div class=\"col-md-4\">\t\r\n        <div class=\" woosmart-woo-span4 first\">\r\n            <div class=\"woosmart-woo-item woosmart-woo-grid-item\">\r\n                <div class=\"woosmart-woo-images\">\r\n                    <div class=\"woosmart-wcwl-add-to-wishlist add-to-wishlist-145\">\r\n\t\t\t\t\t\r\n                        <div class=\"woosmart-wcwl-add-button show\" style=\"display:block\">\r\n                            <a href=\"?add_to_wishlist=26\"  class=\"add_to_wishlist woosmart_add_to_wishlist26\"><\/a>\r\n\t\t\t\t\t\t\t<span class=\"woosmart_wishlist_path26 \"><\/span>\r\n                            <img decoding=\"async\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/plugins\/the-woosmart-products-catalog\/modules\/images\/loader.gif\" class=\"wishlist_loader ajax-loading26\" alt=\"loading\">\r\n                        <\/div>\r\n\t\t\t\t\t\r\n                        <div class=\"product-added-to-wishlist product-added-to-wishlist26 hide\">\r\n                            <span class=\"feedback\">Product added to wishlist!<\/span>\r\n                        <\/div>\r\n\r\n                        <div class=\"product-already-in-wishlist product-already-in-wishlist26 hide\" style=\"display:none\">\r\n                            <span class=\"feedback\">The product is already in the wishlist!<\/span>\r\n                        <\/div>\r\n\t\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"clear\">\r\n                    <\/div>\r\n                    <a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/happy-ninja-2\/\">\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-front-thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_7_front.jpg\" class=\"attachment-shop_catalog size-shop_catalog wp-post-image\" alt=\"featured-image\"><\/div>\r\n                        <div class=\"woosmart-woo-thumbnail woosmart-woo-back-thumbnail\">\r\n                            <img loading=\"lazy\" decoding=\"async\" width=\"324\" height=\"324\" src=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-content\/uploads\/2019\/10\/T_7_back.jpg\" class=\"hover-image\" alt=\"featured-image\"><\/div>\r\n                    <\/a>\r\n                <\/div>\r\n                <div class=\"woosmart-woo-info\">\r\n                    <h2 class=\"woosmart-woo-title woosmart-woo-clearfix\">\r\n\t\t\t\t\t<a href=\"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/product\/happy-ninja-2\/\" style=\"color:#47a3da\">Happy Ninja<\/a>\r\n\t\t\t\t\t<\/h2>\r\n                    <div class=\"woocommerce woosmart-woo-rating woosmart-woo-clearfix\"><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span><span class='fas fa-star'><\/span>\t\t\t\t\t\r\n                    <\/div>\r\n                    <div class=\"woosmart-woo-extra\">\r\n                        <div class=\"row\">\r\n                            <div class=\"price-span col-md-12\">\r\n                                <div class=\"woosmart-woo-price\" style=\"color:#47a3da\">\r\n                                    <span class=\"woocommerce-Price-amount amount\"><span><span>&#036;<\/span>18.00<\/span><\/span>\r\n                                <\/div>\r\n                            <\/div>\t\t\t\t\t\t\r\n                            <div class=\"add-to-cart-span col-md-12\">\r\n                                <div class=\"woosmart-woo-addtocart\"><a href=\"?add-to-cart=26\" rel=\"nofollow\" data-product_id=\"26\" data-product_sku=\"T-SHIRT-HAPPY-NINJA\" data-quantity=\"1\" class=\"button product_type_button product_type_simple add_to_cart_button ajax_add_to_cart\" simple>Add to cart<\/a><\/div>\r\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\n<style>\n.woosmart_layout_1 a.add_to_wishlist {\n\tcursor: pointer;\n}\n.woosmart_layout_1 .woosmart-wcwl-add-to-wishlist {\n\tmargin-top: 10px;\n}\n.woosmart_layout_1 .woosmart-wcwl-add-button a.add_to_wishlist {\n\tmargin: 0px;\n\tbox-shadow: none;\n\ttext-shadow: none;\n\tborder-radius: 3px;\n}\n.woosmart_layout_1 .woosmart-wcwl-add-to-wishlist .ajax-loading {\n\tbox-shadow: none!important;\n\t-moz-box-shadow: none!important;\n\t-webkit-box-shadow: none!important;\n\tdisplay: inline!important;\n\tmargin-left: 5px;\n\tvertical-align: middle;\n\tvisibility: hidden;\n\twidth: 16px!important;\n\theight: 16px!important;\n}\n.woosmart_layout_1 .woosmart-woo-addtocart {\n\ttext-align: center;\n\tmargin-top: 10px;\n}\n.woosmart_layout_1 .woosmart-woo-addtocart .added_to_cart {\n\tpadding-top: 5px !important;\n    border-radius: 3px;\n    padding-left: 10px;\n    padding-right: 10px;\n    padding-bottom: 5px;\n    border-radius: 3px;\n}\n.woosmart_layout_1 .woosmart-woo * {\n\t-webkit-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n.woosmart_layout_1 .woosmart-woo,\n.woosmart_layout_1 .woosmart-woo-clearfix {\n\t*zoom: 1;\n}\n.woosmart_layout_1 .woosmart-woo-clearfix:after,\n.woosmart_layout_1 .woosmart-woo-clearfix:before,\n.woosmart_layout_1 .woosmart-woo:after,\n.woosmart_layout_1 .woosmart-woo:before {\n\tdisplay: table;\n\tcontent: \"\";\n}\n.woosmart_layout_1 .woosmart-woo-clearfix:after,\n.woosmart_layout_1 .woosmart-woo:after {\n\tclear: both;\n}\n.woosmart_layout_1 .woosmart-woo-row-fluid {\n\tmargin-left: -15px;\n\tmargin-right: -15px;\n}\n.woosmart_layout_1 .woosmart-woo-row-fluid:after,\n.woosmart_layout_1 .woosmart-woo-row-fluid:before {\n\tdisplay: table;\n\tline-height: 0;\n\tcontent: \"\";\n}\n.woosmart_layout_1 .woosmart-woo-row-fluid:after {\n\tclear: both;\n}\n[class*=woosmart-woo-span] {\n\tdisplay: block;\n\tfloat: left;\n\twidth: 100%;\n\tmin-height: 1px;\n\tpadding: 0 15px;\n\t-webkit-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n.woosmart_layout_1 .woosmart-woo-span6 {\n\twidth: 50%;\n}\n.woosmart_layout_1 .woosmart-woo-span4 {\n\twidth: 100%;\n}\n.woosmart_layout_1 .woosmart-woo-toolbar {\n\tmargin-bottom: 15px;\n}\n.woosmart_layout_1 .woosmart-woo-result-count {\n\tfloat: left;\n\twidth: 48%;\n\tmargin: 0;\n}\n.woosmart_layout_1 .woosmart-woo-ordering {\n\tfloat: right;\n\ttext-align: right;\n}\n.woosmart_layout_1 .woosmart-woo-heading {\n\tcolor: #47A3DA;\n\tfont-size: 16px;\n\tfont-weight: bold;\n\tmargin-bottom: 30px;\n}\n.woosmart_layout_1 .woosmart-woo-grid-list {\n\tmargin-left: -15px;\n\tmargin-right: -15px;\n}\n.woosmart_layout_1 .woosmart-woo-grid-list .first {\n\tclear: both;\n}\n.woosmart_layout_1 .woosmart-woo-grid-item {\n\tmargin-bottom: 30px;\n}\n.woosmart_layout_1 .woosmart-woo-item {\n\tborder: 1px solid #e1e1e1;\n}\n.woosmart_layout_1 .woosmart-woo-images {\n\tposition: relative;\n\toverflow: hidden;\n}\n.woosmart_layout_1 .woosmart-woo-images>a {\n\tposition: relative;\n\tdisplay: block;\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-woo-thumbnail {\n\tleft: 0;\n\ttop: 0;\n\twidth: 100%;\n\tz-index: 8;\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-woo-thumbnail img {\n\tdisplay: block;\n\theight: auto;\n\t-webkit-transition: all 0.5s ease-in-out 0s;\n\ttransition: all 0.5s ease-in-out 0s;\n\twidth: 100%;\n\tanimation-fill-mode: both;\n\t-webkit-animation-fill-mode: both;\n\tbackface-visibility: hidden;\n\t-webkit-backface-visibility: hidden;\n\topacity: 1;\n\tmargin: 0;\n\twidth: 100% !important;\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-woo-thumbnail.woosmart-woo-front-thumbnail {\n\tz-index: 10;\n\tposition: relative;\n\twidth: 100%;\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-woo-thumbnail.woosmart-woo-back-thumbnail {\n\tposition: absolute;\n}\n.woosmart_layout_1 .woosmart-woo-item:hover .woosmart-woo-thumbnail.woosmart-woo-front-thumbnail img {\n\topacity: 0;\n\twidth: 100%;\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-add-to-wishlist {\n\tposition: absolute;\n\ttop: 15px;\n\tpadding-right: 15px;\n\tpadding-left: 15px;\n\tz-index: 100;\n\tmargin: 0;\n\twidth:100%;\n}\n.woosmart_layout_1 .woosmart-woo-item:hover .woosmart-woo-images .woosmart-wcwl-add-to-wishlist {\n\tdisplay: block;\n}\n.woosmart_layout_1 .woosmart-woo-images .add_to_wishlist:after,\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistaddedbrowse a:after,\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistexistsbrowse a:after {\n\tbackground: none repeat scroll 0 0 rgba(255, 255, 255, .5);\n\tborder-radius: 2px;\n\tfont-size: 12px;\n\tfont-style: normal;\n\t-webkit-font-feature-settings: normal;\n\tfont-feature-settings: normal;\n\tfont-variant: normal;\n\tfont-weight: normal;\n\tline-height: 16px;\n\tpadding: 2px 4px;\n\tright: 20px;\n\ttext-align: right;\n\ttext-indent: 0;\n\ttext-transform: none;\n\ttop: 2px;\n\twhite-space: nowrap;\n\tposition: absolute;\n}\n.woosmart_layout_1 .woosmart-woo-images .add_to_wishlist:before,\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistaddedbrowse a:before,\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistexistsbrowse a:before {\n\tdisplay: inline-block;\n\tfont-family: \"Font Awesome 5 Free\";\n\tfont-style: 900;\n\tfont-weight: normal;\n\ttext-decoration: inherit;\n\t-webkit-font-smoothing: antialiased;\n\tspeak: none;\n\tline-height: 1;\n\ttext-indent: 0;\n\tposition: absolute;\n\tright: 0;\n\ttop: 50%;\n\ttext-decoration: none;\n\ttext-transform: none;\n\t-webkit-transform: translateY(-50%);\n\ttransform: translateY(-50%);\n\tcolor: #333;\n}\n.woosmart_layout_1 .woosmart-woo-images .add_to_wishlist:before {\n\tcontent: \"\\f004\";\n}\n.woosmart_layout_1 .woosmart-woo-images .added_to_wishlist:before {\n    content: \"\\f00c\";\n    font-family: \"Font Awesome 5 Free\";\n    font-weight: 900;\n    -webkit-font-smoothing: antialiased;\n    line-height: 1;\n    text-indent: 0;\n    position: absolute;\n    right: 0;\n    top: 50%;\n    text-decoration: none;\n    text-transform: none;\n    -webkit-transform: translateY(-50%);\n    transform: translateY(-50%);\n    color: #333;\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistaddedbrowse a:before,\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistexistsbrowse a:before {\n\tcontent: \"\\f00c\";\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-add-to-wishlist a {\n\tdisplay: block;\n\t;\n\tposition: relative;\n\ttext-decoration: none;\n\twidth: 25px;\n\theight: 25px;\n\tfloat: right\n}\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistaddedbrowse .feedback,\n.woosmart_layout_1 .woosmart-woo-images .woosmart-wcwl-wishlistexistsbrowse .feedback {\n\tdisplay: none;\n}\n.woosmart_layout_1 .woosmart-woo-images img {\n\tborder-radius: 0;\n\tbox-shadow: 0 0 0 rgba(0, 0, 0, 0);\n\t-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);\n\tmax-width: 100%;\n\tvertical-align: middle;\n\tborder: none;\n\twidth: 100%;\n\tpadding: 0;\n\tmargin: 0;\n\t-webkit-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n.woosmart_layout_1 .woosmart-woo-images img.wp-post-image {\n\tmargin: 0;\n\tpadding: 0;\n}\n.woosmart_layout_1 .woosmart-woo-info {\n\tpadding: 15px;\n}\n.woosmart_layout_1 .woosmart-woo-info .woosmart-woo-title {\n\tmargin: 0;\n\tpadding: 0;\n\ttext-align: center;\n\tmargin-bottom: 10px;\n\tfont-size: 18px;\n}\n.woosmart_layout_1 .woosmart-woo-info .woosmart-woo-title a {\n\ttext-decoration: none;\n\tfont-weight: bold;\n\tcolor: #47A3DA;\n\tline-height: 18px;\n}\n.woosmart_layout_1 .woosmart-woo-info .woosmart-woo-title a:hover {\n\ttext-decoration: none;\n\tcolor: #98D2F7;\n}\n.woosmart_layout_1 .woosmart-woo-rating {\n\tmargin-bottom: 10px;\n\tmargin-top: 5px;\n\ttext-align: center;\n\tfont-size:12px;\n}\n.woosmart_layout_1 .woosmart-woo-rating .star-rating {\n\tfloat: none;\n\tmargin: 0 auto;\n}\n.woosmart_layout_1 .woosmart-woo-extra .type-2column {\n\tdisplay: -webkit-box;\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-webkit-box-align: center;\n\t-ms-flex-align: center;\n\talign-items: center;\n}\n.woosmart_layout_1 .woosmart-woo-extra .type-2column .woosmart-woo-addtocart a {\n\ttext-align: center;\n\tpadding-left: 10px;\n\tpadding-right: 10px;\n}\n.woosmart_layout_1 .woosmart-woo-addtocart a {\n\ttext-decoration: none;\n\tdisplay: inline-block;\n\tcolor:#fff;\n}\n.woosmart_layout_1 .woosmart-woo-price {\n\ttext-align: center;\n\tfont-weight: 600;\n\tfont-size: 18px;\n}\n.woosmart_layout_1 .woosmart-woo-price ins {\n\tbackground: none repeat scroll 0 0 rgba(0, 0, 0, 0);\n}\n.woosmart_layout_1 .woosmart-woo-price del .amount {\n\tfont-weight: normal;\n\tfont-size: 0.85em;\n}\n@media (max-width:992px) {\n.woosmart_layout_1 \t.woosmart-woo-item {\n\t\tmargin-bottom: 30px;\n\t}\n}\n@media (max-width:992px) and (min-width:768px) {\n.woosmart_layout_1 \t.woosmart-woo-list-items>[class*=woosmart-woo-span] {\n\t\twidth: 33.33333333%;\n\t\tclear: none;\n\t}\n.woosmart_layout_1 \t.woosmart-woo-list-items>[class*=woosmart-woo-span]:nth-child(3n+1) {\n\t\tclear: both;\n\t}\n}\n@media (max-width:767px) {\n.woosmart_layout_1 \t.woosmart-woo-list-items>[class*=woosmart-woo-span] {\n\t\twidth: 50%;\n\t\tclear: none;\n\t}\n.woosmart_layout_1 \t.woosmart-woo-list-items>[class*=woosmart-woo-span]:nth-child(odd) {\n\t\tclear: both!important;\n\t}\n}\n.woosmart_layout_1 .wishlist_loader{\n\twidth: 16px !important;\n    margin-top: 5px !important;\n\tfloat: right;\n\tvisibility:hidden\t\n}\n.woosmart_layout_1 .product-added-to-wishlist,.woosmart_layout_1 .product-already-in-wishlist{\n\ttext-align: center;\n    background: #fff;\n    padding: 10px;\n    margin-top: 40px;\t\n}\n.woosmart_layout_1 .product-added-to-wishlist{\n\tdisplay:none;\n}\n.woosmart_layout_1 .woocommerce .added_to_cart{\n    font-size: 100%;\n    margin: 0;\n    line-height: 1;\n    cursor: pointer;\n    position: relative;\n    text-decoration: none;\n    overflow: visible;\n    font-weight: 700;\n    border-radius: 3px;\n    left: auto;\n    color: #515151;\n    background-color: #ebe9eb;\n    border: 0;\n    display: inline-block;\n    background-image: none;\n    box-shadow: none;\n    text-shadow: none;\t\n}\n.woosmart_layout_1 .add_to_cart_button.added{\n\tdisplay:none;\n}\n.woosmart_layout_1 .sale_badge{\n    background: #db1111;\n    padding: 10px;\n    position: absolute;\n    left: 10px;\n    top: 0px; \n    color: #fff;\n    transform: rotate(45deg);\n    border-radius: 20px 5px 5px 20px;\n}\n.sale_badge_thread{\n\tposition: absolute;\n    width: 25px !important;\n    z-index: 9;\n    top: -14px;\n    left: 0;\n}\n<\/style><style>\r\n\t.woosmart_layout_1 .ajax_add_to_cart {\r\n\t\tbackground:#eeeeee !important;\r\n\t}\r\n\t.woosmart_layout_1 .added_to_cart {\r\n\t\tbackground:#eeeeee !important;\r\n\t}\t\r\n\t<\/style><style>\r\n\t.woosmart_layout_1 .ajax_add_to_cart {\r\n\t\tcolor:#333333 !important;\r\n\t}\r\n\t.woosmart_layout_1 .added_to_cart {\r\n\t\tcolor:#333333 !important;\r\n\t}\t\r\n\t<\/style><style>\r\n\t.woosmart_layout_1 .woosmart-woo-info {\r\n\t\tbackground-color:#ffffff !important;\r\n\t}\t\r\n\t<\/style><style>\r\n\t.woosmart_layout_1 .sale_badge {\r\n\t\tbackground-color:#2aa328 !important;\r\n\t}\t\r\n\t<\/style>[vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; css=&#8221;.vc_custom_1545214084079{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8221; el_id=&#8221;home&#8221;][vc_column][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1571763416491{margin-top: 50px !important;}&#8221; el_id=&#8221;demos&#8221;][vc_column][vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;10px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;10px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;10px&#8221;][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;10px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;30px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;90px&#8221;][vc_empty_space height=&#8221;40px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-vc.php","meta":{"footnotes":""},"_links":{"self":[{"href":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-json\/wp\/v2\/pages\/295"}],"collection":[{"href":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-json\/wp\/v2\/comments?post=295"}],"version-history":[{"count":0,"href":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-json\/wp\/v2\/pages\/295\/revisions"}],"wp:attachment":[{"href":"https:\/\/fluentthemes.com\/wp-plugins\/woosmart-catalog\/wp-json\/wp\/v2\/media?parent=295"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}