Routine sans chaleur et sans frisottis : la crème Smoothing Air Dry fait barrière à l'humidité et discipline les mèches rebelles sans aucun appareil chauffant
Temps de séchage réduit de moitié : la microfibre ultra-absorbante de la serviette cheveux XL à séchage rapide absorbe l'eau en douceur, tandis que sa fermeture à bouton reste bien en place
Un résultat salon à l'air libre : sublime les ondulations et les boucles naturelles pour un fini impeccable et plein de vie (sans effet carton)
Végan, sans cruauté et protecteur de couleur : une routine plus douce, plus respectueuse de tes cheveux et de tes matins
La crème Smoothing Air Dry sublime la texture naturelle tout en contrôlant les frisottis — sans effet carton ni fini collant
La serviette cheveux XL à séchage rapide utilise une microfibre ultra-absorbante pour réduire le temps de séchage en douceur, et sa fermeture à bouton reste bien en place pendant que tu vaques à tes occupations
Conçu pour les cheveux secs et sujets aux frisottis qui recherchent un résultat digne d'un salon sans effort et sans dommages causés par la chaleur
Formule végane, sans cruauté et respectueuse des cheveux colorés
Une routine sans chaleur plus douce pour tes cheveux — et pour tes matins
1x Crème Smoothing Air Dry
1x Serviette cheveux XL à séchage rapide (Terracotta Checker)
Lave et essore : après le shampooing et l'après-shampooing, presse délicatement tes cheveux pour éponger l'excès d'eau (sans frotter). Moins tu manipules tes cheveux mouillés, plus ton séchage à l'air libre sera fluide et doux.
Enveloppe : enroule tes cheveux dans la serviette XL à séchage rapide Terracotta Checker et fixe-la à l'aide du bouton. Laisse poser 10 à 15 minutes pendant que tu te prépares.
Applique : retire la serviette, puis répartis une noisette de crème Smoothing Air Dry sur cheveux humides, des demi-longueurs jusqu'aux pointes. Ajuste la quantité selon la longueur et l'épaisseur de tes cheveux.
Sèche à l'air libre : laisse tes cheveux finir de sécher naturellement. Froisse-les pour plus de définition, ou lisse-les avec tes mains pour un fini plus discipliné.
C'est parti ! Et voilà. Sans appareils, sans chaleur, sans frisottis.
Huile de ricin
Nourrissez vos cheveux des racines aux pointes avec l'aide de l'huile de ricin, une huile qui renforce les cheveux et équilibre le cuir chevelu pour des cheveux propres et sains.
Huile de coco
L'huile de noix de coco retient l'humidité pour hydrater en profondeur vos mèches de l'intérieur et réduire les cassures pour des cheveux plus forts, plus brillants et d'apparence plus saine.
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 = `Le duo séchage à l'air libre`;
let bundleHandle = `le-duo-sechage-a-lair-libre`;
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:
Le duo séchage à l'air libre
$ 803.00
$ 803.00
Glass Hair Shine Serum
$ 350.00
$ 350.00
Conditionneur hydratant sans rinçage au lait d'argan
$ 350.00
$ 350.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">
La crème Smoothing Air Dry enveloppe les mèches pour faire barrière à l'humidité et maintenir ta coiffure impeccable du matin au soir.
2. Un temps de séchage réduit de moitié
La serviette XL en microfibre absorbe l'humidité rapidement — pour que le séchage à l'air libre se termine enfin (et que tu puisses continuer ta journée).
3. Sans chaleur, sans dommages
Conçu pour les cheveux qui veulent faire une pause avec les appareils chauffants, sans pour autant sacrifier un look soigné.
4. Une texture naturelle sans effort
Sublime ta nature de cheveux — ondulations, boucles, crépus — pour obtenir ce fini naturel "sortie de salon" séché à l'air libre.
I have tried so many curl creams and this one is the only one that definitely does what it says definitely will be buying more. I have added a before and after photo so many people have commented on my curls❤️
R
Rose
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Honestly very impressed with this product
For wavy hair, it works great. I have tried a lot of different products for my hair (sometimes difficult) and it highlights my hair without too much volume.
Translated from French
C
Claire
I recommend this product
Rated 5 out of 5 stars
3 months ago
I just knew this was gonna be amazing!
If youre in any doubt about purchasing this air drying cream, i totally advise you to try it. Menopause and thyroid issues caused my life long 56 year old straight hair to suddenly go wavey and curly last year (which was always my dream). So it took me a year to find something that actually works well and is so easy and quick to use. I was almost ready to give up trying as ive tried literally every product for curly/wavey hair and every mixed combo scenario of products you can possibly think of. Then i saw the ad for this. It has been transformative! Quick, easy, beautiful scent, fab packaging. And even better, not expensive. Win, win! I love it and will keep using it for as long as Kitsch keep making it (which better be forever lol).
TH
Theeranart H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Life changing for my hair health!
The quick dry hair towel is my new love!
I used to dry my hair with a hairdryer, but this towel has been life changing. What you see here is just from rice protein bar/ conditioner, and the quick dry towel. I applied a bit of the wax stick on top where the new growth happen. Other than that, no hair dryer, no heat, nothing else.
Thank you Kitsch for making this Mama's life a lot easier 🥰
BT
Bethany T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Great towel
I am really blown away by this towel! My hair sits down to my waist and I have always given up on getting to have a twist style towel for my hair because they are never long enough- half my hair length usually is hanging out. This one actually covers all of my hair currently. I know if it grows out much more it will start peeking out, but this is a huge improvement for me. Add to that that this towel is SUPER absorbing and you have a perfect product. I need to get a second one for my kid since she keeps stealing it from me on her shower days. I would love to see more color options in the future
LB
Lisa B.
I recommend this product
Rated 5 out of 5 stars
3 months ago
This works!
I never leave reviews, but this product does a great job in getting my hair to dry with no frizz. I ordered several more bottles because someone in marketing will get an idea and change it. I have a counter filled with useless products, except for this one. Before pic on the right. My waves are defined and together and the left.
H
Hayley
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
12 months ago
This has brought my waves back after years of dull flat hair.
Okay I absolutely love this. Genuinely didnt think it would work like it has, but bought this because I never dry my hair with heat, I always leave it to air dry.
This has totally transformed my hair with absolutely no effort. It was always a bit flat before but now always has volume and perfect waves!
Im in the UK but will continue to buy this.
The labubu offer is what encouraged me to try an American brand... no labubu for my daughter, unfortunately, but I will certainly buy this again!
ΣΓ
Στέλλα Γ.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
11 months ago
Lovely product
It forms my curls while drying. Best product I've used since I've stopped using styling. I use it after my leave in, scrunch it in my hair and let it air dry. That's all it takes! A quantity of 1 - 2 peas is enough, so a cost effective product too 😉
HC
Hannah C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Great quality!
I love using this - my hair gets dry faster and it’s so easy to use!!! Cute pattern too!
SR
Sara R.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
Cream
This cream has worked better on my naturally wavy hair than anything else has! I love it.
Loading...
Loading...
Frequently Asked Questions
Conçu pour toute personne ayant des cheveux secs ou sujets aux frisottis et souhaitant une routine sans chaleur. Il est particulièrement idéal pour les cheveux ondulés (2a-c), bouclés (3a-c) et crépus/frisés (4a-c) qui cherchent à sublimer leur texture naturelle.
Non. Sa formule ultra-légère ne laisse aucune pellicule rigide (no-cast). Elle lisse et adoucit sans accumuler de produit ni cartonner.
La serviette XL en microfibre réduit le temps de séchage d’environ moitié. Après l'avoir portée pendant 10 à 15 minutes, la plupart des types de cheveux passent d'humides à presque secs en moins d'une heure.
Oui. La crème Smoothing Air Dry fonctionne très bien comme soin lissant préparateur avant un brushing ou un coiffage, mais elle révèle tout son potentiel les jours sans chaleur.
Oui. La crème Smoothing Air Dry est végane, sans sulfates et préserve la couleur.
Tu réalises une économie par rapport à l'achat individuel de la crème Smoothing Air Dry et de la serviette cheveux XL à séchage rapide Terracotta Checker, tout en profitant d'une routine complète sans chaleur dans un seul coffret.
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.