.c-checkout-grid{
    display: flex;
    flex-direction: row-reverse;
    gap:24px;
}
.c-summary-box{
    width:400px;
}
.c-cart-header {
    display: flex;
    justify-content: space-between;
}
.c-cart-header > h2 {
    font-size: 20px;
    margin:0;
}
.c-cart-badge {
    background: #EBF7FF;
    padding: 5px 10px;
    border-radius: 50px;
    color: #0099FF;
    font-size: 14px;
}
.c-item-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.c-summary-box,
.c-cart-box{
    background:#fff;
    border:1px solid #E4E4E4;
    border-radius:12px;
    padding:24px;
}

.c-cart-items{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.c-cart-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding-bottom:24px;
    border-bottom:1px solid #E4E4E4;
}

.c-item-image img{
    width:110px;
}

.c-item-content{
    flex:1;
}
.c-cart {
    width: 2000px;
}

.c-qty{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:16px;
}
.c-item-content > h3 {
    font-size: 16px;
    color: #040404;
}
.checkout-qty-plus,
.checkout-qty-minus,
.checkout-remove-item{
    width:32px;
    height:32px;
    padding:3.5px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    background-color:#F5F5F5;
    color:#040404;
}
.checkout-qty-plus:hover{
    background-color:#F5F5F5;
    color:#19BEBE;
}
.checkout-qty-minus:hover{
    background-color:#F5F5F5;
    color:#19BEBE;
}
.checkout-remove-item:hover{
     background-color:#F5F5F5;
    color:#19BEBE;
}
.checkout-qty-input{
    width:50px;
    height:40px;
    text-align:center;
}

.c-summary-btn {
    width:100%;
    height:56px;
    border-radius:100px;
    background:#19BEBE;
    color:#fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    margin-top:24px;
    gap:10px;
}
.c-empty-cart{
    min-height:500px;
    border:1px solid #E4E4E4;
    border-radius:12px;
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
}

.c-empty-image img{
    width:160px;
    margin-bottom:24px;
}
.c-empty-image {
    position: relative;
}
.c-empty-cart h2{
    font-size:20px;
    margin-bottom:12px;
}

.c-empty-cart p{
    color:#8b8b8b;
    font-size:14px;
    line-height:2;
    max-width:420px;
}

.c-empty-btn{
    margin-top:16px;
    width:140px;
    height:48px;
    border-radius:100px;
    border:1px solid #ddd;
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#040404 !important;
    transition:.2s;
}

.c-item-meta{
    margin-top:10px;
    color:#8b8b8b;
    font-size:13px;
    line-height:1.9;
}

.c-item-meta dl{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:0;
}

.c-item-meta dt{
    font-weight:500;
}

.c-item-meta dd{
    margin:0 0 0 6px;
}
.c-item-price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 10px;
}
.cus-price-box{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    margin-bottom:-5px;
}

.cus-price-box del{
    color:#FF334C !important;
    font-size:14px;
}
.cus-price-box strong{
    color:#040404 !important;
    font-size:18px;
}
.checkout-qty-input{
    width:32px !important;
    height:32px !important;
    border:1px solid #E4E4E4 !important;
    color:#040404 !important;
    padding:0 !important;
}
.c-summary-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: #6D6E70;
}
.c-summary-row span{
    font-size:14px;
}
.c-summary-row strong > span{
    font-size:16px !important;
    color:#040404;
}
.c-your-benfit{
    color:#48D48A;
}
.c-your-benfit span{
    font-size:16px;
}
.c-your-benfit strong > span{
    font-size:20px !important;
    color:#48D48A;
}
@media (max-width:1024px){
    .c-checkout-grid {
        flex-direction: column-reverse;
        gap:0;
    }
    .c-cart{
        width:100%;
    }
    .c-item-price {
        justify-content: space-between;
    }
    .c-item-content > h3 {
        font-size:14px;
    }
    .meta-item{
        font-size:10px;
    }
    .c-cart-box{
        border:none;
        padding:10px 10px 0 10px;
    }
    .c-cart-header{
        align-items:center;
        margin-bottom: 16px;
    }
    .c-summary-box{
        width:100%;
        padding:0;
        border:none;
    }
    .c-summary {
    border-top: 4px solid #f5f5f5;
    border-bottom: 4px solid #f5f5f5;
    padding: 12px;
    }
    .c-cart-header > h2 {
        font-size:16px;
    }
}