Port Designs Pro Shock 360 Rugged Protective and Rotative Folio for Samsung Galaxy Tab A9+ - Black - Port | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Port

Port Designs Pro Shock 360 Rugged Protective and Rotative Folio for Samsung Galaxy Tab A9+ - Black

SKU: 201535
R 679.00 R 899.00
You save R 220.00 (24%)
In Stock
You save R 220.00 (24% off)

Rugged 3-Layer Protection | Reinforced Corners | 360° Rotating Handle | Multiple Viewing Angles | Detachable Shoulder Strap | For Samsung Galaxy Tab A9+ Quick Specs

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

Frequently Bought Together

Rugged 3-Layer Protection | Reinforced Corners | 360° Rotating Handle | Multiple Viewing Angles | Detachable Shoulder Strap | For Samsung Galaxy Tab A9+

Quick Specs

  • Custom-fit for the Samsung Galaxy Tab A9+ with precise cut-outs
  • Shield your tablet from knocks and drops with tough three-layer protection
  • Prop it at the perfect angle with a 360° rotating handle and stand
  • Carry it hands-free with a detachable, adjustable shoulder strap
  • Reach every port, button and camera without removing the case

Tough, Three-Layer Protection That Lasts

The Port Designs Pro Shock 360 is a rugged protective folio built to keep your Samsung Galaxy Tab A9+ safe wherever work or play takes you. A robust three-layer design absorbs shocks and bumps, while specially reinforced corners take the brunt of accidental drops — exactly the kind of dependable protection demanding environments across South Africa call for.

360° Rotating Handle for Total Flexibility

At the heart of the Pro Shock 360 is a clever 360° rotating and adjustable handle. Slip your hand through it for a secure, comfortable grip while you work on the move, or fold it out to use as a stand — propping your tablet at the ideal angle for typing, presenting or watching video in both portrait and landscape.

Carry It Anywhere, Use It Everywhere

A detachable, adjustable shoulder strap makes it easy to carry your Tab A9+ hands-free between meetings, around the warehouse or out on site. Precise cut-outs give you full access to every port, button, speaker and the camera, so you can charge, connect and shoot without ever taking the case off. Designed in Paris, the Pro Shock 360 blends serious protection with genuine everyday practicality.

FEATURES:

  • Custom-designed to fit the Samsung Galaxy Tab A9+
  • Rugged protective design with three-layer construction
  • Reinforced corners for added drop protection
  • 360° rotating and adjustable handle
  • Doubles as a stand for multiple video and viewing positions
  • Detachable and adjustable shoulder strap
  • Full access to all ports, buttons and the camera
  • Designed in Paris

SPECIFICATIONS:

  • Compatibility: Samsung Galaxy Tab A9+
  • Colour: Black
  • Protection: Three-layer rugged protection
  • Corners: Reinforced
  • Handle: 360° rotating and adjustable, doubles as a stand
  • Shoulder Strap: Detachable and adjustable
  • Designed in: Paris

WHAT’S IN THE BOX:

  • Port Designs Pro Shock 360 Rugged Protective and Rotative Folio for Samsung Galaxy Tab A9+ x1

Why Port Designs?

Port Designs is a Paris-based specialist in bags, cases and accessories, trusted for practical, well-made protection for everyday devices. The Pro Shock 360 brings that design pedigree to rugged tablet protection — tough, flexible and genuinely useful. For South African users who need dependable, hands-free protection for their Samsung Galaxy Tab A9+, it’s a smart, hard-wearing choice.

Brand Port
Colour Black
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

-23%
Port Designs Noumea II Universal 9/11" Tablet Folio – Black
Port

Port Designs Noumea II Universal 9/11" Tablet Folio – Black

R 269.00 R 349.00

Save R 80.00

In Stock

-23%
Port Designs Noumea II Universal 9/11" Tablet Folio – Grey
Port

Port Designs Noumea II Universal 9/11" Tablet Folio – Grey

R 269.00 R 349.00

Save R 80.00

In Stock

-23%
Port Designs Noumea II Universal 9/11" Tablet Folio – Green
Port

Port Designs Noumea II Universal 9/11" Tablet Folio – Green

R 269.00 R 349.00

Save R 80.00

In Stock

-23%
Port Designs Noumea II Universal 9/11" Tablet Folio – Blue
Port

Port Designs Noumea II Universal 9/11" Tablet Folio – Blue

R 269.00 R 349.00

Save R 80.00

In 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!