

/* PRODUCTS */
.product {
    position: relative;
    overflow: hidden;
}

.product-category {
    padding: 0 10vw;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.product-container {
    padding: 0 1vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

    .product-container::-webkit-scrollbar {
        display: none;
    }

.product-card {
    flex: 0 0 auto;
    width: 380px;
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.product-info {
    width: 100%;
    margin: 15px 0;
}
.pre-btn,
.nxt-btn {
    border: none;
    width: -14vw;
    height: 100%;
    position: absolute;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgb(255 255 255 / 14%) 38%, #ffffff 100%);
    cursor: pointer;
    z-index: 8;
}

.pre-btn {
    left: 0;
    transform: rotate(180deg);
}

.nxt-btn {
    right: 0;
}

    .pre-btn img,
    .nxt-btn img {
        opacity: 0.2;
    }

    .pre-btn:hover img,
    .nxt-btn:hover img {
        opacity: 1;
    }


@media screen and (max-width: 768px) {
    .product-card {
        width: 390px;
    }
}
@media screen and (max-width: 300px) {
    .product-card {
        width: 251px;
    }
    .product-container {
        padding: 0 10vw !important; 
    }
}
@media screen and (max-width: 993px) {
    .pre-btn, .nxt-btn {
        width: 10vw !important;
    }
}