@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
.BestProductCard .product-item {
    position: relative;
    max-width: 95%;
    padding: 0px;
    margin: 0px;
}
.product-img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-img .img-back {
    position: absolute;
    width: 100%;
}

.product-img .img-front {
    width: 100%;
}

.product-img .img-back:hover {
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    opacity: 0;
    cursor: pointer;
}

.btns {
    background-color: transparent;
    display: none;
    position: absolute;
    left: 5%;
    width: 90%;
    bottom: 5%;
    font-size: 15px;
    font-weight: 300;
    padding: 0px;
    margin: 0px;
}

.btns button {
    text-transform: uppercase;
    border-radius: 0px;
    background-color: white;
    color: black;
    font-weight: 600;
    border: none;
    width: 90%;
    height: 60px;
    font-size: 14px;
    padding: 20px 15px 18px;
}

.btns button:hover {
    background-color: #293355;
    color: white;
    font-weight: 600;
}

.btns p {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.btns i {
    position: absolute;
    font-size: 18px;
    top: 5%;
    right: 5%;
    cursor: pointer;
}
.btns span {
    display: inline-block;
    height: 25px;
    text-align: center;
    width: 25px;
    margin-left: 5px;
    margin-top: 10px;
    cursor: pointer;
    padding-bottom: 20px;
}

.product-item:hover .btns {
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;

    display: block;
}

.product-info {
    position: relative;
    top: 0%;
    left: 0%;
}

.heart-icon {
    position: absolute;
    top: 14.5%;
    right: 0;
    font-size: 14px;
    cursor: pointer;
}

.product-type {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    cursor: pointer;
}

.product-type:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #f7b708;
}

.product-name {
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.product-name:hover {
    text-decoration: underline;
    color: black;
    text-underline-offset: 2px;
}

.product-price {
    color: black;
    font-size: 14px;
    font-weight: 600;
}

.rating {
    position: relative;
}

.rating span {
    position: relative;
    bottom: 0%;
    left: 0%;
    display: inline-block;
    /* padding-right: 10px; */
}

.rating span i {
    display: inline-block;
    font-size: 10px;
    color: #ba7a2d;
}

.rating > a {
    position: absolute;
    bottom: 5%;
    right: 0%;
    font-size: 10px;
    color: gray;
    text-transform: uppercase;
    font-weight: 100;
    text-decoration: none;
}

.small-img-row {
    padding: 5px;
    padding-left: 0px;
    display: flex;
}
.small-img-col {
    width: 10%;
}

.small-img1,
.small-img2,
.small-img3,
.small-img4,
.small-img5,
.small-img6,
.small-img7,
.small-img8,
.small-img9,
.small-img10 {
    cursor: pointer;
    height: 70%;
    border-radius: 70%;
}

.BestProductCard .navigation-arrow {
    position: relative;
}

.BestProductCard .arrow-prev {
    position: absolute;
    top: 40%;
    left: -15%;
    font-size: 20px;
    padding: 5px 5px 5px 5px;
    color: #2e2c2c;
}
.BestProductCard .arrow-next {
    position: absolute;
    top: 40%;
    right: -15%;
    font-size: 20px;
    padding: 5px;
    color: #2e2c2c;
}
.arrow-next button {
    transform: rotate(180deg);
}
.arrow-next button,
.arrow-prev button {
    width: 60px;
    height: 37px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
}

.arrow-next button:hover,
.arrow-prev button:hover {
    background-color: #e5e5e5;
}
.slick-disabled button:hover {
    background-color: transparent;
}
.arrow-next button > svg,
.arrow-prev button > svg {
    position: absolute;
    top: 0px;
    left: 12px;
    border: none;
}

@media (max-width: 1440px) {
    .BestProductCard .arrow-next {
        right: -8%;
    }

    .BestProductCard .arrow-prev {
        left: -8%;
    }
}

@media (max-width: 1024px) {
    .product-item {
        width: 220px;
    }

    .heart-icon {
        display: none;
    }

    .small-img-row {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .small-img-col {
        width: 24px;
        height: 24px;
    }

    .small-img-row .small-img-col > img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }

    .product-name {
        font-size: 12px;
        margin-top: 5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .product-price {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 12px;
        font-weight: 600;
    }
    .rating > span {
        display: none;
    }
    .rating > span > i {
        display: none;
    }

    .rating a {
        position: relative;
        display: block;
        left: 2%;
        bottom: 0%;
    }
    .btns p {
        font-size: 12px;
    }
    .btns i {
        font-size: 14px;
    }
    .btns span {
        font-size: 12px;
        height: 20px;
        width: 20px;
        margin-left: 0px;
        margin-top: 5px;
        padding-bottom: 10px;
    }

    .BestProductCard .arrow-next {
        right: -1%;
        top: 35%;
        color: black;
    }

    .BestProductCard .arrow-prev {
        left: -2%;
        top: 35%;
        color: black;
    }
    .btns {
        width: 100%;
        left: 0px;
    }
    .btns button {
        width: 100%;
        height: auto;
        margin-left: 0px;
        border: 1px solid white;
    }
}

@media (max-width: 768px) {
    .product-item {
        width: 200px;
    }
    .BestProductCard .arrow-next {
        display: none !important;
    }

    .BestProductCard .arrow-prev {
        display: none !important;
    }

    .BestProductCard .slick-dots {
        display: block !important;
    }

    .rating a {
        position: relative;
        display: block;
        left: 2%;
        bottom: 0%;
    }

    .btns button {
        font-size: 14px;
        padding: 10px 15px 8px;
    }
}

@media (max-width: 425px) {
    .btns .Cartbtn {
        font-size: 14px;
        padding: 10px 15px 18px;
        height: 42px;
    }

    .btns {
        bottom: 0%;
    }

    .BestProductCard .arrow-next {
        display: none !important;
    }

    .BestProductCard .arrow-prev {
        display: none !important;
    }
    .rating a {
        position: relative;
        display: block;
        left: 2%;
        bottom: 0%;
    }
}

@media (max-width: 376px) {
    .btns {
        bottom: 0%;
    }

    .BestProductCard .arrow-next {
        display: none !important;
    }

    .BestProductCard .arrow-prev {
        display: none !important;
    }
    .rating a {
        position: relative;
        display: block;
        left: 2%;
        bottom: 0%;
    }
}

@media (max-width: 320px) {
    .btns {
        bottom: 0%;
    }

    .BestProductCard .arrow-next {
        display: none !important;
    }

    .BestProductCard .arrow-prev {
        display: none !important;
    }
    .rating a {
        position: relative;
        display: block;
        left: 2%;
        bottom: 0%;
    }
}
