.new-collection-section{
    padding-top: var(--padding-top-desk);
    padding-bottom: var(--padding-bottom-desk);
    background: var(--section-bg);
}
.new-collection-section-wrapper.swiper {
    padding-left: 7rem;
}
.new-collection-container .explore__heading {
    font-size: var(--heading-font-desk);
    color: var(--heading-color);
    margin: 0 0 32px 0;
    line-height: 1.273;

}
.explore__image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.explore__image-wrapper{
    overflow: hidden;
}
.collection-slide-inner:hover .explore__image-wrapper img {
    transform: scale(1.05);
}
.navigate__link .slider__title {
    color: var(--title-color);
    font-size: 22px;
    margin: 16px 0 0 0;
    line-height: 1.273;
    position: relative;
    width: fit-content;
}
.navigate__link .slider__title:after{
    content: '';
    position: absolute;
    bottom:-1px;
    left: 0;
    background: #000000;
    display: block;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}
.collection-slide-inner:hover .navigate__link .slider__title:after{
    transform: scaleX(1);
}
.custom-arrows-product::after{
    content: unset;
}
.right-side-progressbar .swiper-pagination,
.custom-arrows-product {
    position: unset;
    margin: 0;
}
.arrow-with-progressbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding-top: 34px;
}
.left-side-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.arrow-with-progressbar .swiper-button-next {
    transform: rotate(180deg);
}
.arrow-with-progressbar .right-side-progressbar {
    max-width: 333px;
    width: 100%;
}
.left-side-arrow .custom-arrows-product svg {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.right-side-progressbar .swiper-pagination-progressbar-fill {
    background: #000000;
}
.left-side-arrow .custom-arrows-product {
    width: 50px;
    height: 50px;
}
@media (max-width:1440px){
    .new-collection-section-wrapper.swiper {
        padding-left: 20px;
    }
}
@media (max-width:768px){
    .new-collection-section {
        padding-top: var(--padding-top-mob);
        padding-bottom: var(--padding-bottom-mob);
    }
    .new-collection-container .explore__heading {
        font-size: var(--heading-font-mob);
        margin: 0 0 20px 0;
    }
    .navigate__link .slider__title{
        font-size: 18px;
    }
    .left-side-arrow .custom-arrows-product {
        width: 36px;
        height: 36px;
        background: #F6F6F6;
        border-radius: 100%;
        padding: 8px;
    }
    .left-side-arrow .custom-arrows-product svg {
        width: 24px;
        height: 24px;
    }
    .arrow-with-progressbar {
        padding: 0;
        padding-top: 20px;
        padding-right: 20px;
    }
    .navigate__link .slider__title{
        font-size: 16px;
        margin: 10px 0 0 0;
    }
    .new-collection-section-wrapper.swiper {
        padding:0 20px;
    }
}