Port Designs Milano II ECO 14/16″ Totepack – Blush Pink - Port | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Port

Port Designs Milano II ECO 14/16″ Totepack – Blush Pink

SKU: 140728
R 1 299.00
Out of Stock

16L Capacity | Totepack-to-Backpack Design | Fits Laptops up to 16″ | Recycled r-PET Eco Lining | Corduroy Exterior | Trolley Strap Quick Specs

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

16L Capacity | Totepack-to-Backpack Design | Fits Laptops up to 16″ | Recycled r-PET Eco Lining | Corduroy Exterior | Trolley Strap

Quick Specs

  • Switch effortlessly between a totepack and a backpack with hideaway shoulder straps.
  • Protect your device in a padded compartment sized for laptops up to 16″.
  • Organise 16L of everyday essentials across numerous pockets and storage spaces.
  • Glide through travel days with a trolley strap that slips over rolling luggage handles.
  • Carry consciously with an eco-friendly lining made from recycled r-PET polyester.

Designed in Paris for the way South Africans live, work, and commute, the Port Designs Milano II ECO is two bags in one.

Whether you’re heading to the office, a campus lecture, or a weekend away, this convertible laptop bag adapts to your day. Grab the two padded top handles for a quick hand-carry, then release the hideaway shoulder straps when you’ve got further to go — all wrapped in an elegant, hard-wearing corduroy exterior that looks as good as it lasts.

Smart storage that keeps your day organised.

The roomy 16L main compartment houses a padded sleeve that fits laptops up to 16″, while a wide front quick-access pocket and multiple interior storage spaces keep your charger, cables, notebook and daily essentials exactly where you need them. Two side pockets hold a water bottle or umbrella, and the rear trolley strap makes this the ideal laptop backpack for travel.

Built to last, made responsibly.

A durable corduroy and water-repellent 600D polyester shell stands up to daily use, gunmetal-finish zips add a refined touch, and the interior is lined with 210D recycled r-PET — made from recycled and recyclable materials. Backed by a limited lifetime warranty, it’s a sustainable laptop bag built to go the distance.

Features

  • Converts from a totepack to a backpack thanks to two padded top handles and hideaway shoulder straps.
  • 16L capacity with a padded compartment that fits laptops up to 16″ (37 × 26 × 3 cm).
  • Wide front quick-access pocket plus multiple interior storage spaces for everyday organisation.
  • Two outer side pockets for a water bottle or umbrella, and a trolley strap for rolling luggage.
  • Elegant, durable corduroy exterior with an eco-friendly recycled r-PET lining.

Specifications

  • Capacity: 16L
  • Laptop Compartment: Fits up to 16″ (37 × 26 × 3 cm)
  • Exterior: Corduroy with 600D water-repellent polyester
  • Lining: 210D recycled r-PET polyester
  • Zips: Refined gunmetal finish
  • Carry Options: Top handles + hideaway shoulder straps
  • Side Pockets: 2 (water bottle / umbrella)
  • Trolley Strap: Yes
  • Colour: Blush Pink
  • Product Dimensions: 51 × 34 × 14.5 cm
  • Product Weight: 680 g

What’s in the Box

  • Port Designs Milano II ECO 14/16″ Totepack – Blush Pink ×1

Why Port Designs?

With design rooted in Paris, Port Designs blends French style with everyday practicality to create laptop bags and backpacks made for modern life. The Milano II ECO reflects that ethos — combining sustainable materials, thoughtful storage and lasting build quality in a laptop backpack that South Africans can rely on day after day.

Brand Port
Colour Pink
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Port Designs Sydney 13/14" ECO Toploading Case
Port

Port Designs Sydney 13/14" ECO Toploading Case

R 489.00

In Stock

Wanbo Mozart Carrying Bag
WANBO

Wanbo Mozart Carrying Bag

R 399.00

Out of Stock

New
Port Designs Milano II ECO 14/16″ Totepack – Navy Blue
Port

Port Designs Milano II ECO 14/16″ Totepack – Navy Blue

R 1 299.00

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!