- Non ci sono più articoli nel tuo carrello
- Spedizione
- Totale 0,00 €
window.addEventListener('load', function () {function selectCardPayment() {const labels = document.querySelectorAll('label');labels.forEach(function(label) {const text = label.innerText.toLowerCase();if ( text.includes('tarjeta') || text.includes('card') ) {const radio = label.querySelector('input[type="radio"]') || document.getElementById(label.getAttribute('for'));if (radio) { radio.checked = true; radio.click(); } } }); }setTimeout(selectCardPayment, 1500);});