.cart-heading-center {
    margin-bottom: 3rem !important;
}

.cart-table-wrapper {
    background-color: #1c2128 !important; 
    padding: 1rem !important; 
    border-radius: 0.25rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    overflow-x: auto !important; 
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
}

.cart-table {
    width: 100% !important;
    min-width: 600px !important;
    margin-bottom: 0 !important;
}

.cart-table thead tr {
    border-bottom: 2px solid #ffbe33;
}

.cart-table tbody tr {
    border-bottom: 1px solid #333;
}

.cart-img-dynamic {
    display: inline-block;
    background-image: var(--food-img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 45px;
    border: 1px solid #444;
}

.cart-qty-wrapper {
    gap: 5px;
}

.cart-qty-btn-adjust {
    line-height: 1; 
    padding: 2px 8px;
}

.cart-qty-field {
    width: 50px; 
    height: 28px; 
    padding: 0; 
    font-size: 0.9rem;
}

.cart-summary-sidebar {
    background-color: #222831; 
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.cart-summary-title {
    color: #ffbe33;
    margin-bottom: 1.5rem;
}

.cart-summary-divider {
    background-color: #444;
}

.cart-summary-total-text {
    font-size: 1.2rem;
}

.cart-summary-total-price {
    color: #ffbe33;
}

.cart-btn-checkout {
    background-color: #ffbe33 !important; 
    border: none;
}

.cart-btn-disabled {
    cursor: not-allowed; 
    opacity: 0.5;
}

@media (max-width: 767px) {
    .cart-summary-sidebar {
        margin-top: 2rem;
    }
}