Cadre de brosse flexible s’adapte confortablement à votre tête
Poils ultra-doux réduisent la tension tout en stimulant et massant le cuir chevelu
Démêle doucement les cheveux mouillés et secs sous la douche et hors de la douche
Indispensable multitâche démêle, masse et prépare les cheveux pour le coiffage ou le séchage à l'air libre
Favorise la santé du cuir chevelu à chaque passage grâce à des poils qui réduisent la tension
Conception recyclable tout-en-un avec une poignée ergonomique et confortable
Idéal pour les boucles, ondulations et cheveux raides
Dimensions : 6,91 cm l x 22,5 cm h x 3,81 cm p
Astuce pro : Pour un démêlage optimal, associez-le avec le Kitsch Après-shampooing sans rinçage au lait d’argan hydratant pour lisser et traiter les cheveux.
Glide the brush through damp or dry hair, starting at the ends and working your way up to detangle without breakage or pain.
For added smoothness, pair with Kitsch's Moisturizing Argan Milk Leave-In Conditioner for extra hydration and shine.
TPEE
{
discount_percentage = $event.detail?.percentage || 0;
})"
x-init="$watch('selected', value => {
if (value.length != total_items) {
discount_percentage = 0;
}else{
discount_percentage = 0;
}
})"
x-data="{
renderPrice(price){
let total = price;
if(this.discount_percentage > 0){
total = price - (price * (this.discount_percentage / 100));
}
return Unick.formatMoney(total);
},
selected: [],
fixed_product: false,
discount_percentage: 0,
total_items: 3,
imgSrc(src, width) {
if (!src) return '';
if (/[?&]width=/.test(src)) return src.replace(/([?&]width=)\d+/, '$1' + width);
return src + (src.includes('?') ? '&' : '?') + 'width=' + width;
},
getSrcset(src) {
if (!src) return '';
return [72, 100, 144, 200].map(w => this.imgSrc(src, w) + ' ' + w + 'w').join(', ');
},
add(item) {
this.selected.push(item)
},
remove(id) {
this.selected = this.selected.filter(item => item.id !== id)
},
isInBundle(id) {
return this.selected.some(item => item.id === id)
},
priceBeforeDiscount(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
return total;
},
totalPrice(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
total = total - (total * (this.discount_percentage / 100));
let extraDiscount = 0;
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Brosse démêlante flexible violet pâle`;
let bundleHandle = `detangling-flexi-brush-soft-violet`;
let bundleCount = 3;
let bundleQty = 1;
let index = 0;
// Update button text to 'adding...'
this.$refs.addToCartButton.textContent = 'Adding...';
this.selected.forEach(function (item) {
cartObj.push({
quantity: 1,
id: item.variants[0].id,
properties: {
'_fbt_bundle': bundleTitle,
'_fbt_bundle_handle': bundleHandle,
'_fbt_bundle_count': bundleCount,
}
})
})
if(this.fixed_product && this.total_items == this.selected.length){
cartObj = [];
cartObj.push({
quantity: 1,
id: this.fixed_product,
})
}
fetch(routes.cart_add_url + '.js', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
items: cartObj
})
})
.then(response => {
// Update button text back to 'add to cart'
this.$refs.addToCartButton.textContent = 'Add to cart';
// Update cart with event dispatch
this.$dispatch('update-cart', { cart: response });
// Open cart after adding product
this.$dispatch('toggle-cart-drawer');
});
}
}">
Fréquemment achetés ensemble
+
Total price:
Crème lissante pour séchage à l’air libre
$29.00
$29.00
Conditionneur hydratant sans rinçage au lait d'argan
$29.00
$29.00
Kitsch - Mini échantillon d'huile pour le cuir chevelu et les cheveux
$21.00
$21.00
{
discount_percentage = $event.detail?.percentage || 0;
})"
x-init="$watch('selected', value => {
if (value.length != total_items) {
discount_percentage = 0;
}else{
discount_percentage = 0;
}
})"
x-data="{
renderPrice(price){
let total = price;
if(this.discount_percentage > 0){
total = price - (price * (this.discount_percentage / 100));
}
return Unick.formatMoney(total);
},
selected: [],
fixed_product: false,
discount_percentage: 0,
total_items: 3,
imgSrc(src, width) {
if (!src) return '';
if (/[?&]width=/.test(src)) return src.replace(/([?&]width=)\d+/, '$1' + width);
return src + (src.includes('?') ? '&' : '?') + 'width=' + width;
},
getSrcset(src) {
if (!src) return '';
return [72, 100, 144, 200].map(w => this.imgSrc(src, w) + ' ' + w + 'w').join(', ');
},
add(item) {
this.selected.push(item)
},
remove(id) {
this.selected = this.selected.filter(item => item.id !== id)
},
isInBundle(id) {
return this.selected.some(item => item.id === id)
},
priceBeforeDiscount(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
return total;
},
totalPrice(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
total = total - (total * (this.discount_percentage / 100));
let extraDiscount = 0;
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Brosse démêlante flexible violet pâle`;
let bundleHandle = `detangling-flexi-brush-soft-violet`;
let bundleCount = 3;
let bundleQty = 1;
let index = 0;
this.$refs.addToCartButton.textContent = 'Adding...';
this.selected.forEach(function (item) {
cartObj.push({
quantity: 1,
id: item.variants[0].id,
properties: {
'_fbt_bundle': bundleTitle,
'_fbt_bundle_handle': bundleHandle,
'_fbt_bundle_count': bundleCount,
}
})
})
if(this.fixed_product && this.total_items == this.selected.length){
cartObj = [];
cartObj.push({
quantity: 1,
id: this.fixed_product,
})
}
fetch(routes.cart_add_url + '.js', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
items: cartObj
})
})
.then(response => {
this.$refs.addToCartButton.textContent = 'Ajouter la sélection au panier';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Fréquemment achetés ensemble
Crème lissante pour séchage à l’air libre
$29.00
$29.00
+
Conditionneur hydratant sans rinçage au lait d'argan
$29.00
$29.00
+
Kitsch - Mini échantillon d'huile pour le cuir chevelu et les cheveux
Inscrivez-vous pour recevoir une notification lorsque cet article sera à nouveau en stock.
Please enter a valid email address.
Merci de vous être inscrit ! Nous vous enverrons un e-mail lorsque le produit sera disponible.
{
let mainAddToCart = document.querySelector('.product__info-wrapper .button-add-to-cart, .product__info-wrapper .product-form__submit');
if(mainAddToCart) {
let rect = mainAddToCart.getBoundingClientRect();
// Hide floating cart when main button is visible (with some buffer)
show = rect.top > window.innerHeight || rect.bottom < 0;
} else {
// If main button not found, show floating cart
show = true;
}
})"
x-init="$nextTick(() => {
// Delay initialization to ensure Alpine has rendered the main add-to-cart button
setTimeout(() => {
let mainAddToCart = document.querySelector('.product__info-wrapper .button-add-to-cart, .product__info-wrapper .product-form__submit');
if(mainAddToCart) {
let rect = mainAddToCart.getBoundingClientRect();
show = rect.top > window.innerHeight || rect.bottom < 0;
} else {
// Fallback: show sticky cart if main button not found after delay
show = true;
}
}, 500);
})"
class="add-to-cart-footer p-3 bg-white text-black fixed bottom-0 w-full z-20 shadow border-t">
4 raisons d'essayer la brosse démêlante flexible Kitsch
1. Charme flexible
La conception de l'arceau flexible s'adapte à la forme naturelle de votre cuir chevelu, rendant chaque coup de brosse confortable et doux, confortable, et totalement sans tiraillement.
2. De la douche à la coiffure
Utilisez-la humide ou sèche, sous la douche ou en déplacement - cette brosse élimine les nœuds à chaque étape de votre routine capillaire.
3. Vibes spa pour le cuir chevelu
Les poils souples et flexibles massent délicatement tout en démêlant, stimulant la circulation et transformant le brossage quotidien en un rituel apaisant.
4. Coiffage durable
Fabriquée d'une seule pièce à partir de matériaux recyclables, cette brosse est dotée d'un manche ergonomique qui tient parfaitement dans la main.
The flexibrush is amazing. It flexes and forms to your scalp. I tried wet and dry and both were great with those brush. There was alot less breakage. I received this for free for my honest review. I will recommend to my family and friends.
MB
Mel B.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Great wet/dry detangling brush !
Highly recommend this brush! It works well on wet hair and dry hair! It definitely detangled my hair when it was wet and then also when it was dry! I love that the brush was bendable and comfortably adjust to your head. This brush is great for every day use.
MG
Mandy G.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Great brush!
This Kitsch flexi detangling brush works great on wet or dry hair. I really enjoy how the brush flexes when I brush my hair. It feels great on my scalp and easily detangles my hair. It glides effortlessly through even the toughest tangles. I am noticing that I have less breakage using this brush as well! 100% recommend!
KW
Katie W.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
The best brush I have ever used!
Beautiful color, Very flexible, did not pull my hair, no breakage and leaves my hair so smooth! Works great on both dry and wet hair! I will only use this brush from now on!
SH
Sarah H.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Flexibrush
This unique design is genius. It glides through my long hair with ease. I tried bith wet and dry, wet gave some resistance, then I added some leave in and ut was great (my hair tangles easily) but dry was smooth sailing, Brush is great would definitely recommend.
LF
Lia F.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
A great design for leaving tangles in the past.
I have a wet brush I had been using for years. I just got my upgrade. This flexi brush”s design is cuts through my thick hair leaving it smooth and fluffy with no tangles. I absolutely love this brush. No pulling , no snarls, no tangles. Wet or dry this brush is Amazing!
M
Maureen
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Awesome & versatile. Love it!
Anyone else hear harps playing when you opened the box? I thought at first ok a brush but after removing it from the box I was blown away. The detangling flex brush is great for the shower, wet hair and dry hair. It’s smooth through my hair . I ditched my comb for the shower and use this brush which is much more gentler. I am very impressed and extremely satisfied with my detangling flex brush. I’m buying several more!
LM
Liz M. P.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
12 months ago
Love this brush
I know this brush is for long hair and I have very short hair. I bought this brush anyway. I cannot believe how this makes my hair and scalp feel. I love this brush and recommend it to everyone.
M
Milla
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Lovely massage 💆♀️
Such a lovely massage 😏
looks easy to keep it clean
M
Marissa
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love!
This detangling brush did a wonderful job with my hair. I love that it so flexible and instead of it pulling my hair or when I try to glide it through, it just instantly detangled it and left my hair feeling so soft and amazing. I love that it flexes. This is my new favorite brush and I would definitely buy this again!
Loading...
Loading...
Frequently Asked Questions
Considérez-la comme le nouvel endroit où vos cheveux se sentent bien. Cette brosse flexible tout-en-un se faufile dans les cheveux emmêlés (secs ou mouillés), masse délicatement votre cuir chevelu et convient à tous les types de cheveux, qu'ils soient soyeux, raides ou bouclés.
Oh oui, c'est possible ! La brosse flexible est née pour le démêlage après la douche. Elle glisse sur les mèches mouillées sans tirer sur les cheveux, sans les tirailler et sans faire de vagues.
100%. Que vous ayez des boucles, des frisettes ou des mèches lisses, cette brosse démêle en douceur et aide à définir votre texture naturelle sans vous faire transpirer (ou sans casser vos cheveux).
Absolument. Utilisez-la pour rafraîchir votre coiffure, distribuer du produit (comme notre Après-shampooing sans rinçage hydratant au lait d'argan, clin d'œil) ou donner un petit massage à votre cuir chevelu à tout moment de la journée. C'est le MVP multitâche de votre vanité.
Pas du tout. La conception flexible de l'arceau et les poils ultra-doux garantissent une expérience sans douleur et sans tension dont votre tête vous remerciera.
Oui ! Grâce à sa construction en une seule pièce, elle est facile à recycler - il suffit de la jeter à la poubelle (même si nous ne pensons pas que vous puissiez vous en débarrasser un jour, TBH).
Arc flexible. Manche ergonomique. Poils apaisants pour le cuir chevelu. Polyvalence pour les cheveux secs et mouillés. Et avons-nous mentionné qu'elle est mignonne et recyclable ? Oui, c'est ça. Il vous faut celle-ci.
Le prix de référence correspond au prix auquel le produit était précédemment proposé ou au prix de marché estimé pour des articles comparables vendus ailleurs. Les prix étant susceptibles de fluctuer, nous ne pouvons garantir que le prix de référence corresponde au prix du marché en vigueur à un moment donné.
Le choix d'une sélection entraîne l'actualisation de la page entière.