
RN60
25 coupons
.rn300 * { box-sizing: border-box; } .rn300 { --txt:#0f1419; --muted:#4a5568; --white:#fff; --grad:linear-gradient(135deg,#7c3aed,#06b6d4); --accent:#7c3aed; --secondary:#06b6d4; --bg-light:#f8fafc; --border:#e2e8f0; --font-head:'Poppins',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif; --font-body:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif; font-family:var(--font-body); background:#fff; color:var(--txt); line-height:1.6; } /* Scroll Animation Setup */ .rn300 [data-animate]{ opacity:0; transform:translateY(30px); transition:all .6s cubic-bezier(.4,0,.2,1); } .rn300 [data-animate].animate-in{ opacity:1; transform:translateY(0); } /* Fail-safe if JS fails */ .rn300.no-js [data-animate]{ opacity:1; transform:none; } /* Staggers & variants */ .rn300 [data-animate="fade-up-1"]{ transition-delay:.1s; } .rn300 [data-animate="fade-up-2"]{ transition-delay:.2s; } .rn300 [data-animate="fade-up-3"]{ transition-delay:.3s; } .rn300 [data-animate="fade-up-4"]{ transition-delay:.4s; } .rn300 [data-animate="fade-up-5"]{ transition-delay:.5s; } .rn300 [data-animate="fade-up-6"]{ transition-delay:.6s; } .rn300 [data-animate="fade-left"]{ transform:translateX(-50px); } .rn300 [data-animate="fade-left"].animate-in{ transform:translateX(0); } .rn300 [data-animate="fade-right"]{ transform:translateX(50px); } .rn300 [data-animate="fade-right"].animate-in{ transform:translateX(0); } .rn300 [data-animate="fade-scale"]{ transform:scale(.9) translateY(20px); } .rn300 [data-animate="fade-scale"].animate-in{ transform:scale(1) translateY(0); } /* Type & layout */ .rn300 .container{ max-width:1200px; margin:0 auto; padding:40px 20px; } .rn300 h1,.rn300 h2,.rn300 h3,.rn300 h4{ color:var(--txt); margin:0 0 12px; line-height:1.2; letter-spacing:-.02em; font-family:var(--font-head); font-weight:700; } .rn300 h1{ font-weight:900; } .rn300 p{ color:var(--txt); margin:0 0 12px; font-size:16px; font-weight:400; } .rn300 .xl{ font-size:clamp(42px,5.5vw,64px); font-weight:900; line-height:1.1; } .rn300 .lg{ font-size:clamp(28px,3.8vw,44px); font-weight:800; } .rn300 .lead{ font-size:20px; color:var(--txt); font-weight:500; line-height:1.5; } /* Buttons */ .rn300 .btn{ display:inline-flex; align-items:center; justify-content:center; gap:12px; padding:14px 28px; border-radius:36px; background:var(--grad); color:#fff; font-weight:700; font-size:16px; text-decoration:none; min-width:180px; max-width:240px; transition:all .3s ease; box-shadow:0 4px 14px rgba(124,58,237,.25); border:none; cursor:pointer; } .rn300 .btn:hover{ transform:translateY(-2px); box-shadow:0 8px 25px rgba(124,58,237,.35); } .rn300 .btn.btn-small{ min-width:60px; padding:12px 18px; font-size:18px; font-weight:800; } .rn300 .btn.btn-large{ font-size:20px; font-weight:800; min-width:180px; padding:16px 32px; } /* Grid & images */ .rn300 .grid{ display:grid; gap:24px; } .rn300 .cols-2{ grid-template-columns:1.1fr 1fr; align-items:center; } .rn300 .cols-3{ grid-template-columns:repeat(3,minmax(0,1fr)); } .rn300 .stack{ display:flex; flex-direction:column; gap:12px; } .rn300 img{ width:100%; height:auto; border-radius:12px; } /* Features band */ .rn300 .features-band{ display:grid; gap:12px; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); margin-top:20px; padding:20px; background:var(--bg-light); border-radius:16px; } .rn300 .feature-item{ display:flex; align-items:center; gap:12px; color:var(--txt); font-weight:600; font-size:14px; } .rn300 .feature-icon{ width:40px; height:40px; border-radius:10px; background:var(--grad); display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; flex-shrink:0; } /* Cards */ .rn300 .card{ padding:20px; background:#fff; border:1px solid var(--border); border-radius:16px; transition:all .3s ease; position:relative; overflow:hidden; } .rn300 .card::before{ content:""; position:absolute; top:0; left:0; right:0; height:4px; background:var(--grad); transform:scaleX(0); transition:transform .3s ease; } .rn300 .card:hover{ box-shadow:0 12px 40px rgba(0,0,0,.1); } .rn300 .card:hover::before{ transform:scaleX(1); } .rn300 .card h4{ color:var(--txt); margin:0 0 8px; font-size:18px; font-weight:700; } .rn300 .card p{ color:var(--muted); margin:0; font-size:15px; } .rn300 .card .inline-header{ display:flex; align-items:center; gap:12px; margin-bottom:8px; } .rn300 .card .inline-icon{ width:32px; height:32px; border-radius:8px; background:var(--grad); display:flex; align-items:center; justify-content:center; color:#fff; font-size:16px; flex-shrink:0; } /* Specs */ .rn300 .specs-table{ display:grid; gap:12px; background:var(--bg-light); padding:24px; border-radius:16px; } .rn300 .spec-row{ display:grid; grid-template-columns:1fr 2fr; gap:16px; padding:12px 0; border-bottom:1px solid var(--border); align-items:center; } .rn300 .spec-row:last-child{ border-bottom:none; } .rn300 .spec-label{ font-weight:700; color:var(--txt); display:flex; align-items:center; gap:8px; } .rn300 .spec-value{ color:var(--txt); font-weight:500; } .rn300 .spec-icon{ color:var(--accent); font-size:16px; } /* FAQ */ .rn300 #faq .accordion{ display:grid; gap:12px; max-width:900px; margin:0 auto; } .rn300 #faq details{ background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:all .3s ease; } .rn300 #faq details:hover{ box-shadow:0 4px 20px rgba(0,0,0,.08); } .rn300 #faq summary{ list-style:none; cursor:pointer; font-weight:700; padding:16px 20px; display:flex; align-items:center; justify-content:between; color:var(--txt); background:var(--bg-light); position:relative; } .rn300 #faq summary::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--grad); transform:scaleY(0); transition:transform .3s ease; } .rn300 #faq details[open] summary::before{ transform:scaleY(1); } .rn300 #faq summary::-webkit-details-marker{ display:none; } .rn300 #faq summary::after{ content:""; width:12px; height:12px; border-right:2px solid var(--accent); border-bottom:2px solid var(--accent); transform:rotate(45deg); transition:transform .3s ease; margin-left:auto; flex-shrink:0; } .rn300 #faq details[open] summary::after{ transform:rotate(-135deg); } .rn300 #faq .answer{ padding:20px !important; color:var(--txt); font-size:16px; line-height:1.6; } /* Utilities */ .rn300 .text-center{ text-align:center; } .rn300 .mb-md{ margin-bottom:16px; } /* Add-to-cart font match */ .rn300 .product-form__add-btn, .rn300 .product-form__add-btn *{ font-family:"Montserrat",sans-serif !important; letter-spacing:1px; font-weight:700 !important; line-height:25px; font-size:16px; font-style:normal; } @media (max-width:920px){ .rn300 .cols-2,.rn300 .cols-3{ grid-template-columns:1fr; } .rn300 .features-band{ grid-template-columns:1fr; } .rn300 .spec-row{ grid-template-columns:1fr; gap:8px; } .rn300 .container{ padding:32px 16px; } } /* Narrow the How to Use card only */ #how-to-use .card.narrow{ max-width:clamp(520px,60vw,820px); margin-left:auto; margin-right:auto; } @media (min-width:820px){ #how-to-use .card.narrow{ padding-inline:24px; } } A Compact Red Light Panel With Big Benefits The RN60 is our compact, yet powerful red and near-infrared light therapy panel giving you the same benefits of our larger panels without sacrificing convenience or space. Add to Cart 120mW/cm² at 6" 60 LEDs • 91W 9" × 13" × 3.5" 100,000 hr lifespan Why You’ll Love It Healthy, Glowing Skin Supports collagen and elastin, essential proteins that improve skin appearance. Recovery and Performance Accelerates muscle recovery, reduces soreness, and helps you bounce back stronger after tough workouts. Thicker, Fuller Hair Support thicker, stronger hair growth from the root level using the same FDA-cleared technology trusted by dermatologists. Pain Relief Clinically proven to ease joint pain, stiffness, and chronic discomfort by reducing inflammation at its source. Better Sleep Supports melatonin production and circadian balance, helping you relax, sleep deeper, and wake up refreshed. Cellular Energy By recharging your cells’ mitochondria, red light boosts energy production at the source, enhancing overall vitality and well-being. *Statements reflect general-wellness and cosmetic benefits only; not intended to diagnose, treat, cure, or prevent any disease. Powerful Red Light Therapy.Compact Design. Red vs. Near-Infrared Red Light (630–660 nm) Reaches skin-level layers, where it boosts collagen, calms inflammation, and supports surface healing. Near-Infrared (810–850 nm) Travels deeper into muscles, joints, and even bone, helping with recovery, pain relief, and circulation. Instructions Quick Start Distance - Position yourself about 6–12 inches away for skin and 6–18 inches for muscles or joints. Duration - Start with 10 minutes and gradually increase to 15–20 minutes. Focus - Use Red Light for surface skin; NIR for deeper tissues. Consistency - Best results at 3–5 sessions per week. Eyes - Avoid staring into LEDs; use eye protection if sensitive. Technical Specs Irradiance 120mW/cm² at 6" Wavelengths / LEDs 6×630nm • 24×660nm • 3×810nm • 3×830nm • 24×850nm (60 total) Power 91W Dimensions 9" × 13" × 3.5" Weight 6 lbs Lifespan 100,000 hours What's in the Box RN60 Panel — ready to power on Stand — premounted stand included Power Cable — standard outlet compatibility Eye Protection — goggles for light comfort Quick Start Guide — setup & session tips Frequently Asked Questions How long should each session be?Start with 5–10 minutes per area at 6–12 inches. If comfortable, increase toward 15 minutes, 3–5 days/week. How close should I stand to the panel?Begin at 6–12 inches. Closer increases intensity; adjust for comfort and avoid staring into LEDs. Do I need eye protection?Avoid staring directly at the LEDs. If you're light-sensitive, use the included eye protection or keep eyes closed during face sessions. Can I travel with the RN60?Yes. At just 9" × 13" and 6 lbs, it’s lightweight and easy to pack — ideal for home, office, or travel. What wavelengths does the RN60 use?Red: 630nm, 660nm. Near-Infrared: 810nm, 830nm, 850nm — 60 total LEDs across both spectra. Will it heat up my room like a sauna?No. The RN60 uses LEDs and produces only minimal warmth at the surface; it doesn't heat the room like a sauna. How often should I use it each week?Most users aim for 3–5 sessions/week. Consistency matters more than duration. Is it safe if I have a medical condition or implant?The RN60 is a general-wellness, non-medical device. If you’re pregnant, photosensitive, on photosensitizing meds, or have implants/pacemakers, consult a healthcare professional before use. Can I use skincare products with sessions?Use non-photosensitizing products. Remove heavy makeup or reflective sunscreen before face sessions; apply serums/moisturizers after. How do I clean and care for the panel?Unplug and let cool. Wipe with a soft, dry microfiber cloth. Avoid solvents, sprays, or moisture entering vents. What’s the best way to pair it with a sauna dome?Many users do light sessions before or after heat sessions. Hydrate, stay comfortable, and follow both products’ guidelines. Ready to Add Red Light to Your Routine? The RN60 gives you the same proven benefits of our larger panels, in a compact, portable size that fits your lifestyle. Add to Cart Free Shipping 30-Day Returns 5-Year Warranty document.addEventListener('DOMContentLoaded', function() { // Remove no-js fallback class once JS is live document.querySelectorAll('.rn300.no-js').forEach(n => n.classList.remove('no-js')); // Intersection Observer for scroll-in animations const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) entry.target.classList.add('animate-in'); }); }, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' }); document.querySelectorAll('.rn300 [data-animate]').forEach(el => observer.observe(el)); });
Save on RN60 with a 1Love Health coupon
Checkmate is a savings app with over one million users that have saved $$$ on brands like 1Love Health.
The Checkmate extension automatically applies 1Love Health discount codes, 1Love Health coupons and more to give you discounts on products like RN60.
Top 1Love Health discount codes
5% Off Storewide at 1Love Health
Last used 2 months ago
15% off 1Love sauna dome
Last used 2 months ago
HEROES10
Last used 3 days ago
See all codes
Similar items











