.cart-body{
    background-color: #f1f1f1;
}
.cart-main{
    padding-top: 5.9rem;
}

.cart-box{
    background: #fff;
    border: 1px solid #dddddd;
    padding: 1rem;
    border-radius: 8px;

    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media(max-width:768px){
    .cart-box{
        overflow: auto;
        overflow-x: scroll;
    }
}

.cart-box .item-details{
    display: flex;
    align-items: center;
}
.item-details .img-item{
    width: 100px;
    height: 100px;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
}

.item-details .img-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-details .item-content h5,.item-details .item-content p{
    padding: 0;
    margin: 0;
    margin-left: 0.5rem;

}
.item-details .item-content h5{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}
.item-details .item-content p{
    font-size: 13px;
    color: #838383;
    text-transform: capitalize;
}
.item-details .item-content .price{
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
}
.real-price{
    color: #000 !important;
    font-weight: 600;
}
.quantity{
    display: flex;
    align-items: center;
    gap: 5px;
}
.quantity button ,.remove button{
    outline: none;
    border: none;
    width: 35px;
    height: 35px;
    padding: 0.3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgb(72, 100, 255);
    cursor: pointer;
}

.quantity button ion-icon{
    color: #fff;
    font-weight: bold;
    font-size: 25px;
}

.quantity input{
    border: 1px solid #a0a0a0;
    outline: none;
    width: 50px;
    height: 35px;
    font-size: 12px;
    padding: 0.5rem;
}

.remove button{
    background: rgb(255, 45, 45);
}
.remove button ion-icon{
    color: #ffff;
    font-size: 25px;
}
.item-price{
    padding: 0;
    padding: 5px 5px 5px 0;
}

.price-details{
    background: #fff;
    padding: 1rem 1rem 0.2rem;
    border: 1px solid #dddddd;
    border-radius: 8px;
}
.price-details h4{
    color: #a0a0a0;
    border-bottom: 1px solid #a0a0a0;
}

.price-details table tr{
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}
.continue-btn{
    border: 1px solid;
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s;
    background: rgb(19, 62, 206);
    color: #fff;
}

.continue-btn:hover{
    background: rgb(9, 45, 163);
    color: #fff;
}