Bohr-zu-Schleifer-Adapter-Kit Karnz
/* === 1. Design System & CSS Variables === */ .product-detail-container { --primary: #E65100; /* Industrial Amber/Orange */ --bg-body: #FFFFFF; --bg-card: #F4F5F7; --text-main: #1 11827; --text-sub: #4B5563; --border-color: #E5E7EB; --radius-md: 8px; --radius-lg: 12px; --shadow-sm: 0 2px 4px rgba(0,0,0,0.05); --shadow-lg: 0 10px 20px -5px rgba(0,0,0,0.1); --space-section: clamp(2.5rem, 6vw, 5rem); max-width: 1200px; margin: 0 auto; padding: 0 5%; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); box-sizing: border-box; background-color: var(--bg-body); overflow: hidden; /* Prevent horizontal spill */ } .product-detail-container *, .product-detail-container *::before, .product-detail-container *::after { box-sizing: border-box; overflow-wrap: break-word; word-break: break-word; } /* === 2. Typography System (Large Types) === */ .product-detail-container h1 { font-size: clamp(32px, 5vw, 44px); font-weight: 800; line-height: 1.2; margin: 0 0 1rem 0; color: var(--text-main); letter-spacing: -0.02em; } .product-detail-container h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; line-height: 1.3; margin: 0 0 1rem 0; color: var(--text-main); } .product-detail-container h3 { font-size: clamp(20px, 3vw, 24px); font-weight: 600; line-height: 1.4; margin: 0 0 0.75rem 0; color: var(--text-main); } .product-detail-container p { font-size: clamp(18px, 2.5vw, 20px); line-height: 1.7; margin: 0 0 1.5rem 0; color: var(--text-sub); } .product-detail-container .subtitle { font-size: clamp(18px, 2.5vw, 22px); color: var(--text-sub); font-weight: 500; margin-bottom: 2rem; } .product-detail-container .text-highlight { color: var(--primary); font-weight: 700; } /* === 3. Image & Media Protocol === */ /* Fluid Image Style (Option A) */ .product-detail-container .media-fluid { width: 100%; height: auto; display: block; border-radius: var(--radius-md); background: var(--bg-card); /* Placeholder background */ } .product-detail-container .image-placeholder { width: 100%; aspect-ratio: 4/3; background-color: var(--bg-card); border: 2px dashed var(--border-color); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-sub); font-weight: 600; text-align: center; padding: 1rem; } /* === 4. Layout & Mobile Ordering Lock === */ .pd-section { margin-bottom: var(--space-section); padding-top: 1rem; } /* Hero Section */ .hero-section { text-align: center; margin-top: 2rem; } .visual-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; } .static-badge { background: var(--bg-card); color: var(--text-main); padding: 8px 16px; border-radius: 50px; font-size: 16px; font-weight: 600; border: 1px solid var(--border-color); display: inline-flex; align-items: center; gap: 8px; } /* Feature List Structure */ .feature-list { display: flex; flex-direction: column; gap: var(--space-section); } .feature-item { display: flex; flex-direction: column; /* Mobile first: Image top, Text bottom */ gap: 2rem; align-items: center; } .feature-media, .feature-copy { width: 100%; } .feature-copy ul { padding-left: 1.5rem; margin-bottom: 1.5rem; } .feature-copy li { font-size: clamp(18px, 2.5vw, 20px); line-height: 1.7; color: var(--text-sub); margin-bottom: 0.75rem; } /* Desktop Enhancement (Z-Pattern) */ @media (min-width: 768px) { .feature-item { flex-direction: row; gap: 5%; } .feature-item:nth-child(even) { flex-direction: row-reverse; } .feature-media, .feature-copy { flex: 1; width: 50%; } .hero-section { margin-top: 4rem; } } /* === 5. Specs Table (Mobile Card Lock) === */ .specs-container { background: var(--bg-card); border-radius: var(--radius-lg); padding: clamp(20px, 4vw, 40px); box-shadow: var(--shadow-sm); } .specs-table { width: 100%; border-collapse: collapse; text-align: left; } /* Desktop Table View */ @media (min-width: 768px) { .specs-table th, .specs-table td { padding: 16px 24px; border-bottom: 1px solid var(--border-color); font-size: 18px; } .specs-table th { background-color: transparent; font-weight: 700; color: var(--text-main); width: 40%; } .specs-table tr:last-child td, .specs-table tr:last-child th { border-bottom: none; } } /* Mobile Card View (CRITICAL) */ @media (max-width: 767px) { .specs-table, .specs-table tbody, .specs-table tr, .specs-table th, .specs-table td { display: block; width: 100%; } .specs-table thead { display: none; /* Hide headers visually */ } .specs-table tr { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 1rem; padding: 1rem; box-shadow: var(--shadow-sm); } .specs-table td { display: flex; flex-direction: column; padding: 8px 0; font-size: 18px; border-bottom: 1px dashed var(--border-color); } .specs-table td:last-child { border-bottom: none; padding-bottom: 0; } .specs-table td::before { content: attr(data-label); font-weight: 700; color: var(--text-main); margin-bottom: 4px; font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; } } /* === 6. FAQ Section === */ .faq-item { border-bottom: 1px solid var(--border-color); padding: 1.5rem 0; } .faq-item:last-child { border-bottom: none; } .faq-question { font-size: clamp(20px, 3vw, 22px); font-weight: 700; color: var(--text-main); margin-bottom: 1rem; position: relative; padding-left: 1.5rem; } .faq-question::before { content: "Q."; position: absolute; left: 0; color: var(--primary); } .faq-answer { font-size: clamp(18px, 2.5vw, 20px); color: var(--text-sub); padding-left: 1.5rem; line-height: 1.7; } /* Safety Warning Box */ .safety-box { background-color: #FFF3E0; border-left: 6px solid var(--primary); padding: 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-top: 2rem; } .safety-box h3 { color: #E65100; margin-top: 0; } .safety-box p { margin-bottom: 0; color: #E65100; font-weight: 500; } ⚙️ Präzisionsengineering 🛡️ Schwerlaststahl Verwandeln Sie Ihren Bohrer in eine leistungsstarke Schleifmaschine Komplettes, multifunktionales Umrüstungskit in Sekunden. Breite universelle Kompatibilität Investieren Sie nicht in teure eigenständige Schleifmaschinen. Dieser Adapter ist perfekt gestaltet, um elektrische Bohrer mit 10–13 mm Spannzeugen zu passen. Präzise Gewinde minimieren Vibrationen. Sichert eine hochstabile Rotation während des Schleifens und Polierens. Verriegelt sicher, um Wackeln unter Last zu verhindern. Für Schwerlastarbeiten gebaut Gefertigt aus robustem Stahl und Industrielegierung, bietet diese Umrüstwelle unvergleichliche Stabilität und Stärke bei Hochgeschwindigkeitsanwendungen. Resistent gegen extreme Abnutzung. Hält hohem Druck beim Schneiden von dickem Holz oder Schleifen von Metall stand. Entwickelt für langfristige professionelle oder Heimwerker-Leistung. Instant & Einfache Installation Keine komplizierten Werkzeuge erforderlich. Verwandeln Sie Ihren Bohrer und legen Sie sofort los. Attach the conversion shaft directly into your drill chuck. Platzieren Sie die Druckplatten und Ihre gewählte Polier-/Schneidscheibe. Schnell anziehen mit dem im Lieferumfang enthaltenen maßgeschneiderten Schraubenschlüssel. Perfekt zum Schneiden von Holz, Polieren von Metall, Schleifen von Jade und Entfernen von Rost. ⚠️ Kritische Sicherheits- & Betriebshinweise Bitte seien Sie äußerst vorsichtig bei der Installation. Dieser Adapter ist nur für Uhrzeigersinnbetrieb ausgelegt. Stellen Sie sicher, dass die Verbindungen mit dem im Lieferumfang enthaltenen Schraubenschlüssel vor dem Einschalten fest angezogen sind. Beim Schneiden oder Schleifen ist das Tragen von Schutzausrüstung (Schutzbrille, Handschuhe) unbedingt erforderlich, um einen sicheren Betrieb zu gewährleisten. Technische Spezifikationen Entwickelt für maximale Haltbarkeit und Kompatibilität. Eigenschaft Spezifikation Spannzangenkompatibilität 10 mm - 13 mm (0,4 in - 0,5 in) Materialkonstruktion Hochkohlenstoffstahl & Industrielegierung Adaptergewicht 145 g (5,1 oz) Betriebsrichtung Nur Rechtslauf Lieferumfang Umrüstwelle, Schraubenschlüssel, Innen-/Außengewinde Häufig gestellte Fragen Passt das zu meinem Standard-Akku-Bohrer? Ja. Sofern Ihr elektrischer oder akkubetriebener Bohrer eine Standard-Spannzange zwischen 10 mm und 13 mm hat, wird dieser Adapter sicher verriegelt und kann sofort verwendet werden. Vibriert es stark beim Schneiden von Metall? Unser präzise Gewindedesign minimiert die Standardbetriebsvibration. Da es aus solidem Stahl gefertigt ist, behält es während Hochgeschwindigkeitstouren eine starre Stabilität, im Gegensatz zu billigeren Aluminiumalternativen. Muss ich spezielle Schleifscheiben kaufen? Es sind keine speziellen Scheiben erforderlich. Es passt zu Standard-Winkelschleifscheiben. Wählen Sie einfach die richtige Scheibe für Ihre Aufgabe – sei es eine Holzschneidescheibe, eine Metallschleifscheibe oder eine Rostentferner-Scheibe.
More you might like
Related
Bohr-zu-Schleifgerät Adapterset
Related
SägePro - Adapter für Bohrmaschinen zur Holzverarbeitung
Related
Adapterset für Bohrmaschine zum Schleifen - FlexiGrind
Related