* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‚Segoe UI‘, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: #333;
background-color: #ffffff;
}
.product-container {
max-width: 1200px;
margin: 0 auto;
padding: 0;
}
.hero-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px 20px;
text-align: center;
border-radius: 0;
}
.hero-section h1 {
font-size: 32px;
margin-bottom: 15px;
font-weight: 700;
line-height: 1.3;
}
.hero-section .subtitle {
font-size: 18px;
opacity: 0.95;
margin-bottom: 10px;
}
.badge-container {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-top: 20px;
}
.badge {
background-color: rgba(255,255,255,0.2);
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
backdrop-filter: blur(10px);
}
.quick-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
padding: 30px 20px;
background-color: #f8f9fa;
}
.quick-feature {
background-color: white;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.quick-feature:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.quick-feature .icon {
font-size: 36px;
margin-bottom: 10px;
}
.quick-feature h3 {
font-size: 16px;
color: #667eea;
margin-bottom: 8px;
}
.quick-feature p {
font-size: 14px;
color: #666;
}
.description-section {
padding: 40px 20px;
background-color: white;
}
.description-section h2 {
font-size: 28px;
color: #2c3e50;
margin-bottom: 20px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.description-section h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}
.description-content {
max-width: 900px;
margin: 30px auto 0;
font-size: 16px;
line-height: 1.8;
}
.feature-highlights {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
padding: 40px 20px;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.highlight-card {
background-color: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
border-top: 4px solid #667eea;
}
.highlight-card h3 {
font-size: 19px;
color: #2c3e50;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}
.highlight-card h3::before {
content: „✦“;
color: #667eea;
font-size: 24px;
}
.highlight-card p {
font-size: 15px;
color: #555;
line-height: 1.7;
}
.specifications {
padding: 40px 20px;
background-color: white;
}
.specifications h2 {
font-size: 28px;
color: #2c3e50;
margin-bottom: 30px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.specifications h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}
.spec-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2px;
max-width: 1000px;
margin: 0 auto;
background-color: #e0e0e0;
border: 2px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
}
.spec-item {
background-color: white;
padding: 18px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.spec-label {
font-weight: 600;
color: #667eea;
}
.spec-value {
color: #555;
text-align: right;
}
.applications {
padding: 40px 20px;
background-color: #f8f9fa;
}
.applications h2 {
font-size: 28px;
color: #2c3e50;
margin-bottom: 30px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.applications h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}
.app-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
max-width: 1000px;
margin: 0 auto;
}
.app-item {
background-color: white;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.app-item .icon {
font-size: 40px;
margin-bottom: 10px;
}
.app-item h4 {
font-size: 16px;
color: #2c3e50;
margin-bottom: 8px;
}
.app-item p {
font-size: 14px;
color: #666;
}
.reviews {
padding: 40px 20px;
background-color: white;
}
.reviews h2 {
font-size: 28px;
color: #2c3e50;
margin-bottom: 30px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.reviews h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}
.review-container {
max-width: 900px;
margin: 0 auto;
}
.review-card {
background-color: #f8f9fa;
padding: 25px;
margin-bottom: 20px;
border-radius: 10px;
border-left: 5px solid #ffc107;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.review-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
flex-wrap: wrap;
gap: 10px;
}
.review-stars {
color: #ffc107;
font-size: 20px;
letter-spacing: 2px;
}
.review-author {
color: #667eea;
font-weight: 600;
font-size: 15px;
}
.review-text {
color: #444;
font-size: 15px;
line-height: 1.7;
font-style: italic;
}
.trust-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 40px 20px;
color: white;
text-align: center;
}
.trust-section h2 {
font-size: 26px;
margin-bottom: 20px;
}
.trust-badges {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 25px;
}
.trust-badge {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.trust-badge .icon {
font-size: 48px;
opacity: 0.9;
}
.trust-badge p {
font-size: 15px;
opacity: 0.95;
}
@media (max-width: 768px) {
.hero-section h1 {
font-size: 24px;
}
.hero-section .subtitle {
font-size: 16px;
}
.badge-container {
gap: 10px;
}
.badge {
font-size: 12px;
padding: 6px 12px;
}
.quick-features {
grid-template-columns: 1fr;
padding: 20px 15px;
}
.feature-highlights {
grid-template-columns: 1fr;
padding: 30px 15px;
}
.description-section,
.specifications,
.applications,
.reviews {
padding: 30px 15px;
}
.spec-grid {
grid-template-columns: 1fr;
}
.spec-item {
grid-template-columns: 1fr;
gap: 5px;
}
.spec-value {
text-align: left;
}
}
@media (max-width: 480px) {
.hero-section {
padding: 30px 15px;
}
.hero-section h1 {
font-size: 22px;
}
.description-section h2,
.specifications h2,
.applications h2,
.reviews h2 {
font-size: 24px;
}
}
Professionelle Aufblasbare Lackierkabine 3×2,5×2,5m
Mit 550W Gebläse & Hochleistungs-Luftfiltersystem
Großzügig
3 x 2,5 x 2,5 Meter
Kraftvoll
550W Gebläse
Transparent
Klare Sichtfenster
Robust
210D Oxford-Gewebe
Produktbeschreibung
Unsere professionelle aufblasbare Lackierkabine ist die perfekte Lösung für alle, die hochwertige Lackierarbeiten durchführen möchten. Mit großzügigen Abmessungen von 3 x 2,5 x 2,5 Metern bietet sie ausreichend Platz für PKW, Motorräder, Möbel und andere Werkstücke.
Das integrierte 550W Gebläse sorgt für eine konstante Luftzirkulation und schafft optimale Arbeitsbedingungen. Das hocheffiziente Luftfiltersystem entfernt zuverlässig Staub und Partikel aus der Luft, was zu perfekten, staubfreien Lackierungen führt. Die transparenten Sichtfenster ermöglichen jederzeit eine optimale Kontrolle des Arbeitsfortschritts.
Hergestellt aus robustem 210D Oxford-Gewebe, ist diese Lackierkabine wasserdicht, reißfest und UV-beständig. Das stabile Dreieckdach gewährleistet maximale Stabilität auch bei längerem Einsatz. Der schnelle und einfache Aufbau in wenigen Minuten macht die Kabine äußerst praktisch und zeitsparend.
Professionelles Filtersystem
Hochwertige Luftfilter entfernen Staub, Partikel und Sprühnebel zuverlässig. Sorgt für makellose Lackoberflächen ohne Einschlüsse und schützt gleichzeitig Ihre Gesundheit.
Optimale Größe
Mit 3 x 2,5 x 2,5 Metern bietet die Kabine ausreichend Platz für die meisten Fahrzeuge und größere Projekte. Ideal für professionelle Anwendungen und ambitionierte Heimwerker.
Leistungsstarkes Gebläse
Der 550W Motor garantiert konstante Luftzirkulation für gleichmäßige Arbeitsbedingungen. Effiziente Absaugung von Dämpfen und Aerosolen für sichere Lackierarbeiten.
Wetterunabhängig
Lackieren Sie unabhängig von Wind, Wetter und Temperatur. Die geschützte Umgebung ermöglicht ganzjährigen Einsatz im Innen- und Außenbereich.
Transparente Kontrolle
Klare Sichtfenster ermöglichen jederzeit den perfekten Blick auf Ihr Werkstück. Arbeiten Sie präzise und kontrolliert ohne die Kabine ständig öffnen zu müssen.
Mobil & Flexibel
Schneller Auf- und Abbau in wenigen Minuten. Kompakt zusammenfaltbar für einfachen Transport und platzsparende Lagerung zwischen den Einsätzen.
Technische Spezifikationen
Vielseitige Anwendungsmöglichkeiten
Autolackierung
PKW, Kleintransporter
Motorräder
Bikes, Roller, Quads
Möbellackierung
Schränke, Tische, Stühle
Spritzarbeiten
Airbrush, Feinlackierung
Fahrräder
E-Bikes, Mountainbikes
Restaurierung
Oldtimer, Klassiker
Kundenbewertungen
Perfekte Lackierkabine für meine Werkstatt! Aufbau war kinderleicht und das Ergebnis meiner Autolackierung ist makellos. Das Gebläse arbeitet konstant und zuverlässig. Absolute Kaufempfehlung!
Endlich kann ich meine Projekte professionell lackieren! Die Kabine ist stabil, die Filter funktionieren hervorragend und die Transparenz ermöglicht perfekte Arbeitskontrolle. Top Investition!
Genial für Motorrad-Lackierungen! Kompakter als erwartet im zusammengefalteten Zustand. Die Größe ist ideal und das Material wirkt sehr hochwertig. Bin absolut begeistert!
Beste Anschaffung für mein Hobby! Die Luftfilterung funktioniert einwandfrei, keine Staubpartikel mehr auf der Lackoberfläche. Preis-Leistung ist unschlagbar. Klare 5 Sterne!
Professionelles Equipment zum fairen Preis! Schneller Aufbau, robust verarbeitet und das Ergebnis meiner Lackierarbeiten hat sich deutlich verbessert. Würde ich jederzeit wieder kaufen!
Vertrauen Sie auf Qualität
Schneller Versand
Geprüfte Qualität
Sichere Zahlung
100% Zufriedenheit















Reviews
There are no reviews yet.