Formulé avec des extraits botaniques volumisateurs, dont des peptides d'amarante, pour booster le volume et la densité aux racines
Infusé de romarin et de biotine pour aider à favoriser l'apparence de cheveux sains
86 % ont constaté qu'il offrait un décollage des racines et un volume visibles & 83 % ont constaté qu'il apportait de la densité/de l'épaisseur aux racines*
90 % ont constaté qu'il n'alourdissait pas les cheveux et ne laissait pas de sensation de gras*
Fabriqué aux États-Unis à partir d'ingrédients de source mondiale et sans cruauté envers les animaux
Formule à 96 % biosourcée
Emballage fabriqué avec des matériaux PCR (recyclés post-consommation)
*basé sur une étude de consommation d'une semaine menée auprès de 29 participants
Séparer les cheveux humides ou secs en sections.
Vaporiser le produit sur les racines 2 à 3 fois par section, en massant pour répartir uniformément.
Sécher au sèche-cheveux à l'aide d'une brosse ronde, puis fixer les cheveux avec des rouleaux en velcro pour verrouiller la coiffure et favoriser des résultats volumineux et durables.
Romarin et biotine
Contribue à favoriser l'apparence d'une chevelure saine.
Peptides d’amarante
Extraits botaniques volumisants qui boostent le volume et la densité dès la racine.
Ingrédients
Alcohol Denat., Water/Aqua/Eau, VP/VA Copolymer, Polysorbate 20, Polyquaternium-11, PVP, Amaranthus Caudatus Seed Extract (Extrait de graine d'amarante), Rosmarinus Officinalis (Rosemary) Leaf Extract (Extrait de feuille de romarin), Lavandula Angustifolia (Lavender)
Flower Extract (Extrait de fleur de lavande), Galactoarabinan, Biotin (Biotine), Glycerin (Glycérine), Hydrolyzed Soy Protein (Protéine de soja hydrolysée), Hydrolyzed Rice Protein (Protéine de riz hydrolysée), Olealkonium Chloride, Cinnamidopropyltrimonium Chloride, Panthenol (Panthénol), Fragrance (Parfum), Citric Acid, Benzyl Alcohol, Potassium Sorbate, Sodium Benzoate, Camphor, Beta-Caryophyllene, Lavandula Oil/Extract, Limonene, Linalool, Linalyl Acetate, Pinene, Terpineol, Vanillin.
Nous sommes certifiés Leaping Bunny ! Ce label est le seul symbole reconnu à l’international garantissant qu’aucun test sur les animaux n’a été réalisé lors du développement des produits.
{
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 = `Spray volumisateur pour les racines`;
let bundleHandle = `spray-volumisateur-pour-les-racines`;
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:
Spray volumisateur pour les racines
$44.00
$44.00
Hair Volumizing Clips in Terracotta
$16.00
$16.00
Rouleaux à cheveux | Céramique 8 Pack
$27.00
$27.00
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 de passer au Spray Volumisateur et Épaississant pour les Racines de Kitsch
1. Volume et décollage des racines visibles
86 % ont constaté qu'il offrait un décollage des racines et un volume visibles !* Donne à vos racines un volume instantané et doux au toucher.
2. Un effet plus dense et plus épais
83 % ont constaté qu'il apportait de la densité/de l'épaisseur aux racines !* Transforme les cheveux plats et fins en cheveux d'apparence plus dense et plus épaisse.
3. Léger
90 % ont constaté qu'il n'alourdissait pas les cheveux et ne laissait pas de sensation de gras !* Semble léger et doux au toucher tout au long de la journée
4. Formule biosourcée
Formulation à 96 % biosourcée, ce qui signifie qu'une partie importante des ingrédients provient de sources biologiques renouvelables, telles que des plantes ou d'autres matières naturelles.
Kitsch’s Root Lifting Spray seriously delivers with a punch. My hair tends to fall flat within hours, but just a few sprays of this lifting spray while blow-drying gives me long-lasting volume without any crunch or stiffness. The formula feels lightweight but still powerful, which is perfect for fine or medium hair. I love that it doesn’t leave any residue or weigh my hair down like other volumizers I’ve tried. It smells subtly fresh, nothing overpowering.
What really impressed me is how touchable and natural my hair looks. My roots stay full and lifted all day without feeling stiff or greasy. Even on second-day hair, it revives my style without needing dry shampoo. I can still run my fingers through my hair and it keeps that bouncy, just-styled feel for most of the day.
If you're tired of lifeless roots and want effortless volume that actually holds, then Kitsch’s Root Lifting Spray is for you!
J
Jessie
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
BIG HAIR
I LOOOOVE THIS STUFF!!! Thanks to the volumizing spray, I finally got to experience what it's like to have BIG HAIR ALL DAY LONG!!! It was super EASY to achieve and stayed volumized ALL DAY!!! Thank you Kitsch for another GREAT product!!!🙏🏼💚💚💚
M
Mina
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Does wonders for my hair
Kitsch’s Root Lifting Spray seriously delivers with a punch. My hair tends to fall flat within hours, but just a few sprays of this lifting spray while blow-drying gives me long-lasting volume without any crunch or stiffness. The formula feels lightweight but still powerful, which is perfect for fine or medium hair. I love that it doesn’t leave any residue or weigh my hair down like other volumizers I’ve tried. It smells subtly fresh, nothing overpowering.
What really impressed me is how touchable and natural my hair looks. My roots stay full and lifted all day without feeling stiff or greasy. Even on second-day hair, it revives my style without needing dry shampoo. I can still run my fingers through my hair and it keeps that bouncy, just-styled feel for most of the day.
If you're tired of lifeless roots and want effortless volume that actually holds, then Kitsch’s Root Lifting Spray is for you!
CH
Cooper H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
Light and refreshing
I have very fine hair so it’s difficult for me to find products that add volume without being too heavy and weighing it down. This product does the trick! I spray about 5 spritzs throughout my roots before I dry it and I massage to evenly distribute. I LOVE how the rosemary tingles my scalp. Then I blow dry with my round brush… the result is light soft and fluffy. I recommend for those with fine hair!
JN
Jessica N.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
I love this spray!
I am truly in love with this root lifting spray. It works even better than a more expensive brand that I have . I have used this spray on both damp and dry hair and love the results! When using it on my damp hair, I use the thermal curlers, and then will use it again for the next couple of days, along with my dry shampoo and love the results every single time!
I’ve been using the Kitsch Root Lifting Spray and really love how effortlessly it adds volume and lift to my roots. The formula feels light and non-sticky, giving my fine hair a natural boost without any heaviness. It sprays evenly and dries quickly, making it perfect for daily use. This spray has quickly become a staple in my styling routine for creating fuller, bouncier hair.
M
Marissa
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
My hair looks so good!
I really have been enjoying this root lifting spray. I started by spraying this on my hair and gently started trying to work it into my hair. I then applied some rollers into my hair and blowed my hair at the roots. After I took the rollers out, my hair was so much bigger than before. I love that this added volume back to my hair and tis lasted for several days.
MK
Mina K.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Transformed my lifeless roots!
Kitsch’s Root Lifting Spray seriously delivers with a punch. My hair tends to fall flat within hours, but just a few sprays of this lifting spray while blow-drying gives me long-lasting volume without any crunch or stiffness. The formula feels lightweight but still powerful, which is perfect for fine or medium hair. I love that it doesn’t leave any residue or weigh my hair down like other volumizers I’ve tried. It smells subtly fresh, nothing overpowering.
What really impressed me is how touchable and natural my hair looks. My roots stay full and lifted all day without feeling stiff or greasy. Even on second-day hair, it revives my style without needing dry shampoo. I can still run my fingers through my hair and it keeps that bouncy, just-styled feel for most of the day.
If you're tired of lifeless roots and want effortless volume that actually holds, then Kitsch’s Root Lifting Spray is for you!
NG
Nicole G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Soft, Touchable Volume That Actually Lasts? Yes, Please!
Obsessed with the Kitsch Root Lifting Spray! Just a few sprays at my roots and I get the perfect volume that holds all day long. It doesn’t leave my hair feeling sticky or stiff, and there’s zero greasiness. I also love that it helps fight frizz—my hair looks fuller, smoother, and way more styled with hardly any effort!
MK
Mina K.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Best lifting spray I have ever tried
Kitsch’s Root Lifting Spray seriously delivers with a punch. My hair tends to fall flat within hours, but just a few sprays of this lifting spray while blow-drying gives me long-lasting volume without any crunch or stiffness. The formula feels lightweight but still powerful, which is perfect for fine or medium hair. I love that it doesn’t leave any residue or weigh my hair down like other volumizers I’ve tried. It smells subtly fresh, nothing overpowering. What really impressed me is how touchable and natural my hair looks. My roots stay full and lifted all day without feeling stiff or greasy. Even on second-day hair, it revives my style without needing dry shampoo. I can still run my fingers through my hair and it keeps that bouncy, just-styled feel for most of the day.
If you're tired of lifeless roots and want effortless volume that actually holds, then Kitsch’s Root Lifting Spray is for you!
Loading...
Loading...
Frequently Asked Questions
Non. La formule légère apporte du volume et de la densité sans laisser de résidus durs ou cartonnés.
Il a été conçu pour les cheveux fins, mous et plats, mais les résultats peuvent être constatés sur la majorité des types de cheveux.
Pour de meilleurs résultats, oui. L'application sur les racines et le séchage au sèche-cheveux aident à maximiser le volume et la tenue de longue durée.
Il est conçu pour donner un volume léger et de la densité — pas une fixation forte comme une laque pour cheveux.
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.