Solar Rechargeable LED Work Light
:root, .product-detail-container { /* Color System */ --primary: #F59E0B; /* High-vis Amber */ --primary-hover: #D97706; --bg-body: #111827; /* Dark Gray / Black */ --bg-card: #1F2 937; --text-main: #F9FAFB; --text-sub: #9CA3AF; --border-color: #374151; /* Shape System */ --radius-md: 8px; --radius-lg: 12px; /* Spacing System */ --spacing-base: clamp(2rem, 5vw, 4rem); /* Shadow System */ --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5); } /* Global Resets & Typography */ .product-detail-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-body); color: var(--text-main); overflow-wrap: break-word; word-break: break-word; line-height: 1.7; } .product-detail-container *, .product-detail-container *::before, .product-detail-container *::after { box-sizing: border-box; } /* Typography Scale */ .product-detail-container h1 { font-size: clamp(32px, 4vw, 44px); line-height: 1.2; margin: 0 0 1rem 0; font-weight: 800; color: var(--text-main); } .product-detail-container h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.3; margin: 0 0 1rem 0; font-weight: 700; color: var(--text-main); } .product-detail-container h3 { font-size: clamp(20px, 2.5vw, 24px); line-height: 1.4; margin: 0 0 0.75rem 0; font-weight: 600; color: var(--text-main); } .product-detail-container p { font-size: clamp(18px, 2vw, 20px); margin: 0 0 1.5rem 0; color: var(--text-sub); } .product-detail-container ul { margin: 0 0 1.5rem 0; padding-left: 1.5rem; } .product-detail-container li { font-size: clamp(18px, 2vw, 20px); color: var(--text-sub); margin-bottom: 0.5rem; } .product-detail-container .text-highlight { color: var(--primary); font-weight: 700; } .product-detail-container .sub-text { font-size: clamp(16px, 1.8vw, 18px); color: var(--text-sub); } /* Image Rules & Placeholders */ .pd-img-wrapper { width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); } .pd-img-content { width: 100%; height: auto; display: block; } .pd-img-placeholder { width: 100%; aspect-ratio: 4 / 3; background: #E5E7EB; border: 2px dashed #9CA3AF; display: flex; align-items: center; justify-content: center; color: #374151; font-size: 18px; font-weight: bold; } /* Non-clickable Badges */ .pd-badge-container { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; } .pd-badge { display: inline-block; padding: 8px 16px; background-color: rgba(245, 158, 11, 0.15); color: var(--primary); border: 1px solid var(--primary); border-radius: 50px; font-size: clamp(16px, 1.5vw, 18px); font-weight: 600; } /* Layout: Hero Section */ .pd-hero { text-align: center; padding: var(--spacing-base) 0; border-bottom: 1px solid var(--border-color); } .pd-hero-social-proof { display: inline-block; font-size: clamp(16px, 1.5vw, 18px); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; } /* Layout: Z-Pattern Feature Modules (Mobile Order Lock) */ .pd-features-section { padding: var(--spacing-base) 0; } .pd-feature-item { display: flex; flex-direction: column; /* Mobile Lock: Image top, Text bottom */ gap: var(--spacing-base); margin-bottom: var(--spacing-base); align-items: center; } .pd-feature-media { width: 100%; } .pd-feature-copy { width: 100%; } @media (min-width: 768px) { .pd-feature-item { flex-direction: row; /* Desktop row */ justify-content: space-between; } .pd-feature-item:nth-child(even) { flex-direction: row-reverse; /* Desktop Z-Pattern */ } .pd-feature-media { width: 48%; } .pd-feature-copy { width: 48%; } } /* Layout: Specifications Table (Mobile Card Lock) */ .pd-specs-section { padding: var(--spacing-base) 0; border-top: 1px solid var(--border-color); } .pd-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); } @media (max-width: 767px) { /* Mobile Card Based Table */ .pd-table, .pd-table thead, .pd-table tbody, .pd-table tr, .pd-table th, .pd-table td { display: block; width: 100%; } .pd-table thead { display: none; } .pd-table tr { margin-bottom: 16px; border-bottom: 4px solid var(--bg-body); } .pd-table td { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid var(--border-color); font-size: clamp(16px, 1.8vw, 18px); text-align: right; } .pd-table td:last-child { border-bottom: none; } .pd-table td::before { content: attr(data-label); font-weight: 700; color: var(--primary); text-align: left; width: 45%; flex-shrink: 0; padding-right: 12px; } } @media (min-width: 768px) { /* Desktop Table */ .pd-table th, .pd-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--border-color); font-size: clamp(18px, 2vw, 20px); } .pd-table th { background-color: var(--border-color); color: var(--text-main); font-weight: 700; } .pd-table tr:hover { background-color: rgba(55, 65, 81, 0.5); } } /* Layout: FAQ Section */ .pd-faq-section { padding: var(--spacing-base) 0; border-top: 1px solid var(--border-color); } .pd-faq-item { background: var(--bg-card); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-sm); } .pd-faq-question { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; } .pd-faq-q-icon { color: var(--primary); font-weight: 800; font-size: clamp(20px, 2.5vw, 24px); line-height: 1.4; } Trusted by 50,000+ Mechanics & Campers Light Up Your Toughest Tasks & Adventures 100W High Power | 2400mAh Power Bank | Solar & Type-C Rechargeable 336 High-Density LEDs IP66 Waterproof 180° Magnetic Stand This isn't just a light; it's a portable powerhouse built to keep your world bright, wherever life takes you. 5 Versatile Lighting Modes & Stepless Dimming Whether you're repairing a vehicle at midnight or signaling for help, the 336 powerful LEDs adapt to your needs instantly. White & Warm Light: Perfect for reading or detailed mechanical work. Red/Blue Flashing & SOS: Instantly catch attention during roadside emergencies. Stepless Dimming: Long press to smoothly adjust brightness from 100% down to 5%, optimizing battery life. Dual Charging Options & 2400mAh Power Bank Never worry about running out of power again. Harness the power of the sun during the day, or use the fast Type-C port for daily top-ups. Equipped with a massive 2400mAh rechargeable battery, it delivers 6–8 hours of uninterrupted bright illumination. Better yet, it doubles as an emergency power bank to keep your mobile phone charged when off the grid. Hands-Free Magnetic Design & 180° Stand Engineered for ultimate convenience in workspaces and campsites. The strong built-in magnets grip securely onto car hoods or metal beams. The 180° articulated folding stand and hidden hanging hooks allow you to place it securely on the ground or hang it overhead, preventing accidental falls while providing the perfect lighting angle. IP66 Waterproof & Rugged Durability Designed to conquer the harsh outdoors. Built with heavy-duty, weather-resistant materials, this work light easily withstands driving rain, intense heat, and thick dust. Whether you are fishing by the lake, camping under the stars, or enduring a sudden storm, your light source remains completely reliable. Technical Specifications Feature Specification Light Source 336 High-Density LEDs (100W Power) Battery Capacity 2400mAh Rechargeable Runtime 6–8 Hours (depending on brightness) Charging Methods Built-in Solar Panel + USB Type-C Durability Rating IP66 Waterproof & Dustproof Dimensions 21.0 × 17.0 × 5.5 cm (8.3 × 6.7 × 2.2 in) Weight 1.2 kg (2.65 lb) / 1200 g (42.3 oz) Frequently Asked Questions Q. Is the solar charging sufficient for primary daily use? Solar charging is highly efficient for emergency situations, outdoor top-ups, and trickling charge while camping. However, for a fast 0-100% daily charge, we highly recommend utilizing the included USB Type-C input for maximum speed. Q. Can the magnets securely hold the light on a moving vehicle? The built-in dual magnets are incredibly strong and designed to hold the light firmly to static metal surfaces like open car hoods or workshop beams. However, for safety reasons, we do not recommend leaving it attached to the exterior of a moving vehicle. Q. Will it damage my phone if I use it as a power bank? Not at all! The integrated 2400mAh battery features an intelligent output system that safely charges standard electronic devices (like smartphones and tablets) without overloading them. It’s your perfect emergency backup power source.
More you might like
Related
LED Rechargeable Solar Work Light
Related
Solar Rechargeable LED Work Light
Related
120W Solar Rechargeable Work Light, 144 LED 10000LM Led Work
Related