πŸ”’ 100% Secure Payment Β· SSL 256-bit Β· PCI-DSS

Checkout

Complete your purchase securely.

Status: Select payment method to complete.

Selected product: n/a

Cart items

Loading...

← Back to store
function mostrarNotificacao(msg, type) { const types = { success: 'notification-success', error: 'notification-error', warning: 'notification-warning', info: 'notification-info' }; const n = document.createElement('div'); n.textContent = msg; n.className = 'notification-toast ' + (types[type] || types.info); document.body.appendChild(n); setTimeout(() => n.remove(), 3500); } document.addEventListener('DOMContentLoaded', updateCartDisplay);