.featured-collection .btn{
    color: var(--font-color);
}
.featured-collection h4{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.featured-collection .btn:focus{
    outline: none;
    box-shadow: none;
}
.featured-collection .featured-collection-img{
	overflow: hidden;
	margin: auto;
	width: 245px;
	height: 245px;
	box-shadow: 0 2pt 8pt rgb(0 0 0 / 10%);
}
.featured-collection .featured-collection-img img{
	transform: scale(1);
	transition-property: transform;
	transition-duration: 0.25s;
	transition-timing-function: ease-out;
}
.featured-collection:hover .featured-collection-img img{
	transform: scale(1.2);
}

.featured-collection i.fa-arrow-right{
	transform: translateX(0);
	transition-property: transform;
	transition-duration: 0.25s;
	transition-timing-function: ease-out;
}
.featured-collection:hover i.fa-arrow-right{
	transform: translateX(5pt);
}
.featured-collection i.fa-arrow-right:lang(ar){
	transform: scaleX(-1) translateX(0);
}
.featured-collection:hover i.fa-arrow-right:lang(ar){
	transform: scaleX(-1) translateX(5pt);
}
.featured-collection .collection-shop-now-link {
	color: var(--shop-by-collections-link);
}

@media (max-width: 768px) {
	.featured-collection .featured-collection-img{
		width: 135px;
		height: 135px;
	}
}