Ortlieb Logo

ORTLIEB steht für wasserdichte Taschen, Rucksäcke und Fahrradtaschen made for movement – robust, funktional und gemacht für Alltag, Touren und Abenteuer bei jedem Wetter.

(function(){ var carousel=document.getElementById('ort2-carousel'); if(!carousel) return; var STYLE_ID='ort2-mobile-style'; if(!document.getElementById(STYLE_ID)){ var css=[ '@media(max-width:768px){', '.ort2-slide{flex:0 0 96% !important;min-width:96% !important;padding:0 6px !important;cursor:pointer;}', '.ort2-slide > div > div:last-of-type{padding:0px 10px 30px 20px !important;}', '.ort2-tag{font-size:9px !important;letter-spacing:.08em !important;margin-bottom:3px !important;}', '.ort2-title{line-height:1.1 !important;margin-bottom:3px !important;}', '.ort2-desc{display:none !important;}', '.ort2-cta{font-size:11px !important;padding:6px 12px !important;margin-top:6px !important;}', '}', '@media(min-width:769px) and (max-width:1600px){', '#ort2-carousel{max-width:480px !important;}', '.ort2-title{font-size:clamp(15px,2vw,26px) !important;}', '}' ].join(''); var s=document.createElement('style'); s.id=STYLE_ID; s.textContent=css; document.head.appendChild(s); } var track=document.getElementById('ort2-track'); var dotsWrap=document.getElementById('ort2-dots'); var progress=document.getElementById('ort2-progress'); var slides=Array.prototype.slice.call(carousel.querySelectorAll('.ort2-slide')); var total=slides.length, current=0, autoTimer, DURATION=5000, dots=[]; var dragStart=0, dragDelta=0, dragging=false, dragT=0, wasDragged=false, lockAxis=null; slides.forEach(function(slide){ var img=slide.querySelector('img'); if(img) img.style.transition='transform 0.08s linear'; var inner=slide.querySelector('div'); if(inner) inner.style.webkitTransform=inner.style.webkitTransform || 'translateZ(0)'; }); track.style.touchAction='pan-y'; function isMobile(){ return window.innerWidth<=768; } function getOffset(idx){ if(isMobile()){ var slideW=slides[0].offsetWidth; var peekW=(carousel.offsetWidth-slideW)/2; if(idx===0) return 0; if(idx===total-1) return track.scrollWidth-carousel.offsetWidth; return idx*slideW-peekW; } return idx*carousel.offsetWidth; } for(var i = 0; i < total; i++){ var d=document.createElement('div'); d.setAttribute('data-idx',i); d.style.cssText='width:6px;height:6px;border-radius:3px;background:rgba(255,255,255,.35);cursor:pointer;transition:all .4s ease;'; dotsWrap.appendChild(d); dots.push(d); } function updateDots(){ dots.forEach(function(d,i){ d.style.width=i===current?'22px':'6px'; d.style.background=i===current?'#fff':'rgba(255,255,255,.35)'; }); } function revealContent(idx){ ['ort2-tag','ort2-title','ort2-desc','ort2-cta'].forEach(function(cls){ var el=slides[idx].querySelector('.'+cls); if(!el) return; el.style.opacity='1'; el.style.transform='none'; }); } function hideContent(idx){ ['ort2-tag','ort2-title','ort2-desc','ort2-cta'].forEach(function(cls){ var el=slides[idx].querySelector('.'+cls); if(!el) return; el.style.opacity='0'; el.style.transform='translateY(10px)'; }); } var isIOSSafari=/iP(ad|hone|od)/.test(navigator.userAgent) && /WebKit/i.test(navigator.userAgent) && !/CriOS|FxiOS|EdgiOS/i.test(navigator.userAgent); function applyMobilePeek(){ var section=carousel.closest('section') || carousel.parentElement; slides.forEach(function(slide,i){ var inner=slide.querySelector('div'); if(!inner) return; if(isMobile()){ section.style.overflow='visible'; carousel.style.overflow='visible'; carousel.style.padding='0'; inner.style.transition=isIOSSafari?'opacity .25s ease':'transform .65s cubic-bezier(.25,.8,.25,1), opacity .65s ease'; inner.style.transform='none'; inner.style.opacity=i===current?'1':(isIOSSafari?'0.82':'0.45'); } else { section.style.overflow=''; carousel.style.overflow=''; carousel.style.padding=''; inner.style.transform=''; inner.style.opacity=''; inner.style.transition=''; } }); } function applyParallax(offset){ if(isMobile() || isIOSSafari) return; slides.forEach(function(slide,i){ var img=slide.querySelector('img'); if(!img) return; var raw=(i-current+offset)*12; var clamped=Math.max(-13,Math.min(13,raw)); img.style.transform='scale(1.1) translateX('+clamped+'px)'; }); } function goTo(idx){ hideContent(current); current=((idx%total)+total)%total; track.style.transition='transform .65s cubic-bezier(.77,0,.175,1)'; requestAnimationFrame(function(){ requestAnimationFrame(function(){ track.style.transform='translateX(-'+getOffset(current)+'px)'; }); }); updateDots(); applyMobilePeek(); setTimeout(function(){ revealContent(current); },120); startProgress(); } function startProgress(){ clearTimeout(autoTimer); progress.style.transition='none'; progress.style.width='0%'; setTimeout(function(){ progress.style.transition='width '+DURATION+'ms linear'; progress.style.width='100%'; },30); autoTimer=setTimeout(function(){ goTo(current+1); },DURATION); } carousel.addEventListener('mousedown',function(e){ if(e.button!==0) return; dragging=true; dragStart=e.clientX; dragDelta=0; dragT=Date.now(); wasDragged=false; track.style.transition='none'; clearTimeout(autoTimer); slides.forEach(function(s){ s.style.cursor='grabbing'; }); }); document.addEventListener('mousemove',function(e){ if(!dragging) return; dragDelta=e.clientX-dragStart; track.style.transform='translateX('+(-getOffset(current)+dragDelta)+'px)'; applyParallax(-dragDelta/carousel.offsetWidth); }); document.addEventListener('mouseup',function(){ if(!dragging) return; dragging=false; slides.forEach(function(s){ s.style.cursor='grab'; }); var vel=Math.abs(dragDelta)/(Date.now()-dragT); wasDragged=Math.abs(dragDelta)>5; if(Math.abs(dragDelta)>60 || vel>0.45){ goTo(dragDelta<0?current+1:current-1); } else { track.style.transition='transform .45s cubic-bezier(.77,0,.175,1)'; track.style.transform='translateX(-'+getOffset(current)+'px)'; applyMobilePeek(); startProgress(); } dragDelta=0; }); var touchStartY=0; carousel.addEventListener('touchstart',function(e){ dragStart=e.touches[0].clientX; touchStartY=e.touches[0].clientY; dragDelta=0; dragging=true; dragT=Date.now(); wasDragged=false; lockAxis=null; track.style.transition='none'; clearTimeout(autoTimer); },{passive:false}); carousel.addEventListener('touchmove',function(e){ if(!dragging) return; var dx=e.touches[0].clientX-dragStart; var dy=e.touches[0].clientY-touchStartY; if(!lockAxis && (Math.abs(dx)>4 || Math.abs(dy)>4)) lockAxis=Math.abs(dx)>=Math.abs(dy)?'x':'y'; if(lockAxis==='x'){ e.preventDefault(); dragDelta=dx; track.style.transform='translateX('+(-getOffset(current)+dragDelta)+'px)'; applyParallax(-dragDelta/carousel.offsetWidth); } },{passive:false}); carousel.addEventListener('touchend',function(){ if(!dragging) return; dragging=false; var vel=Math.abs(dragDelta)/(Date.now()-dragT); wasDragged=Math.abs(dragDelta)>5; if(lockAxis==='x' && (Math.abs(dragDelta)>55 || vel>0.45)){ goTo(dragDelta<0?current+1:current-1); } else { track.style.transition='transform .45s cubic-bezier(.77,0,.175,1)'; track.style.transform='translateX(-'+getOffset(current)+'px)'; applyMobilePeek(); startProgress(); } dragDelta=0; lockAxis=null; }); dotsWrap.addEventListener('click',function(e){ var d=e.target.closest('[data-idx]'); if(d) goTo(parseInt(d.getAttribute('data-idx'),10)); }); window.addEventListener('resize',function(){ track.style.transition='none'; track.style.transform='translateX(-'+getOffset(current)+'px)'; applyMobilePeek(); }); slides.forEach(function(slide){ slide.addEventListener('click',function(){ if(wasDragged) return; var link=slide.querySelector('.ort2-cta'); if(link) window.location.href=link.href; }); }); updateDots(); revealContent(0); applyMobilePeek(); startProgress(); })();

ORTLIEB

Marke
478
Preis
Farben
209
78
44
43
30
23
20
20
20
15
12
7
5
4
1
Geschlecht
5
1
472
29
Produkttyp
11
11
250
21
2
2
3
58
41
114
1
4
9
9
5
10
SALE
1
1
1
1
1
478 Artikel
Ortlieb Logo

ORTLIEB Taschen online kaufen

ORTLIEB steht für wasserdichte Fahrradtaschen, Rucksäcke und Outdoor-Begleiter, die für Alltag, Reise und Abenteuer gemacht sind. Bei modeherz findest du robuste Taschen mit funktionalem Design, langlebiger Verarbeitung und dem typischen ORTLIEB Anspruch: zuverlässig, praktisch und bereit für jedes Wetter.

Passt zu deinem Alltag

Beliebte Farben

ORTLIEB Taschen gibt es von klassischen Farben bis zu sichtbaren Outdoor-Akzenten. Klicke direkt auf deine Lieblingsfarbe:

Markenstory

Häufige Fragen

Ähnliche Marken entdecken

Weitere Outdoor- und Bike-Marken:

Weiter stöbern

Entdecke die Kollektion von ORTLIEB bei modeherz – wasserdichte Taschen, Fahrradtaschen und Rucksäcke für Alltag, Touren und Outdoor-Abenteuer.

(function(){ function initStack(opts){ var cards = opts.cards; var total = cards.length; var cur = 0; var busy = false; var card = document.getElementById(opts.card); var eyebrow = document.getElementById(opts.eyebrow); var title = document.getElementById(opts.title); var body = document.getElementById(opts.body); var badge = document.getElementById(opts.badge); var dotsW = document.getElementById(opts.dots); var btnNext = opts.next ? document.getElementById(opts.next) : null; var btnPrev = opts.prev ? document.getElementById(opts.prev) : null; var ctaLink = opts.link ? document.getElementById(opts.link) : null; if(!card) return; var dots = []; for(var i = 0; i < total; i++){ var d = document.createElement('div'); d.style.cssText = 'width:6px;height:6px;border-radius:50%;background:#ccc;cursor:pointer;transition:width .25s,background .25s,border-radius .25s;'; (function(idx){ d.addEventListener('click', function(){ goTo(idx); }); })(i); dotsW.appendChild(d); dots.push(d); } function updateDots(){ dots.forEach(function(d, i){ if(i === cur){ d.style.width = '18px'; d.style.borderRadius = '999px'; d.style.background = '#111'; } else { d.style.width = '6px'; d.style.borderRadius = '50%'; d.style.background = '#ccc'; } }); badge.textContent = (cur + 1) + ' / ' + total; } function render(){ var c = cards[cur]; eyebrow.textContent = c.eyebrow; title.textContent = c.title; body.textContent = c.body; if(ctaLink && c.link){ ctaLink.href = c.link; ctaLink.textContent = c.linkLabel || 'Kategorie ansehen →'; } updateDots(); } function goTo(idx){ if(busy) return; idx = ((idx % total) + total) % total; if(idx === cur) return; busy = true; card.style.opacity = '0'; setTimeout(function(){ cur = idx; render(); card.style.opacity = '1'; busy = false; }, 200); } if(btnNext){ btnNext.addEventListener('click', function(){ goTo(cur + 1); }); } if(btnPrev){ btnPrev.addEventListener('click', function(){ goTo(cur - 1); }); } var touchStartX = 0; card.addEventListener('touchstart', function(e){ touchStartX = e.touches[0].clientX; }, {passive:true}); card.addEventListener('touchend', function(e){ var dx = e.changedTouches[0].clientX - touchStartX; if(Math.abs(dx) > 44){ goTo(dx < 0 ? cur + 1 : cur - 1); } }, {passive:true}); var mouseStartX = 0; var dragging = false; card.addEventListener('mousedown', function(e){ if(e.target.tagName === 'BUTTON' || e.target.tagName === 'A') return; mouseStartX = e.clientX; dragging = true; card.style.cursor = 'grabbing'; }); document.addEventListener('mouseup', function(e){ if(!dragging) return; dragging = false; card.style.cursor = 'grab'; var dx = e.clientX - mouseStartX; if(Math.abs(dx) > 44){ goTo(dx < 0 ? cur + 1 : cur - 1); } }); render(); } initStack({ card:'ort-story-card', eyebrow:'ort-st-eyebrow', title:'ort-st-title', body:'ort-st-body', badge:'ort-st-badge', dots:'ort-st-dots', next:'ort-st-next', prev:'ort-st-prev', cards:[ { eyebrow:'Herkunft', title:'ORTLIEB aus Franken', body:'ORTLIEB wurde 1982 gegründet und ist eng mit dem Thema wasserdichte Taschen verbunden. Die Marke kommt aus Deutschland und fertigt ihre wasserdichten Produkte am Standort Heilsbronn in Franken.' }, { eyebrow:'Idee', title:'Geboren aus Regen und Abenteuerlust', body:'Der Ursprung der Marke liegt in einer einfachen, aber starken Idee: Ausrüstung sollte auch bei schlechtem Wetter zuverlässig trocken halten. Daraus entstanden robuste Taschenlösungen für Radreisen, Outdoor-Touren und den Alltag.' }, { eyebrow:'Technik', title:'Wasserdicht durch geschweißte Nähte', body:'ORTLIEB setzt auf funktionale Materialien und verschweißte Verbindungen. So entstehen Taschen, die nicht nur wasserabweisend wirken, sondern für nasse Bedingungen, lange Wege und intensive Nutzung gemacht sind.' }, { eyebrow:'Heute', title:'Langlebig, reparierbar, alltagstauglich', body:'Heute steht ORTLIEB für Fahrradtaschen, Rucksäcke und Outdoor-Bags mit hoher Alltagstauglichkeit. Die Produkte sind auf Langlebigkeit ausgelegt und begleiten dich beim Pendeln, Reisen, Wandern oder auf dem Fahrrad.' } ] }); initStack({ card:'ort-use-card', eyebrow:'ort-use-eyebrow', title:'ort-use-title', body:'ort-use-body', badge:'ort-use-badge', dots:'ort-use-dots', link:'ort-use-link', cards:[ { eyebrow:'Passt zu dir, wenn …', title:'… du täglich mit dem Fahrrad unterwegs bist', body:'Dann sind ORTLIEB Fahrradtaschen ideal. Sie bieten Stauraum für Arbeit, Einkauf oder Wechselkleidung und schützen dein Gepäck zuverlässig vor Regen und Spritzwasser.', link:'/all/taschen/freizeit/fahrradtaschen?attrib%5Bvendor%5D%5B0%5D=ORTLIEB', linkLabel:'Fahrradtaschen ansehen →' }, { eyebrow:'Passt zu dir, wenn …', title:'… du einen wasserdichten Rucksack suchst', body:'Dann lohnt sich ein Blick auf ORTLIEB Rucksäcke. Sie eignen sich für Pendelwege, Uni, Freizeit, Reisen und Outdoor-Tage, an denen dein Gepäck trocken bleiben soll.', link:'/all/rucksaecke?attrib%5Bvendor%5D%5B0%5D=ORTLIEB', linkLabel:'Rucksäcke ansehen →' }, { eyebrow:'Passt zu dir, wenn …', title:'… du längere Radtouren oder Bikepacking planst', body:'Dann bieten ORTLIEB Bikepacking- und Gepäcktaschen praktische Lösungen für Ausrüstung, Kleidung und Proviant. Robust, kompakt und gemacht für viele Kilometer.', link:'/all/taschen/freizeit/fahrradtaschen?attrib%5Bvendor%5D%5B0%5D=ORTLIEB', linkLabel:'Bike-Taschen ansehen →' }, { eyebrow:'Passt zu dir, wenn …', title:'… du kleine Essentials griffbereit brauchst', body:'Dann sind Bauchtaschen und kompakte ORTLIEB Taschen praktisch. Smartphone, Schlüssel, Geldbörse und Kleinigkeiten bleiben nah bei dir und gut organisiert.', link:'https://www.modeherz.de/all/taschen/freizeit?attrib%5BProdukttyp%5D%5B0%5D=Sling%20Bags&attrib%5Bvendor%5D%5B0%5D=ORTLIEB', linkLabel:'Bauchtaschen ansehen →' }, { eyebrow:'Passt zu dir, wenn …', title:'… du eine Tasche für jedes Wetter möchtest', body:'ORTLIEB ist besonders passend, wenn du dich nicht vom Wetter abhängig machen willst. Die Taschen sind für Regen, Alltag, Outdoor und wechselnde Bedingungen entwickelt.', link:'/all/taschen?attrib%5Bvendor%5D%5B0%5D=ORTLIEB', linkLabel:'Alle Taschen ansehen →' } ] }); var FAQS=[ {q:'Welche Fahrradtaschen sind die besten?',a:'Die besten Fahrradtaschen hängen davon ab, wofür du sie nutzt. Für Pendler sind wasserdichte Gepäckträgertaschen besonders praktisch, für Touren und Bikepacking eignen sich robuste Taschen mit sicherem Befestigungssystem und ausreichend Stauraum. ORTLIEB ist eine beliebte Wahl, wenn Wasserdichtigkeit, Langlebigkeit und Alltagstauglichkeit wichtig sind.'}, {q:'Woher kommt die Firma ORTLIEB?',a:'ORTLIEB kommt aus Deutschland. Die Marke wurde 1982 gegründet und hat ihren Sitz im fränkischen Heilsbronn.'}, {q:'Welche Fahrradtasche ist die beste?',a:'Für den täglichen Weg zur Arbeit ist oft eine wasserdichte Hinterradtasche mit stabilem Halt die beste Wahl. Für sportliche Touren oder Bikepacking sind kompakte Rahmentaschen, Lenkertaschen oder Satteltaschen sinnvoll. Entscheidend sind Einsatzbereich, Volumen, Befestigung und Wetterschutz.'}, {q:'Was kostet eine gute Fahrradtasche?',a:'Eine gute Fahrradtasche kostet je nach Größe, Material und Ausstattung meist mehr als einfache Basismodelle. Für wasserdichte, langlebige Markenmodelle solltest du mit einem höheren Preis rechnen, bekommst dafür aber oft bessere Verarbeitung, robustere Materialien und zuverlässigere Befestigung.'}, {q:'Sind ORTLIEB Taschen wasserdicht?',a:'ORTLIEB ist vor allem für wasserdichte Taschen bekannt. Viele Modelle nutzen beschichtete Materialien, Rollverschlüsse und verschweißte Nähte, damit der Inhalt bei Regen und Spritzwasser trocken bleibt.'}, {q:'Für wen eignen sich ORTLIEB Taschen?',a:'ORTLIEB Taschen eignen sich für Fahrradfahrer, Pendler, Reisende, Outdoor-Fans und alle, die eine robuste Tasche für wechselhaftes Wetter suchen.'}, {q:'Welche ORTLIEB Tasche passt zum Pendeln?',a:'Zum Pendeln passen vor allem Fahrradtaschen für den Gepäckträger oder wasserdichte Rucksäcke. Sie bieten Platz für Laptop, Kleidung, Verpflegung und Alltagsgegenstände.'}, {q:'Was macht ORTLIEB besonders?',a:'ORTLIEB verbindet wasserdichte Konstruktion, funktionales Design und langlebige Materialien. Viele Produkte sind auf intensive Nutzung ausgelegt und begleiten dich zuverlässig im Alltag und auf Touren.'} ]; var faqWrap=document.getElementById('ort-faq-wrap'); if(faqWrap){ FAQS.forEach(function(faq){ var item=document.createElement('div'); item.style.cssText='border-bottom:1px solid rgba(0,0,0,.07);'; var btn=document.createElement('button'); btn.style.cssText='width:100%;background:none;border:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;padding:15px 0;font:500 13px/1.4 system-ui,Arial,sans-serif;color:#111;text-align:left;gap:12px;'; var qSpan=document.createElement('span'); qSpan.textContent=faq.q; var icon=document.createElement('span'); icon.textContent='+'; icon.style.cssText='font:400 20px/1 system-ui,Arial,sans-serif;color:rgba(0,0,0,.3);flex-shrink:0;transition:transform .25s;'; btn.appendChild(qSpan); btn.appendChild(icon); var body=document.createElement('div'); body.style.cssText='overflow:hidden;max-height:0;transition:max-height .3s ease;'; var p=document.createElement('p'); p.textContent=faq.a; p.style.cssText='font:400 13px/1.75 system-ui,Roboto,Arial,sans-serif;color:#666;padding-bottom:15px;margin:0;'; body.appendChild(p); item.appendChild(btn); item.appendChild(body); faqWrap.appendChild(item); var open=false; btn.addEventListener('click',function(){ open=!open; body.style.maxHeight=open?body.scrollHeight+'px':'0'; icon.textContent=open?'×':'+'; Array.prototype.forEach.call(faqWrap.children,function(sibling){ if(sibling!==item){ var sBody=sibling.querySelector('div'); var sIcon=sibling.querySelector('span:last-child'); if(sBody) sBody.style.maxHeight='0'; if(sIcon) sIcon.textContent='+'; } }); }); }); } })();