rockbrosbike.de Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: http://rockbrosbike.de/
Effective URL: https://rockbrosbike.de/
Submission: On November 25 via manual from IN — Scanned from DE

Form analysis 13 forms found in the DOM

POST /localization

<form method="post" action="/localization" id="nav-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden" name="utf8"
    value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/?ref=C6DCt0hWjCm51a&amp;sub_id=lb_4haufoy">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="DE">
      <country-selector><label class="label visually-hidden no-js-hidden" for="nav-localization-country-button">Land/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="nav-localization-country-button">
            <span class="text-start">Deutschland (EUR&nbsp;€)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="nav-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="nav-localization-country-opt-0" role="option" data-value="DE" aria-selected="true">
              <span class="pointer-events-none">Deutschland (EUR&nbsp;€)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="de">
      <custom-select id="nav-localization-language"><label class="label visually-hidden no-js-hidden" for="nav-localization-language-button">Sprache</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="nav-localization-language-button">
            <span class="text-start">Deutsch</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="nav-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-0" role="option" data-value="de" aria-selected="true">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-1" role="option" data-value="it">
              <span class="pointer-events-none">Italiano</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-2" role="option" data-value="es">
              <span class="pointer-events-none">Español</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-3" role="option" data-value="sv">
              <span class="pointer-events-none">Svenska</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-4" role="option" data-value="nl">
              <span class="pointer-events-none">Nederlands</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-5" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-6" role="option" data-value="en">
              <span class="pointer-events-none">English</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script data-src="" type="text/lazyload"> customElements.whenDefined('custom-select').then(() => {
        if (!customElements.get('country-selector')) {
          class CountrySelector extends customElements.get('custom-select') {
            constructor() {
              super();
              this.loaded = false;
            }

            async showListbox() {
              if (this.loaded) {
                super.showListbox();
                return;
              }

              this.button.classList.add('is-loading');
              this.button.setAttribute('aria-disabled', 'true');

              try {
                const response = await fetch('?section_id=country-selector');
                if (!response.ok) throw new Error(response.status);

                const tmpl = document.createElement('template');
                tmpl.innerHTML = await response.text();

                const el = tmpl.content.querySelector('.custom-select__listbox');
                this.listbox.innerHTML = el.innerHTML;

                this.options = this.querySelectorAll('.custom-select__option');

                this.popular = this.querySelectorAll('[data-popular]');
                if (this.popular.length) {
                  this.popular[this.popular.length - 1].closest('.custom-select__option')
                    .classList.add('custom-select__option--visual-group-end');
                }

                this.selectedOption = this.querySelector('[aria-selected="true"]');
                if (!this.selectedOption) {
                  this.selectedOption = this.listbox.firstElementChild;
                }

                this.loaded = true;
              } catch {
                this.listbox.innerHTML = '<li>Fehler beim Abrufen der Länder, bitte versuchen Sie es erneut.</li>';
              } finally {
                super.showListbox();
                this.button.classList.remove('is-loading');
                this.button.setAttribute('aria-disabled', 'false');
              }
            }

            setButtonWidth() {
              return;
            }
          }

          customElements.define('country-selector', CountrySelector);
        }
      });
    </script>
  <script data-src="" type="text/lazyload"> document.getElementById('nav-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

GET /search

<form class="search relative search--speech search--product-types" role="search" action="/search" method="get">
  <label class="label visually-hidden" for="header-search">Suchen</label>
  <script defer="defer" data-src="https://rockbrosbike.de/cdn/shop/t/38/assets/search-form.js?v=43677551656194261111728615897" type="text/lazyload"></script>
  <search-form class="search__form block">
    <input type="hidden" name="options[prefix]" value="last">
    <input type="search" class="search__input w-full input js-search-input" id="header-search" name="q" placeholder="Search for products" data-placeholder-one="Search for products" data-placeholder-two="Search for articles"
      data-placeholder-three="Search for collections" data-placeholder-prompts-mob="false" data-typing-speed="100" data-deleting-speed="60" data-delay-after-deleting="500" data-delay-before-first-delete="2000" data-delay-after-word-typed="2400"
      role="combobox" autocomplete="off" aria-autocomplete="list" aria-controls="predictive-search-results" aria-owns="predictive-search-results" aria-haspopup="listbox" aria-expanded="false" spellcheck="false">
    <custom-select id="product_types" class="search__product-types absolute left-0 top-0 bottom-0 js-search-product-types"><label class="label visually-hidden no-js-hidden" for="product_types-button">Art</label>
      <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="product_types-button">
          <span class="text-start">Alle</span>
          <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
            <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
          </svg>
        </button>
        <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="">
          <li class="custom-select__option js-option" id="product_types-opt-default" role="option" data-value="">
            <span class="pointer-events-none">Alle</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-0" role="option" data-value="Armlinge &amp; Beinlinge">
            <span class="pointer-events-none">Armlinge &amp; Beinlinge</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-1" role="option" data-value="Fahrrad Dachträger">
            <span class="pointer-events-none">Fahrrad Dachträger</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-2" role="option" data-value="Fahrrad Flaschenhalter">
            <span class="pointer-events-none">Fahrrad Flaschenhalter</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-3" role="option" data-value="Fahrrad Handyhalterung">
            <span class="pointer-events-none">Fahrrad Handyhalterung</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-4" role="option" data-value="Fahrrad Luftpumpen">
            <span class="pointer-events-none">Fahrrad Luftpumpen</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-5" role="option" data-value="Fahrrad Mütze">
            <span class="pointer-events-none">Fahrrad Mütze</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-6" role="option" data-value="Fahrrad Schutzblech">
            <span class="pointer-events-none">Fahrrad Schutzblech</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-7" role="option" data-value="Fahrrad Überschuhe">
            <span class="pointer-events-none">Fahrrad Überschuhe</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-8" role="option" data-value="Fahrradanzug">
            <span class="pointer-events-none">Fahrradanzug</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-9" role="option" data-value="Fahrradbrille">
            <span class="pointer-events-none">Fahrradbrille</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-10" role="option" data-value="Fahrradcomputer">
            <span class="pointer-events-none">Fahrradcomputer</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-11" role="option" data-value="Fahrradflasche">
            <span class="pointer-events-none">Fahrradflasche</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-12" role="option" data-value="Fahrradgepäckträger">
            <span class="pointer-events-none">Fahrradgepäckträger</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-13" role="option" data-value="Fahrradgriffe">
            <span class="pointer-events-none">Fahrradgriffe</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-14" role="option" data-value="Fahrradhandschuhe">
            <span class="pointer-events-none">Fahrradhandschuhe</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-15" role="option" data-value="Fahrradhelme">
            <span class="pointer-events-none">Fahrradhelme</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-16" role="option" data-value="Fahrradhose">
            <span class="pointer-events-none">Fahrradhose</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-17" role="option" data-value="Fahrradjacke">
            <span class="pointer-events-none">Fahrradjacke</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-18" role="option" data-value="Fahrradklingel">
            <span class="pointer-events-none">Fahrradklingel</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-19" role="option" data-value="Fahrradlicht">
            <span class="pointer-events-none">Fahrradlicht</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-20" role="option" data-value="Fahrradpedale">
            <span class="pointer-events-none">Fahrradpedale</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-21" role="option" data-value="Fahrradsattel">
            <span class="pointer-events-none">Fahrradsattel</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-22" role="option" data-value="Fahrradschloss">
            <span class="pointer-events-none">Fahrradschloss</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-23" role="option" data-value="Fahrradsocken">
            <span class="pointer-events-none">Fahrradsocken</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-24" role="option" data-value="Fahrradständer">
            <span class="pointer-events-none">Fahrradständer</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-25" role="option" data-value="Fahrradtaschen">
            <span class="pointer-events-none">Fahrradtaschen</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-26" role="option" data-value="Fahrradtrikot">
            <span class="pointer-events-none">Fahrradtrikot</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-27" role="option" data-value="Gaiters">
            <span class="pointer-events-none">Gaiters</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-28" role="option" data-value="Helme für Kinder">
            <span class="pointer-events-none">Helme für Kinder</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-29" role="option" data-value="Hosenband &amp; Gelenkbandage">
            <span class="pointer-events-none">Hosenband &amp; Gelenkbandage</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-30" role="option" data-value="Laufradsatz">
            <span class="pointer-events-none">Laufradsatz</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-31" role="option" data-value="Lenkerband">
            <span class="pointer-events-none">Lenkerband</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-32" role="option" data-value="Lenkerstulpe">
            <span class="pointer-events-none">Lenkerstulpe</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-33" role="option" data-value="Motorradhandschuhe">
            <span class="pointer-events-none">Motorradhandschuhe</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-34" role="option" data-value="Motorradtaschen">
            <span class="pointer-events-none">Motorradtaschen</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-35" role="option" data-value="Reflektorbänder">
            <span class="pointer-events-none">Reflektorbänder</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-36" role="option" data-value="ROCKBROS">
            <span class="pointer-events-none">ROCKBROS</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-37" role="option" data-value="Rucksack">
            <span class="pointer-events-none">Rucksack</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-38" role="option" data-value="Schoner">
            <span class="pointer-events-none">Schoner</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-39" role="option" data-value="Skihelm">
            <span class="pointer-events-none">Skihelm</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-40" role="option" data-value="Sturmhaube &amp; Gesichtsmaske">
            <span class="pointer-events-none">Sturmhaube &amp; Gesichtsmaske</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-41" role="option" data-value="Transporttasche">
            <span class="pointer-events-none">Transporttasche</span>
          </li>
          <li class="custom-select__option flex items-center js-option" id="product_types-opt-42" role="option" data-value="Werkzeuge">
            <span class="pointer-events-none">Werkzeuge</span>
          </li>
        </ul>
      </div>
    </custom-select>
    <input type="hidden" id="product_type_input" name="filter.p.product_type"><button type="button" class="search__reset text-current vertical-center absolute focus-inset js-search-reset" hidden="">
      <span class="visually-hidden">Reset</span>
      <svg width="24" height="24" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd" stroke-linejoin="round" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path d="M5 19 19 5M5 5l14 14"></path>
      </svg>
    </button><speech-search-button class="search__speech focus-inset right-0 hidden" tabindex="0" title="Sprachsuche" style="--speech-icon-color: #e32b2b">
      <svg width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path fill="currentColor"
          d="M17.3 11c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.49 6-3.31 6-6.72m-8.2-6.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2M12 14a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3 3 3 0 0 0-3 3v6a3 3 0 0 0 3 3Z">
        </path>
      </svg>
    </speech-search-button>
    <link href="//rockbrosbike.de/cdn/shop/t/38/assets/speech-search.css?v=47207760375520952331728615897" rel="stylesheet" type="text/css" media="all">
    <script defer="defer" data-src="https://rockbrosbike.de/cdn/shop/t/38/assets/speech-search.js?v=106462966657620737681728615897" type="text/lazyload"></script>
  </search-form>
  <div class="js-search-results" tabindex="-1" data-predictive-search=""></div>
  <span class="js-search-status visually-hidden" role="status" aria-hidden="true"></span>
</form>

POST /cart/add

<form method="post" action="/cart/add" id="quick-add-8453453316441" accept-charset="UTF-8" class="js-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="id" value="46867917570393" disabled=""><button class="btn btn--primary w-full" data-add-to-cart-text="In den Warenkorb" name="add" aria-haspopup="dialog">
    <span class="quick-add-btn-icon">
      <span class="visually-hidden">In den Warenkorb</span>
      <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12.12 20.44H5.6V9.56h12.8v3.73c.06.4.4.69.8.7.44 0 .8-.35.8-.8v-4.5a.792.792 0 0 0-.8-.69H17V6.5C16.9 4 14.7 2 12 2S7 4.09 7 6.67V8H4.71c-.4.04-.71.37-.71.78v12.53a.8.8 0 0 0 .8.69h7.43c.38-.06.67-.39.67-.78 0-.43-.35-.78-.78-.78ZM8.66 6.67c0-1.72 1.49-3.11 3.33-3.11s3.33 1.39 3.33 3.11V8H8.65V6.67Z">
        </path>
        <path d="M20 17.25h-2.4v-2.5a.817.817 0 0 0-.8-.7c-.44 0-.8.36-.8.8v2.4h-2.5c-.4.06-.7.4-.7.8 0 .44.36.8.8.8H16v2.5c.06.4.4.7.8.7.44 0 .8-.36.8-.8v-2.4h2.5c.4-.06.69-.4.7-.8 0-.44-.35-.8-.8-.8Z"></path>
      </svg>
    </span>
    <span class="quick-add-btn-text">In den Warenkorb</span>
  </button>
  <a href="/collections/fahrrad-luftpumpe/products/rockbros-elektrische-fahrradpumpe-mini-wiederaufladbare-luftpumpe" class="btn btn--secondary quick-add-view-btn">Alle Einzelheiten</a><input type="hidden" name="product-id"
    value="8453453316441"><input type="hidden" name="section-id" value="template--23757941965145__featured-collection">
</form>

POST /cart/add

<form method="post" action="/cart/add" id="quick-add-8945457234265" accept-charset="UTF-8" class="js-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="id" value="48482267627865" disabled=""><button class="btn btn--primary w-full" data-add-to-cart-text="In den Warenkorb" name="add" aria-haspopup="dialog">
    <span class="quick-add-btn-icon">
      <span class="visually-hidden">In den Warenkorb</span>
      <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12.12 20.44H5.6V9.56h12.8v3.73c.06.4.4.69.8.7.44 0 .8-.35.8-.8v-4.5a.792.792 0 0 0-.8-.69H17V6.5C16.9 4 14.7 2 12 2S7 4.09 7 6.67V8H4.71c-.4.04-.71.37-.71.78v12.53a.8.8 0 0 0 .8.69h7.43c.38-.06.67-.39.67-.78 0-.43-.35-.78-.78-.78ZM8.66 6.67c0-1.72 1.49-3.11 3.33-3.11s3.33 1.39 3.33 3.11V8H8.65V6.67Z">
        </path>
        <path d="M20 17.25h-2.4v-2.5a.817.817 0 0 0-.8-.7c-.44 0-.8.36-.8.8v2.4h-2.5c-.4.06-.7.4-.7.8 0 .44.36.8.8.8H16v2.5c.06.4.4.7.8.7.44 0 .8-.36.8-.8v-2.4h2.5c.4-.06.69-.4.7-.8 0-.44-.35-.8-.8-.8Z"></path>
      </svg>
    </span>
    <span class="quick-add-btn-text">In den Warenkorb</span>
  </button>
  <a href="/collections/fahrrad-luftpumpe/products/rockbros-elektrische-fahrradpumpe-mini-pumpe-as1-pro-ultrakompakte" class="btn btn--secondary quick-add-view-btn">Alle Einzelheiten</a><input type="hidden" name="product-id"
    value="8945457234265"><input type="hidden" name="section-id" value="template--23757941965145__featured-collection">
</form>

POST /cart/add

<form method="post" action="/cart/add" id="quick-add-9497750438233" accept-charset="UTF-8" class="js-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="id" value="49038904328537" disabled=""><button class="btn btn--primary w-full" data-add-to-cart-text="In den Warenkorb" name="add" aria-haspopup="dialog">
    <span class="quick-add-btn-icon">
      <span class="visually-hidden">In den Warenkorb</span>
      <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12.12 20.44H5.6V9.56h12.8v3.73c.06.4.4.69.8.7.44 0 .8-.35.8-.8v-4.5a.792.792 0 0 0-.8-.69H17V6.5C16.9 4 14.7 2 12 2S7 4.09 7 6.67V8H4.71c-.4.04-.71.37-.71.78v12.53a.8.8 0 0 0 .8.69h7.43c.38-.06.67-.39.67-.78 0-.43-.35-.78-.78-.78ZM8.66 6.67c0-1.72 1.49-3.11 3.33-3.11s3.33 1.39 3.33 3.11V8H8.65V6.67Z">
        </path>
        <path d="M20 17.25h-2.4v-2.5a.817.817 0 0 0-.8-.7c-.44 0-.8.36-.8.8v2.4h-2.5c-.4.06-.7.4-.7.8 0 .44.36.8.8.8H16v2.5c.06.4.4.7.8.7.44 0 .8-.36.8-.8v-2.4h2.5c.4-.06.69-.4.7-.8 0-.44-.35-.8-.8-.8Z"></path>
      </svg>
    </span>
    <span class="quick-add-btn-text">In den Warenkorb</span>
  </button>
  <a href="/collections/fahrrad-luftpumpe/products/rockbros-mini-elektrische-fahrradpumpe-as110-schnelles-aufladen-type-c" class="btn btn--secondary quick-add-view-btn">Alle Einzelheiten</a><input type="hidden" name="product-id"
    value="9497750438233"><input type="hidden" name="section-id" value="template--23757941965145__featured-collection">
</form>

POST /cart/add

<form method="post" action="/cart/add" id="quick-add-14853022351705" accept-charset="UTF-8" class="js-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="id" value="53720759894361" disabled=""><button class="btn btn--primary w-full" data-add-to-cart-text="In den Warenkorb" name="add" aria-haspopup="dialog">
    <span class="quick-add-btn-icon">
      <span class="visually-hidden">In den Warenkorb</span>
      <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12.12 20.44H5.6V9.56h12.8v3.73c.06.4.4.69.8.7.44 0 .8-.35.8-.8v-4.5a.792.792 0 0 0-.8-.69H17V6.5C16.9 4 14.7 2 12 2S7 4.09 7 6.67V8H4.71c-.4.04-.71.37-.71.78v12.53a.8.8 0 0 0 .8.69h7.43c.38-.06.67-.39.67-.78 0-.43-.35-.78-.78-.78ZM8.66 6.67c0-1.72 1.49-3.11 3.33-3.11s3.33 1.39 3.33 3.11V8H8.65V6.67Z">
        </path>
        <path d="M20 17.25h-2.4v-2.5a.817.817 0 0 0-.8-.7c-.44 0-.8.36-.8.8v2.4h-2.5c-.4.06-.7.4-.7.8 0 .44.36.8.8.8H16v2.5c.06.4.4.7.8.7.44 0 .8-.36.8-.8v-2.4h2.5c.4-.06.69-.4.7-.8 0-.44-.35-.8-.8-.8Z"></path>
      </svg>
    </span>
    <span class="quick-add-btn-text">In den Warenkorb</span>
  </button>
  <a href="/collections/fahrrad-luftpumpe/products/rockbros-elektrische-fahrradpumpe-mini-luftpumpe-tragbar-led-anzeige" class="btn btn--secondary quick-add-view-btn">Alle Einzelheiten</a><input type="hidden" name="product-id"
    value="14853022351705"><input type="hidden" name="section-id" value="template--23757941965145__featured-collection">
</form>

POST /cart/add

<form method="post" action="/cart/add" id="quick-add-8987942060377" accept-charset="UTF-8" class="js-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="id" value="48556952453465" disabled=""><button class="btn btn--primary w-full" data-add-to-cart-text="In den Warenkorb" name="add" aria-haspopup="dialog" disabled="">
    <span class="quick-add-btn-icon">
      <span class="visually-hidden">In den Warenkorb</span>
      <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12.12 20.44H5.6V9.56h12.8v3.73c.06.4.4.69.8.7.44 0 .8-.35.8-.8v-4.5a.792.792 0 0 0-.8-.69H17V6.5C16.9 4 14.7 2 12 2S7 4.09 7 6.67V8H4.71c-.4.04-.71.37-.71.78v12.53a.8.8 0 0 0 .8.69h7.43c.38-.06.67-.39.67-.78 0-.43-.35-.78-.78-.78ZM8.66 6.67c0-1.72 1.49-3.11 3.33-3.11s3.33 1.39 3.33 3.11V8H8.65V6.67Z">
        </path>
        <path d="M20 17.25h-2.4v-2.5a.817.817 0 0 0-.8-.7c-.44 0-.8.36-.8.8v2.4h-2.5c-.4.06-.7.4-.7.8 0 .44.36.8.8.8H16v2.5c.06.4.4.7.8.7.44 0 .8-.36.8-.8v-2.4h2.5c.4-.06.69-.4.7-.8 0-.44-.35-.8-.8-.8Z"></path>
      </svg>
    </span>
    <span class="quick-add-btn-text">In den Warenkorb</span>
  </button>
  <a href="/collections/fahrrad-luftpumpe/products/rockbeos-elektrische-ballpumpe-klein-aber-fein-luftpumpe-mit-4-ersatznadeln" class="btn btn--secondary quick-add-view-btn">Alle Einzelheiten</a><input type="hidden" name="product-id"
    value="8987942060377"><input type="hidden" name="section-id" value="template--23757941965145__featured-collection">
</form>

POST /cart/add

<form method="post" action="/cart/add" id="quick-add-8857453396313" accept-charset="UTF-8" class="js-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="id" value="48249670402393" disabled=""><button class="btn btn--primary w-full" data-add-to-cart-text="In den Warenkorb" name="add" aria-haspopup="dialog">
    <span class="quick-add-btn-icon">
      <span class="visually-hidden">In den Warenkorb</span>
      <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12.12 20.44H5.6V9.56h12.8v3.73c.06.4.4.69.8.7.44 0 .8-.35.8-.8v-4.5a.792.792 0 0 0-.8-.69H17V6.5C16.9 4 14.7 2 12 2S7 4.09 7 6.67V8H4.71c-.4.04-.71.37-.71.78v12.53a.8.8 0 0 0 .8.69h7.43c.38-.06.67-.39.67-.78 0-.43-.35-.78-.78-.78ZM8.66 6.67c0-1.72 1.49-3.11 3.33-3.11s3.33 1.39 3.33 3.11V8H8.65V6.67Z">
        </path>
        <path d="M20 17.25h-2.4v-2.5a.817.817 0 0 0-.8-.7c-.44 0-.8.36-.8.8v2.4h-2.5c-.4.06-.7.4-.7.8 0 .44.36.8.8.8H16v2.5c.06.4.4.7.8.7.44 0 .8-.36.8-.8v-2.4h2.5c.4-.06.69-.4.7-.8 0-.44-.35-.8-.8-.8Z"></path>
      </svg>
    </span>
    <span class="quick-add-btn-text">In den Warenkorb</span>
  </button>
  <a href="/collections/fahrrad-luftpumpe/products/rockbros-mini-elektrische-akku-luftpumpe-5000mah-mit-lcd-bildschirm-led" class="btn btn--secondary quick-add-view-btn">Alle Einzelheiten</a><input type="hidden" name="product-id"
    value="8857453396313"><input type="hidden" name="section-id" value="template--23757941965145__featured-collection">
</form>

POST /cart/add

<form method="post" action="/cart/add" id="quick-add-8501961621849" accept-charset="UTF-8" class="js-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="id" value="47057011605849" disabled=""><button class="btn btn--primary w-full" data-add-to-cart-text="In den Warenkorb" name="add" aria-haspopup="dialog" disabled="">
    <span class="quick-add-btn-icon">
      <span class="visually-hidden">In den Warenkorb</span>
      <svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12.12 20.44H5.6V9.56h12.8v3.73c.06.4.4.69.8.7.44 0 .8-.35.8-.8v-4.5a.792.792 0 0 0-.8-.69H17V6.5C16.9 4 14.7 2 12 2S7 4.09 7 6.67V8H4.71c-.4.04-.71.37-.71.78v12.53a.8.8 0 0 0 .8.69h7.43c.38-.06.67-.39.67-.78 0-.43-.35-.78-.78-.78ZM8.66 6.67c0-1.72 1.49-3.11 3.33-3.11s3.33 1.39 3.33 3.11V8H8.65V6.67Z">
        </path>
        <path d="M20 17.25h-2.4v-2.5a.817.817 0 0 0-.8-.7c-.44 0-.8.36-.8.8v2.4h-2.5c-.4.06-.7.4-.7.8 0 .44.36.8.8.8H16v2.5c.06.4.4.7.8.7.44 0 .8-.36.8-.8v-2.4h2.5c.4-.06.69-.4.7-.8 0-.44-.35-.8-.8-.8Z"></path>
      </svg>
    </span>
    <span class="quick-add-btn-text">In den Warenkorb</span>
  </button>
  <a href="/collections/fahrrad-luftpumpe/products/rockbros-elektrische-luftpumpe-mini-fahrradpumpe-7-150psi-2000mah-5-modi" class="btn btn--secondary quick-add-view-btn">Alle Einzelheiten</a><input type="hidden" name="product-id"
    value="8501961621849"><input type="hidden" name="section-id" value="template--23757941965145__featured-collection">
</form>

POST /cart/add

<form method="post" action="/cart/add" id="product-form-template--23757941965145__featured_product_hLymqP" accept-charset="UTF-8" class="js-product-form js-product-form-main" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden"
    name="form_type" value="product"><input type="hidden" name="utf8" value="✓">
  <div class="alert mb-8 bg-error-bg text-error-text js-form-error text-start" role="alert" hidden=""></div>
  <input type="hidden" name="id" value="46370861121881" disabled="">
  <div class="product-info__add-to-cart flex qty-input--secondary-btn">
    <quantity-input class="inline-block">
      <label class="label visually-hidden" for="quantity-template--23757941965145__featured_product_hLymqP">Anzahl</label>
      <div class="qty-input qty-input--combined inline-flex items-center w-full">
        <button type="button" class="qty-input__btn btn btn--minus no-js-hidden" name="minus">
          <span class="visually-hidden">-</span>
        </button>
        <input type="number" class="qty-input__input input" id="quantity-template--23757941965145__featured_product_hLymqP" name="quantity" min="1" value="1">
        <button type="button" class="qty-input__btn btn btn--plus no-js-hidden" name="plus">
          <span class="visually-hidden">+</span>
        </button>
      </div>
    </quantity-input>
    <div class="product-info__add-button"><button type="submit" data-add-to-cart-text="In den Warenkorb" class="btn btn--secondary w-full" name="add">In den Warenkorb</button>
    </div>
  </div>
  <div class="product-info__dynamic-checkout-button mt-4">
    <div data-shopify="payment-button" class="shopify-payment-button"> <shopify-accelerated-checkout
        recommended="{&quot;name&quot;:&quot;paypal&quot;,&quot;wallet_params&quot;:{&quot;shopId&quot;:56885215266,&quot;countryCode&quot;:&quot;DE&quot;,&quot;merchantName&quot;:&quot;ROCKBROS-EU&quot;,&quot;phoneRequired&quot;:true,&quot;companyRequired&quot;:false,&quot;shippingType&quot;:&quot;shipping&quot;,&quot;shopifyPaymentsEnabled&quot;:true,&quot;hasManagedSellingPlanState&quot;:null,&quot;merchantId&quot;:&quot;78VDYY6USGFUQ&quot;,&quot;sdkUrl&quot;:&quot;https://www.paypal.com/sdk/js?components=buttons\u0026commit=false\u0026currency=EUR\u0026locale=de_DE\u0026client-id=AfUEYT7nO4BwZQERn9Vym5TbHAG08ptiKa9gm8OARBYgoqiAJIjllRjeIMI4g294KAH1JdTnkzubt1fr\u0026merchant-id=78VDYY6USGFUQ\u0026intent=authorize&quot;}}"
        fallback="{&quot;name&quot;:&quot;shop_pay&quot;,&quot;wallet_params&quot;:{&quot;shopId&quot;:56885215266,&quot;merchantName&quot;:&quot;ROCKBROS-EU&quot;}}" access-token="7c6d964c002df58fb5ebad0dedbde2d5" buyer-country="DE"
        buyer-locale="de" buyer-currency="EUR"
        variant-params="[{&quot;id&quot;:46370861121881,&quot;requiresShipping&quot;:true},{&quot;id&quot;:46370875081049,&quot;requiresShipping&quot;:true},{&quot;id&quot;:46370875113817,&quot;requiresShipping&quot;:true},{&quot;id&quot;:46370861154649,&quot;requiresShipping&quot;:true},{&quot;id&quot;:46370875146585,&quot;requiresShipping&quot;:true},{&quot;id&quot;:46370875179353,&quot;requiresShipping&quot;:true},{&quot;id&quot;:48521160425817,&quot;requiresShipping&quot;:true},{&quot;id&quot;:48521160491353,&quot;requiresShipping&quot;:true},{&quot;id&quot;:48521160524121,&quot;requiresShipping&quot;:true}]"
        shop-id="56885215266">
        <div class="shopify-payment-button__button" role="button" disabled="" aria-hidden="true" style="background-color: transparent; border: none">
          <div class="shopify-payment-button__skeleton">&nbsp;</div>
        </div>
        <div class="shopify-payment-button__more-options shopify-payment-button__skeleton" role="button" disabled="" aria-hidden="true">&nbsp;</div>
      </shopify-accelerated-checkout> <small id="shopify-buyer-consent" class="hidden" aria-hidden="true"> Bei diesem Artikel handelt es sich um einen wiederkehrenden Kauf oder Kauf mit Zahlungsaufschub. Indem ich fortfahre, stimme ich den <span
          id="shopify-subscription-policy-button">Stornierungsrichtlinie</span> zu und autorisiere Sie, meine Zahlungsmethode zu den auf dieser Seite aufgeführten Preisen, in der Häufigkeit und zu den Terminen zu belasten, bis meine Bestellung
        ausgeführt wurde oder ich, sofern zulässig, storniere. </small> </div>
  </div><input type="hidden" name="product-id" value="8340304068953"><input type="hidden" name="section-id" value="template--23757941965145__featured_product_hLymqP">
</form>

POST /cart

<form class="form" id="cart-drawer-form" action="/cart" method="post">
  <cart-items id="cart-items" data-section="cart-drawer" data-empty="true">
    <div class="cart-empty flex flex-col justify-center items-center h-full js-cart-empty"><svg width="21" height="19" viewBox="0 0 21 19" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path d="M10 6.25V.5h1.5v5.75H21l-3.818 12H3.818L0 6.25h10Zm-7.949 1.5 2.864 9h11.17l2.864-9H2.05h.001Z"></path>
      </svg>
      <p>Ihr Warenkorb ist leer</p><a class="btn btn--primary" href="/collections/all">Beginn mit dem Einkauf</a>
    </div>
    <p class="visually-hidden" id="cart-live-region-text" role="status" aria-live="polite"> Zwischensumme:€0,00 EUR </p>
    <p class="visually-hidden" id="cart-line-item-status" role="status" aria-live="polite" aria-hidden="true">Wird geladen...</p>
    <div class="alert mt-6 bg-error-bg text-error-text" id="cart-errors" role="alert" hidden=""></div>
  </cart-items>
</form>

POST /contact#footer-signup_form

<form method="post" action="/contact#footer-signup_form" id="footer-signup_form" accept-charset="UTF-8" class="form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="prospect, newsletter">
  <div class="form__field">
    <label class="label visually-hidden" for="footer-signup">E-Mail</label>
    <div class="input-with-button"><input type="email" class="input w-full focus-inset" id="footer-signup" name="contact[email]" value="" placeholder="Ihre E-Mail-Adresse" autocomplete="email" aria-required="true" required=""><button
        class="btn focus-inset has-ltr-icon">
        <span class="visually-hidden">Abonnieren</span>
        <svg width="24" height="24" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5" fill="none" aria-hidden="true" focusable="false" role="presentation" class="icon">
          <path d="M4.696 12h14.686m-7.007-7.5 7.5 7.5-7.5 7.5"></path>
        </svg>
      </button></div>
  </div>
</form>

POST /localization

<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/?ref=C6DCt0hWjCm51a&amp;sub_id=lb_4haufoy">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="DE">
      <country-selector><label class="label visually-hidden no-js-hidden" for="footer-localization-country-button">Land/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-country-button">
            <span class="text-start">Deutschland (EUR&nbsp;€)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="DE" aria-selected="true">
              <span class="pointer-events-none">Deutschland (EUR&nbsp;€)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="de">
      <custom-select id="footer-localization-language"><label class="label visually-hidden no-js-hidden" for="footer-localization-language-button">Sprache</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-language-button">
            <span class="text-start">Deutsch</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-0" role="option" data-value="de" aria-selected="true">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-1" role="option" data-value="it">
              <span class="pointer-events-none">Italiano</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-2" role="option" data-value="es">
              <span class="pointer-events-none">Español</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-3" role="option" data-value="sv">
              <span class="pointer-events-none">Svenska</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-4" role="option" data-value="nl">
              <span class="pointer-events-none">Nederlands</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-5" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-6" role="option" data-value="en">
              <span class="pointer-events-none">English</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script data-src="" type="text/lazyload"> customElements.whenDefined('custom-select').then(() => {
        if (!customElements.get('country-selector')) {
          class CountrySelector extends customElements.get('custom-select') {
            constructor() {
              super();
              this.loaded = false;
            }

            async showListbox() {
              if (this.loaded) {
                super.showListbox();
                return;
              }

              this.button.classList.add('is-loading');
              this.button.setAttribute('aria-disabled', 'true');

              try {
                const response = await fetch('?section_id=country-selector');
                if (!response.ok) throw new Error(response.status);

                const tmpl = document.createElement('template');
                tmpl.innerHTML = await response.text();

                const el = tmpl.content.querySelector('.custom-select__listbox');
                this.listbox.innerHTML = el.innerHTML;

                this.options = this.querySelectorAll('.custom-select__option');

                this.popular = this.querySelectorAll('[data-popular]');
                if (this.popular.length) {
                  this.popular[this.popular.length - 1].closest('.custom-select__option')
                    .classList.add('custom-select__option--visual-group-end');
                }

                this.selectedOption = this.querySelector('[aria-selected="true"]');
                if (!this.selectedOption) {
                  this.selectedOption = this.listbox.firstElementChild;
                }

                this.loaded = true;
              } catch {
                this.listbox.innerHTML = '<li>Fehler beim Abrufen der Länder, bitte versuchen Sie es erneut.</li>';
              } finally {
                super.showListbox();
                this.button.classList.remove('is-loading');
                this.button.setAttribute('aria-disabled', 'false');
              }
            }

            setButtonWidth() {
              return;
            }
          }

          customElements.define('country-selector', CountrySelector);
        }
      });
    </script>
  <script data-src="" type="text/lazyload"> document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

Text Content

□
Direkt zum Inhalt

Kostenlos AS1 Elektrische Luftpumpe erhalten! Jetzt entdecken!

Kostenloser Versand | Lieferung in 2-3 Tagen

Land/Region
Deutschland (EUR €)
 * Deutschland (EUR €)

Sprache
Deutsch
 * Deutsch
 * Italiano
 * Español
 * Svenska
 * Nederlands
 * Français
 * English

Suchen Art
Alle
 * Alle
 * Armlinge & Beinlinge
 * Fahrrad Dachträger
 * Fahrrad Flaschenhalter
 * Fahrrad Handyhalterung
 * Fahrrad Luftpumpen
 * Fahrrad Mütze
 * Fahrrad Schutzblech
 * Fahrrad Überschuhe
 * Fahrradanzug
 * Fahrradbrille
 * Fahrradcomputer
 * Fahrradflasche
 * Fahrradgepäckträger
 * Fahrradgriffe
 * Fahrradhandschuhe
 * Fahrradhelme
 * Fahrradhose
 * Fahrradjacke
 * Fahrradklingel
 * Fahrradlicht
 * Fahrradpedale
 * Fahrradsattel
 * Fahrradschloss
 * Fahrradsocken
 * Fahrradständer
 * Fahrradtaschen
 * Fahrradtrikot
 * Gaiters
 * Helme für Kinder
 * Hosenband & Gelenkbandage
 * Laufradsatz
 * Lenkerband
 * Lenkerstulpe
 * Motorradhandschuhe
 * Motorradtaschen
 * Reflektorbänder
 * ROCKBROS
 * Rucksack
 * Schoner
 * Skihelm
 * Sturmhaube & Gesichtsmaske
 * Transporttasche
 * Werkzeuge

Reset


Einloggen Einkaufskorb

Menü
 * STARTSEITE
 * ALLE PRODUKTE
    * Zurück
    * ALLE PRODUKTE
    * FAHRRADTASCHEN
       * 
         Handytasche
       * 
         Lenkertasche
       * 
         Oberrohrtasche Favorit
       * 
         Satteltasche
       * 
         Rahmentasche
       * 
         Gepäckträgertasche
       * 
         Motorradtasche
       * 
         Transporttasche
       * 
         Rucksack
       * 
         Kühltasche
       * 
         Dry Bag
       * 
         Beutel
       * Gehe zu FAHRRADTASCHEN
   
    * WINTER AUSRÜSTUNG
       * 
         Winter Kleidung
       * 
         Winter Handschuhe
       * 
         Sturmhaube(Balaclava)
       * 
         Fahrrad Winter Mütze
       * 
         Fahrrad Überschuhe
       * 
         Armlinge & Beinlinge
       * Gehe zu WINTER AUSRÜSTUNG
   
    * BEKLEIDUNG
       * 
         Fahrradbrille
       * 
         Fahrradhelm
       * 
         Fahrradkappe
       * 
         Fahrradhandschuhe
       * 
         Fahrradjacke
       * 
         Fahrradtrikot
       * 
         Fahrradanzug
       * 
         Fahrradhose
       * 
         Hosenband & Gelenkbandage
       * 
         Fahrradsocken
       * 
         Schoner
       * Gehe zu BEKLEIDUNG
   
    * FAHRRADTEILE
       * 
         Fahrradgriffe & Griffbänder
       * 
         Fahrradpedal
       * 
         Fahrrad Schutzblech
       * 
         Fahrradsattel
       * 
         Fahrradgepäckträger
       * 
         Fahrrad Laufradsatz Carbon
       * 
         Fahrrad Seitenständer
       * Gehe zu FAHRRADTEILE
   
    * FAHRRADZUBEHÖR
       * 
         Fahrradklingel
       * 
         Fahrrad Luftpumpe
       * 
         Fahrradcomputer
       * 
         Fahrradschloss
       * 
         Fahrradlicht
       * 
         Sattelbezug
       * 
         Fahrradständer
       * 
         Fahrrad Flaschenhalter
       * 
         Fahrrad Handyhalterung
       * 
         Lenkerstulpe
       * 
         Reparatur Werkzeug
       * 
         Fahrradtrainer
       * 
         Fahrrad Dachträger
       * Gehe zu FAHRRADZUBEHÖR
   
    * ROAD TO SKY
       * 
         Schnellverschluss-Drehknopf-Fahrradtaschen Premium-Kollektion
       * 
         Verstecktes Werkzeug
       * 
         Ultraleichte Radbekleidung
       * 
         ROAD TO SKY Handschuhe
       * Gehe zu ROAD TO SKY
   
    * TVI für Damen
       * 
         Fahrradtrikots
       * 
         Fahrradhose
       * 
         Socken
       * Gehe zu TVI für Damen

 * Schnäppchen-Ecke
 * Black Friday Highlights
 * AFFILIATE MARKETING
    * Zurück
    * AFFILIATE MARKETING
    * Über Affiliate Marketing
    * Affiliate Anmeldung
    * Affiliate Login
   
   Kein Investitionsaufwand, keine Kosten
   
   
   
   Flexible Arbeitsweise
   
   
   
   Vielfältige Einkommenschancen

 * ERSATZTEILE KAUFEN
 * ÜBER UNS
    * Zurück
    * ÜBER UNS
    * Unsere Geschichte
    * Nachhaltige Entwicklung

 * Unsere Mitglieder

 * Top 10 Qualitätsshops


AUTOMATISCH ABGEZOGEN

Vorherige Nächste

 * auf alles
   
   15% RABATT

 * ab 200€
   
   20% RABATT

 * ab 400€
   
   25% RABATT




BELIEBTE KOLLEKTIONEN

View all

 * Fahrrad Luftpumpe
   
   Kategorie anzeigen

 * Winter Kleidung
   
   Kategorie anzeigen

 * FAHRRADTASCHEN
   
   Kategorie anzeigen

 * Balaclava
   
   Kategorie anzeigen

 * Fahrradbrille
   
   Kategorie anzeigen

 * Fahrradhelme
   
   Kategorie anzeigen

 * Fahrradklingel
   
   Kategorie anzeigen

Nächste Vorherige


AUSGEWÄHLTE KOLUMNEN


 * AUSGEWÄHLTE PRODUKTE!
   
   Bitte auswählen Ausgewählte Produkte!

 * RABATTCODE: SALE30
   
   Mehr erfahren

 * DEINE ABENTEUER ZU BEREICHERN.
   
   Mehr erfahren

Nächste Vorherige


KOMFORT IM WINTER

Bleiben Sie warm, fahren Sie weiter.


WINTERAUSRÜSTUNG

Alle anzeigen
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Bis zu 12% Rabatt
   
   ROCKBROS
   
   ROCKBROS Fahrrad Jacke & Hose Winter Fahrradanzug Leuchtendes Grün
   
   ★★★★★
   (32)
   €96,99 EUR €109,98
   Grundpreis /
   Nicht verfügbar
   Auf Lager (78 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Bis zu 9% Rabatt
   
   ROCKBROS
   
   ROCKBROS Winter Jacke / Hose Herren Windschutz Radsportanzug
   
   ★★★★★
   (18)
   Ab €108,99 EUR €119,98
   Grundpreis /
   Nicht verfügbar
   Auf Lager (888 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Bis zu 4% Rabatt
   
   ROCKBROS
   
   ROCKBROS Elektrische Beheizte Weste mit 3 Temperaturstufen für Herren/Damen
   
   ★★★★★
   (5)
   €85,99 EUR €89,98
   Grundpreis /
   Nicht verfügbar
   Auf Lager (133 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROCKBROS Lange Fahrradhose Herren Winter Radhose Winddicht Warm
   
   ★★★★★
   (26)
   €45,99 EUR
   Grundpreis /
   Nicht verfügbar
   Auf Lager (287 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROCKBROS Herren Fahrradjacke & Hose Set Winter Gelb Winddicht Warm für
   Outdoor Spor
   
   ★★★★★
   (2)
   €107,98 EUR
   Grundpreis /
   Nicht verfügbar
   Auf Lager (124 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROCKBROS Sturmhaube Herbst Winter Balaclava für Outdoorsports Unisex
   
   ★★★★★
   (38)
   Ab €12,99 EUR
   Grundpreis /
   Nicht verfügbar
   Schwarz Dunkelgrau Fluoreszenz Grün Hellgrau +6
   Auf Lager (3542 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROCKBROS Fahrradhandschuhe Touchscreen Warme Winterhandschuhe S-XL
   
   ★★★★★
   (8)
   Ab €16,99 EUR
   Grundpreis /
   Nicht verfügbar
   Schwarz Schwarz Grau
   Auf Lager (361 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Bis zu 9% Rabatt
   
   ROCKBROS
   
   ROCKBROS Herren Softshell Jacke & Hose atmungsaktiv Fahrradanzug
   
   ★★★★★
   (2)
   €99,99 EUR €109,98
   Grundpreis /
   Nicht verfügbar
   Auf Lager (127 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten

Nächste Vorherige


KOMPAKT. LEISTUNGSSTARK. ZUVERLÄSSIG.

Nie wieder platte Reifen – mit ROCKBROS Elektrische Fahrradpumpen immer in
Bewegung.

Ein-Knopf-Start


LUFTPUMPE KAUFEN

Alle anzeigen


AS1 ELEKTRISCHE FAHRRADPUMPE

Jetzt kaufen und 27% exklusiven Rabatt sichern!

 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Um 18% reduziert
   
   ROCKBROS
   
   ROCKBROS Elektrische Fahrradpumpe MINI wiederaufladbare Luftpumpe
   
   ★★★★★
   (27)
   €89,99 EUR €109,98
   Grundpreis /
   Nicht verfügbar
   Auf Lager (528 Einheiten)
   In den Warenkorb In den Warenkorb Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Um 20% reduziert
   
   ROCKBROS
   
   ROCKBROS Elektrische Fahrradpumpe MINI-Pumpe AS1 Pro ultrakompakte
   
   ★★★★★
   (29)
   €99,98 EUR €124,98
   Grundpreis /
   Nicht verfügbar
   Begrenzter Vorrat (16 Einheiten)
   In den Warenkorb In den Warenkorb Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROCKBROS MINI-Elektrische Fahrradpumpe AS110 Schnelles Aufladen Type-C
   
   ★★★★★
   (5)
   €75,98 EUR
   Grundpreis /
   Nicht verfügbar
   Auf Lager (50 Einheiten)
   In den Warenkorb In den Warenkorb Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROCKBROS Elektrische Fahrradpumpe Mini-Luftpumpe Tragbar LED-Anzeige
   
   €64,98 EUR
   Grundpreis /
   Nicht verfügbar
   Nachbestellt
   In den Warenkorb In den Warenkorb Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Bis zu 14% Rabatt
   
   ROCKBROS
   
   ROCKBROS Fahrradpumpe elektrisch Luftpumpe mit LED Drucksensor 150PSI
   
   ★★★★★
   (3)
   Ab €66,99 EUR
   Grundpreis /
   Nicht verfügbar
   Auf Lager (82 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Ausverkauft
   
   ROCKBROS-EU
   
   ROCKBEOS Elektrische Ballpumpe Klein aber Fein Luftpumpe mit 4 Ersatznadeln
   
   €39,99 EUR
   Grundpreis /
   Nicht verfügbar
   In den Warenkorb In den Warenkorb Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Um 6% reduziert
   
   ROCKBROS
   
   ROCKBROS Mini Elektrische Akku Luftpumpe 5000mAh mit LCD-Bildschirm LED
   
   ★★★★★
   (3)
   €79,99 EUR €84,99
   Grundpreis /
   Nicht verfügbar
   Sehr geringer Bestand (5 Einheiten)
   In den Warenkorb In den Warenkorb Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Ausverkauft
   Um 19% reduziert
   
   ROCKBROS
   
   ROCKBROS Elektrische Luftpumpe Mini Fahrradpumpe 7-150PSI 2000mAh 5 Modi
   
   €64,98 EUR €79,98
   Grundpreis /
   Nicht verfügbar
   In den Warenkorb In den Warenkorb Alle Einzelheiten

Nächste Vorherige


ROCKBROS FAHRRAD DACHTRÄGER

Die perfekte Lösung für den Fahrradtransport.

Jetzt herausfinden

 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 

Vorherige Nächste
Wird geladen...
ROCKBROS  |  SKU: XP1001BK


ROCKBROS FAHRRADTRÄGER FAHRRAD DACHTRÄGER MIT SAUGNÄPFE SCHNELLMONTAGE

Anzahl
- +
In den Warenkorb
 
 
Bei diesem Artikel handelt es sich um einen wiederkehrenden Kauf oder Kauf mit
Zahlungsaufschub. Indem ich fortfahre, stimme ich den Stornierungsrichtlinie zu
und autorisiere Sie, meine Zahlungsmethode zu den auf dieser Seite aufgeführten
Preisen, in der Häufigkeit und zu den Terminen zu belasten, bis meine Bestellung
ausgeführt wurde oder ich, sofern zulässig, storniere.
Full details
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY
ROAD TO SKY


PREMIUM-SERIE

Höhere Haltbarkeit, Komfort und Professionalität.

Kaufe die Road to Sky Kollektion

DREHKNOPF-FAHRRADTASCHEN

LENKERSTOPFEN WERKZEUG


INNOVATIV

Alle anzeigen
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Bis zu 33% Rabatt
   
   ROCKBROS
   
   ROAD TO SKY Reflektierende Wasserdichte Fahrrad Oberrohrtasche
   
   ★★★★★
   (40)
   €58,00 EUR €86,00
   Grundpreis /
   Nicht verfügbar
   Schwarz Orange Armeegrün Leinengrau +1
   Auf Lager (349 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROAD TO SKY Wasserdichte reflektierende Fahrradlenkertasche
   
   ★★★★★
   (1)
   €64,00 EUR
   Grundpreis /
   Nicht verfügbar
   Schwarz Weiß Orange Armeegrün +1
   Auf Lager (315 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROAD TO SKY Reflektierende Wasserdichte Fahrrad 2L Dreieckstasche
   
   €77,00 EUR
   Grundpreis /
   Nicht verfügbar
   Schwarz Orange Weiß Leinengrau +1
   Auf Lager (344 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROAD TO SKY Wasserdichte Reflektierende Zylindrische Lenkertasche
   
   ★★★★★
   (12)
   €64,00 EUR
   Grundpreis /
   Nicht verfügbar
   Schwarz Orange Armeegrün Weiß +1
   Auf Lager (391 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROAD TO SKY Herren Langarm-Radtrikot Fahrrad Jersey für MTB & Rennrad
   
   ★★★★★
   (1)
   €85,00 EUR
   Grundpreis /
   Nicht verfügbar
   Marineblau Armeegrün
   Sehr geringer Bestand (3 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROAD TO SKY Herren Kurzarm-Radtrikot Fahrrad Jersey für MTB & Rennrad
   
   €83,00 EUR
   Grundpreis /
   Nicht verfügbar
   Marineblau Armeegrün
   Sehr geringer Bestand (3 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   Ausverkauft
   
   ROCKBROS
   
   ROAD TO SKY Damen Langarm-Radtrikot Fahrrad Jersey für MTB & Rennrad
   
   €85,00 EUR
   Grundpreis /
   Nicht verfügbar
   Lila Marineblau
   Optionen auswählen Optionen auswählen Alle Einzelheiten
 * Vorherige Nächste
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
    * 
   
   ROCKBROS
   
   ROAD TO SKY Damen Kurzarm-Radtrikot Fahrrad Jersey für MTB & Rennrad
   
   €83,00 EUR
   Grundpreis /
   Nicht verfügbar
   Marineblau Lila
   Sehr geringer Bestand (3 Einheiten)
   Optionen auswählen Optionen auswählen Alle Einzelheiten

Nächste Vorherige


WAS IST ROCKBROS?

Mehr über uns


 * ROCKBROS GEIST
   
   Unser Geist ist hart wie ein Fels, und wie groß die Schwierigkeiten auch sein
   mögen, sie werden unseren Glauben nicht erschüttern, weiterzumachen.


 * ROCKBROS VISION
   
   Wir glauben fest an die Verbindung von Leben und Radfahren und freuen uns
   darauf, diese Reise gemeinsam voranzutreiben.


 * ROCKBROS VORGEHENSWEISE
   
   ROCKBROS bietet stets hochwertige Produkte zu erschwinglichen Preisen an,
   damit jeder Radsport- und Outdoor-Enthusiast ein angenehmes Fahrerlebnis
   genießen kann, ohne hohe Kosten aufwenden zu müssen.


 * ROCKBROS PRODUKTIONSLINIEN
   
   Wir verfügen über hochmoderne Maschinen und Teams und verwenden die besten
   Materialien und Fertigungsverfahren.

Nächste Vorherige


AUSGEWÄHLTER BLOG

Alle anzeigen


 * HALLOWEEN UND DER WINTER STEHEN VOR DER TÜR: SO DEKORIEREN SIE IHR FAHRRAD IN
   DER FESTLICHEN ZEIT!
   
   28. Oktober 2024


 * RADFAHREN: STARKE UNTERSTÜTZUNG FÜR HERZGESUNDHEIT UND PSYCHISCHES
   WOHLBEFINDEN
   
   18. Oktober 2024


 * WARUM IST EINE SCHUTZBRILLE BEIM RADFAHREN UNVERZICHTBAR?
   
   11. Oktober 2024


 * DIE VORTEILE DES WINTERRADFAHRENS: FIT BLEIBEN UND DEN WINTER GENIESSEN
   
   30. September 2024


 * FAHRRADFAHREN IM HERBST & WINTER: SO BLEIBST DU WARM UND SICHER
   
   15. September 2024


 * HÄUFIGE FEHLER BEIM RADFAHREN UND WIE MAN SIE VERMEIDET: TIPPS FÜR EINSTEIGER
   
   4. September 2024


 * FAMILIEN-RADFAHREN: WIE MAN EINE PERFEKTE FAMILIEN-RADTOUR PLANT?
   
   31. August 2024


 * WIE SIE DAS RADFAHREN IN IHREN ALLTAG INTEGRIEREN: VON DER ARBEIT BIS ZUR
   FREIZEIT
   
   22. August 2024

Nächste Vorherige




IHR WARENKORB

Schließen

Ihr Warenkorb ist leer

Beginn mit dem Einkauf

Zwischensumme:€0,00 EUR

Wird geladen...








UNSER SERVICE

Vorherige Nächste

 * Kundenservice
   
   Antwort per E-Mail innerhalb von 24 Stunden

 * Kostenloser Versand
   
   Schnelle Lieferung in 2-3 Tagen

 * Umtausch & Rückgabe
   
   Kostenloser Umtausch und Rückgabe

 * Preisgarantie
   
   Wir bieten eine Preisgarantie

Zurück nach oben


ÜBER UNS

Name des Unternehmens: Rockbros Sport GmbH

Firmenadresse: Goethestr. 11 E 15234 Frankfurt (Oder) Deutschland

E-Mail: service@rockbrosbike.de


 * Facebook
 * YouTube
 * Instagram
 * TikTok
 * Pinterest
 * Twitter
 * Vimeo


RECHTLICHES

 * Impressum
 * AGB
 * Rückgabe & Umtausch
 * Garantiepolitik
 * Privatsphäre Und Datenschutz
 * Versandbedingungen


INFO

 * B2B
 * Über Affiliate Marketing
 * Nachhaltige Entwicklung
 * Kontakt
 * Model pictures
 * Häufige Fragen (FAQ)


NEWSLETTER

Melden Sie sich an, um exklusive Angebote, originelle Geschichten, Events und
mehr zu erhalten.

E-Mail
Abonnieren
Zahlungsmethoden
 * American Express
 * Apple Pay
 * Google Pay
 * Klarna
 * Maestro
 * Mastercard
 * PayPal
 * Shop Pay
 * SOFORT
 * Union Pay
 * Visa

Land/Region
Deutschland (EUR €)
 * Deutschland (EUR €)

Sprache
Deutsch
 * Deutsch
 * Italiano
 * Español
 * Svenska
 * Nederlands
 * Français
 * English

--------------------------------------------------------------------------------

© 2024 ROCKBROS-EU. Powered by Shopify
Zurück


OPTIONEN AUSWÄHLEN

Schließen
Schließen


Hinzugefügt

Warenkorb ansehen



★ Judge.me Reviews


LET CUSTOMERS SPEAK FOR US


1356 reviews
Write a review
83%
(1120)
11%
(150)
3%
(40)
1%
(17)
2%
(29)


1278






M
ROAD TO SKY Reflektierende Wasserdichte Fahrrad Oberrohrtasche

Mikolaj Siekierka

Scam

Ich möchte von meinem gesetzlichen Widerrufsrecht gebrauch machen und der
Händler weigert sich die Ware zurückzunehmen





O
ROCKBROS Fahrradklingel Glocke 100dB Laut Innovativ Mini Fahrrad Klingel

Oliver Reinke

Tolle Klingel , die leider nicht an meinen Lenker passt

Ich wollte die Klingel für einen Rennrad Lenker, da hier der Platz eingeschränkt
ist. Leider passt sie dort aufgrund des Durchmesser des Lenkers nicht hin.
Sollte es mal eine Klingel geben , die an meinen Lenker passt, kaufe ich nochmal
eine. Die Firma ist an sich super und meine erste Anlaufstelle für Fahrrad
Kleidung.





A
ROCKBROS Fahrrad Pedale 9/16 für MTB/BMX/Rennrad 4 Sealed Bearings

Andi Rothmann

Hochwertig verarbeitet bei angemessenem Preis

Die Pedale laufen seidenweich und absolut präzise,der Grip ist wie erwartet
perfekt,Optik finde ich persöhlich auch super.





G
ROCKBROS Sturmhaube Herbst Winter Balaclava für Outdoorsports Unisex

Georgi Paskalev

ROCKBROS Sturmhaube Herbst Winter Balaclava für Outdoorsports Unisex





H
ROCKBROS Winter Skihandschuhe Wiederaufladbare Beheizte Handschuhe Schwarz

Holger Gr

Heizleistung und Ausführung ok, Lieferzeit leider sehr lange

Bei knapp Null Grad gestern zum ersten Mal die neuen Handschuhe getestet. In der
höchsten Stufe spürt man etwas, zumindest sind die Finger dann nicht eiskalt. In
den beiden niedrigeren Stufen reicht die Heizleistung nicht aus. Von der Machart
sind die Handschuhe gut, lange Stulpen und ordentliche Verschlüsse. Der Preis
ist dem Produkt angemessen, zu viel darf man sich nicht erwarten.
Der Versand hat leider viel zu lange gedauert, weil das ursprünglich bestellte
Handschuhpaar nicht mehr auf Lager war und Rockbros erst nach meiner Anfrage, wo
die Ware bleibt, reagiert hat. Ersatzprodukt würde dann aber innerhalb ein paar
Tagen geliefert.






123

Maryna Haupt

Sonnenbrille

Mega, coole Verarbeitung, schöne Farbe, voll bequem.

ROCKBROS polarisierte Sonnenbrille mit UV400 Schutz Hellblau Unisex
Eva

Coole Sache fürs Vorzimmer

Einfach zu montieren, funktioniert einwandfrei! Danke!

ROCKBROS Fahrrad Wandhalterung Robust Fahrradhalter Verstellbar 15kg
Tom Bretschneider

Passt perfekt!

Husqvarna HC6 mit 26kg sicherer Stand

ROCKBROS Fahrrad Parkständer, verstellbare Fahrradständer für 26–80 mm
Teemu Leppo

Frame bag

very comfortable and roomy bag.

ROCKBROS wasserdicht Rahmentasche Dreiecktasche 3L/4L Schwarz
Sebastian Gundelach

Fahrradständer Rockbros Hinterrahmen- Verstellbar

Der Fahrradständer wurde pünktlich geliefert.
Die Montage war ein Kinderspiel und in 5 Minuten erledigt.
Qualitativ sehr hochwertig verarbeitet.
Kein klapperiges "schnack" beim ein und ausklappen.
War nicht das letzte Zubehör das ich mir bestelle.
Sehr gerne wieder 👍👍👍👍

ROCKBROS Verstellbar Fahrradständer Seitenständer für 24-29 Zoll MTB