/* ===================================
	Product List
====================================== */
.elementor-widget-crafto-product-list.appear:not(.anime-complete) .shop-box{
	transition: 0s;
}
ul.shop-wrapper {
	margin: 0 -10px;
	clear: both;
	list-style: none;
	padding: 0;
}
ul.shop-wrapper li {
	padding: 0 10px;
	margin: 0 0 20px;
	text-align: center;
}
.elementor-widget.elementor-widget-crafto-product-list:has(.grid-loading) {
	opacity: 1;
}

/* Product Thumbnail */
ul.shop-wrapper li .shop-box .shop-image {
	position: relative;
	overflow: hidden;
}
ul.shop-wrapper li .shop-box .shop-image a {
	display: block;
	overflow: hidden;
}

/* Overlay */
ul.shop-wrapper li .shop-box .product-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .6s cubic-bezier(.165,.84,.44,1);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(20, 20, 20, .3) 150%);
}
ul.shop-wrapper li .shop-box:hover .product-overlay {
	opacity: 1;
}

/* Sale And New */
ul.shop-wrapper .sale-new-wrap {
	right: inherit;
	margin: 0;
	left: 0;
	top: 17px;
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	padding: 0 14px;
	z-index: 5
}
ul.shop-wrapper .sale-new-wrap span {
	margin: 0 3px;
	position: relative;
	right: initial;
	left: initial;
	top: 0;
	float: left;
	border: 0;
	border-radius: 2px;
	padding: 1px 8px 0;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 9px;
	font-weight: 700;
	line-height: normal;
	min-height: 1px;
	min-width: 1px;
	line-height: 21px
}
ul.shop-wrapper .sale-new-wrap span.onsale {
	background-color: #2ebb79;
}
ul.shop-wrapper .sale-new-wrap span.new {
	background-color: #2ebb79;
}
ul.shop-wrapper .sale-new-wrap span.soldout {
	background-color: #dc3131;
}

/* Product Buttons */
ul.shop-wrapper li .shop-hover a,
ul.shop-wrapper li .shop-hover .button,
ul.shop-wrapper li .shop-hover .added_to_cart {
	margin: 0 5px 8px;
	height: 45px;
	width: 45px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
	transition: all 350ms cubic-bezier(.37,0,.63,1);
	color: var( --e-global-color-secondary, #232323 );
	background-color: #fff;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	display: flex;
	border-radius: 50%;
	overflow: hidden;
	transform: translateY(15px);
	opacity: 0;
	position: relative;
	font-size: 15px;
	padding: 0;
	z-index: 1;
	font-weight: 500;
	border: 0;
	line-height: 22px;
	text-transform: uppercase;
	bottom: -30%;
	left: 0;
}
ul.shop-wrapper li .shop-hover a i,
ul.shop-wrapper li .shop-hover .button i,
ul.shop-wrapper li .shop-hover .added_to_cart i {
	margin: 0;
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}
ul.shop-wrapper li .shop-hover a span,
ul.shop-wrapper li .shop-hover .button span,
ul.shop-wrapper li .shop-hover .added_to_cart span {
	display: none;
	color: var( --e-global-color-secondary, #232323 );
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}
ul.shop-wrapper li .shop-box a.button.added.add_to_cart_button {
	display: none
}
ul.shop-wrapper li .shop-box a.product_type_variable i {
	top: 2px
}
ul.shop-wrapper li .shop-box:hover .button,
ul.shop-wrapper li .shop-box:hover .added_to_cart {
	bottom: 0;
}
ul.shop-wrapper li .shop-box .added_to_cart {
	border-bottom: 1px solid rgba(255, 255, 255, .8);
	left: 0;
	right: 0;
}

/* Loader */
@keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

ul.shop-wrapper li .loading:hover,
ul.shop-wrapper li.loading {
	background-color: #fff;
	position: relative;
	border-color: transparent;
	opacity: 1;
	transition: all 0s ease-in-out;
}
ul.shop-wrapper li .loading::after {
	background: 0 0;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -8px 0 0 -8px;
	opacity: 1;
	right: inherit;
	z-index: 9;
	text-align: center;
	border: 2px solid hsla(0,0%,0%,.4);
	border-top-color: var( --e-global-color-secondary, #232323 );
	border-radius: 50%;
	width: 16px;
	height: 16px;
	animation: spin 1s linear infinite;
}
ul.shop-wrapper li .loading:before {
	position: absolute;
	z-index: 9;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	content: "";
}

/* Product Title */
ul.shop-wrapper li .shop-footer {
	padding-top: 20px;
}
ul.shop-wrapper li .shop-footer .product-title {
	font-weight: 500;
	color: var( --e-global-color-secondary, #232323 );
	font-size: 17px;
	letter-spacing: normal;
	line-height: 30px;
	padding: 0;
	margin: 0;
	display: inline-block;
}

/* Product Price */
ul.shop-wrapper li .shop-footer .price-wrap .price {
	font-size: 15px;
	line-height: normal;
	font-weight: 500;
	color: var( --e-global-color-text ), #828282;
	margin: 0;
	padding: 0;
	display: block;
}
ul.shop-wrapper li .shop-footer .price-wrap .price del {
	display: inline-block;
}
ul.shop-wrapper li .shop-footer .price-wrap .price ins {
	text-decoration: none;
	margin-left: 4px;
	display: inline-block;
}
ul.shop-wrapper li .shop-footer .star-rating {
	font-size: 14px;
	margin: 10px auto 8px;
	display: block;
}

/* Shop Boxed */
ul.shop-wrapper.shop-boxed li .shop-hover {
	position: absolute;
	bottom: 15px;
	width: 100%;
	transition-duration: .3s;
	display: flex;
	justify-content: center;
}
ul.shop-wrapper.shop-boxed li .shop-box {
	position: relative;
	overflow: hidden;
	border: 6px solid #fff;
	transition-duration: .4s;
	padding-bottom: 25px;
	background-color: #fff;
}
ul.shop-wrapper.shop-boxed li .shop-box:hover {
	box-shadow: 0 0 50px rgba(0, 0, 0, .08);
	border: 6px solid #fff;
}
ul.shop-wrapper.shop-boxed li .shop-box:hover .shop-hover a{
	transform: translateY(0);
	transition-delay: .1s;
	opacity: 1;
}
ul.shop-wrapper.shop-boxed li .shop-box:hover .shop-hover a:nth-child(2){
	transition-delay: .2s;
}
ul.shop-wrapper.shop-boxed li .shop-box:hover .shop-hover a:nth-child(3) {
	transition-delay: .3s;
}
ul.shop-wrapper.shop-boxed li .shop-box:hover .shop-hover a:nth-child(4) {
	transition-delay: .4s;
}
ul.shop-wrapper.shop-boxed li .shop-box:hover .shop-hover a:nth-child(5) {
	transition-delay: .5s;
}

/* Shop Standard */
ul.shop-wrapper.shop-standard li .shop-hover a,
ul.shop-wrapper.shop-standard li .shop-hover .button,
ul.shop-wrapper.shop-standard li .shop-hover .added_to_cart {
	width: 40px;
	height: 40px;
}
ul.shop-wrapper.shop-standard li .shop-box .shop-hover {
	position: absolute;
	top: 20px;
	width: auto;
	right: 12px;
	opacity: 0;
	transition-duration: .3s;
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-hover {
	opacity: 1;
	top: 20px;
}
ul.shop-wrapper.shop-standard li .shop-box .shop-hover a {
	transform: translateY(20px);
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-hover a {
	transform: translateY(0);
	transition-delay: .1s;
	opacity: 1;
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-hover a:nth-child(1) {
	transition-delay: 25ms;
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-hover a:nth-child(2) {
	transition-delay: 50ms;
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-hover a:nth-child(3) {
	transition-delay: 75ms;
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-hover a:nth-child(4) {
	transition-delay: 100ms;
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-hover a:nth-child(5) {
	transition-delay: 150ms;
}
ul.shop-wrapper.shop-standard li .shop-buttons-wrap {
	position: absolute;
	left: 20px;
	bottom: 20px;
	width: calc(100% - 40px);
	text-align: center;
}
ul.shop-wrapper.shop-standard li .shop-buttons-wrap a {
	opacity: 0;
	visibility: hidden;
	width: 100%;
	transform: translateY(10px);
	transition: all .3s ease-in-out;
	font-size: 16px;
	padding: 7px 20px 8px;
	background-color: #fff;
	color: var( --e-global-color-secondary, #232323 );
	border-radius: 4px;
	border: 2px solid transparent;
	text-transform: none;
	font-weight: 600;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.shop-wrapper.shop-standard li .shop-buttons-wrap a.product_type_simple:not(.add_to_cart_button) i {
	position: relative;
	top: 1px;
}
ul.shop-wrapper.shop-standard li .shop-buttons-wrap a:hover {
	box-shadow: 0 8px 30px 0 rgba(0, 0, 0, .15);
}
ul.shop-wrapper.shop-standard li .shop-box:hover .shop-buttons-wrap a {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
ul.shop-wrapper.shop-standard li .shop-box .shop-buttons-wrap a i {
	margin-right: 6px;
}

/* Responsive CSS Here */
@media (max-width: 1199px) {
	/* Shop card */
	.woocommerce ul.products.crafto-shop-boxed li.product .product-buttons-wrap,
	ul.shop-wrapper.shop-boxed li .shop-hover {
		position: static;
		border: 1px solid #e4e4e4;
		transition: none;
	}
	.woocommerce ul.products.crafto-shop-boxed li.product .product-buttons-wrap a,
	ul.shop-wrapper li .shop-hover a, 
	ul.shop-wrapper li .shop-hover .button, 
	ul.shop-wrapper li .shop-hover .added_to_cart {
		width: 100%;
		border-right: 1px solid #e4e4e4 !important;
		opacity: 1;
		border-radius: 0;
		transform: translateY(0);
		transition: none;
		margin: 0;
		box-shadow: none;
	}
	.woocommerce ul.products.crafto-shop-boxed li.product .product-buttons-wrap a:last-child,
	ul.shop-wrapper li .shop-hover a:last-child, 
	ul.shop-wrapper li .shop-hover .button:last-child, 
	ul.shop-wrapper li .shop-hover .added_to_cart:last-child {
		border-right: 0 !important;
	}
	ul.shop-wrapper.shop-boxed li .shop-box:hover {
		box-shadow: none;
		border: 0 solid transparent;
		transition: none;
	}
	ul.shop-wrapper.shop-boxed li .shop-box {
		border: 0 solid transparent;
		transition: none;
	}
	ul.shop-wrapper li .shop-box .product-overlay {
		display: none;
	}	
	ul.shop-wrapper.shop-standard li .shop-buttons-wrap,
	.product-slider-style-2 .shop-buttons-wrap {
		position: static;
		width: 100%;
	}
	ul.shop-wrapper.shop-standard li .shop-buttons-wrap a,
	.product-slider-style-2 .shop-buttons-wrap a {
		opacity: 1;
		visibility: visible;
		position: static;
		padding: 7px 20px 8px;
		border-radius: 0;
		transform: translateY(0);
		line-height: normal;
		border: 1px solid rgba(35, 35, 35, 0.15);
		min-height: 44px;
	}
	ul.shop-wrapper.shop-standard li .shop-box .shop-hover,
	.product-slider-style-2 .shop-hover {
		opacity: 1;
	}
	ul.shop-wrapper.shop-standard li .shop-box .shop-hover a,
	.product-slider-style-2 .shop-hover a,
	.product-slider-style-2 .shop-hover .button {
		transform: translateY(0);
		margin: 0 5px 8px;
		border-radius: 50%;
		border-right: 0 !important;
		box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
		opacity: 1;
	}
	.product-slider-style-2 .shop-hover a, 
	.product-slider-style-2 .shop-hover .button {
		width: 40px;
		height: 40px;
	}
}