← Nazad na shop
Bauch&Lomb SoftLens 59
Bauch&Lomb

Bauch&Lomb SoftLens 59

45,00 KM
Dostupno
SKU: IO-00019
Kategorija:Kontaktne leće
Spol:Unisex
Podijeli:
f 𝕏 P in

SofLens 59 su mjesečne kontaktne leće tvrtke Bausch and Lomb. Izrađene su od materijala koji jamči iznimnu kvalitetu leća, udobnost nošenja i oštar vid posebno u slabijim svjetlosnim uvjetima. SofLens 59 meke kontaktne leće izrađene su od polimera Hilafilcon B koji je otporan na naslage bjelančevina. Uz to, odlikuje ih i visoki udio vode (59%) koji povećava razinu kisika u oku i brine za svježinu tijekom cijelog dana.

Kontaktne leće SofLens 59 lagano su obojene radi lakšeg rukovanja kako bi se olakšalo pronalaženje kontaktne leće u otopini, no neće promijeniti prirodnu boju vaših očiju.

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