Vom Fachmann für dein Motorrad
Brembo Bremsbelag vorn 07BB1507 P4 30/34 1 Stift Carbon Ceramic
Brembo Bremsbelag für P30/34 1 Stift Bremssattel – 07BB1507 passend für folgende Ducati Modelle:
Ducati Supersport
- Ducati Supersport SS 400 600 750 900
- Ducati Supersport SS 600
- Ducati Supersport SS 750
- Ducati Supersport SS 900
Ducati Superbike
- Ducati 748
- Ducati 916
- Ducati 851
- Ducati 888
Ducati Monster
- Ducati Monster 600
- Ducati Monster 750
- Ducati Monster 900 (teilweise)
Auch passend für diverse Motorrad Modelle anderer Hersteller (bitte nachfragen):
- BMW
- KTM
- Moto Guzzi
28,90€
Vorrätig
Brembo Bremsbelag vorne Carbon Ceramic P4 30/34 1 Stift – 07BB1507: Ducati Monster, SS, 748, 916, 851, 888, ST2
Produktbeschreibung:
Die Bremsbeläge von Brembo sind mit organischem Carbon Ceramic beschichtet und mit verschiedenen Ducati Motorrädern kompatibel. Brembo Bremsbeläge mit Carbon Ceramic, mit hochwertigen Kohlenstoffkomponenten sind für den hinteren Bremssattel P4 30/40 1 Stift passend. Sie eignen sich als hochwertiges Ersatzteil, für die in der Erstausstattung verbauten Bremsbeläge. Die Bremsbeläge weisen einen hohen Verzögerungswert auf und eignen sich für Bremsscheiben aus Stahl und für Gussscheiben.
Die metalle Trägerplatte mit Carbon Ceramic Beschichtung macht die Bremsbeläge äußerst widerstandsfähig. Ein komfortables Nass- und Trocken-Bremsverhalten ist mit den Bremsbelägen von Brembo vorhanden.
Nach erfolgter Montage der Bremsbeläge kann durch ABE Zulassung direkt am Straßenverkehr teilgenommen werden. Ein hoher Reibkoeffizienten ermöglicht sicheres bremsen auch bei heißen Bremstemperaturen. Die Bremsbeläge Carbon Ceramic von Brembo eignen sich ideal für Touren- und Langstreckenfahrer.
Technische Details:
- Hersteller: Brembo
- Kategorie: Bremsbelag
- Typ: Carbon Ceramic, mit ABE
- Artikelnummer:
- Farbe: EVO Blau
- Länge Bremsbelag: 75,1 mm
- Breite Bremsbelag: 55,5 mm
- Dicke Bremsbelag: 8,7 mm
- Passung: P4 30/34 1 Stift
- Menge: 1 Satz Beläge ( 2 Einzel-Bremsbeläge) für 1 Bremssattel
- Alternative Bezeichnung: Bremsklotz
Hersteller Information:
Brembo ist ein international agierendes Unternehmen mit italienischer Herkunft. Das Unternehmen hat sich auf die Herstellung von "High Performance" Bremsanlagen und deren Zubehör, wie etwa Bremsbeläge, Bremsscheiben oder Bremspumpen spezialisiert. Produkte von Brembo werden häufig zur Erstausstattung von Motorrädern und Pkws verbaut und eignen sich als hochwertige Ersatzteile. Brembo ist im Rennsport aktiv und rüstet seit 1975 Kraftfahrzeuge von "Racing" bis "City" mit seinen Produkten aus.
Weitere Produkte von Brembo finden Sie in unserem Online-Shop.
Kurzbeschreibung:
Brembo Bremsbelag, Carbon Ceramic, ABE, passend für Bremssattel P4 30/40 1 Stift "Made in Italy",
>>ähnliche Produkte<<
Brembo Bremsbelag für P30/34 1 Stift Bremssattel – 07BB1507 passend für folgende Ducati Modelle:
Ducati Supersport
- Ducati Supersport SS 400 600 750 900
- Ducati Supersport SS 600
- Ducati Supersport SS 750
- Ducati Supersport SS 900
Ducati Superbike
- Ducati 748
- Ducati 916
- Ducati 851
- Ducati 888
Ducati Monster
- Ducati Monster 600
- Ducati Monster 750
- Ducati Monster 900 (teilweise)
Auch passend für diverse Motorrad Modelle anderer Hersteller (bitte nachfragen):
- BMW
- KTM
- Moto Guzzi
Via Brembo 14
24035 Curno
Italien
acquisti@brembo.it
Via Stezzano 87
24126 Bergamo
Italien
acquisti@brembo.it
https://www.brembo.com/en/company/contacts
Verwandte Produkte
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
Galfer Sintermetall Bremsbelag vorne
Bremsbelag Galfer für Bremssattel P4 30/34
27,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
Galfer Bremsbelag M4 Radial Monoblock Sintermetall
Galfer Bremsbelag M4 Radial Sintermetall passend für folgende Ducati Modelle (unter anderem): Ducati Panigale Ducati 1000…
29,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
Brembo Bremsbeläge 07BB37SC
Die Brembo Bremsbeläge 07BB37SC bieten herausragende Bremsleistung für anspruchsvolle Fahrer. Präzise gefertigt für exakte Passform,…
56,31€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
Brembo Bremsbelag hinten 07BB02SP – Scrambler GT1000 Monster 797
APR Aprilia 1200 Caponord (1200 ccm, 2013 - 2016) APR Aprilia 1200 Caponord Travel Pack…
28,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

Galfer Bremsbelag M4 Radial Monoblock Sintermetall
Galfer Bremsbelag M4 Radial Sintermetall passend für folgende Ducati Modelle (unter anderem): Ducati Panigale Ducati 1000...
29,90€

Brembo Bremsbeläge 07BB37SC
Die Brembo Bremsbeläge 07BB37SC bieten herausragende Bremsleistung für anspruchsvolle Fahrer. Präzise gefertigt für exakte Passform,...
56,31€

Brembo Bremsbelag hinten 07BB02SP – Scrambler GT1000 Monster 797
APR Aprilia 1200 Caponord (1200 ccm, 2013 - 2016) APR Aprilia 1200 Caponord Travel Pack...
28,90€