Cire 100% végétalienne et à base de plantes bâton enrichi à l'huile de ricin nourrissante
Dompte les mèches rebelles pour un style élégant et raffiné
Lisse les cheveux sans effort grâce à un bâton solide et pratique pour des retouches en déplacement
Notre bâton de cire pour cheveux n'a pas toujours l'air parfait lorsque vous l'ouvrez pour la première fois, mais c'est parce que nous donnons la priorité au développement durable & emballage en papier recyclable sur les regards n'importe quel jour.
Formule sans résidu est facile à peigner, à recoiffer et à laver
Maintien pendant toute la journée verrouille votre look en place sans texture ni graisse
L'emballage est fabriqué à partir de papier biodégradable certifié FSC
Fabriqué aux États-Unis, végétalien, sans cruauté, certifié par Leaping Bunny
1pc Hair Wax Stick
Retirez le capuchon et poussez le bas du bâton de cire pour cheveux vers le haut pour révéler la cire.
Faites glisser la cire directement sur vos cheveux, en insistant sur les zones que vous souhaitez lisser.
Utilisez vos doigts ou une brosse douce pour fixer la cire en place et obtenir une coiffure élégante et non rebelle.
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.
Ingrédients
Laurate de lauryl, extrait de racine de Maranta Arundinacea, huile de graines de Ricinus Communis (ricin), cire de son d'Oryza Sativa (riz), kaolin, huile de ricin hydrogénée, stéarate de glycéryle, acide polyhydroxystéarique, eau, polyquaternium-69, silice, acétate de tocophéryle, phénoxyéthanol, alcool dénaturé, butylène glycol, iodopropynyl butylcarbamate.
{
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;
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 = `Bâton de cire pour cheveux à l'huile de ricin`;
let bundleHandle = `baton-de-cire-pour-cheveux`;
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:
Bâton de cire pour cheveux à l'huile de ricin
$31.00
$31.00
Crème lissante pour séchage à l’air libre
$29.00
$29.00
Set de brosses de coiffage Précision & Définition
$19.00
$19.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">
Generated by AI from 100 most recent customer reviews
Last updated 1 year ago
Customers say this styling stick effectively tames flyaways and baby hairs. Many reviews mention it controls frizz without feeling greasy or heavy. While some note white residue issues and packaging concerns, most appreciate its portability and natural-looking results. Frequent comments address its effectiveness for ponytails and slicked-back styles.
The best thing about this stick is that it smooths your unruly hair and flyaways without being sticky, crunchy helmet hair! It is still soft and flexible but with medium hold! I believe you could work it up by using more product to build a super high hold. This Wax stick does NOT make your hair oily with normal use. I used it 3 days in a row without washing hair. I did multiple styles with this stick (see photos below) It is fantastic!
SM
Stacey M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Works Great.
It may be a wax but you wouldn’t know it in your hair. It’s light and has very minimal smell, which actually when I applied it, I never smelled it in my hair at all. I used it to keep the hair ,that I usually push behind my ears, in place so that I could I could enjoy a meal that hair doesn’t fall into. It is exactly what I needed!!!! Ponytail season is upon us so this is a must have!!! Give it a try and enjoy !!’
A
Ashley
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Simply wonderful!
I was delighted to be selected to test this product, as my kiddos love to try fun hairstyles and we’re always battling those baby hair fly-aways. We used this product for several days and found that it really helped tame the fine wisps of hair when styling ponies and braids. Having never used this type of product, there was a slight learning curve for me as to how much to apply and combing it through smoothly. I can definitely tell the difference on my daughter’s style by the end of the school day versus not using anything. And it makes your hair soft and touchable without any greasy/sticky residue or texture. I love that there isn’t a strong fragrance, it’s safe to use for littles, and has eco-friendly packaging. Thank you KITSCH for another fabulous product!
JA
Jennifer A.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Hair WoW Stick
This hair wax stick is amazing! I love that it’s environmentally friendly and it works so effectively! My flyaways were held in place for the entire day, and it required very little product.
ET
Erin T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Works so well!!
I tested out the wax stick on my walk tonight. First pic is my pre walk frizzies. Second Pic is with the wax before I left the house. Last Pic is after a 3 mile walk in moderate humidity & 80 degrees. Not a hair out of place!! I also used it last weekend when it was as hot as the surface of the sun outside and not a single hair out of place then either. I'm sooooo happy I bought this!!
DW
Denise W.
Verified Buyer
I recommend this product
Rated 4 out of 5 stars
1 year ago
Great for dance recitals!!
This was perfect for my daughter’s dance recital and picture day too! Helped to hold back fly-aways with her hair in a bun. Some issues of clumping at first but we smoothed it out with our fingers and she was good to go!
A
Alycia
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
10 months ago
Perfects your look
With so much regrowth happening, I’ve got tons of unruly baby hairs. This wax stick is perfect to make them lay flat while those little babies work on growing out.
A little goes a long way!
T
Tasha
I recommend this product
Rated 5 out of 5 stars
6 months ago
This thing is black magic! I love it!
I bought this on a whim. I love having my hair up but hate the fuzzy little flyaways you get. This fixed them right up! Doesn't make your hair greasy and only the faintest smell. Well done Kitsch, great product!
BS
Brittany S.
Verified Reviewer
I recommend this product
Rated 4 out of 5 stars
2 years ago
Works great!
I like this product! It has so many uses, my husband used it in his beard as a light weight taming that did not break his skin out. I used it on my hair for fly aways and my eyebrows as a lightweight shaper!! The word “wax” threw me a little but once i used it I realized it is not heavy, greasy, sticky or thick AT ALL which was relieving ❤️
The packaging is great and super portable, i like that i can take it with me anywhere.
Literally the only reason it didnt get 5 stars is because it is unscented and I personally love a scent in my hair products since im so short its the first think people see snd smell when im around
LS
Lourdes s.
Verified Reviewer
I recommend this product
Rated 4 out of 5 stars
2 years ago
Easy hairstyle
I received this sample for an honest review. I like that there is no strong scent, it holds my baby hairs and crazy short curly hairs. I get to do easy hair styles in the morning by just putting the wax on my hair, no need for hair pins to tame it. The packaging was really nice and it makes for easy application without touching the product. Its non greasy too. And it makes my hair shiny!! I am used to using gels and hair spray but mostly hair pins. The only thing i am not accustomed with the hair stick is that, my hair style dont stay put for long, maybe 2-3 hours, but that is good enough for my daily morning school run. Congratulations to Kitsch for another innovative product, and thank you for the opportunity to try it.
Loading...
Loading...
Frequently Asked Questions
- Appliquez la cire directement sur vos cheveux, en insistant sur les zones que vous souhaitez lisser.
- Utilisez vos doigts ou une brosse douce pour fixer la cire en place et obtenir une coiffure élégante, sans mèches rebelles.
- Remettez le capuchon sur le bâton de cire pour cheveux et appuyez doucement.
Oui, notre formule de cire végétalienne est enrichie en huile de ricin pour aider à hydrater et nourrir les cheveux pendant le coiffage.
Oui, notre formule végétalienne permet un coiffage ferme sans les toxines, et se lave facilement.
The Hair Wax Stick works for all hair types and textures. It's especially effective for taming flyaways, baby hairs, and edges on straight, wavy, curly, and coily hair.
No — our no-residue formula holds your style in place all day without stiffness, texture, or greasiness. It combs through easily and washes out at the end of the day.
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.