.productCardsSlider .productCard {
	padding: 16px;
	border: 1px solid #EFEFEF;
	border-radius: 12px;
	transition: 0.2s;
	position: relative;
	top: 0;
	left: 0;
	background: #fff;
}

.productCardsSlider .productCardWrapper {
    padding: 8px;
}
.productCardsSlider .productCard:hover {
	box-shadow: 4px 4px 0 #000;
	top: -4px;
	left: -4px;
	border-color: #000;
	background: var(--e-global-color-secondary);
}

.productCardsSlider .productCard .imageWrapper {
	width: 100%;
	height: 250px;
	overflow: hidden;
	border-radius: 12px;
	background: #f5f5f5;
	position: relative;
	border: 1px solid #efefef;
	transition: 0.2s;
}

.productCardsSlider .productCard .imageWrapper::after {
	/*content: '';*/
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: 0.2s;
	opacity: 0;
}

.productCardsSlider .productCard .imageWrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.productCardsSlider .productCard .imageWrapper .buttons {
	position: absolute;
	bottom: -56px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	transition: 0.2s;
	z-index: 1;
}

.productCardsSlider .productCard .imageWrapper .buttons .custom-button {
	height: 32px;
}

.productCardsSlider .productCard:hover .imageWrapper {
    border-color: #000;
}

.productCardsSlider .productCard:hover .imageWrapper::after {
	opacity: 1;
}

.productCardsSlider .productCard:hover .imageWrapper .buttons {
	bottom: 8px;
}

.productCardsSlider .productCard .textContent {
	margin-top: 16px;
}
.productCardsSlider .productCard .textContent .starReviews {
	display: flex;
	align-items: center;
	gap: 2px;
}

.productCardsSlider .productCard .textContent .starReviews i {
	opacity: 0.2;
}

.productCardsSlider .productCard .textContent .starReviews i.active {
	color: var(--e-global-color-secondary);
	opacity: 1;
}
.productCardsSlider .productCard:hover .textContent .starReviews i.active {
    color: var(--e-global-color-primary);
}

.productCardsSlider .productCard .textContent .productTitle {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	line-height: 120%;
	margin-top: 8px;
	min-height: 44px;
}
.productCardsSlider .productCard .textContent .cats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin: 8px 0;
}
.productCardsSlider .productCard .textContent .cats .cat {
    font-size: 12px;
    border: 1px solid #dfdfdf;
    border-radius: 100px;
    padding: 2px 8px;
    background: #fff;
}
.productCardsSlider .productCard:hover .textContent .productTitle {
    color: var(--e-global-color-primary);
}

.productCardsSlider .productCard .textContent .productPrice {
	display: flex;
	align-items: center;
	gap: 8px;
}
.productCardsSlider .productCard .textContent .mobileButtons {
    display: none;
}
.productCardsSlider .productCard .textContent .productPrice .actualPrice 
{
	text-decoration: line-through;
	font-size: 14px;
}
.productCardsSlider .productCard .textContent .productPrice .discountedPrice {
	font-size: 18px;
	font-weight: bold;
	color: var(--e-global-color-primary);
}


.productCardsSlider button.slick-prev::before,
.productCardsSlider button.slick-next::before {
	content: unset;
}
.productCardsSlider button.slick-prev,
.productCardsSlider button.slick-next {
	width: 40px;
	height: 40px;
	display: flex;
	padding: 0;
	align-items: center;
	justify-content: center;
	z-index: 1;
	border-radius: 100%;
}



.productCardsSlider .productCard .imageWrapper .buttons .yith-add-to-wishlist-button-block {
	margin: 0;
}

.productCardsSlider .productCard .imageWrapper .buttons .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
	height: 32px;
	border-radius: 100px;
	box-shadow: 4px 4px 0 #000;
	position: relative;
	top: -4px;
	left: -4px;
	border-color: #000;
	transition: 0.2s;
}
.productCardsSlider .productCard .imageWrapper .buttons .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button:hover {
	top: 0;
	left: 0;
	box-shadow: 0 0 0 #000;
}

.productCardsSlider .productCard .imageWrapper .buttons .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button__label {
	display: none;
}

@media (max-width: 991px) {
	.productCardsSlider button.slick-prev, .productCardsSlider button.slick-next {
		display: none!important;
	}
	
	
	.productCardsSlider .productCard {
		padding: 8px;
	}
	.productCardsSlider .productCard .imageWrapper {
		width: 100%;
		height: 150px;
	}
	.productCardsSlider .productCard .imageWrapper::after {
		content: unset;
	}
	.productCardsSlider .productCard .imageWrapper img {
		padding: 8px;
	}
	.productCardsSlider .productCard .imageWrapper .buttons {
		display: none;
	}
	
	.productCardsSlider .productCard .textContent .starReviews i {
		font-size: 8px;
	}
	
	.productCardsSlider .productCard .textContent .productTitle {
		font-size: 14px;
		min-height: 34px;
	}
	.productCardsSlider .productCard .textContent .productPrice {
		flex-wrap: wrap;
	}
	.productCardsSlider .productCard .textContent .productPrice .actualPrice {
	font-size: 12px;	
	}
	
	.productCardsSlider .productCard .textContent .productPrice .discountedPrice 
	{
		font-size: 12px;
		color: var(--e-global-color-primary)
	}
	
	
	.productCardsSlider .productCard .textContent .mobileButtons {
		margin-top: 16px;
		/*display: grid;*/
		/*grid-template-columns: 1fr;*/
		/*gap: 6px;*/
		/*width: 100%;*/
		/*text-align: center;*/
		display: block;
	}
	
	.productCardsSlider .productCard .textContent .mobileButtons .custom-button {
		justify-content: center;
	}
	
	.productCardsSlider .productCard .textContent .mobileButtons .yith-add-to-wishlist-button-block {
	margin: 0;
		width: 100%;
}

	.productCardsSlider .productCard .textContent .mobileButtons .yith-wcwl-add-to-wishlist-button {
		height: 32px;
		border-radius: 100px;
		box-shadow: 4px 4px 0 #000;
		position: relative;
		top: -4px;
		left: -4px;
		border-color: #000;
		transition: 0.2s;
		width: 100%;
		justify-content: center;
	}
	.productCardsSlider .productCard .textContent .mobileButtons .yith-wcwl-add-to-wishlist-button:hover {
		top: 0;
		left: 0;
		box-shadow: 0 0 0 #000;
	}

	.productCardsSlider .productCard .textContent .mobileButtons .yith-wcwl-add-to-wishlist-button__label {
		display: none;
	}

}






































#home-trending-products {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}
#home-trending-products .trendingProductCard {
	padding: 16px;
	border-radius: 12px;
	background-color: #fff;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	border: 1px solid #efefef;
	transition: 0.2s;
	position: relative;
	top: 0;
	left: 0;
}
#home-trending-products .trendingProductCard:hover {
	border-color: #000;
	background: var(--e-global-color-secondary);
	top: -4px;
	left: -4px;
	box-shadow: 4px 4px 0 #000;
}
#home-trending-products .trendingProductCard .imageWrapper {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 12px;
	background: #f5f5f5;
	border: 1px solid #efefef;
	transition: 0.2s;
}
#home-trending-products .trendingProductCard:hover .imageWrapper {
    border-color: #000;
}
#home-trending-products .trendingProductCard .imageWrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}


#home-trending-products .trendingProductCard .right .starRatings 
{
	display: flex;
	align-items: center;
	gap: 2px;
}

#home-trending-products .trendingProductCard .right .starRatings i {
	font-size: 12px;
	opacity: 0.2;
}



#home-trending-products .trendingProductCard .right {
	display: grid;
	grid-template-rows: auto 1fr auto;
}
#home-trending-products .trendingProductCard .right .starRatings i.active {
	opacity: 1;
	color: var(--e-global-color-secondary);
	transition: 0.2s;
}


#home-trending-products .trendingProductCard:hover .right .starRatings i.active {
	color: var(--e-global-color-primary);
}
#home-trending-products .trendingProductCard .right .productTitle {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 4px 0 16px;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	line-height: 120%;
	margin-top: 8px;
	/*min-height: 44px;*/
}

#home-trending-products .trendingProductCard .right .productPrice {
	display: flex;
	align-items: center;
	gap: 8px;
}
#home-trending-products .trendingProductCard .right .productPrice .actualPrice {
	text-decoration: line-through;
	opacity: 0.5;
}
#home-trending-products .trendingProductCard .right .productPrice .ddiscountedPrice {
	font-weight: bold;
	color: var(--e-global-color-primary);
}

@media (max-width: 991px) {
	#home-trending-products {
		grid-template-columns: 1fr;
	}
}

















.pill {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
    background: #fff;
}
.pill.selected {
    background: crimson;
    color: #fff;
    border-color: crimson;
}
.loader {
    padding: 50px;
    text-align: center;
    font-weight: bold;
}
#price-slider {
    margin: 20px 0;
}





#custom-product-list .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
#custom-product-list .pagination span,
#custom-product-list .pagination a {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: #efefef;
    border-radius: 100%;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
    cursor: pointer;
}

#custom-product-list .pagination span {
    background: var(--e-global-color-primary);
    color: #fff;
    font-weight: bold;
}
#custom-product-list .pagination a:hover {
    background-color: var(--e-global-color-primary);
    color: #fff;
}















.shopPageWrapper {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 32px;
}


.shopPageWrapper .product-count {
    margin-bottom: 16px;
}
.shopPageWrapper .shopPageProductGrid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

.shopPageWrapper .shopPageProductGrid .productCard a {
	text-decoration: none;
}


@media (max-width: 991px) {
	.shopPageWrapper {
		grid-template-columns: 1fr;
	}
	.shopPageWrapper .shopPageProductGrid {
		grid-template-columns: 1fr 1fr;
	}
}