Corsair NAUTILUS 360 RS ARGB Liquid CPU Cooler - White | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair NAUTILUS 360 RS ARGB Liquid CPU Cooler - White

SKU: CW-9060095-WW
R 2 441.13
Available on Backorder

Powerful 360mm liquid cooling | Vivid ARGB lighting with no extra controllers | Whisper-quiet Zero RPM operation | Precise PWM fan control | Broad Intel and AMD socket compatibility

This item is on backorder — new stock is expected around 28 Sep 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

Powerful 360mm liquid cooling | Vivid ARGB lighting with no extra controllers | Whisper-quiet Zero RPM operation | Precise PWM fan control | Broad Intel and AMD socket compatibility

Quick Specs

  • Achieve powerful 360mm liquid cooling that keeps demanding CPUs running cool under sustained load
  • Enjoy vivid, customisable ARGB lighting that syncs straight through your motherboard - no extra controllers needed
  • Experience near-silent operation down to 10 dBA thanks to Zero RPM mode
  • Control fan speed precisely via PWM for the right balance of airflow and quiet
  • Build with confidence across the latest Intel and AMD platforms, including LGA1851, LGA1700, AM5 and AM4

Serious Cooling for Serious Builds

The Corsair NAUTILUS 360 RS ARGB is built for PC enthusiasts and system builders who want their CPU running at its full potential without the noise. Whether you're pushing a high-core-count processor through long gaming sessions or demanding workloads, this 360mm liquid cooler pairs a copper cold plate with an aluminium radiator to move heat away efficiently, giving your CPU the thermal headroom it needs to perform consistently.

RS120 ARGB Fans That Do More Than Look Good

Three RS120 ARGB fans handle the airflow, delivering up to 72.8 CFM and 4.15 mm-H2O of static pressure to push air through the radiator fins where it counts. They also bring the visual flair, with ARGB lighting that plugs directly into your motherboard - no separate RGB or fan controller required, so setup stays simple and your case stays tidy.

Quiet When You Need It, Powerful When You Don't

Tired of coolers that roar under load? Precise PWM fan speed control lets the NAUTILUS 360 RS ARGB scale from a near-silent 10 dBA up to a maximum of 36 dBA only when the workload demands it, with Zero RPM mode keeping fans still entirely during light use. You get quiet everyday computing and full cooling power exactly when your CPU calls for it.

Built to Fit Your Platform

With support for Intel LGA1851 and LGA1700 sockets as well as AMD AM5 and AM4, the NAUTILUS 360 RS ARGB is ready for current-generation builds and many existing systems alike. A 450mm tube length gives you the flexibility to route the radiator to the top, front, or side of most cases, making installation straightforward regardless of your case layout.

Features

  • 360mm radiator with copper cold plate and aluminium construction for efficient heat dissipation
  • Three RS120 ARGB fans delivering up to 72.8 CFM airflow and 4.15 mm-H2O static pressure
  • PWM fan control with Zero RPM mode for near-silent idle operation
  • Noise levels ranging from 10 dBA at idle to 36 dBA under full load
  • ARGB lighting plugs directly into your motherboard - no additional controllers necessary
  • Compatible with Intel LGA 1851, LGA 1700 and AMD AM5, AM4 sockets
  • 450mm tubing length for flexible radiator placement in a range of case sizes

Specifications

  • Radiator Size: 360 mm
  • Socket Compatibility: Intel LGA 1851,Intel LGA 1700,AMD AM5,AMD AM4
  • Fan Count: 3 x 120mm
  • Max Noise Level: 36 dB
  • RGB Lighting: Yes
  • Tube Length: 450 mm
  • Colour: White
  • Warranty: 60 months
  • Product Dimensions: 39.6 x 12.5 x 12.5 cm
  • Product Weight: 2000g

What's in the Box

  • 1 x Corsair NAUTILUS 360 RS ARGB Liquid CPU Cooler - White

Why Corsair

Corsair has spent decades engineering cooling and components that PC builders around the world trust to keep their systems running at their best. The NAUTILUS 360 RS ARGB carries that same commitment to reliable performance and thoughtful design into your build. For South African gamers and enthusiasts chasing cooler, quieter systems, Corsair remains a dependable choice.

0.0
0 reviews
Login to Review

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

Related Products

ASUS TUF Gaming LC III 360 ARGB White Edition Liquid CPU Cooler

ASUS TUF Gaming LC III 360 ARGB White Edition Liquid CPU Cooler

R 3 635.07

Only 1 left - order soon!

ASRock Challenger 360 Digital AIO Liquid Cooler - Black

ASRock Challenger 360 Digital AIO Liquid Cooler - Black

R 1 973.94

Only 2 left - order soon!

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