/* ==========================
   Google Font
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#1f2937;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================================================
   FEATURED PRODUCTS SWIPER
========================================================== */

.featuredProductsSwiper{
    overflow:hidden;
    padding:10px 6px 50px;
}

.featuredProductsSwiper .swiper-slide{
    height:auto;
}

.featuredProductsSwiper .swiper-slide > div{
    height:100%;
}

/* ==========================================================
   PRODUCT CARD
========================================================== */

.featuredProductsSwiper .group{
    height:100%;
    transition:all .35s ease;
}

.featuredProductsSwiper .group:hover{
    transform:translateY(-8px);
}

.featuredProductsSwiper img{
    transition:transform .6s ease;
}

.featuredProductsSwiper .group:hover img{
    transform:scale(1.08);
}

/* ==========================================================
   NAVIGATION ARROWS
========================================================== */

.featured-prev,
.featured-next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:54px;
    height:54px;

    border-radius:9999px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:50;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:.35s;

}

.featured-prev{

    left:-28px;

}

.featured-next{

    right:-28px;

}

.featured-prev:hover,
.featured-next:hover{

    background:#16a34a;
    color:#fff;

    transform:translateY(-50%) scale(1.08);

}

.featured-prev.swiper-button-disabled,
.featured-next.swiper-button-disabled{

    opacity:.35;
    cursor:not-allowed;
    pointer-events:none;

}

/* ==========================================================
   PAGINATION
========================================================== */

.swiper-pagination{

    position:relative;
    margin-top:32px;

}

.swiper-pagination-bullet{

    width:10px;
    height:10px;

    background:#d1d5db;

    opacity:1;

    transition:.3s;

}

.swiper-pagination-bullet-active{

    width:28px;
    border-radius:999px;

    background:#16a34a;

}

/* ==========================================================
   BUTTONS
========================================================== */

.addToCartBtn{

    transition:.3s;

}

.addToCartBtn:hover{

    transform:translateY(-2px);

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1200px){

    .featured-prev{
        left:8px;
    }

    .featured-next{
        right:8px;
    }

}

@media (max-width:768px){

    .featured-prev,
    .featured-next{

        width:42px;
        height:42px;

    }

    .featuredProductsSwiper{

        padding-bottom:40px;

    }

}

@media (max-width:640px){

    .featuredProductsSwiper{

        padding-left:5px;
        padding-right:5px;

    }

}
