ASUS Prime LC 360 ARGB White Edition 360MM Liquid CPU Cooler | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

ASUS Prime LC 360 ARGB White Edition 360MM Liquid CPU Cooler

SKU: ROGSTRIXLCIII360ARGBLCDWH
R 5 400.02
Available on Backorder

Efficient CPU cooling under heavy loads | Customisable LCD pump display and infinity mirror aesthetics | Integrated ARGB fans with simplified cabling | Broad Intel and AMD socket support | Clean white aesthetic for light-themed builds

This item is on backorder — new stock is expected around 30 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 CPU cooling under heavy loads | Customisable LCD pump display and infinity mirror aesthetics | Integrated ARGB fans with simplified cabling | Broad Intel and AMD socket support | Clean white aesthetic for light-themed builds

Quick Specs

  • Keep your CPU running cool under sustained heavy workloads with a specially designed contact area engineered for efficient heat transfer
  • Personalise your build with a customisable LCD pump display and vivid, AURA Sync-enabled ARGB lighting
  • Experience strong, stable airflow from three integrated 120mm ARGB fans built into the radiator assembly
  • Simplify your build with a single two-header cable that connects both fans and lighting for cleaner cable management
  • Fit almost any modern rig thanks to broad compatibility across Intel and AMD sockets

Elegant Cooling, Engineered for Performance

The ASUS Prime LC 360 ARGB White Edition is built for PC builders who want serious cooling performance without compromising on looks. Designed to complement the clean, light aesthetic of Prime-series motherboards, this 360mm all-in-one liquid cooler pairs a specially engineered CPU contact area with pre-installed ARGB fans, giving you stable thermals and a striking finished build in one package.

Cooling That Keeps Pace With Your CPU

Tired of watching your CPU throttle under heavy workloads? The Prime LC 360 ARGB White Edition uses a specially designed CPU contact area with a copper block that maximises surface contact, allowing heat to transfer away from the processor more efficiently. The result is a cooler that maintains optimal operating temperatures even when your system is working hard, helping your CPU sustain its performance rather than backing off under load.

A Pump Block Built to Be Seen

Instead of hiding the pump under the radiator, ASUS puts it front and centre with an LCD screen and customisable infinity mirror lens. The LCD display adds a layered visual element to the pump block, while the infinity mirror lens can be swapped out to change the look of your build. Combined with AURA Sync-enabled ARGB lighting, it gives you real control over how your cooler fits into the rest of your rig's aesthetic.

Fans and Lighting, Simplified

The three integrated 120mm ARGB fans on the radiator are wired through a single two-header cable that carries both power and lighting signal, cutting down on the usual tangle of cables inside a case. This keeps your build looking tidy without sacrificing airflow, and with 400mm of sleeved tubing and support for Intel LGA 1851, 1700, 1200 and 115X as well as AMD AM5 and AM4 sockets, it slots into a wide range of builds with plenty of routing flexibility.

Features

  • Specially designed CPU contact area for efficient heat transfer and stable thermals under heavy loads
  • Customisable infinity mirror lens on the pump block for a personalised aesthetic
  • LCD pump display for added visual customisation
  • Three integrated 120mm ARGB fans delivering up to 75.7 CFM of airflow
  • Single two-header cable simplifies fan and lighting connections for cleaner cable management
  • AURA Sync support for synchronised RGB lighting across compatible components
  • Reinforced, sleeved 400mm tubing for durability and flexible routing
  • Broad socket compatibility across Intel LGA 1851, 1700, 1200, 115X and AMD AM5, AM4 platforms

Specifications

  • Radiator Size: 360 mm
  • Fan Count: 3
  • Pump Display: LCD Screen
  • Max Noise Level: 34 dB
  • RGB Lighting: Yes
  • Tube Length: 400 mm
  • Colour: White
  • Socket Compatibility:
    • Intel LGA 1851, LGA 1700, LGA 1200, LGA 115X
    • AMD AM5, AM4
  • Warranty: 72 months

What's in the Box

  • 1 x ASUS Prime LC 360 ARGB White Edition CPU Liquid Cooler (pre-applied thermal compound) - White
  • 1 x Accessory Pack of Screws and Brackets
  • 1 x Quick Start Guide

Why ASUS

ASUS builds components that pair engineering rigour with striking design, and the Prime LC 360 ARGB White Edition is no exception. From its efficient CPU contact area to its customisable LCD pump display, it reflects ASUS's commitment to giving South African PC builders cooling performance they can trust and a look they can be proud of.

0.0
0 reviews
Login to Review

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

Related Products

ASUS Prime LC 240 ARGB Liquid CPU Cooler

ASUS Prime LC 240 ARGB Liquid CPU Cooler

R 2 960.24

Only 2 left - order soon!

ASRock Challenger Pure 360 AIO Liquid Cooler - Black

ASRock Challenger Pure 360 AIO Liquid Cooler - Black

R 1 662.48

Only 3 left - order soon!

MSI MPG Coreliquid P13 360 AIO Liquid CPU Cooler - White

MSI MPG Coreliquid P13 360 AIO Liquid CPU Cooler - White

R 3 531.25

Only 3 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!