<style>
#side-cart > div.offcanvas-body > div.mt-auto.footer-side-cart.w-100 > div.btn-side-cart > a:nth-child(2) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
</style>
setInterval(() => {
    document.querySelectorAll("a, button").forEach(el => {
        const text = el.textContent.trim();
        if (text === "السلة") {
            el.textContent = "إتمام الشراء";
        }
    });
}, 300);

#side-cart .btn-side-cart a:nth-child(2){
    display:none !important;
}