.view-cart .left .scrollable::-webkit-scrollbar {
  height: 5px;
  background: var(--lightBg);
  border-radius: 10px;
}

.view-cart .left .scrollable::-webkit-scrollbar-thumb{
  background-color: var(--outline);
  border-radius: 10px;
}



/* =========== view-cart section here ========== */

/* ----- Left Section ----- */

.view-cart .left .first{
    background-color: var(--lightBg);
    border-radius: 8px;
}

.view-cart .left .second .inner_image{
    background-color: var(--lightBg);
    border-radius: 8px;
    overflow: hidden;
    height: 80px;
    width: 80px;
}

.view-cart .left .second .inner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-cart .left .second .details {
    padding-left: 20px;
}

.view-cart .left .second .addon{
    display: flex;
}

.view-cart .left .second .addon input{
    background-color: var(--lightBg);
}

.view-cart .left .second .addon .quantity-button {
    width: 25px;
    height: 25px;
    text-align: center;
    border: 1px solid #ccc;
    cursor: pointer;
    user-select: none;
    display: grid;
    place-items: center;
    color: black;
}

.view-cart .left .second .fa-circle-xmark{
    cursor: pointer;
}

.view-cart .left .second .fa-circle-xmark:hover{
    font-weight: 600;
}

.view-cart .left .third{
    background-color: var(--lightBg);
    border-radius: 8px;
}

.view-cart .left .third input{
    background-color: transparent;
    color: var(--lightBg);
    border: none;
}

.view-cart .left .third input::placeholder{
    color: rgb(163, 163, 163);
}

.view-cart .left .third button{
    background-color: black;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 25px;
    transition: 300ms;
}

.view-cart .left .third button:hover{
    background-color: var(--orange);
    color: black;
}

.view-cart .left .fourth .coupon{
    border: 1px solid gray;
    border-radius: 12px;
}

.view-cart .left .fourth .coupon p{
    font-size: 14px;
    color: gray;
    margin-bottom: 8px;
}

/* ------ Right Section ------ */

.view-cart .right{
    background-color: var(--lightBg);
    border-radius: 12px;
}

.view-cart .right h2{
    font-size: 22px;
    font-weight: 600;
}

.view-cart .right .lower .grand-total{
    font-size: 22px;
}

.view-cart .right .lower .buttons .chk-out{
    padding: 20px;
    background-color: black;
    display: block;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: 300ms;
    margin-bottom: 15px;
}

.view-cart .right .lower .buttons .chk-out:hover{
    background-color: var(--orange);
    color: black;
}



/* ============ MEDIA QUERY HERE ============= */

@media (max-width:768px){


    .view-cart .left .scrollable{
        overflow-x: scroll;
    }
    .view-cart .left .new-scroll{
        width: 800px;
    }
}

@media (max-width:576px){

    .view-cart .left .fourth .coupon p{
        font-size: 13px;
    }
}