Úsalo con el cabello húmedo o seco como un profesional gracias a sus cerdas flexibles y ultrasuaves.
Estimula el cuero cabelludo con cada pasada para lucir un cabello sano y radiante.
Mango antideslizante para un control cómodo y sin esfuerzo en todo momento.
Desenreda sin tirones mientras protege tu cabello de cualquier daño.
Perfecto para distribuir uniformemente tus productos capilares favoritos mientras desenredas.
Deja el cabello suave, sedoso y libre de encrespamiento en cada cepillado.
Perfecto para todo tipo de cabello y texturas.
Ideal para el uso diario, después de la ducha o simplemente para un retoque rápido.
Desliza suavemente por el cabello húmedo o seco, comenzando desde las puntas y subiendo hacia las raíces. Úsalo sobre el cabello húmedo para desenredar después de lavarlo, o sobre el cabello seco para suavizar y peinar.
Consejo profesional: para obtener resultados extra suaves y sin encrespamiento, combínalo con la Funda de almohada de satén de Kitsch para proteger tu cabello durante la noche.
Plástico reciclado
{
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 = `Cepillo negro para cabello húmedo y seco`;
let bundleHandle = `cepillo-negro-cabello-humedo-y-seco`;
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');
});
}
}">
Comprados juntos frecuentemente
+
Total price:
Cepillo negro para cabello húmedo y seco
$31.00
$31.00
Crema suavizante de secado al aire
$29.00
$29.00
Acondicionador hidratante de leche de argán sin aclarado
$29.00
$29.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 = `Cepillo negro para cabello húmedo y seco`;
let bundleHandle = `cepillo-negro-cabello-humedo-y-seco`;
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 = 'Añadir selección al carrito';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Comprados juntos frecuentemente
Cepillo negro para cabello húmedo y seco
$31.00
$31.00
+
Crema suavizante de secado al aire
$29.00
$29.00
+
Acondicionador hidratante de leche de argán sin aclarado
Register to receive a notification when this item comes back in stock.
Please enter a valid email address.
Thanks for signing up! We'll send you an email when the product becomes available.
{
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">
I really love that this is a wet AND dry brush! It doesn’t damage wet hair when brushing— it’s super gentle. I would definitely recommend this product to anyone!
AL
Alison L.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Magical!
I didn't have high expectations because I've purchased so many brushes & I have never found 'the' brush. This brush is the closest thing I've found to being 'the' brush! It glides through my fine strands & painlessly frees my head of any tangles. The major plus is I have a really hard time finding a brush that doesn't make my hair ridiculously static-y. Even brushes that are supposed to help, don't. This brush has ZERO static!!! I'm ordering another as backup & would LOVE for Kitsch to come out with a travel/purse sized.
KW
Katie W.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
On the autism spectrum- best brush to not get sensory overload <3
Even after eight years, it's still going strong. All it needs is an occasional soap & water wash and some tweezing the lint off a few times a year and it's as good as the day I got it! Additionally, I am autistic and it is sometimes really overwhelming to do basic hygiene work and easy hairstyles and oiling with my hair. This is one of two brushes I've used in my life that I can get away with 'fast and nasty running late' brushing and still not have to worry about figuratively setting my scalp on fire for the next few hours while not having to worry about breakage and split ends forming either.
For those reading, I have wavy (2b to 2c) hair, mixed texture (thin and thick strands), oily roots & dry ends, and mild dandruff.
E
El
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
BEST BRUSH EVER!
So after years of searching for a good brush this was found!
Both my and my daughter have got thick curly dry hair and this brush is so good! There’s no pulling or snagging your hair! Can’t recommend enough, I bought a second one!
CE
Cheryl E.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Favorite brush
This amazing brush will distribute product in your hair while you’re in the shower or out of the shower. You can use it to brush your hair when it’s wet or dry.. but my favorite thing is it’s soft. When you brush your hair, it gives it doesn’t rip out your hair. It just gives and feels good against your head.. I like it so much I’m gonna order another one for my daughter.
ZE
Zoe E.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
10/10
I love the wet/dry brush! I could tell immediately it was different and just what I was looking for! I have tried the unbrush that’s all over tiktok and the wet brushes and this one beats them all! I will say I wish there were 2 sizes because I have really long and thick hair, it would just be nice to have a bigger paddle brush. But I absolutely recommend this hairbrush!
R
Regina
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Best brush overall!
The Consciously Created Wet/Dry Brush from Kitsch is fantastic for hair care. It glides though both wet and dry hair, making it versatile for daily use. It also helps to distribute leave-in moisturizers evenly. This is my hair after applying the Shae Butter conditioner bar to my ends and my daughter's friend right before her braid removal and brush out. This brush does it all, Highly recommended!
LS
Lara S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Best brush I've ever owned
My wavy hair has always been hard to brush and I've been shocked how easily this goes through it. My last brush was probably over a decade old, it finally broke and I was worried I'd never find an easy brush again. This one far surpassed my last brush and I'm tempted to stock up to last the rest of my life. ;)
R
Ray
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
I love this brush!
I had no idea how much my old brush was damaging and breaking my hair until I tried this one. It is so gentle yet effective at detangling my long and easily knotted hair. I’m losing so much less hair now and the hair that does come out in the brush is very easy to remove to keep it clean. I am so pleased with this purchase.
LT
Lianne T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
The strongest softest brush
This brush is great on tangles and doesn't pull. It feels like a very soft pressure through my hair yet strong enough to get through tangles without a lot of work or effort from me. I'm so glad I tried this brush would highly recommend.
Loading...
Loading...
Frequently Asked Questions
¡Sí! Está diseñado para desenredar el cabello húmedo suavemente sin causar daño.
Absolutamente. Sus cerdas flexibles funcionan en todos los tipos y texturas de cabello.
No, evita el calor directo. Es mejor usarlo en cabello húmedo (secado con toalla) o seco, sin herramientas de peinado con calor.
Retira el cabello, lava las cerdas con un jabón suave y agua tibia, y déjalo secar al aire por completo.
¡Sí! Es tan delicado que lo podrás usar para desenredar y peinar todos los días.
El precio de referencia representa el precio al que se ofrecía anteriormente el producto o el precio de mercado estimado de artículos comparables en otros establecimientos. Dado que los precios suelen fluctuar, no podemos garantizar que el precio de referencia refleje el precio de mercado vigente en un momento determinado.
Al seleccionar una opción, se actualiza toda la página.