Formulato con estratti botanici volumizzanti, inclusi i peptidi di amaranto, per aumentare il sostegno e la pienezza
Arricchito con rosmarino e biotina per aiutare a promuovere l'aspetto di capelli sani
L'86% ha confermato che offre sostegno e volume visibili alle radici & l'83% ha concordato che dona pienezza/spessore alle radici*
Il 90% ha confermato che non appesantisce i capelli e non lascia una sensazione di unto*
Prodotto negli USA con ingredienti di provenienza globale e cruelty-free
Formula al 96% a base biologica
Confezione realizzata con materiale PCR (riciclato post-consumo)
*basato su uno studio dei consumatori di 1 settimana su 29 partecipanti
Dividere i capelli umidi o asciutti in sezioni.
Spruzzare il prodotto sulle radici 2-3 volte per sezione, massaggiando per distribuirlo uniformemente.
Asciugare con il phon utilizzando una spazzola tonda, quindi fissare i capelli con bigodini in velcro per sigillare lo styling e favorire risultati voluminosi e duraturi.
Rosmarino e biotina
Aiuta a promuovere l'aspetto di capelli sani.
Peptidi di amaranto
Estratti botanici volumizzanti che aumentano il volume e la pienezza alla radice.
Ingredienti
Alcohol Denat., Water/Aqua/Eau, VP/VA Copolymer, Polysorbate 20, Polyquaternium-11, PVP, Amaranthus Caudatus Seed Extract (Estratto di semi di amaranto), Rosmarinus Officinalis (Rosemary) Leaf Extract (Estratto di foglie di rosmarino), Lavandula Angustifolia (Lavender)
Flower Extract (Estratto di fiori di lavanda), Galactoarabinan, Biotin (Biotina), Glycerin (Glicerina), Hydrolyzed Soy Protein (Proteine della soia idrolizzate), Hydrolyzed Rice Protein (Proteine del riso idrolizzate), Olealkonium Chloride, Cinnamidopropyltrimonium Chloride, Panthenol (Pantenolo), Fragrance (Parfum), Citric Acid, Benzyl Alcohol, Potassium Sorbate, Sodium Benzoate, Camphor, Beta-Caryophyllene, Lavandula Oil/Extract, Limonene, Linalool, Linalyl Acetate, Pinene, Terpineol, Vanillin.
Siamo certificati Leaping Bunny! Questo marchio è l’unico riconosciuto a livello internazionale che garantisce l’assenza di test sugli animali nello sviluppo dei prodotti.
{
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 Volumizzante e Ispessente per radici`;
let bundleHandle = `spray-volumizzante-e-ispessente-per-radici`;
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');
});
}
}">
Acquistati spesso insieme
+
Total price:
Spray Volumizzante e Ispessente per radici
$44.00
$44.00
Hair Volumizing Clips in Terracotta
$16.00
$16.00
Set da 8 pezzi di rulli per capelli in ceramica
$27.00
$27.00
Registratevi per ricevere una notifica quando questo articolo sarà di nuovo disponibile.
Inserire un indirizzo e-mail valido.
Grazie per esserti iscritto/a! Ti invieremo un'e-mail quando il prodotto sarà disponibile.
{
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 motivi per passare a Spray Volumizzante e Ispessente per radici di Kitsch
1. Sostegno e volume visibili
L'86% ha confermato che offre sostegno e volume visibili alle radici!* Dona alle radici un volume istantaneo e morbido al tatto.
2. Effetto più pieno e ispessito
L'83% ha confermato che dona pienezza/spessore alle radici!* Trasforma i capelli piatti e fini in capelli dall'aspetto più pieno e più spessi.
3. Leggero
Il 90% ha confermato che non appesantisce i capelli e non lascia una sensazione di unto!* Si avverte leggero e morbido al tatto per tutto il giorno.
4. Formula a base biologica
Formulazione al 96% a base biologica, il che significa che una parte significativa degli ingredienti proviene da fonti biologiche rinnovabili, come piante o altri materiali naturali.
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
No. La formula leggera offre sostegno e pienezza senza lasciare residui duri o croccanti.
È stato progettato per capelli fini, privi di tono e piatti, ma i risultati possono essere riscontrati sulla maggior parte dei tipi di capelli.
Per ottenere i migliori risultati, sì. L'applicazione alle radici e l'asciugatura con il phon aiutano a massimizzare il sostegno e il volume a lunga durata.
È progettato per donare volume leggero e pienezza, non una tenuta forte come una lacca per capelli.
Il prezzo di confronto rappresenta il prezzo al quale il prodotto era precedentemente offerto o il prezzo di mercato stimato per articoli comparabili venduti altrove. Poiché i prezzi possono variare frequentemente, non possiamo garantire che il prezzo di confronto rifletta il prezzo di mercato corrente in un determinato momento.
Scegliendo una selezione si ottiene un aggiornamento completo della pagina.