
#cartItems {
    max-height: calc(100vh - 230px);
    overflow-y: auto;
    padding-right: 6px;

    -webkit-overflow-scrolling: touch;
}

#cartItems::-webkit-scrollbar {
    width: 6px;
}

#cartItems::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

@media (max-width: 576px) {
    #cartItems {
        max-height: calc(100vh - 230px);
    }
}
.total-bar span {
 font-weight: 600;
 font-size: 1.2rem;
}
.back-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
    font-size: 20px;
}
        .order-type-btn {
            border: 1px solid #ccc;
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            background: #fff;
        }

        .order-type-btn.active {
            border-color: #0d6efd;
            background: #0d6efd;
            color: #fff;
        }
        .order-type-btn.active .icon {
            filter: brightness(0) invert(1);
        }
