← Nazad na shop
Balenciaga BB0216S
Balenciaga

Balenciaga BB0216S

345,00 KM
Dostupno
SKU: IO-00006
Kategorija:Sunčane naočale
Spol:Žensko
Podijeli:
f 𝕏 P in

Najluksuzniji model iz Balenciaga kolekcije. Smeđi okvir s ikoničnim brendiranjem. Kombinacija premium acetata i metalnih detalja stvara prepoznatljiv luksuzni look.

Možda vas zanima i…

var form = document.getElementById('ppReviewForm'); var msg = document.getElementById('ppRvMsg'); form.addEventListener('submit', function(e){ e.preventDefault(); if(parseInt(ratingInput.value, 10) < 1){ msg.style.display = 'block'; msg.style.background = '#fbeae7'; msg.style.color = '#963d2f'; msg.textContent = 'Molimo odaberite ocjenu (kliknite na zvjezdice).'; return; } var submitBtn = form.querySelector('button[type="submit"]'); submitBtn.disabled = true; submitBtn.textContent = 'Slanje...'; fetch('/api/review_submit.php', { method: 'POST', body: new FormData(form) }) .then(function(r){ return r.json(); }) .then(function(data){ msg.style.display = 'block'; if(data.success){ msg.style.background = 'var(--green-light)'; msg.style.color = 'var(--green)'; msg.textContent = data.message || 'Hvala na recenziji!'; form.reset(); ratingInput.value = 0; paint(0); } else { msg.style.background = '#fbeae7'; msg.style.color = '#963d2f'; msg.textContent = data.error || 'Greška prilikom slanja recenzije.'; } }) .catch(function(){ msg.style.display = 'block'; msg.style.background = '#fbeae7'; msg.style.color = '#963d2f'; msg.textContent = 'Greška u komunikaciji sa serverom. Pokušajte ponovo.'; }) .finally(function(){ submitBtn.disabled = false; submitBtn.textContent = 'Pošalji recenziju'; }); }); })(); // ===== TAB SWITCH ===== function ppTab(t){ ['opis','info','rec','garancija','dostava','stakla','velicina','brend'].forEach(function(k){ if(!document.getElementById('tc_'+k)) return; document.getElementById('tc_'+k).style.display = k===t ? 'block' : 'none'; var btn = document.getElementById('tab_'+k); if(btn){ btn.style.color = k===t ? 'var(--green)' : 'var(--gray-400)'; btn.style.borderBottomColor = k===t ? 'var(--green)' : 'transparent'; btn.style.fontWeight = k===t ? '700' : '600'; } }); } // ===== IMAGE SWITCH (smooth crossfade, no jitter) ===== function ppSwitchImg(el, src){ var videoWrap = document.getElementById('ppVideoWrap'); if (videoWrap) videoWrap.style.display = 'none'; var img = document.getElementById('ppMainImg'); img.style.opacity = '1'; var parent = el.parentElement; parent.querySelectorAll('.pp-thumb').forEach(function(b){ b.style.borderColor = 'var(--gray-200)'; }); el.style.borderColor = 'var(--green)'; if(img.src === src) return; img.classList.add('pp-img-switching'); setTimeout(function(){ img.src = src; img.onload = function(){ img.classList.remove('pp-img-switching'); }; }, 80); } function openMobileMenu(){document.getElementById('mobileNav').classList.add('open');document.body.style.overflow='hidden';} function closeMobileMenu(){document.getElementById('mobileNav').classList.remove('open');document.body.style.overflow='';} // ===== NAV WISH/CART BADGE COUNTS (shared localStorage with index.php/blog.php) ===== (function(){ function readJSON(key){ try{ return JSON.parse(localStorage.getItem(key)||'[]'); }catch(e){ return []; } } var wish = readJSON('io_wish'); var wishEl = document.getElementById('ppWishCount'); if(wishEl){ wishEl.textContent = wish.length; wishEl.style.display = wish.length>0?'flex':'none'; } var cart = readJSON('io_cart'); var cartN = cart.reduce(function(s,x){return s+(x.qty||1);},0); var cartEl = document.getElementById('ppCartCount'); if(cartEl){ cartEl.textContent = cartN; cartEl.style.display = cartN>0?'flex':'none'; } })(); img.onload = function(){ img.classList.remove('pp-img-swit