Nettoie en douceur sans dessécher la peau, idéal pour un usage quotidien
Notre barre Bottle-Free Beauty® offre des résultats solides avec plus de produit et moins d’emballage
Formulé avec des molécules brevetées neutralisant les odeurs qui neutralisent les odeurs à la source, avec une efficacité prouvée par des tests sensoriels et analytiques
Un parfum boisé aquatique qui vous transporte vers un coucher de soleil doré à Malibu, avec une douce brise marine
Un mélange aérien de notes de sel marin, d’ambre et de bois flotté pour une sensation fraîche et ensoleillée
Une mousse riche pour un nettoyage doux et luxueux, et le parfum est le moyen idéal de rafraîchir votre senteur entre deux lavages
Écologique et idéale en voyage — sans plastique, sans fuite, juste une barre compacte et durable
Design ergonomique avec surface striée pour une meilleure prise en main et application
Utilisez le parfum sur vos cheveux, votre corps — même sur votre taie d’oreiller en satin Kitsch !
Créé par une maison de parfum de renommée internationale
Végan et cruelty-free
Sans CMR synthétiques directs (cancérogènes, mutagènes ou toxiques pour la reproduction), phtalates, parabènes ni PFAS
Flacons fabriqués avec du PCR (plastique recyclé post-consommation)
1x Cleansing Amber Shores Body Wash Bar
1x Amber Shores Hair Perfume
Barre nettoyante pour le corps
Faites mousser la barre entre vos mains ou directement sur la peau en massant délicatement pour obtenir une mousse riche et crémeuse. Rincez soigneusement.
Astuce : associez-la au gant exfoliant Kitsch pour aider à revitaliser et renouveler la peau.
Parfum capillaire
Vaporisez le parfum directement sur cheveux secs à une distance d’environ 15–20 cm pour rafraîchir et parfumer la chevelure. Vous pouvez également l’utiliser sur le corps ou sur votre oreiller pour une expérience sensorielle enveloppante.
Glycérine
Un humectant qui attire l’humidité vers la peau pour la garder douce et hydratée.
Ingrédients
Barre nettoyante pour le corps Amber Shores
Palmitate de sodium, cocoate de sodium et/ou palmiste de sodium, eau, glycérine, parfum, laurate de lauryle, acide stéarique, chlorure de sodium, méthyl cocoyl taurate de sodium, diacétate de glutamate de tétrasodium, extrait de feuille de romarin, acétate de tocophéryle (vitamine E), tétraméthyl acétyloctahydronaphtalènes, huile d’écorce d’orange amère, limonène, vanilline, citronellol, coumarine, dioxyde de titane, oxydes de fer1
1Colorants d’origine naturelle
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;
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 = `Rituel parfumé Amber Shores`;
let bundleHandle = `rituel-parfume-amber-shores`;
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');
});
}
}">
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">
When I tell you I get so many compliments and people asking where I got my perfume— I’m not kidding. I love the entire line up, but this one specifically is my favorite. I use it after the gym and before work. It lasts all day.
I will purchase this product over and over again! It’s a great layering scent. I use it with EOS lotions and phlur perfumes. Definitely recommend!
K
Kitsch
1 year ago
We're thrilled to hear you're getting compliments and enjoying it as part of your daily routine. Just to share a little extra: while our perfume works just like any traditional fragrance, it also features our patented deodorizing technology designed specifically for hair. So not only does it smell amazing, but it also helps keep your hair feeling fresh—especially post-gym or on-the-go. We're so glad it's your favorite and that it layers beautifully with your other scents! 💐✨
S
Stacey
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love this !
Kitsch has done it again !!!! This amber scent hair fragrance is amazing. It has a fresh light scent that is t too much. Great way to freshen up your hair after a long day at work so you can go out on the town feeling and smelling great !!! Don’t stop at one, grab them all !!
S
Saira
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
In Love ❤️
I ordered the hair perfume amber ,and you know what is my regret? That why I ordered one only I want all the fragrances...it is super delicious iam a dior user in hair perfume but now iam going to use this only .
TP
Tracy P.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Amazing
Such a great product well worth the money. I will definitely be purchasing again, My favourite is Amber shores as it reminds me of being on a tropical island and it smells amazing. Highly recommend these hair products.
L
Lilian
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love it!
I was weary ordering this because the products here are very pricy, but the thing is... They're worth it!
I love this perfume, it's sweet and warm, even though I normally go for fresher scents this is my new favourite! 😊
M
MK
I recommend this product
Rated 4 out of 5 stars
1 year ago
My daughter thinks I bought it for *her*
Sure. I totally did… and I will also benefit from her obsession. I just wish they had a bigger variety of scents. Tart cherry is my favorite - when considering what perfume to match the Kitsch hair scents with, it really makes getting ready in the mornings more fun. The possibilities are endless!
JE
June E.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Great product
This really is a level up from other soaps. It smells good, lathers well, and is so moisturizing that I don’t even need lotion after the shower.
CM
Cherie M.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Great scent
It lathers so well and still smells good hours later. It smells amazing. Not a fruity, floral which is nice. Strong winter or fall scent vibe.
C
Cleo
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Absolutely amazing
I haven't worn it for a full day yet, so I can't speak to its longevity, but the scent is absolutely gorgeous. It truly captures the feeling of sun and sea — like a beach day in a bottle. Once I run out, I'll definitely be repurchasing.☀️💋
G
GF
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Lovely
The amber shores body wash body doesn't irritate my skin, it rinses off easily and leaves my skin feeling soft, and it smells divine!
Loading...
Loading...
Frequently Asked Questions
La barre de savon pour le corps Kitsch est une alternative solide au gel douche traditionnel, conçue pour nettoyer et nourrir la peau sans déchets plastiques. Elle crée une mousse riche et laisse un parfum irrésistible.
Humidifiez la barre et massez-la sur la peau pour faire mousser. Vous pouvez également l’utiliser avec la pochette porte-barre nettoyante pour le corps Bottle-Free Beauty® pour encore plus de mousse.
Bien que sa formule soit douce et sans sulfates, elle est conçue uniquement pour une utilisation sur le corps.
Cela dépend de l’utilisation, mais elle peut remplacer plusieurs flacons de gel douche et durer plusieurs semaines voire mois.
Pour prolonger sa durée de vie, gardez-la au sec entre les utilisations à l’aide d’un porte-savon drainant ou de la pochette porte-barre nettoyante pour le corps Bottle-Free Beauty®.
Un parfum haute performance conçu pour éliminer les odeurs plutôt que les masquer.
Elle utilise des molécules brevetées qui se fixent aux odeurs indésirables pour les neutraliser à la source.
Oui, sa formule est légère, non grasse et adaptée à tous les types de cheveux.
Oui, un alcool cosmétique qui s’évapore rapidement pour diffuser le parfum sans alourdir.
Il élimine les odeurs au lieu de les masquer. Développé par des experts en parfumerie et formulé sans CMR synthétiques, phtalates, parabènes ni PFAS.
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.