Il suo atomizzatore a bruma fine nebulizza il prodotto in modo uniforme e delicato
Ideale per reidratare ricci e onde il secondo giorno o per il plopping
Multiuso e ricaricabile con liquidi leggeri come tonici e soluzioni a base alcolica *Evita di usare prodotti densi o oleosi in questo vaporizzatore.
Il design compatto garantisce facilità d'uso senza contaminazione dell'acqua dovuta a un ristagno prolungato
Perfetto per lo styling dei capelli
Realizzato con materiali riciclati
Riempi lo spray continuo con acqua, balsamo senza risciacquo, una miscela di prodotto diluito o qualsiasi liquido desideri nebulizzare in modo uniforme. Premi il grilletto più volte per generare pressione all'interno, quindi tienilo premuto per rilasciare una bruma fine e continua. Ideale per inumidire i capelli prima dello styling, rinfrescare la definizione dei ricci tra un lavaggio e l'altro, distribuire il prodotto in modo uniforme o fissare il trucco. Risciacqua e lascia asciugare tra un utilizzo e l'altro se decidi di cambiare prodotto.
{
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 continuo - Bianco`;
let bundleHandle = `spray-continuo-bianco`;
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 continuo - Bianco
$ 280.00
$ 280.00
Spray continuo - Terracotta
$ 280.00
$ 280.00
Spray continuo - Nero
$ 280.00
$ 280.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 = `Spray continuo - Bianco`;
let bundleHandle = `spray-continuo-bianco`;
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 = 'Aggiungi la selezione al carrello';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
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">
Fantastic Spray Bottle With Multiple Ways to Use It!
This pretty spray bottle has multiple uses. You can use it to re-set your wavy/curly hair in the morning. You can use it to hydrate your face before adding moisturizer. You can use it to cool off while outside on a hot day. You can even use it to water your plants. I love my new terracotta continuous spray bottle. I've used it everyday for all the above and more. I'm sure I will find even more ways to use it. It's a beautiful color, pretty to look at, and a must to have for every day beauty care.
SM
Stacey M.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love the Continuous mist!!!
Just what I was looking for !!! Finally, a spray bottle that has a continuous mist instead of having to pump, pump, pump and ending up with my hair too wet. This is perfect for refreshing your curls or waves and the mist is just right for that little bit of dampness when using the heatless curlers. The bottle is very easy to hold and did I mention it sprays just the right amount to get that fine mist without soaking your hair ?
GN
Gemma N.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love this!!
This has been great for when I want to do heatless curls after my hair has dried, or attempt french braids in my daughter hair. It wets the hair just enough. I also add a few sprays of their leave in conditioner into the water too. Just remember to empty the bottle of water when you're done and spray until nothing comes out. If you leave any water in it, it can end up smelling a bit stagnant when you use it. But if you dry it out, no problem at all
JN
Janice N.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Time saver
I should have bought this a long time ago. Wow! What a time saver. You wouldn’t thing a simple spray bottle would make much a a difference… but Wow. I am addicted to Kitsch products.
ML
Megan L.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love it
Perfect size bottle, not too big, annd I love that it is clear so I can see how much water is in there or if it needs to be cleaned. The fine mist that comes out does an excellent job rehydrating my curls on non wash days. 10/10
MV
Mayra V.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
12 months ago
10/10 spray bottle!
I bought two of these for my daughter and one for myself. The quality is great, and the continuous spray works perfectly!
DH
Donna H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
One of my favorite accessories from Kitsch
I use my trusty spray bottle every hair-wash day. It works like a charm and the mist is exactly what my curly hair needs to reactivate curls. Just bought one for my daughter's birthday at the end of this month and I know she's going to love it as much as I do!
BD
Béatrice D.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Perfect for moistening hair before styling in the morning and removing creases at night.
Diffusion in a light and continuous mist in a nice spray bottle. Perfect for moistening hair before styling in the morning and removing creases at night regardless of hair texture or density. Very happy with my purchase;)
Translated from French
ET
Erin T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
kitsch never disappoints
I filled my spray bottle with witch hazel for a quick refreshing spritz during the day and have been loving it!
TF
Theresa F.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love this hair sprayer!
I got this a free item on my rewards list, but it’s totally worth paying for. I use it for my son’s hair that is very bunched up every morning, and with the way the spray mists and keeps flowing out of this bottle it takes no time. He use to fight me now his hair went from 15, to 8 minutes. So this product is definitely worth getting.
Loading...
Loading...
Frequently Asked Questions
Acqua, balsamo senza risciacquo, prodotti per lo styling diluiti, tonico viso o qualsiasi liquido sicuro per la pelle e i capelli. Evita prodotti densi e non diluiti che potrebbero ostruire l'ugello.
Premi il grilletto diverse volte per generare pressione all'interno, quindi tieni premuto l'erogatore per ottenere una bruma fine, costante e continua. Non c'è bisogno di continuare a pompare una volta accumulata la pressione.
Sì; le sue dimensioni compatte lo rendono perfetto per la borsa da palestra, i kit da viaggio o da tenere sulla tua postazione di styling.
Risciacqualo periodicamente con acqua tiepida, specialmente si passi da un prodotto all'altro. Rimuovi l'ugello e fai scorrere l'acqua all'interno per eliminare qualsiasi residuo.
Sì; riempilo con tonico viso, acqua di rose o una bruma idratante per un tocco rinfrescante nella tua routine di skincare.
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.