30 % de réduction supplémentaire avec le code LABORDAY30
Le spray poids plume garde les cheveux lisses et soignés malgré la pluie, la transpiration ou l’humidité
Bloque l’humidité et prévient les frisottis
Apporte une brillance intense et crée un fini lisse effet miroir
Hydrate sans alourdir les cheveux
Protège les cheveux de la chaleur lors du coiffage jusqu'à 266°F/130°C
Formulé avec Glassplex™pour des cheveux lisses et brillants
Prolonge votre brushing et contrôle les frisottis
Parfum de pamplemousse rose, sucre filé et vanille
100 % des testeurs ont trouvé que ce spray était léger comme l’air sur leurs cheveux*
Cruelty-free et vegan
Sans parabènes, phtalates, PFA ni CMR (substances cancérogènes, mutagènes et toxiques pour la reproduction)
Emballage fabriqué à partir de matériaux recyclés post-consommation
*Basé sur une étude de consommation de deux semaines menée auprès de 12 testeurs.
Appliquez généreusement sur les cheveux humides et peignez pour répartir uniformément la formule. Séchez les cheveux au sèche-cheveux à l’aide d’une brosse ronde.
Astuce pro : Superposez cette formule au Priming Heat Protectant & Styling Spray avant d’utiliser des appareils chauffants.
Glassplex™
Un complexe d'actifs testés cliniquement pour réduire les frisottis et offrir une brillance miroir intense.
Ingrédients
Eau, dipropylène glycol, polysilicone-29, parfum, pentylène glycol, propanediol, silicone quaternium-18, caprylyl glycol, trideceth-12, trideceth-6, éthylhexylglycérine, vanilline, glycérine, phénoxyéthanol, huile d'écorce de citron (Citrus Limon), limonène, pinène, citral, extrait de graine d'amarante (Amaranthus Caudatus), gluconate de calcium, extrait de graine de caféier (Coffea Arabica), extrait de feuille d'artichaut (Cynara Scolymus), gluconolactone, extrait de fleur d'hibiscus (Hibiscus Rosa-Sinensis), filtrat de ferment de Leuconostoc, extrait de riz (Oryza Sativa), sorbate de potassium, benzoate de sodium, peroxydase de soja, superoxyde dismutase, extrait d'ortie (Urtica Dioica), acide citrique
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: 4,
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;
let discount = 0;
this.selected.forEach(function (item) {
item.tags.forEach(function (tag) {
if(tag.includes('discount:') || tag.includes('Discount:') || tag.includes('discount: ') || tag.includes('Discount: ')){
discount = tag.split(':')[1];
}
})
})
if(discount > 0){
extraDiscount = total * (discount / 100);
}
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Spray AntiHumidité Frizz Shield`;
let bundleHandle = `spray-antihumidite-frizz-shield`;
let bundleCount = 4;
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 AntiHumidité Frizz Shield
$50.00
$50.00
Spray protecteur contre la chaleur
$37.00
$37.00
Crème lissante pour séchage à l’air libre
$29.00
$29.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">
It is dry where I live but I will be in a humid climate this summer. It has a stronger smell than other kitsch products I have used but I love it!! It made my hair feel so soft and helped tame my coarse, frizzy gray hairs.
I washed my hair with the argon oil shampoo, and coconut oil conditioner bars. Then I sprayed this on before using a blowout brush hair dryer. My hair feels soft and smells so good!
LM
Laurie M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Works great
I am early sixties and my hair has definitely changed, this product works great to keep the frizz down! Thank you 😊
BT
bethany t.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
3 months ago
I love this stuff!
I live in a very humid area and this stuff has helped som much. I mix it with the air dry cream to go more natural and it is fantastic!
LH
Lisa H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Really good hair product
I have old lady hair that behaves badly with the least bit of humidity. This hair product helps out a lot toward keeping my hair under control.
AG
Adrienne G.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Absolutely the best products
One of my recent purchases was the Humidity blocking frizz spray and now living down south frizz has become an issue for me . This product is amazing as is every single item I have bought from Kitsch.
I think I have almost everything they sell and every thing does what is promised. Fast shipping and wonderful customer service .
Kit sch the absolute best !!!
CW
Cathy W.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Humidity blocking frizz shield spray
I love how it does what it says it will do, stopping the frizz
KS
Kristy S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Love it!
This stuff is the best! Works great on my curly hair! ❤️
OK
Ollie K.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Excellent product
I really love this product because it helps control my frizzy gray hair. My hair was not frizzy before graying so it’s been a challenge trying to tame it down. It not only helps tame the frizz but it makes my hair look & feel amazing. It doesn’t weight my hair down nor is it greasy. I’m loving this product. I highly recommend anyone with some frizzes to try it. Worked for me & I am sure it will help others too.
IT
Ilene T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Awesome product
This is the first time I’ve tried a product that said that it would help with frizz during humid days that actually delivered. During the period that I tried it, we had several days in a row with high humidity. My hair had a tiny bit of frizz and that was it. It was shiny and felt really soft. I prefer to use it on wet hair because it also helps with tangles. The only complaint that I have is that the scent is a bit strong for me. It wore off as the day went on, but I wish it wasn’t as strong.
AJ
Ashley J.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
12 months ago
Amazing!!
I received this product in exchange for my thoughts...I can't wait to purchase this! It performed amazing, the smell is sooo good and my hair is so soft! It's really helped keep the frizz down and my hair lasted between washes! Solid product ladies!!
Loading...
Loading...
Frequently Asked Questions
Cette formule est conçue pour tous les types de cheveux, en particulier ceux sujets aux frisottis, aux gonflements ou aux variations de texture liées à l'humidité.
Sa formule intègre le Glassplex™, un complexe exclusif d'agents revitalisants haute performance et d'boosters d'éclat, pour des cheveux lisses et ultra-lumineux.
Pas du tout ! La formule est conçue pour être ultra-légère et non grasse, aidant les cheveux à paraître lisses et brillants sans alourdissement ni résidus.
Ce spray offre une protection thermique jusqu’à 266 °F/130 °C, ce qui le rend adapté à une utilisation avant le séchage au sèche-cheveux. (La plupart des sèche-cheveux atteignent une température maximale de 210 °F/99 °C.) Nous recommandons d’utiliser ce produit avec le Kitsch Priming Heat Protectant & Styling Spray pour une protection thermique jusqu’à 450 °F.
Non. Ce produit cible les frisottis, protège contre l’humidité et apporte de la brillance ; il n’est pas conçu pour fixer la coiffure. Nous recommandons de superposer cette formule au Kitsch Priming Heat Protectant & Styling Spray, qui contient un ingrédient offrant une tenue flexible.
Oui ! Cette formule laisse les cheveux colorés brillants et lisses.
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.