Gönderim Nasıl Yapılıyor?
Şehir Dışı Teslimat Süreci
Şehir dışı teslimat yapıyor musunuz?
✅ Evet. Türkiye’nin her iline güvenli ve kayıtlı teslimat yapmaktayız.
Yavrular teslimata çıkmadan önce veteriner kontrollerinden geçer.
Tüm süreç; bilgilendirme, paketleme ve teslim adımları dahil şeffaf ve kayıt altındadır.
Gönderimler öncelikle otobüs firmaları aracılığıyla özel taşıma kafeslerinde yapılır. Talebiniz doğrultusunda
özel kurye seçeneğimiz de mevcuttur; bu yöntemde yavru doğrudan adresinize kadar teslim edilir.
İstanbul içi için ise Showroom’umuza gelip yavrularımızı bizzat inceleyip
sahiplenebilirsiniz. Şehir dışı gönderimlerde yolculuğun her adımını sizinle paylaşır,
anlık bilgi vererek süreci birlikte takip ederiz. Amacımız; Türkiye’nin her yerine konforlu,
güvenli ve kayıtlı bir teslimat deneyimi sunmaktır.
/* --- Minik Paticikler: Şehir Dışı Teslimat Süreci --- */
.mp-shipping{background:#fff;border-radius:10px;overflow:hidden;border:1px solid #eee}
.mp-shipping__head{background:linear-gradient(90deg,#5b2c83,#7a3da6);padding:14px 18px}
.mp-shipping__head h2{margin:0;color:#fff;font-size:18px;font-weight:700}
.mp-shipping__body{padding:16px 18px;color:#2a2a2a;line-height:1.6}
.mp-shipping__q{font-weight:700;margin:0 0 6px}
.mp-shipping__a{margin:0 0 10px}
.mp-shipping__body strong{font-weight:700}
/* Gallery */
.mp-shipping__gallery{
margin-top:12px;display:flex;gap:14px;overflow-x:auto;padding-bottom:6px;
scroll-snap-type:x mandatory
}
.mp-shipping__gallery::-webkit-scrollbar{height:8px}
.mp-shipping__gallery::-webkit-scrollbar-thumb{background:#d2c4e6;border-radius:4px}
.mp-thumb{flex:0 0 180px;scroll-snap-align:start;border:none;background:transparent;padding:0;cursor:pointer}
.mp-thumb img{
width:100%;height:220px;object-fit:cover;border-radius:8px;border:1px solid #eee;display:block;transition:transform .2s
}
.mp-thumb:hover img{transform:scale(1.05)}
/* Lightbox */
.mp-lightbox[hidden]{display:none}
.mp-lightbox{
position:fixed;inset:0;background:rgba(0,0,0,.82);display:flex;align-items:center;justify-content:center;
z-index:9999;padding:24px
}
#mpLightImg{max-width:96vw;max-height:90vh;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.5);border:1px solid #333}
.mp-close{
position:absolute;top:14px;right:16px;width:44px;height:44px;border-radius:999px;border:0;cursor:pointer;
font-size:28px;line-height:44px;background:#fff;color:#111;box-shadow:0 2px 10px rgba(0,0,0,.3)
}
.mp-lightbox:where(img,.mp-close){user-select:none}
/* Responsive */
@media (max-width:768px){
.mp-shipping__head h2{font-size:16px}
.mp-thumb{flex-basis:150px}
.mp-thumb img{height:180px}
}
(function(){
const exts = ["jpg","png","jpeg"];
const base = id => `https://i.hizliresim.com/${id}`;
const withExt = (id, ext) => `${base(id)}.${ext}`;
function loadWithFallback(imgEl, id, idx=0){
if(idx >= exts.length) return;
imgEl.src = withExt(id, exts[idx]);
imgEl.dataset.tryIndex = idx;
imgEl.onerror = () => {
const next = Number(imgEl.dataset.tryIndex||0)+1;
if(next < exts.length){
imgEl.src = withExt(id, exts[next]);
imgEl.dataset.tryIndex = next;
}
};
}
document.querySelectorAll(".mp-thumb").forEach(btn=>{
const id = btn.getAttribute("data-id");
const img = btn.querySelector("img");
loadWithFallback(img, id);
btn.addEventListener("click", ()=>{
const light = document.getElementById("mpLightbox");
const big = document.getElementById("mpLightImg");
loadWithFallback(big, id);
light.removeAttribute("hidden");
document.body.style.overflow = "hidden";
});
});
const light = document.getElementById("mpLightbox");
const big = document.getElementById("mpLightImg");
const closeBtn = document.querySelector(".mp-close");
function closeLightbox(){
light.setAttribute("hidden","");
big.removeAttribute("src");
document.body.style.overflow = "";
}
closeBtn.addEventListener("click", closeLightbox);
light.addEventListener("click", e=>{
if(e.target === light) closeLightbox();
});
document.addEventListener("keydown", e=>{
if(e.key === "Escape" && !light.hasAttribute("hidden")) closeLightbox();
});
})();