.shopping--cart--wrapper{
    display: none;
}
.shopping--cart{
        display: flex;
        flex-direction: column;
        overflow-y:  scroll;
        width: 25%;
        padding: 20px;
        position: fixed;
        top: 0;
        right: 0;
        height: 80%;
        background:#fffdfb;
        z-index: 2;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        /* border: 1px solid #4f4b4b; */
        box-shadow: 0px 4px 15px rgba(42, 41, 41, 0.1);
}

.shopping--cart--header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;

}
.close--cart{
    background: #e6e6e6;
    color: #333;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.close--cart:hover{
    background: #dd4a1e;
    transform: scale(1.05);
}

#shopping--cart--ul li{
    list-style: none;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    align-items: center;
    text-align: center;
    padding: 10px;
    gap: 15px;
    flex-wrap: wrap;
}
.cart--item--quantity{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}

.increase, .decrease  {
    /* height: 50px; */
    padding: 10px 10px;
    font-size: clamp(20px, 2vw, 30px);
    border: none;
    background: #0f9645;
    /* line-height: 50px; */
    border-radius: 5px;
    cursor: pointer;
}
.remove--item {    
    padding: 10px 5px;
    background: #f43c0ee0;
    color: #333;
    font-size: clamp(20px, 1vw, 30px);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.quantity--cart{
    font-size: clamp(20px, 1vw, 30px);
    padding: 10px 10px;
    border: none;
    background: #e6e6e6;
    border-radius: 5px;
}

.decrease:hover , .increase:hover{
    background: #0f9645;
}
.remove--item:hover{
    background: #dd4a1e;
}