šŸŽ‰ Pick any 2 skins — only in Rs.999
Both skins. One price. Limited time.

Buy Now

    Cart
    Your cart is currently empty.

    LTP-108-Subaru BRZ Laptop Skin

    šŸ’» Premium Laptop Skins – Customized for Every Laptop

    Transform your laptop into a premium, head-turning device with our custom laptop skins—built for style, protection, and a perfect fit.

    āœ” Custom Fit for Every Laptop
    Available for all models (MacBook, HP, Dell, Lenovo & more) with precise cutting—no trimming needed.

    āœ” Premium 3M Vinyl
    High-grade material with strong adhesion, bubble-free application, and long-lasting performance.

    āœ” Ultra HD Digital Printing
    Crisp details, vibrant colors, and fade-resistant prints for a premium look.

    āœ” Scratch Protection + Matte/Gloss Finish
    Protects against scratches, dust & minor wear while enhancing the look.

    āœ” Easy Apply & Residue-Free Removal
    No sticky mess—remove anytime without damaging your laptop.

    āœ” Precision Cut for Logo & Ports
    Clean cutouts for Apple logo / vents / edges for a seamless finish.

    šŸ“ Size: Custom cut according to your laptop model

    // Unique product handles in cart var handles = []; cart.items.forEach(function (item) { if (handles.indexOf(item.handle) === -1) { handles.push(item.handle); } }); // 2) For each handle, fetch product to see if it has tag "skin-bogo" var bogoHandles = []; var productRequests = handles.map(function (handle) { return fetch(root + 'products/' + handle + '.js') .then(function (res) { return res.json(); }) .then(function (product) { if (product && Array.isArray(product.tags) && product.tags.indexOf('skin-bogo') !== -1) { bogoHandles.push(handle); } }) .catch(function () { // ignore errors for individual products }); }); return Promise.all(productRequests).then(function () { // 3) Sum quantity of all BOGO items var bogoQty = 0; cart.items.forEach(function (item) { if (bogoHandles.indexOf(item.handle) !== -1) { bogoQty += item.quantity; } }); // 4) If there is at least 1 skin-bogo and qty is NOT multiple of 2 → block if (bogoQty > 0 && (bogoQty % 2 !== 0)) { // Next even number (2, 4, 6, ...) is the required count var needed = bogoQty % 2 !== 0 ? bogoQty + 1 : bogoQty; var pairs = needed / 2; var totalPrice = pairs * 999; var span = document.getElementById('bogo-required-count'); if (span) span.textContent = needed; var priceSpan = document.getElementById('bogo-total-price'); if (priceSpan) priceSpan.textContent = 'Rs.' + totalPrice; showBogoModal(); return; } // Otherwise let checkout continue proceedToCheckout(checkoutBtn); }); }) .catch(function (err) { console.error('BOGO check failed:', err); // On error, don't block checkout proceedToCheckout(checkoutBtn); }); }); function proceedToCheckout(checkoutBtn) { checkoutBtn.dataset.bogoChecked = 'true'; var form = checkoutBtn.closest('form'); if (form) { form.submit(); } else if (checkoutBtn.tagName === 'A' && checkoutBtn.getAttribute('href')) { window.location.href = checkoutBtn.getAttribute('href'); } else { var root = window.Shopify && window.Shopify.routes && window.Shopify.routes.root ? window.Shopify.routes.root : '/'; window.location.href = root + 'checkout'; } } })();