Einhell 18V 6" Compact Pruning Chain Saw
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap'); /* Main container styling - Compact vertical spacing */ .einhell-prod-wrapp er { 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); } /* SYNCED CYLINDER PUMP ANIMATION: Rhythmic mechanical motion applied to section headers. */ .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; animation: cylinderPump 7s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95); will-change: width, opacity; } /* Offset the second cylinder to be off-kilter (firing order effect) */ .einhell-prod-wrapper .specs-section-title::after { animation-delay: -3.5s; } @keyframes cylinderPump { 0%, 100% { width: 20px; opacity: 0.2; filter: brightness(0.9); } 50% { width: 120px; opacity: 1; filter: brightness(1.2); } } /* Slanted 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; } /* Typography */ .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; } /* Feature grid - 2x2 forced layout */ .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:hover { border-color: var(--ein-red); transform: translateY(-5px); box-shadow: 0 8px 24px rgba(227, 6, 19, 0.08); } .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; } /* Technical block container */ .einhell-prod-wrapper .pit-stop-container { position: relative; border: 2px dashed var(--ein-border); padding: 30px; margin-bottom: 10px; 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 */ .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: 25px 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 6" Compact Pruning Chain Saw PurePOWER Brushless. Precision Agility. Brushless Power Einhell PurePOWER motor offers high torque and extended runtimes with a 10-year motor warranty. Low Vibration Highly efficient motor design ensures ultra-low vibrations for fatigue-free pruning and trimming. Tool-Free Adjust Simple and intuitive system allows for quick, tool-free bar and chain changes for easy maintenance. Safety First Engineered with an integrated hand guard and a folding chain cover for maximum operator security. Runtime Performance Technical Specifications Voltage 18V PXC Motor Type Brushless Bar Length 6" (150mm) Chain Speed 189 IPS Chain Pitch 0.3" Chain Thickness 0.039" Product Weight 2.4 lbs Warranty 10Y (Motor) *Battery and charger sold separately. Recommended: 4.0 Ah PXC battery for optimal balance.
More you might like
Related
EINHELL - 18V CORDLESS COMPACT BLOWER
Related
Einhell 4350413 18V Compact Router 2-Base Kit
Related
18V Cordless Compact Blower - Einhell -3408005 (Tool Only)
Related