Morris 3-Step Dimmable Cupboard Lights 288mm LED T5 Connectable 6500K 4W 480lm
.custom-image-section, .custom-image-section .image-block, .custom-image-section .carousel-wrapper, .custom-image-section .carousel, .custom-image-section .carousel-track, .custom- image-section .carousel-slide, .custom-image-section .carousel-btn, .custom-image-section .carousel-dots, .custom-image-section .carousel-dots span, .custom-image-section picture, .custom-image-section img { margin: 0; padding: 0; border: 0; box-sizing: border-box; } .custom-image-section { width: 100%; overflow: hidden; line-height: 0; font-size: 0; } .custom-image-section .image-block, .custom-image-section .carousel-wrapper, .custom-image-section picture, .custom-image-section img { display: block; width: 100%; } .custom-image-section img { height: auto; vertical-align: top; } .custom-image-section .carousel-wrapper { width: 100%; overflow: hidden; } .custom-image-section .carousel { position: relative; overflow: hidden; width: 100%; } .custom-image-section .carousel-track { display: flex; width: 100%; transition: transform 0.5s ease; } .custom-image-section .carousel-slide { width: 100%; min-width: 100%; flex: 0 0 100%; display: block; } .custom-image-section .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(0, 0, 0, 0.45); color: #ffffff; cursor: pointer; z-index: 3; font-size: 28px; line-height: 44px; text-align: center; border-radius: 50%; font-family: Arial, sans-serif; user-select: none; -webkit-user-select: none; } .custom-image-section .carousel-btn:hover { background: rgba(0, 0, 0, 0.65); } .custom-image-section .carousel-btn.prev { left: 12px; } .custom-image-section .carousel-btn.next { right: 12px; } .custom-image-section .carousel-dots { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 3; line-height: 1; font-size: 0; text-align: center; width: auto; } .custom-image-section .carousel-dots span { display: inline-block; width: 12px; height: 12px; margin: 0 5px; background: rgba(255, 255, 255, 0.55); border-radius: 50%; cursor: pointer; vertical-align: middle; } .custom-image-section .carousel-dots span.active { background: rgba(255, 255, 255, 1); } @media (max-width: 767px) { .custom-image-section .carousel-btn { width: 38px; height: 38px; font-size: 24px; line-height: 38px; } .custom-image-section .carousel-btn.prev { left: 8px; } .custom-image-section .carousel-btn.next { right: 8px; } .custom-image-section .carousel-dots { bottom: 10px; } .custom-image-section .carousel-dots span { width: 10px; height: 10px; margin: 0 4px; } } ❮ ❯ function initCarousel(id, auto = false) { const c = document.getElementById(id); if (!c) return; const track = c.querySelector('.carousel-track'); const slides = c.querySelectorAll('.carousel-slide'); const dots = c.querySelectorAll('.carousel-dots span'); const prev = c.querySelector('.prev'); const next = c.querySelector('.next'); let i = 0; function update() { track.style.transform = 'translateX(-' + (i * 100) + '%)'; dots.forEach(d => d.classList.remove('active')); if (dots[i]) dots[i].classList.add('active'); } if (prev && next) { prev.onclick = () => { i = (i - 1 + slides.length) % slides.length; update(); }; next.onclick = () => { i = (i + 1) % slides.length; update(); }; } dots.forEach(dot => { dot.onclick = () => { i = parseInt(dot.dataset.slide); update(); }; }); if (auto) { setInterval(() => { i = (i + 1) % slides.length; update(); }, 4000); } update(); } initCarousel('carousel1'); initCarousel('carousel2', true); /* ===== TABLE STYLES ===== */ .specs-table { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0; border-radius: 12px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); } .specs-table table { font-family: 'Segoe UI', Arial, sans-serif; font-size: 14pt; width: 100%; border-collapse: collapse; background: #ffffff; border-radius: 12px; overflow: hidden; min-width: 320px; } /* Header */ .specs-table th { border: none; text-align: left; padding: 14px 12px; background: #1a2a3a; color: #ffffff; font-weight: 600; font-size: 13pt; letter-spacing: 0.3px; white-space: nowrap; } .specs-table th:first-child { padding-left: 18px; } /* Header links - only on product names (desktop) */ .specs-table th a { color: #ffffff; text-decoration: none; display: inline-block; padding: 4px 0; border-bottom: 2px solid transparent; transition: border-color 0.2s ease; } .specs-table th a:hover { border-bottom-color: #63b3ed; color: #bee3f8; } /* Cells */ .specs-table td { border-bottom: 1px solid #e8edf2; padding: 12px 12px; vertical-align: middle; font-size: 13pt; color: #2d3748; } .specs-table td:first-child { padding-left: 18px; font-weight: 600; color: #1a2a3a; background-color: #f8fafc; white-space: nowrap; } /* Row hover effect */ .specs-table tbody tr:hover td { background-color: #f0f4f9; } .specs-table tbody tr:hover td:first-child { background-color: #e8eef5; } /* Zebra striping for rows with merged cells */ .specs-table tbody tr:nth-child(even) td:not([colspan]) { background-color: #fafbfc; } .specs-table tbody tr:nth-child(even) td:first-child { background-color: #f5f7fa; } /* Cells with colspan (merged) */ .specs-table td[colspan] { background-color: #f8fafc !important; color: #1a2a3a; font-weight: 500; text-align: center; letter-spacing: 0.2px; } .specs-table tbody tr:hover td[colspan] { background-color: #edf2f7 !important; } /* Size headers in the first row */ .specs-table th:not(:first-child) { text-align: center; font-size: 12pt; font-weight: 500; background: #243b4a; } .specs-table th:first-child { background: #1a2a3a; font-size: 13pt; } /* ===== MOBILE RESPONSIVE ===== */ @media screen and (max-width: 767px) { .specs-table { border-radius: 0; box-shadow: none; margin: 10px 0; } .specs-table table, .specs-table tbody, .specs-table tr, .specs-table td, .specs-table th { display: block; width: 100%; } .specs-table tr { margin-bottom: 16px; border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); background: #ffffff; } .specs-table th { display: none; } .specs-table td { border: none !important; padding: 10px 14px !important; font-size: 11.5pt; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f2f5 !important; background: #ffffff !important; } .specs-table td:last-child { border-bottom: none !important; } .specs-table td:first-child { background: #f7fafc !important; font-weight: 700; font-size: 11.5pt; color: #1a2a3a; border-bottom: 2px solid #e2e8f0 !important; padding: 12px 14px !important; } /* Mobile product name links - these appear before each value */ .specs-table td .mobile-label { font-weight: 600; color: #4a5568; font-size: 10.5pt; white-space: nowrap; margin-right: 12px; } .specs-table td .mobile-label a { color: #2b6cb0; text-decoration: none; border-bottom: 2px solid #2b6cb0; padding: 2px 0; } .specs-table td .mobile-label a:hover { color: #1a365d; border-bottom-color: #1a365d; } /* The actual spec values (not links) */ .specs-table td .spec-value { font-weight: 500; color: #2d3748; text-align: right; flex: 1; } .specs-table td[colspan] { display: block; width: 100%; text-align: center; background: #f7fafc !important; font-weight: 600; color: #1a2a3a; padding: 12px 14px !important; border-bottom: 1px solid #e2e8f0 !important; } .specs-table td[colspan]:before { content: attr(data-label); font-weight: 700; display: block; text-align: left; color: #4a5568; font-size: 10.5pt; margin-bottom: 4px; } .specs-table tbody tr:hover td { background: #ffffff !important; } .specs-table tbody tr:hover td:first-child { background: #f7fafc !important; } .specs-table td:not(:first-child):not([colspan]) { font-weight: 500; color: #1a2a3a; flex-wrap: wrap; } /* Hide the default before content, we'll use our custom label */ .specs-table td:not(:first-child):not([colspan]):before { display: none; } } @media screen and (max-width: 480px) { .specs-table td { font-size: 10pt !important; padding: 8px 10px !important; } .specs-table td:first-child { font-size: 10.5pt !important; padding: 10px 10px !important; } .specs-table td .mobile-label { font-size: 9.5pt !important; } .specs-table td .mobile-label a { font-size: 9.5pt !important; } .specs-table td .spec-value { font-size: 10pt !important; } .specs-table tr { margin-bottom: 12px; border-radius: 8px; } } @media screen and (max-width: 1024px) and (min-width: 768px) { .specs-table { position: relative; } .specs-table::after { content: '↔ Scroll for more'; display: block; text-align: right; font-size: 10pt; color: #a0aec0; padding: 6px 4px 0 0; font-family: 'Segoe UI', Arial, sans-serif; } } Specification 288mm 550mm 850mm 1150mm 1449mm Power (Watt) 288mm: 4 550mm: 9 850mm: 13 1150mm: 18 1449mm: 22 Output (Lumens) 288mm: 480 550mm: 1,080 850mm: 1,560 1150mm: 2,160 1449mm: 2,640 Efficiency (lm/W) 288mm: 120 550mm: 120 850mm: 120 1150mm: 120 1449mm: 120 Colour Temperature 6500K — Cool White / Daylight Dimming 3-Step (100% / 50% / 20%) via standard switch Energy Class E Input Voltage 220–240V AC IP Rating IP20 — Indoor use only Material Polycarbonate — impact-resistant & lightweight CRI >80 — excellent colour rendering SDCM
More you might like
Related
Morris 3-Step Dimmable Under Counter Lights 850mm LED T5 Con
Related
Morris 3-Step Dimmable Under Cupboard Kitchen Lights 550mm L
Related
Morris 3-Step Dimmable Under Cabinet Kitchen Lights 1150mm L
Related