家
/
SiteWide Discount
ローズマリー&ビオチン・ボリューマイジング・コンディショナー・バー
variant.price){
onSale = true;
}else{
onSale = false;
}
}" @set-onetime-price.window="if($event.detail.id == 7696270327989) {
if(!$event.detail.subscribe){
variant.price = $event.detail.new_price;
variant.orignal_price = $event.detail.new_orignal_price;
}
}" @set-subscription-price.window="if($event.detail.id == 7696270327989) {
if($event.detail.subscribe){
variant.price = $event.detail.new_price;
variant.orignal_price = $event.detail.new_orignal_price;
}
}" @discounted-price.window="if($event.detail.id == 7696270327989) {
variant.price = $event.detail.new_price;
variant.orignal_price = $event.detail.new_orignal_price;
}" @variant-updated.window="variant.price = $event.detail.variant.price; if(!isBundle){ soldOut = !$event.detail.availibility }" @discount-applied.window="$nextTick(() => checkDiscountCode())" @discount-removed.window="$nextTick(() => checkDiscountCode())" class="price text-xl justify-center lg:justify-between font-semibold flex gap-x-2 items-center price--show-badge ">
当日または翌日発送
90日間返品
細くデリケートな髪に深く栄養を与え、柔らかく滑らかな髪に仕上げます。 を注入した。 ローズマリー、ビオチン、ネイチャーペップ® アマランサス への 内側から毛束を太くする 髪全体の健康のために 配合成分 ボリューム、ツヤ、ケラチン生成を促進し、豊かな髪に仕上げます。
気に入る理由
抗酸化ペプチド をブレンドすることで、ストランドを強化する。破損を減らす 摩擦のないスプリット・エンド、 ハリのある髪 慎重にバランスが取られている、 ライトウェイト・フォーミュラ 残留物を残さず、髪をやさしくケア 無料 パラベン、フタル酸エステル、シリコン、硫酸塩 pHバランス そして カラーリングした髪にも安全 使い捨てプラスチックの削減 : 液体シャンプー/コンディショナーを2本節約できる。米国製、ビーガン、無添加、リーピングバニー認証 4ocean認定: について シャンプーやコンディショナーのバーごとに、 4オーシャンは コンディショナーボトル1本分のプラスチック 世界の海、川、海岸線から
使用方法
シャンプーの後、ぬるま湯でバーを濡らし、泡立てながら髪の長さから毛先までマッサージするようになじませます。すすいだ後、いつものように髪をとかす。
プロのアドバイス と組み合わせると、究極のボリュームアップを体験できます。 キッチュ ボリュームアップ ローズマリー&ビオチン 固形シャンプー 毛束を太くし、持ち上げるのに役立つ。
原材料
ローズマリー抽出物
ローズマリー・エキスは、血流を改善し、毛根に栄養を与え、刺激を和らげることで、頭皮から髪をサポートし、より強く、長く、柔らかい髪へと導きます。
ビオチン
ビオチンでヘアケアを強化し、強く、太く、絹のような、縮れのない輝きのある髪を作りましょう。
全成分リスト
原材料
セテアリルアルコール、ベヘントリモニウムクロリド、ヤシ油、ヒマワリ種子油、ラウリン酸ラウリル、天然香料*、ビオチンローズマリー(Rosmarinus Officinalis)葉エキス、アマランサス(Amaranthus Caudatus)種子エキス、グアーヒドロキシプロピルトリモニウムクロリド、酸化クロムグリーン(CI77288)**、酸化鉄(CI77492)**、ウルトラマリン(CI77007)***。
*植物由来の自然な香り。**自然な色。
フレグランスラベンダー&バニラ
認証
私たちはLeaping Bunnyの認証を受けています!Leaping Bunnyロゴは、表示されている製品の開発に新たな動物実験が行われていないことを消費者に保証する、国際的に認められた唯一のシンボルです。
{
discount_percentage = $event.detail?.percentage || 0;
})" x-init="$watch('selected', value => {
if (value.length != total_items) {
discount_percentage = 0;
}else{
discount_percentage = 0;
}
const cookieDiscount = Unick.getCookie('discount_code');
if(cookieDiscount){
const discount = discount_table.find((item) => {
return item.toLowerCase().includes(cookieDiscount.toLowerCase());
});
const discountValue = discount?.split(':')[1] || 0;
discount_percentage += parseInt(discountValue);
}
})" x-data="{
discount_table: JSON.parse(JSON.stringify(`WINTER24:20,Secretsale:25,Kitsch25:25,FB20:20,WELCOME20:20,Kitschwelcome:20,SUMMEREND:20,15Kitsch:15,Fall15:15,CODE10:10,HAIRDAY24:25,discount:28`)).split(','),
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,
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 = 'ローズマリー&ビオチン・ボリューマイジング・コンディショナー・バー';
let bundleHandle = 'ローズマリー-ビオチン-ボリューマイジング-ソリッドコンディショナー';
let bundleCount = '3';
let bundleQty = 1;
let index = 0;
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 cart with event dispatch
this.$dispatch('update-cart', { cart: response });
// Open cart after adding product
this.$dispatch('toggle-cart-drawer');
});
}
}">
Frequently Bought Together
Total price:
$40.00
$40.00
Add selected to cart