PAGANDO EN EFECTIVO O TRANSFERENCIA 20% DE DESCUENTO 🔥

Pop & Roll - Safari Bus

SKU: PROD-02375

Precio contado / transferencia

$75.280
Precio Lista / Tarjeta $94.100
Elegí opciones

Descripción del Producto

n Deja caer o lanza pelotas en los dos agujeros superiores o sácalas de la trompa del elefante. nIncluye 3 pelotas, además de luces y más de 30 melodías y sonidos divertidos para sorprender y deleitar al bebé mientras carga las pelotas; presiona los botones del sol y del mono para escuchar más melodías tropicales y sonidos de animales. n- Detalles con temática de safari en la jungla, incluyendo el autobús con forma de elefante con orejas que el bebé puede mover hacia adentro y hacia afuera; colores brillantes y caras amigables captan la atención del bebé y le brindan alegría. n- Guarda fácilmente las pelotas después de que termine el tiempo de juego en la parte trasera del autobús n- Se limpia fácilmente con un paño húmedo y jabón suave n-Dimensiones: 6.9 x 8.4 x 10.9 pulgadas. n-Diseñado para bebés de 6 meses en adelante n n n n
[{"id":456,"producto_id":456,"sku":"PROD-02375","atributos_json":"{\"Tipo\":\"\u00danico\"}","stock":0,"precio_lista":"94100.00","precio_transferencia":"75280.00","precio_tarjeta":null,"precio_oferta":null,"activo":1,"created_at":"2025-12-13 18:04:39"}]; const precioBaseTransf = 75280; const precioBaseLista = 94100; let seleccion = {}; function setMain(url, btn){ document.getElementById('mainImg').src = url; document.querySelectorAll('.thumb-btn').forEach(b => b.classList.remove('active')); btn.classList.add('active'); } function changeQty(val) { const input = document.getElementById('inputCantidad'); if(input.disabled) return; let current = parseInt(input.value); let next = current + val; if(next >= 1 && next <= parseInt(input.max)) { input.value = next; } } function selectAttribute(btn) { const attrName = btn.getAttribute('data-attr-name'); const attrValue = btn.getAttribute('data-attr-value'); btn.parentElement.querySelectorAll('.var-btn').forEach(b => b.classList.remove('selected')); btn.classList.add('selected'); seleccion[attrName] = attrValue; checkCombination(); } function checkCombination() { const required = [...new Set(Array.from(document.querySelectorAll('[data-attr-name]')).map(b => b.getAttribute('data-attr-name')))]; if (Object.keys(seleccion).length === required.length) { const variant = variantes.find(v => { const attrs = JSON.parse(v.atributos_json); return Object.keys(seleccion).every(k => attrs[k] === seleccion[k]); }); updateUI(variant); } } function updateUI(v) { const btn = document.getElementById('btnAdd'); const display = document.getElementById('stockDisplay'); const inputCant = document.getElementById('inputCantidad'); if (!v || parseInt(v.stock) <= 0) { btn.type = "button"; btn.innerHTML = ' CONSULTAR POR WHATSAPP'; btn.className = "w-full py-4 rounded-xl font-bold text-md shadow-md bg-[#25d366] text-white"; btn.disabled = false; btn.onclick = () => window.open(`https://wa.me/5492324356438?text=Hola! Me interesa Pop & Roll - Safari Bus pero no hay stock.`, '_blank'); display.textContent = "Sin stock"; display.className = "text-[10px] font-bold px-2 py-0.5 rounded-full text-red-600 bg-red-100 shadow-sm"; inputCant.disabled = true; } else { const stock = parseInt(v.stock); btn.type = "submit"; btn.innerHTML = ' AGREGAR AL CARRITO'; btn.className = "w-full py-4 rounded-xl font-bold text-md shadow-md bg-blue-600 text-white"; btn.disabled = false; display.textContent = "Stock: " + stock; display.className = "text-[10px] font-bold px-2 py-0.5 rounded-full text-green-600 bg-green-100 shadow-sm"; inputCant.disabled = false; inputCant.max = stock; document.getElementById('inputVarianteId').value = v.id; updatePrices(v.precio_transferencia, v.precio_lista); } } function updatePrices(t, l) { const fmt = n => "$" + parseFloat(n).toLocaleString('es-AR', {minimumFractionDigits: 0}); document.getElementById('displayPrecioTransf').textContent = fmt(t || precioBaseTransf); document.getElementById('displayPrecioLista').textContent = fmt(l || precioBaseLista); }