✦ Verified product
24L Professional Laptop Backpack – Water-Resistant Business Daypack for 16″ MacBook Pro & Work Essentials
USD 119.99
PulinGO
Verified independent store
→
Smart Front Storage Design Designed with dual quick-access front compartments, this bag keeps your everyday essentials neatly organized. Dedicated Laptop Protection The independent
ly padded laptop compartment offers enhanced shock absorption and fits devices up to 16”. Comfortable Carrying Carrying Handles Convenient Luggage Strap ❮ ❯ Easy-Access Bottle Pocket Keep your drink upright and within reach—perfect for commutes. Clean Cable Pass-Through Charge on the move with a tidy pass-through design. Premium Smooth Zippers Built for daily use—glides easily and feels solid. Water-Resistant Finish Protects your essentials from light rain and spills. /* Boşluk Sıfırlama */ .pulingo-top-images img, .pulingo-pre-slider img { width: 100%; display: block; /* Alt boşluğu öldürür */ margin: 0; } /* 2'li Özellik Grid */ .pulingo-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 40px 0; font-family: sans-serif; } .pulingo-feature-item img { width: 100%; border-radius: 12px; display: block; } .pulingo-feature-title { font-size: 18px; font-weight: 700; margin: 15px 0 10px; } .pulingo-feature-text { font-size: 14px; line-height: 1.6; color: #555; } /* Slider ve Birleşme Noktası */ .slider-container { width: 100%; overflow: hidden; position: relative; background: #fff; margin: 0; } /* Margin 0 yaptık */ .slider-tabs { background: #111; display: flex; justify-content: center; z-index: 10; position: relative; margin: 0; } .tab-btn { background: none; border: none; color: #888; padding: 20px 25px; cursor: pointer; font-size: 12px; font-weight: 700; text-transform: uppercase; transition: 0.3s; } .tab-btn.active { color: #fff; box-shadow: inset 0 -3px 0 #fff; } /* Çizgiyi içe aldık ki kaymasın */ .slides-wrapper { position: relative; width: 100%; overflow: hidden; } .slides-inner { display: flex; transition: transform 0.5s ease-in-out; width: 300%; } .my-slide { flex: 0 0 33.3333%; width: 33.3333%; } .my-slide img { width: 100%; display: block; } .nav-prev, .nav-next { cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); padding: 15px; color: rgba(255,255,255,0.6); font-size: 24px; text-decoration: none; z-index: 20; user-select: none; } .nav-next { right: 5px; } .nav-prev { left: 5px; } /* Alt 4'lü Grid */ .pg-4grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin: 40px 0; font-family: sans-serif; } .pg-card img { width: 100%; border-radius: 16px; margin-bottom: 16px; display: block; } .pg-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; } .pg-card p { font-size: 14px; color: #666; line-height: 1.5; } @media (max-width: 768px) { .pulingo-feature-grid, .pg-4grid { grid-template-columns: 1fr; padding: 0 15px; } .slider-tabs { justify-content: flex-start; overflow-x: auto; white-space: nowrap; } .tab-btn { padding: 15px; font-size: 11px; flex-shrink: 0; } } document.addEventListener("DOMContentLoaded", function() { const inner = document.getElementById('slidesInner'); const tabs = document.querySelectorAll('.tab-btn'); const prev = document.querySelector('.nav-prev'); const next = document.querySelector('.nav-next'); let index = 0; function moveSlider(n) { index = n; if (index >= tabs.length) index = 0; if (index < 0) index = tabs.length - 1; inner.style.transform = 'translateX(' + (-index * (100 / tabs.length)) + '%)'; tabs.forEach(t => t.classList.remove('active')); tabs[index].classList.add('active'); } tabs.forEach((tab, i) => { tab.addEventListener('click', () => moveSlider(i)); }); next.addEventListener('click', (e) => { e.preventDefault(); moveSlider(index + 1); }); prev.addEventListener('click', (e) => { e.preventDefault(); moveSlider(index - 1); }); });