/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 16 2026 | 13:39:13 */
	/*Product Loop*/ 
	/* Favorite icon*/
	.FavorIcon p {
		font-size: 25px;
}
	/* Carusel arrow icon*/
	 #ProductCatalogeLoop .elementor-swiper-button svg  {
		fill: none !important;
	}
	
	/* Load more block */
	#ProductCatalogeLoop .e-loop__load-more {
		margin-top: 40px !important
	}
	
	#ProductCatalogeLoop .elementor-button {
		padding: 10px 40px 8px 40px !important;
	}
	
	/*hover effect card*/
	@media (min-width: 1024px) {
		#ProductCatalogeLoop .elementor-swiper-button svg {
			display: none;
			transition: 0.4s;
		}
		
		
		#ProductCard:hover .elementor-swiper-button svg{
			display: block;
		}
		
		#ProductCard:hover {
			transform: scale(1.01, 1.01);
			box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
			transition: 0.4s;
			z-index: 3;
		}
	}
