Formulated with NaturePep® Amaranth along with Rosemary & Biotin, clinically proven to thicken hair from within while boosting fullness and shine
Deeply cleanses fine & delicate strands from roots to ends to encourage hair growth
Lightweight formula that gently cares for hair without leaving behind residue or weighing strands down
Free of parabens, phthalates, silicones & sulfates — PH balanced & safe for color-treated hair
Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, Leaping Bunny Certified
Clinically Proven Results: Formulated with NaturePep® Amaranth, Rosemary & Biotin, clinically shown to thicken hair from within while boosting fullness & shine.
Complete Wash Day Routine: The shampoo bar deeply cleanses fine, delicate strands from root to end, the lightweight conditioner leaves no residue or weigh-down, and the Cherry Cloud Claw Clip keeps hair twisted up while you finish getting ready.
Eco-Conscious Beauty: Each bar lasts up to 100 washes, reducing single-use plastic — one bar replaces two bottles' worth of waste.
Clean Formula: Free of parabens, phthalates, silicones & sulfates. PH balanced and safe for color-treated hair. Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, Leaping Bunny Certified.
Keep Your Shower Clean: The Hair Catcher keeps drains clear so you never have to call a plumber, and the Quick-Dry Bath Mat keeps your bathroom floor dry between showers.
1x Rosemary & Biotin Volumizing Shampoo Bar
1x Rosemary & Biotin Volumizing Conditioner Bar
1x FREE Quick-Dry Bath Mat
1x FREE Hair Catcher
1x FREE Cherry Cloud Claw Clip - Medium
Wet hair; rub the shampoo bar between hands into a rich lather or "paint" directly onto scalp.
Massage, rinse & repeat as desired.
Post-shampoo, rub the conditioner bar between hands & distribute through hair or paint on from length to ends.
Finger-comb, rinse, or use as a leave-in.
Lay the Bath Mat flat on a clean, dry floor & hang to air dry between uses.
Press the Hair Catcher firmly over a clean, dry, flat drain before showering.
Twist, clip & go with the Cherry Cloud Claw Clip.
Estratto di Rosmarino
L'estratto di rosmarino aiuta a supportare i tuoi capelli, partendo dal cuoio capelluto, migliorando la circolazione sanguigna, nutrendo i follicoli piliferi e lenendo le irritazioni per favorire capelli più forti, lunghi e morbidi.
Biotina
Potenzia il tuo rituale di cura dei capelli con la Biotina per favorire capelli più forti, dall'aspetto più spesso e con una lucentezza setosa e senza crespo.
NaturePep® Amaranto
Aumenta la produzione di cheratina per contribuire a ispessire le ciocche dall'interno.
Ingredienti
Welcome to KITSCH!
Volumize fine, flat hair with our Rosemary & Biotin Bar Combo
Formulated withNaturePep® Amaranth along with Rosemary & Biotin, clinically proven tothicken hair from withinwhileboosting fullness and shine
Deeply cleanses fine & delicate strands from roots to ends to encouragehair growth
Lightweight formula that gently cares for hair without leaving behind residue or weighing strands down
Free of parabens, phthalates, silicones & sulfates — PH balanced & safe for color-treated hair
Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, Leaping Bunny Certified
Why You'll Love This
Clinically Proven Results: Formulated with NaturePep® Amaranth, Rosemary & Biotin, clinically shown to thicken hair from within while boosting fullness & shine.
Complete Wash Day Routine: The shampoo bar deeply cleanses fine, delicate strands from root to end, the lightweight conditioner leaves no residue or weigh-down, and the Cherry Cloud Claw Clip keeps hair twisted up while you finish getting ready.
Eco-Conscious Beauty: Each bar lasts up to 100 washes, reducing single-use plastic — one bar replaces two bottles' worth of waste.
Clean Formula: Free of parabens, phthalates, silicones & sulfates. PH balanced and safe for color-treated hair. Made in the USA from Globally Sourced Ingredients, Vegan, Cruelty Free, Leaping Bunny Certified.
Keep Your Shower Clean: The Hair Catcher keeps drains clear so you never have to call a plumber, and the Quick-Dry Bath Mat keeps your bathroom floor dry between showers.
We are Leaping Bunny certified! The Leaping Bunny Logo is the only internationally recognized symbol guaranteeing consumers that no new animal tests were used in the development of any product displaying it.
{
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: 2,
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 = `Summer Welcome Kit: Rosemary Bar`;
let bundleHandle = `summer-welcome-kit-rosemary-bar`;
let bundleCount = 2;
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:
Summer Welcome Kit: Rosemary Bar
$28.00$28.00
Olio rinforzante per cuoio capelluto e capelli al rosmarino con biotina
$15.00$15.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: 2,
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 = `Summer Welcome Kit: Rosemary Bar`;
let bundleHandle = `summer-welcome-kit-rosemary-bar`;
let bundleCount = 2;
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');
});
}
}">
Acquistati spesso insieme
Summer Welcome Kit: Rosemary Bar
$28.00$28.00
+
Olio rinforzante per cuoio capelluto e capelli al rosmarino con biotina
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">
4 Reasons Why Millions of Women are Switching to Kitsch’s Rosemary & Biotin
1. Deeply cleanses & hydrates
Refreshes fine & delicate hair from roots to ends to help encourage healthy growth and softer-feeling, shinier-looking strands.
2. Boosts volume
The carefully balanced and lightweight formula lifts hair from the root for a fresh-from-the-salon look with volume that lasts until your next wash day.
3. Thickens strands from within
Powdered by hair-loving ingredients, like rosemary extract, biotin, and thickening amaranth protein®, to help boost keratin production for fuller-looking locks.
4. Reduces breakage & split ends
Strengthens strands with an antioxidant-rich peptide blend for more resilient hair, especially while brushing.
Frequently Asked Questions
Depending on your hair type and how frequently you wash your hair, some people see results immediately and some people may start to see results in a few weeks.
Yes, but don't just take our word for it! Check out the thousands of 5 star reviews from people of all ages using our shampoo and conditioner bars.
Our Rosemary & Biotin bars are especially great for fine, limp, and thinning hair types that want more volume and thickness. If you're unsure, reach out to our support team and we'll point you in the right direction.
Everyone's hair is different, so expect a bit of trial and error until you find out what works best for you. Start with enough to clean from your roots and scalp to the ends of your hair. If you're not seeing results, we recommend applying more during your wash time.
When you sign up for a subscription, we automatically charge your card so you can set it and forget it. You can cancel at any time.
Yes. Protecting your privacy is one of our biggest priorities. We use a number of security measures and industry standard methods to keep your personal information safe. All orders and personal information are managed by a secure server. Details such as credit card number, name, and address are transmitted through Secure Socket Layer (SSL) technology.
Delivery time is based on your selected shipping method at checkout. Most orders ship same day! Please allow up to 2 business days for your order to be processed. Orders are processed Monday through Friday, excluding holidays. Once your order has been shipped, a confirmation email with a carrier tracking number will be sent out. In the case of a lost package, please contact Kitsch support.
We recommend a subscription, so you can enjoy savings and get your products delivered right to your door with free shipping. This way, you'll never run out!
The Rosemary & Biotin Shampoo & Conditioner are ideal for anyone with fine, limp, or thinning hair looking to boost volume, thickness, and shine. NaturePep® Amaranth along with Rosemary & Biotin is clinically proven to thicken hair from within and encourage healthy hair growth. It's especially beneficial for straight and wavy hair types.
Yes! Our Rosemary & Biotin Shampoo & Conditioner bars are PH balanced and free of sulfates, parabens, phthalates, and silicones — making them safe for color-treated hair. They cleanse gently without stripping color or moisture.
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.