.revendeurs-motopass { font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif; max-width: 1200px; margin: 0 auto; padding: 20px; }
.search-box { background: linear-gradient(135deg, #9ACD32 0%, #556B2F 100%); padding: 30px; border-radius: 10px; margin-bottom: 30px; text-align: center; }
.search-box h2 { color: white; margin: 0 0 20px 0; font-size: 24px; }
.search-input { width: 100%; max-width: 400px; padding: 15px 20px; font-size: 16px; border: none; border-radius: 5px; outline: none; }
#map { height: 500px; border-radius: 10px; margin-bottom: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.no-revendeur { background: #fff3cd; padding: 40px; border-radius: 10px; text-align: center; margin-bottom: 30px; }
.no-revendeur h3 { color: #856404; margin: 0 0 15px 0; }
.cta-revendeur { background: #333; color: white; padding: 40px; border-radius: 10px; text-align: center; }
.cta-revendeur h3 { color: #9ACD32; margin: 0 0 15px 0; font-size: 24px; }
.cta-revendeur p { color: #ccc; margin-bottom: 20px; }
.btn-contact { display: inline-block; background: #9ACD32; color: #333; padding: 15px 40px; text-decoration: none; border-radius: 5px; font-weight: bold; }
.btn-shop { display: inline-block; background: #9ACD32; color: #333; padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; margin-top: 15px; }
Bestellen Sie direkt in unserem Online-Shop mit schneller Lieferung nach Deutschland.
Werden Sie Motopass-Handler und bieten Sie Ihren Kunden den patentierten Motorrad-Ausweishalter an.
var map = L.map(‘map’).setView([51.165691, 10.451526], 6);
L.tileLayer(‘https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png’, {attribution: ‘OpenStreetMap’}).addTo(map);
document.getElementById(‘searchPostcode’).addEventListener(‘keypress’, function(e) {
if (e.key === ‘Enter’) {
fetch(‘https://nominatim.openstreetmap.org/search?postalcode=’ + this.value + ‘&country=DE&format=json’)
.then(function(r) { return r.json(); })
.then(function(data) { if (data.length > 0) { map.setView([data[0].lat, data[0].lon], 12); } });
}
});