Einhell 18V 348PSI Pressure Washer
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap'); /* Main container styling */ .einhell-prod-wrapper { font-family: 'Inter', -apple-system, sans-serif; background-color: transparent !important; color: #1a1a1a !important; max-width: 1000px; margin: 0 auto; padding: 5px 15px 10px; line-height: 1.5; box-sizing: border-box; position: relative; overflow: hidden; } .einhell-prod-wrapper * { box-sizing: border-box; } /* Brand design tokens */ .einhell-prod-wrapper { --ein-red: #e30613; --ein-dark: #1a1a1a; --ein-muted: #64748b; --ein-light-bg: rgba(0, 0, 0, 0.03); --ein-border: rgba(0, 0, 0, 0.1); } /* REFINED CYLINDER PUMP ANIMATION: - Longer line widths (20px to 120px) - Smoother turnaround (Cubic Bezier) - Off-kilter timing for tandem firing effect */ .einhell-prod-wrapper .section-title { position: relative; color: var(--ein-dark); font-weight: 800; text-transform: uppercase; font-size: 16px; margin-bottom: 22px; display: inline-block; } .einhell-prod-wrapper .section-title::after { content: ''; position: absolute; bottom: -6px; left: 0; height: 3px; background: var(--ein-red); border-radius: 2px; /* Using a softer cubic-bezier to prevent choppiness at the ends */ animation: cylinderPump 7s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95); will-change: width, opacity; } /* Specifically offset the second cylinder to be off-kilter */ .einhell-prod-wrapper .pit-stop-container .section-title::after { animation-delay: -3.5s; /* Negative delay starts it halfway through the 7s cycle */ } @keyframes cylinderPump { 0%, 100% { width: 20px; opacity: 0.2; filter: brightness(0.9); } 50% { width: 120px; opacity: 1; filter: brightness(1.2); } } /* Angled performance badge */ .einhell-prod-wrapper .perf-badge { display: inline-flex; align-items: center; background: var(--ein-red); padding: 5px 15px; border-radius: 3px; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; transform: skewX(-10deg); margin-bottom: 25px; white-space: nowrap; box-shadow: 4px 4px 0px rgba(0,0,0,0.05); } .einhell-prod-wrapper .perf-badge span { transform: skewX(10deg); color: #ffffff; } /* Speed-italicized headers */ .einhell-prod-wrapper h2 { font-size: 32px; font-weight: 900; text-transform: uppercase; margin: 0 0 10px 0; letter-spacing: -1px; line-height: 1.1; color: var(--ein-dark); font-style: italic; } .einhell-prod-wrapper .sub-header { font-size: 18px; color: #475569; margin-bottom: 30px; font-weight: 500; } .einhell-prod-wrapper .highlight { color: var(--ein-red); font-weight: 700; } /* Responsive 2x2 grid */ .einhell-prod-wrapper .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; } .einhell-prod-wrapper .feature-card { background: #ffffff; border: 1px solid var(--ein-border); padding: 24px; border-radius: 24px 0 24px 0; /* Apex Clipping */ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 12px rgba(0,0,0,0.02); position: relative; } .einhell-prod-wrapper .feature-card strong { display: block; font-size: 14px; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; color: var(--ein-dark); } .einhell-prod-wrapper .feature-card p { font-size: 13px; color: var(--ein-muted); margin: 0; line-height: 1.4; } /* Pit Stop Border Block */ .einhell-prod-wrapper .pit-stop-container { position: relative; border: 2px dashed var(--ein-border); padding: 30px; margin-bottom: 40px; background: #ffffff; border-radius: 32px 0 32px 0; } /* Runtime Section */ .einhell-prod-wrapper .runtime-container { margin-bottom: 40px; } .einhell-prod-wrapper .runtime-img-wrap { background: #ffffff; border: 1px solid var(--ein-border); padding: 15px; overflow: hidden; border-radius: 20px 0 20px 0; } .einhell-prod-wrapper .runtime-img-wrap img { max-width: 100%; height: auto; display: block; margin: 0 auto; } /* Persistent 2-column specs across all viewports */ .einhell-prod-wrapper .specs-grid { display: grid; grid-template-columns: 1fr 1fr !important; gap: 12px 40px; } .einhell-prod-wrapper .spec-item { display: flex; flex-direction: column; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 6px 0; } .einhell-prod-wrapper .spec-label { font-size: 11px; text-transform: uppercase; color: var(--ein-muted); font-weight: 600; } .einhell-prod-wrapper .spec-value { font-weight: 700; color: var(--ein-dark); } /* Animated Divider */ .einhell-prod-wrapper .ein-hr { position: relative !important; width: 140px !important; height: 2px !important; background-color: rgba(0, 0, 0, 0.1) !important; margin: 20px auto 5px !important; overflow: hidden !important; display: block !important; } .einhell-prod-wrapper .ein-shimmer { position: absolute !important; top: 0 !important; left: 0 !important; width: 50% !important; height: 100% !important; background: linear-gradient(90deg, transparent, var(--ein-red), transparent) !important; animation: ein_glide 2s infinite linear !important; -webkit-animation: ein_glide 2s infinite linear !important; will-change: transform; } @keyframes ein_glide { 0% { transform: translateX(-150%); } 100% { transform: translateX(250%); } } /* Mobile Adjustments */ @media (max-width: 600px) { .einhell-prod-wrapper h2 { font-size: 26px; } .einhell-prod-wrapper .feature-grid { gap: 12px; } .einhell-prod-wrapper .feature-card { padding: 15px; } .einhell-prod-wrapper .feature-card strong { font-size: 12px; } .einhell-prod-wrapper .feature-card p { font-size: 11px; line-height: 1.3; } .einhell-prod-wrapper { padding-top: 5px; } .einhell-prod-wrapper .section-title { font-size: 14px; } @keyframes cylinderPump { 0%, 100% { width: 15px; opacity: 0.2; } 50% { width: 90px; opacity: 1; } } } German Engineering | NASCAR Performance 18V 348 PSI Pressure Washer Handy. Cordless. Precision Cleaning. Water Anywhere 16 ft. suction hose extracts water from buckets, lakes, or pools. No tap required for remote projects. Adjustable Spray Integrated 4-jet nozzle and pressure regulation for everything from heavy cleaning to light watering. Pump Protection Equipped with a water filter and battery protector to safeguard internal components against debris. Complete Kit Includes spray lance extension, detergent bottle, and a dedicated storage bag for all accessories. Runtime Performance *Runtime depends on the battery capacity (Ah) and chosen speed mode. Technical Specifications Max. Pressure 348 PSI Max. Flow Rate 1.0 GPM Max. Water Temp 104°F (40°C) Inlet Pressure 72.5 PSI Product Weight 4.0 lbs Battery System Power X-Change 18V *Battery and charger sold separately. Recommended: 2.5 Ah or 4.0 Ah PXC battery for optimal balance.
More you might like
Related
Ozito PXC 18V 2.5Ah 348PSI Portable Pressure Washer Kit PXPW
Related
Einhell 18V Pressure Washer- No Battery
Related
Einhell Cordless X-Change 18V Pressure Sprayer 15L
Related