:root{
    --item-image-size:70px;
}
.cart-item{
    display:flex;
    justify-content: space-between;
    gap:10px;
}
.cart-item .item-image{
    width:var(--item-image-size);
    height:var(--item-image-size);
    border-radius: 3px;
    box-shadow: 0 0 2px grey;
    background-position: center;
    background-size: cover;
}

.cart-item .item-detail, .item-price{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-detail{
    flex-grow: 1;
}

.price-count{
    padding:20px;
    background-color: rgba(241, 246, 245, 0.485);
    border-radius: 10px;
    box-shadow: 0 0 1px grey;
}

.btn-checkout{
    padding :10px;
    color:#fff;
    border:none;
    border-radius: 5px;
    box-shadow: 0 0 2px grey;
    background-color: rgb(63, 68, 198);
    font-weight:bold;
    width:100%;
}

.combobox{
    width:100%;
    padding:6px;
    font-size:16px;
}

.payment-bar{
    display:flex;
    gap:10px;
}
.payment-card{
    flex-grow:1;
    height:70px;
    border:1px solid grey;
    border-radius: 10px;
    background-image:url('https://logos-world.net/wp-content/uploads/2020/09/PayPal-Logo-2022.png');
    background-size:100px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 2px rgb(193, 191, 191);
}