/* Global CSS For Slider is Not Show in Editor CSS */

.elementor-editor-active .product-image-box-carousel,
.elementor-editor-active .shop-effect-box-carousel{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 0;
}

.elementor-editor-active .shop-effect-box-carousel .slick-slide,
.elementor-editor-active .product-image-box-carousel .slick-slide{
	display: block;
}

.elementor-editor-active .product-image-box-carousel .slick-slide{
	width: calc(25% - 30px);
}

.elementor-editor-active .shop-effect-box-carousel .slick-slide{
	width: calc(33.33% - 30px);
}

@media only screen and (max-width: 1024px) {
	
	.elementor-editor-active .product-image-box-carousel .slick-slide,
	.elementor-editor-active .shop-effect-box-carousel .slick-slide{
		width: calc(50% - 30px);
	}	
}

/* Shop by Product CSS */

.product-image-box-carousel-wrap,
.shop-effect-box-carousel-wrap{
	cursor: grab;
}

.product-image-box-carousel .slick-list,
.shop-effect-box-carousel .slick-list{
	margin: 0 -15px;
}

.product-image-box-carousel .slick-slide,
.shop-effect-box-carousel .slick-slide{
	margin: 0 15px;
}

.product-box{
    position: relative;
	text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
	border: 1px solid rgb(from var(--e-global-color-primary) r g b / 24%);
	padding: 30px 30px 20px;
	min-height: 300px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
	border-radius: 10px;
	z-index: 1;
}

.product-box:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(from var(--e-global-color-accent) r g b / 20%);
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;	
	z-index: -1;
}
/*
.product-box:hover:before,
.product-image-box-carousel .slick-slide.slick-current.slick-active .product-box:before{
	background-color: rgb(from var(--accent-color) r g b / 20%);
}
*/

.product-box .product-box-content{
	display: none;
}

.product-box .elementor-widget-heading .product-title{
    font-size: 34px;
	font-weight: 500;
	color: var(--e-global-color-primary);
	transition: all 0.3s ease-in-out;
}

.product-box:hover .elementor-widget-heading .product-title, 
.product-image-box-carousel .slick-slide.slick-current.slick-active .product-box .elementor-widget-heading .product-title{
    transform: translateY(-30px);
}

.product-box-hover-content .product-desc{
	display: none;
}

.product-box-hover-content{
	display: flex;
    flex-wrap: wrap;
	gap: 10px;
    align-content: center;
	flex-direction: column;
    justify-content: flex-end;
}

.product-box-hover-content .product-desc{
	margin: 0;
}

.product-box-hover-content .product-btn{
	position: absolute;
	top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: 14px;
    font-weight: var(--e-global-typography-text-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    font-style: var(--e-global-typography-accent-font-style);
    line-height: var(--e-global-typography-accent-line-height);
	color: var(--e-global-color-primary);
	transition: all 0.3s ease-in-out;
	transform: translateY(50px);
}

.product-box-hover-content .product-btn:hover{
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.product-box:hover .product-btn, 
.product-image-box-carousel .slick-slide.slick-current.slick-active .product-box .product-btn {
    transform: translateY(-20px);
}

.product-image-box-carousel-wrap .slick-arrow,
.shop-effect-box-carousel .slick-arrow{
	position: absolute;
	top: 50%;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border: 0;
	border-radius: 50%;
	padding: 0;
	width: 60px;
	height: 60px;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	z-index: 10;
}

.product-image-box-carousel-wrap .slick-arrow svg,
.shop-effect-box-carousel .slick-arrow svg{
	transition: all 0.3s ease-in-out;
}

.product-image-box-carousel-wrap .slick-arrow:hover,
.product-image-box-carousel-wrap .slick-arrow:focus,
.shop-effect-box-carousel .slick-arrow:hover,
.shop-effect-box-carousel .slick-arrow:focus{
	background-color: var(--e-global-color-accent);
}

.product-image-box-carousel-wrap .slick-arrow:hover svg,
.product-image-box-carousel-wrap .slick-arrow:focus svg,
.shop-effect-box-carousel .slick-arrow:hover svg,
.shop-effect-box-carousel .slick-arrow:focus svg{
/* 	fill: var(--accent-color); */
	fill: var(--white-color);
}

.product-image-box-carousel-wrap .slick-arrow.prev-arrow,
.shop-effect-box-carousel .slick-arrow.prev-arrow{
	left: -80px;
}

.product-image-box-carousel-wrap .slick-arrow.next-arrow,
.shop-effect-box-carousel .slick-arrow.next-arrow{
	left: auto;
	right: -80px;
}

@media only screen and (max-width: 1510px){
	
	.product-image-box-carousel-wrap .slick-arrow.prev-arrow,
	.shop-effect-box-carousel .slick-arrow.prev-arrow{
		left: -50px;
	}

	.product-image-box-carousel-wrap .slick-arrow.next-arrow,
	.shop-effect-box-carousel .slick-arrow.next-arrow{
		right: -50px;
	}
	
}

@media only screen and (max-width: 1440px){
	
	.product-image-box-carousel,
	.shop-effect-box-carousel{
		padding-bottom: 100px;	
	}
	
	.product-image-box-carousel-wrap .slick-arrow.prev-arrow,
	.shop-effect-box-carousel .slick-arrow.prev-arrow{
		top: auto;
		bottom: 0;
		transform: translateY(0);
		left: calc(50% - 70px);
		right: auto;
	}

	.product-image-box-carousel-wrap .slick-arrow.next-arrow,
	.shop-effect-box-carousel .slick-arrow.next-arrow{
		top: auto;
		bottom: 0;
		transform: translateY(0);
		left: auto;
		right: calc(50% - 70px);
	}
}

@media only screen and (max-width: 1024px){
	
	.product-box .elementor-widget-heading .product-title{
		font-size: 32px;
	}
	
	
}

@media only screen and (max-width: 767px){
	
	.product-image-box-carousel,
	.shop-effect-box-carousel{
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		padding-bottom: 0;
	}
	
	.product-image-box-carousel .slick-slide,
	.shop-effect-box-carousel .slick-slide{
		display: block;
		width: calc(50% - 10px);
		margin: 0;
	}
	
	.product-box{
		min-height: 150px;
		padding: 10px;
	}
	
	.product-box .elementor-widget-heading .product-title{
		font-size: 18px;
	}
	
	.product-box:hover .elementor-widget-heading .product-title, 
	.product-image-box-carousel .slick-slide.slick-current.slick-active .product-box .elementor-widget-heading .product-title{
		transform: translateY(-25px);
	}
	
	.product-box-hover-content .product-desc,
	.product-box-hover-content .product-btn{
		font-size: 14px;
	}
	
	.product-box-hover-content .product-desc{
		display: none;
	}
	
	.product-box:hover .product-btn, 
	.product-image-box-carousel .slick-slide.slick-current.slick-active .product-box .product-btn {
		transform: translateY(-10px);
	}


	.product-image-box-carousel-wrap .slick-arrow{
		height: 45px;
    	width: 45px;
	}
	
	.product-image-box-carousel-wrap .slick-arrow svg{
		width: 20px;
	}
	
	.product-image-box-carousel-wrap .slick-arrow.prev-arrow{
		left: calc(50% - 50px);
	}f
	
	.product-image-box-carousel-wrap .slick-arrow.next-arrow{
		right: calc(50% - 50px);
	}

}


/* Shop By Effect CSS */

.shop-effect-box {
	position: relative;
	display: flex;
	align-items: flex-end;
	border-radius: 10px;
	padding: 30px 40px 20px;
	min-height: 300px;
	overflow: hidden;
	z-index: 1;	
}

.shop-effect-box:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(from var(--e-global-color-accent) r g b / 20%);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
	z-index: -1;
}

/*
.shop-effect-box:hover:before,
.shop-effect-box-carousel .slick-slide.slick-current.slick-active .shop-effect-box:before{
    background-color: rgb(from var(--accent-color) r g b / 20%);
}*/

.shop-effect-content{
	position: relative;
    padding: 0;
    text-align: center;
	width: 100%;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.shop-effect-mobile-img{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.shop-effect-content:before{
/*	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
   	background-color: var(--e-global-color-secondary);
 	transform: perspective(110px) rotateX(-14deg);
    transform-origin: top center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 10px;
    width: 100%;
    height: calc(100% + 20px);
    z-index: -1; */
}

.shop-effect-content .elementor-widget-heading .elementor-heading-title{
	font-size: 34px;
	line-height: 1.3em;
	margin-top: 0;
	color: var(--e-global-color-text);
	transition: all 0.3s ease-in-out;
}

.shop-effect-box:hover .shop-effect-content .elementor-widget-heading .elementor-heading-title,
.shop-effect-box-carousel .slick-slide.slick-current.slick-active .shop-effect-box .shop-effect-content .elementor-widget-heading .elementor-heading-title{
	transform: translateY(-30px);
}

/*
.shop-effect-box-carousel .slick-slide:nth-child(odd) .shop-effect-content .effect-title{
	color: var(--e-global-color-accent);
}

.shop-effect-box-carousel .slick-slide:nth-child(even) .shop-effect-content .effect-title{
    font-weight: 500;
    -webkit-text-stroke-width: 1.2px;
    stroke-width: 1.2px;
    -webkit-text-stroke-color: var(--e-global-color-accent);
    stroke: var(--e-global-color-accent);
    color: transparent;
	letter-spacing: 0.03em;
}
*/

.shop-effect-content .effect-desc{
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 0;
	color: var(--e-global-color-text);
	transition: all 0.3s ease-in-out;
}

.shop-effect-content .effect-btn{
    position: absolute;
	top: auto;
	left: 0;
    right: 0;
    bottom: 0;
	font-size: 14px;
	background-color: transparent;
    padding: 0;
    border-radius: 0;
/* 	margin-top: 10px; */
	color: var(--e-global-color-text);
	transition: all 0.3s ease-in-out;
	width: 100%;
	transform: translateY(50px);
}

.shop-effect-content .effect-btn:hover{
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.shop-effect-box:hover .shop-effect-content .effect-btn,
.shop-effect-box-carousel .slick-slide.slick-current.slick-active .shop-effect-box .shop-effect-content .effect-btn{
	transform: translateY(0px);
}

.shop-effect-box:hover .shop-effect-content .elementor-widget-heading .elementor-heading-title,
.shop-effect-box:hover .shop-effect-content .effect-desc,
.shop-effect-box:hover .shop-effect-content .effect-btn{
/* 	color: var(--accent-color); */
}

.cta-box-section{
	display: none !important;
}

@media only screen and (max-width: 1024px){
	
	.shop-effect-box{
		padding: 0 20px 20px;
/*     	min-height: 450px;	 */
	}
	
	.shop-effect-content:before{
		height: calc(100% + 40px);
	}
	
	.shop-effect-content .elementor-widget-heading .elementor-heading-title{
		font-size: 32px;
	}
	
}

@media only screen and (max-width: 767px){
	
	.shop-effect-box-carousel-wrap{
		overflow-x: clip;
	}
	
	.shop-effect-box-carousel{
		padding-bottom: 60px;
	}
	
	.shop-effect-box-carousel .slick-list{
		margin: 0 -10px;
	}
	
	.shop-effect-box-carousel .slick-slide{
		margin: 0 10px;
	}
	
	.shop-effect-box-carousel .slick-slide > div:first-child{
		margin-bottom: 20px;
	}
	
	.shop-effect-box{
		display: flex;
        align-items: end;
		padding: 10px;
		min-height: 200px;
	}
	
	.shop-effect-content{
		display: inline-flex !important;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
		overflow: hidden;
		border-radius: 10px;
		min-height: 150px;
		background-color: transparent;
		width: 100%;
		padding: 0 10px 10px;
	}
	
	.shop-effect-content:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgb(from var(--e-global-color-accent) r g b / 20%);
		width: 100%;
		height: 100%;
		transition: all 0.3s ease-in-out;
		z-index: 0;
	}

	/*
	.shop-effect-content:hover:before{
		background-color: rgb(from var(--accent-color) r g b / 20%);
	}*/
	
	.shop-effect-mobile-img{
		height: 100% !important;
		object-fit: cover;
		visibility: visible;
		opacity: 80%;
		border-radius: 10px;
		z-index: -1;
	}
	
	
	.shop-effect-content .elementor-widget-heading .elementor-heading-title{
		font-size: 18px;
		letter-spacing: 1.5px;
		color: var(--white-color);
		transition: all 0.3s ease-in-out;
	}
	
	.shop-effect-content:hover .elementor-widget-heading .elementor-heading-title{
		 transform: translateY(-25px);
	}
	
/* 	.shop-effect-box-carousel .slick-slide:nth-child(even) .shop-effect-content .effect-title{
		-webkit-text-stroke-width: 0;
    	stroke-width: 0;
		letter-spacing: 1.5px;
		webkit-text-stroke-color: transparent;
    	stroke: transparent;
		color: var(--white-color);
	} */
	
	.shop-effect-content .effect-desc{
		display: none;
		font-size: 12px;
	}
	
	.shop-effect-content .effect-btn{
		margin-top: 5px;
		font-size: 14px;
		color: var(--white-color);
	}
	
	.shop-effect-content:hover .effect-btn{
	    transform: translateY(-10px);
	}
	
	.shop-effect-content:hover .elementor-widget-heading .elementor-heading-title,
	.shop-effect-content:hover .effect-desc,
	.shop-effect-content:hover .effect-btn{
/* 		color: var(--e-global-color-accent); */
	}
	
	
	.shop-effect-box-carousel .slick-arrow{
		width: 40px;
    	height: 40px;
	}
	
	.shop-effect-box-carousel .slick-arrow svg{
		width: 10px;
	}
	
	.shop-effect-box-carousel .slick-arrow.next-arrow{
		right: calc(50% - 45px);
	}
	
	.shop-effect-box-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 45px);
	}
	
	.cta-box-section{
		display: block !important;
	}
	
}













