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 terracota`;
let bundleHandle = `detangling-flexi-brush-terracotta`;
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 terracota`;
let bundleHandle = `detangling-flexi-brush-terracotta`;
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.
I absolutely love my terracotta flexi brush. I love that it bends to my scalp and hair when I use it. It reminds me of one of those scalp massagers you see people use. It feels great and also runs through my hair smoothly. It is snagless through wet hair (atleast mine, and I have curly hair!) and almost snag free on my dry hair! This is my new favorite brush and if I ever need a new one, I would definitely buy it through Kitsch!
BS
Betsy S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Wow!
I love this brush! I felt that it didn’t pull my hair like other brushes. The independent rows that move through my hair easily taking out my tangles and not just ripping through it and pulling out my hair. I will be purchasing a few for my granddaughters.
MT
Michelle T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
New Family Favorite Brush!
I absolutely Looooove this Detangling Flexi Brush!!Works great in my long hair that gets very tangled especially now in summer when it’s hot and I’m constantly put hair up and down!It really brushes through my hair nicely,it doesn’t snag or pull my hair out and it leaves it so smooth!Love how it moves and flows with your head too.My other brush is a Kitsch brush also but now this is my Favorite!My kids too Ugghhh they are always taking it!Have to get some more!!
EC
Erika C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Great for ThinCurly Hair!
have naturally curly hair that’s very thin and tangles easily, but this hairbrush made a big difference. I used it on my natural hair and was surprised by how easy it was to detangle. I really like it and would definitely recommend it to others with similar hair types.
E
Edita
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Absolutely love this brush
I love everything about this brush! It has already become my favorite from a million brushes that I have. I love how this hairbrush looks, and I love that it has individual sections. It doesn’t pull on my hair and brushes it so gently. Since each section is separate, the brush moves very smoothly through my hair and adjusts as needed.
JH
Julie H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
10 months ago
Brush
It is a great brush since it it so gentle
K
Kayline
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
I really love this Brush
Absolutely love the Kitsch Detangling Flexi Brush! It glides through my hair effortlessly without pulling or breakage. The flexible design makes it perfect for wet or dry detangling, and it feels super gentle on the scalp. I especially love that my hair doesn't break as much after each brush stroke as it used to.
RD
Renee D. M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
BOUGHT TWO & LOVE
I USE ONE BRUSH IN THE SHOWER AND ONE AS I’M GETTING READY FOR THE DAY. THESE BRUSHES ARE AWESOME AND GLIDE RIGHT THROUGH MY HAIR BECAUSE IT’S FLEXIBLE. MY HAIR FEELS SOFTER THAN EVER AND I HIGHLY RECOMMEND THESE BRUSHES.
S
StaceyM
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Finally a brush that works .
Having fine hair can really be a challenge. It tangles so easily ! I received my brush today. Just at the right time. I had been mowing the yard with my hair pulled back and it’s always been such a challenge to brush it without breaking a lot of it !!! This did the trick, it went through my hair with ease !! The design is definitely well thought out . Another great product from Kitsch !!!
F
Findsandvogue
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
A need!
I LOVE this brush. I use it daily both mornings and evenings. It is very lightweight and glides smoothly through my dry type 3c-4a hair.
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.