Fully Automatic Water Blaster
:root { /* Color System */ --primary: #FF5722; --primary-dark: #E64A19; --text-main: #111827; --text-sub: #4B5563; --bg-body: #ffffff; --bg-card: #F9FAFB; --bg-accent: #F3F4F6; --b order-color: #E5E7EB; /* Radius & Shadow */ --radius-md: 8px; --radius-lg: 12px; --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04); /* Typography (Large Scale) */ --font-h1: clamp(32px, 5vw, 44px); --font-h2: clamp(28px, 4vw, 36px); --font-h3: clamp(22px, 3vw, 28px); --font-body: clamp(18px, 2vw, 20px); --font-small: 16px; /* Spacing */ --spacing-section: clamp(3rem, 8vw, 6rem); --spacing-gap: clamp(2rem, 5vw, 4rem); } /* Base Reset & Typography */ .product-detail-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 5vw, 2rem); box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); background-color: var(--bg-body); overflow-wrap: break-word; word-break: break-word; line-height: 1.6; } .product-detail-container * { box-sizing: border-box; margin: 0; padding: 0; } h1, h2, h3 { font-weight: 800; line-height: 1.2; color: var(--text-main); } p { font-size: var(--font-body); color: var(--text-sub); line-height: 1.7; } /* Visual Badges (Non-interactive) */ .visual-badge { display: inline-block; background-color: var(--primary); color: #fff; font-size: var(--font-small); font-weight: 700; padding: 6px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; } /* Image Placeholders (Strict rules applied) */ .img-placeholder { width: 100%; height: auto; aspect-ratio: 4 / 3; background: var(--bg-accent); border: 2px dashed #D1D5DB; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--text-sub); font-weight: bold; } /* Hero Section */ .hero-section { text-align: center; margin-bottom: var(--spacing-section); padding-top: 2rem; } .hero-section h1 { font-size: var(--font-h1); margin-bottom: 1.5rem; letter-spacing: -0.02em; } .hero-section h2 { font-size: var(--font-h3); color: var(--text-sub); font-weight: 500; margin-bottom: 2rem; } .social-proof { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: var(--font-small); color: var(--text-main); font-weight: 600; background: var(--bg-card); padding: 12px 24px; border-radius: var(--radius-md); margin-bottom: 3rem; } .stars { color: #F59E0B; font-size: 20px; letter-spacing: 2px; } .hero-media { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); } /* Feature Z-Pattern Layout */ .features-section { display: flex; flex-direction: column; gap: var(--spacing-section); margin-bottom: var(--spacing-section); } .feature-item { display: flex; flex-direction: column; gap: var(--spacing-gap); align-items: center; } .feature-media { width: 100%; } .feature-copy { width: 100%; display: flex; flex-direction: column; justify-content: center; } .feature-copy h3 { font-size: var(--font-h2); margin-bottom: 1.5rem; } .feature-copy p { margin-bottom: 1.5rem; } /* Specs Table */ .specs-section { margin-bottom: var(--spacing-section); background: var(--bg-card); padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); } .specs-section h2 { font-size: var(--font-h2); margin-bottom: 2rem; text-align: center; } .specs-table-wrapper { width: 100%; } .specs-table { width: 100%; border-collapse: collapse; text-align: left; } .specs-table th, .specs-table td { padding: 18px 24px; font-size: var(--font-body); border-bottom: 1px solid var(--border-color); } .specs-table th { background-color: var(--bg-accent); font-weight: 700; color: var(--text-main); } /* FAQ Section */ .faq-section { margin-bottom: var(--spacing-section); } .faq-section h2 { font-size: var(--font-h2); margin-bottom: 2.5rem; text-align: center; } .faq-grid { display: flex; flex-direction: column; gap: 1.5rem; max-width: 800px; margin: 0 auto; } .faq-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 2rem; } .faq-card h3 { font-size: var(--font-h3); margin-bottom: 1rem; } /* ========================================= Desktop Enhancements (min-width: 768px) ========================================= */ @media (min-width: 768px) { .feature-item { flex-direction: row; } .feature-item:nth-child(even) { flex-direction: row-reverse; } .feature-media, .feature-copy { flex: 1; } .feature-copy { padding: 0 5%; } } /* ========================================= Mobile Overrides (max-width: 767px) ========================================= */ @media (max-width: 767px) { /* Force Spec Table to Cards */ .specs-table, .specs-table thead, .specs-table tbody, .specs-table tr, .specs-table th, .specs-table td { display: block; width: 100%; } .specs-table thead { display: none; } .specs-table tr { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 1rem; box-shadow: var(--shadow-sm); padding: 1rem; } .specs-table td { border-bottom: none; padding: 12px 0; display: flex; flex-direction: column; gap: 4px; } .specs-table td:not(:last-child) { border-bottom: 1px solid var(--bg-accent); } .specs-table td::before { content: attr(data-label); font-weight: 700; color: var(--text-main); font-size: var(--font-small); text-transform: uppercase; letter-spacing: 0.5px; } } Dominate the Outdoors The Ultimate Fully Automatic Water Blaster Experience continuous high-speed soaking power with zero manual pumping. ★★★★★ Trusted by 10,000+ Backyard Warriors Unstoppable Continuous Fire Take your water fights to the next level with our fully automatic electric firing system. There is no manual pumping required. Simply pull the trigger and unleash a continuous, high-speed burst of water that keeps your opponents on the run. Stay in the action longer and dominate the game with effortless, non-stop soaking power. Long-Range Precision Shooting Engineered for peak performance, this blaster delivers powerful, focused streams of water that reach impressive distances of up to 8 to 10 meters. Keep your distance while maintaining pinpoint accuracy. You can stay completely dry while ensuring your targets have nowhere to hide, giving you the ultimate tactical advantage. Tactical Design & Expandability Look like a pro and play like a champion. Designed with a sleek, tactical aesthetic, it features a foldable stock for tight spaces and an ergonomic grip for all-day comfort. Customize your loadout with optional sight attachments to perfect your aim. It is built tough for immersive outdoor play, easy to carry, and incredibly satisfying to hold. Technical Specifications Feature Specification Detail Firing Mode Fully Automatic Electric Motor Maximum Range 10 meters (32.8 ft) Total Length 55.0 cm (21.7 in) Weight (Empty) 850.0 g (30.0 oz) Material Construction High-Impact ABS Plastic Frequently Asked Questions Does it require manual pumping to shoot? Not at all! This blaster features a fully automatic electric motor. Just charge the battery, fill the tank, and pull the trigger for continuous, rapid-fire water blasts. Is the battery compartment waterproof? Yes, the battery compartment is designed with a secure, water-resistant seal to prevent damage during heavy splashes and typical water fights. However, we do not recommend fully submerging the entire blaster underwater. What age group is this suitable for? Thanks to its lightweight design and easy-to-pull trigger, it is perfect for kids ages 8 and up, as well as teenagers and adults looking for serious outdoor summer fun.
More you might like
Related
Fully Automatic Water Blaster
Related
Fully Automatic Water Blaster
Related
Fully Automatic Water Blaster
Related