
#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);
        }
.order-type-btn {
    position: relative;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.check-icon {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    color: #0d6efd;
    font-size: 14px !important;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.order-type-btn.active .check-icon {
    display: flex;
}

.check-iconX {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid black;
    color: #0d6efd;
    font-size: 14px !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.order-type-btn.active .check-iconX {
    display: none;
}
