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

Corsair NAUTILUS 360 RS Liquid CPU Cooler - Black

SKU: CW-9060089-WW
R 2 129.67
Available on Backorder

Efficient, low-noise cooling | Plug-and-play installation, no controller required | High-airflow RS120 fans with Zero RPM mode | Broad Intel and AMD socket compatibility | Backed by a 5-year warranty

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

Efficient, low-noise cooling | Plug-and-play installation, no controller required | High-airflow RS120 fans with Zero RPM mode | Broad Intel and AMD socket compatibility | Backed by a 5-year warranty

Quick Specs

  • Achieve efficient, low-noise cooling that lets your CPU reach its full potential
  • Experience whisper-quiet operation with a pump rated as low as 20 dBA
  • Control your cooling precisely with PWM fan speeds and a silent Zero RPM mode
  • Install in minutes - plugs directly into your motherboard with no extra controller needed
  • Stay future-ready with support for the latest Intel LGA 1851 and AMD AM5 platforms

Cool, Quiet, Powerful Performance

The Corsair NAUTILUS 360 RS Liquid CPU Cooler is built for anyone assembling a serious gaming or workstation PC who wants their processor running cool without the noise. Renowned Corsair engineering brings high-performance, low-noise cooling to your build, letting your CPU reach its full potential under sustained load. With a 360mm radiator and no additional controller required, it plugs directly into your motherboard for straightforward installation, making it a dependable choice whether you're building your first PC or upgrading a long-standing rig.

High Airflow Meets Low Noise

Tired of coolers that trade quiet running for real cooling power? The three RS120 fans on the NAUTILUS 360 RS deliver high airflow and static pressure to push air through the radiator effectively, while Corsair's AirGuide technology and magnetic dome bearings keep noise to a minimum. Precise PWM fan speed control means you can dial in performance as needed, and Zero RPM mode lets the fans stop entirely at low loads for near-silent idle.

Quiet and Efficient by Design

Underneath the fans, an efficient, low-noise pump circulates coolant at a high flow rate while staying at a whisper-quiet 20 dBA, so your system stays cool without becoming a distraction. The slightly convex copper cold plate is designed for maximum contact with your CPU's integrated heat spreader, with thermal paste applied in an optimised pattern to speed up installation. Daisy-chained fan connections simplify wiring further, letting all three fans run from a single 4-pin PWM header on your motherboard.

Built to Fit Almost Any Build

Wide socket compatibility means the NAUTILUS 360 RS fits comfortably into current and near-future builds, supporting Intel LGA 1851 and LGA 1700 as well as AMD AM5 and AM4 platforms. Whether you're pairing it with a fresh Ryzen or Core Ultra build or refreshing an existing AM4 or LGA 1700 system, this cooler is ready to handle it, backed by Corsair's 5-year warranty for long-term confidence.

Features

  • 360mm radiator with three RS120 fans for high airflow and static pressure
  • Precise PWM fan speed control with Zero RPM mode for near-silent idle
  • Daisy-chained fan wiring runs off a single 4-pin PWM header on your motherboard
  • Slightly convex copper cold plate for maximum contact with your CPU's heat spreader
  • Low-noise pump circulates coolant at a whisper-quiet 20 dBA
  • Plugs directly into your motherboard - no additional controller required
  • Wide socket compatibility: Intel LGA 1851, LGA 1700 and AMD AM5, AM4
  • Backed by a 5-year (60-month) warranty

Specifications

  • Radiator Size: 360 mm
  • Socket Compatibility: LGA 1851, LGA 1700, AM5, AM4
  • Fan Count: 3 x 120mm
  • Pump Display: None
  • Max Noise Level: 36 dB
  • RGB Lighting: None
  • Tube Length: 450 mm
  • Colour: Black
  • 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 Liquid CPU Cooler - Black

Why Corsair

Corsair has spent decades engineering high-performance PC components trusted by builders and gamers worldwide. With the NAUTILUS 360 RS, that same engineering focus brings efficient, low-noise cooling and straightforward installation to your build. Backed by a 5-year warranty and world-class support, it's a cooler South African PC builders can rely on for years of stable performance.

0.0
0 reviews
Login to Review

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

Related Products

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