.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.cart-total-row__left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-total-row__total {
    white-space: nowrap;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}

.shopping-cart .cart-table .qty-control {
    margin: 0 10px !important;
}

@media(max-width: 767px) {
    .shopping-cart__product-item img {
        width: 60px !important;
        height: auto;
    }

    .shopping-cart .cart-table tbody td {
        margin-left: 80px !important;
    }

    .shopping-cart .cart-table tbody td:first-child {
        width: 60px !important;
        margin-left: 0 !important;
    }

    .shopping-cart .cart-table tbody td .shopping-cart__subtotal {
        float: unset !important;
        display: block;
        white-space: nowrap;
        margin-top: 10px !important;
    }

    .shopping-cart .cart-table .qty-control {
        margin: 5px 0 5px 0 !important;
    }

    .shopping-cart .qty-control {
        width: 100px;
    }

    .cart-total-row {
        flex-wrap: wrap;
    }

    .cart-total-row__left {
        width: 100%;
        margin-bottom: 20px;
    }

    .cart-total-row__link {
        margin-bottom: 40px;
    }
}