Крем с озоном БЕЛЫЙ

Крем с озоном БЕЛЫЙ

2 250 

Крем с озоном БЕЛЫЙ: плотный питательный уход для кожи, которой нужны мягкость, комфорт и ухоженный внешний вид.

Главная особенность: светлая текстура с высокой долей озонированного масла. Крем подходит для вечернего ритуала красоты, сухих участков и регулярного ухода.

Что дает уходовый сценарий:

· Питание и мягкость: помогает уменьшить ощущение сухости и стянутости.

· Визуальная свежесть: кожа выглядит более гладкой, ухоженной и увлажненной.

· Комфортная текстура: подходит для лица, шеи, зоны декольте и сухих участков тела.

· Поддержка ежедневного ухода: можно использовать как самостоятельный крем или как часть вечернего ритуала.

Не является лекарственным средством. При выраженных или длительных состояниях кожи нужна консультация специалиста.

Категория:

.bp-legal-footer{max-width:1280px;margin:30px auto 0;padding:18px 20px;border-top:1px solid rgba(16,34,28,.14);font-family:Inter,Arial,sans-serif;color:#42524b}
.bp-legal-footer strong{display:block;margin:0 0 8px;color:#10221c}
.bp-legal-footer nav{display:flex;flex-wrap:wrap;gap:8px 14px}
.bp-legal-footer a{color:#176846!important;font-weight:800;text-decoration:none!important}
.bp-legal-consent{display:flex!important;gap:8px;align-items:flex-start;margin:10px 0!important;padding:10px 12px;border:1px solid #dce7df;border-radius:8px;background:#f8fbf7;color:#34443d;font-size:13px;line-height:1.35}
.bp-legal-consent input{width:auto!important;min-height:0!important;margin:3px 0 0!important;flex:0 0 auto}
.bp-legal-consent a{color:#176846!important;font-weight:800}
.bp-legal-form-error{margin:8px 0 0;color:#a33b2f;font-size:13px;line-height:1.35}
.bp-legal-cookie{position:fixed;left:16px;right:16px;bottom:16px;z-index:999999;display:none;max-width:980px;margin:auto;padding:16px;border:1px solid rgba(16,34,28,.16);border-radius:10px;background:#fff;color:#10221c;box-shadow:0 22px 70px rgba(0,0,0,.22);font-family:Inter,Arial,sans-serif}
.bp-legal-cookie.is-visible{display:flex;gap:14px;align-items:center;justify-content:space-between}
.bp-legal-cookie p{margin:0;color:#34443d;font-size:14px;line-height:1.45}
.bp-legal-cookie a{color:#176846!important;font-weight:800}
.bp-legal-cookie button{min-height:38px;border:0;border-radius:7px;background:#176846;color:#fff;font-weight:850;padding:8px 14px;cursor:pointer;white-space:nowrap}
.bp-legal-med-note{max-width:1280px;margin:16px auto;padding:12px 14px;border-left:4px solid #c99428;background:#fffaf0;border-radius:8px;color:#4f4632;font:14px/1.45 Inter,Arial,sans-serif}
@media(max-width:700px){.bp-legal-cookie.is-visible{display:block}.bp-legal-cookie button{margin-top:10px;width:100%}}

(function(){
«use strict»;
if (window.__bpLegalComplianceInstalled) return;
window.__bpLegalComplianceInstalled = true;
var links = [
[«/politika-konfidencialnosti/»,»Политика ПДн»],
[«/polzovatelskoe-soglashenie/»,»Согласие ПДн»],
[«/publichnaya-oferta/»,»Оферта»],
[«/dostavka-vozvrat-garantiya/»,»Доставка и возврат»],
[«/rekvizity-prodavca/»,»Реквизиты»],
[«/cookie-policy/»,»Cookies»],
[«/disklejmer-ozdorovitelnye-formulirovki/»,»Дисклеймер»],
[«/dokumenty-i-sertifikaty/»,»Документы»]
];
function htmlLinks(){
return links.map(function(item){ return ‘‘+item[1]+’‘; }).join(»);
}
function addFooter(){
if (document.getElementById(«bp-legal-footer»)) return;
var box = document.createElement(«section»);
box.id = «bp-legal-footer»;
box.className = «bp-legal-footer»;
box.innerHTML = ‘Юридическая информация BIOPATRIOT

‘;
document.body.appendChild(box);
}
function isLeadForm(form){
if (!form || form.dataset.bpLegalSkip === «1») return false;
var text = (form.textContent || «») + » » + (form.innerHTML || «»);
var hasContact = form.querySelector(‘input[type=»tel»],input[type=»email»],input[name*=»phone» i],input[name*=»contact» i],input[name*=»email» i],input[name*=»name» i],textarea[name*=»comment» i],textarea[name*=»context» i]’);
var isSearch = form.matches(‘[role=»search»],.search-form’) || form.querySelector(‘input[type=»search»]’);
var isCart = form.classList.contains(«cart») || form.classList.contains(«woocommerce-cart-form»);
return Boolean(hasContact) && !isSearch && !isCart && !/coupon|search/i.test(text);
}
function addConsent(form){
if (!isLeadForm(form) || form.querySelector(‘.bp-legal-consent input[name=»bp_personal_data_consent»]’)) return;
var label = document.createElement(«label»);
label.className = «bp-legal-consent»;
label.innerHTML = ‘Я согласен(на) на обработку персональных данных по Политике ПДн и принимаю Согласие на обработку ПДн.‘;
var submit = form.querySelector(‘button[type=»submit»],input[type=»submit»],button:not([type])’);
if (submit && submit.parentNode) submit.parentNode.insertBefore(label, submit);
else form.appendChild(label);
form.addEventListener(«submit», function(event){
var input = form.querySelector(‘input[name=»bp_personal_data_consent»]’);
var old = form.querySelector(«.bp-legal-form-error»);
if (old) old.remove();
if (input && !input.checked) {
event.preventDefault();
event.stopPropagation();
var msg = document.createElement(«div»);
msg.className = «bp-legal-form-error»;
msg.textContent = «Поставьте согласие на обработку персональных данных.»;
label.insertAdjacentElement(«afterend», msg);
}
}, true);
}
function patchForms(){
Array.prototype.forEach.call(document.querySelectorAll(«form»), addConsent);
}
function addCookie(){
if (window.localStorage && localStorage.getItem(«bp_legal_cookie_ok») === «1») return;
if (document.getElementById(«bp-legal-cookie»)) return;
var box = document.createElement(«div»);
box.id = «bp-legal-cookie»;
box.className = «bp-legal-cookie is-visible»;
box.innerHTML = ‘

Мы используем технические cookies, localStorage, WooCommerce cookies и Яндекс.Метрику/Webvisor для работы магазина, аналитики и улучшения сайта. Подробнее: Cookies и аналитика.

‘;
box.querySelector(«button»).addEventListener(«click», function(){
try { localStorage.setItem(«bp_legal_cookie_ok», «1»); } catch(e) {}
box.classList.remove(«is-visible»);
});
document.body.appendChild(box);
}
function addMedicalNote(){
if (document.getElementById(«bp-legal-med-note»)) return;
var body = document.body;
var relevant = body.classList.contains(«single-product») || /озон|ванн|масл|крем|оздоров/i.test(document.title + » » + document.body.textContent.slice(0, 4000));
if (!relevant) return;
var note = document.createElement(«div»);
note.id = «bp-legal-med-note»;
note.className = «bp-legal-med-note»;
note.innerHTML = ‘Информация на сайте носит ознакомительный характер, не является медицинской консультацией, диагнозом или обещанием лечебного эффекта. Перед применением продукции, процедур или оборудования учитывайте инструкции, противопоказания и при необходимости консультируйтесь со специалистом. Подробнее.’;
var target = document.querySelector(«main,#main,.site-main,.main-content») || document.body;
target.insertBefore(note, target.firstChild);
}
function run(){ addFooter(); patchForms(); addCookie(); addMedicalNote(); }
if (document.readyState === «loading») document.addEventListener(«DOMContentLoaded», run); else run();
setInterval(patchForms, 1500);
})();

Товар добавлен в корзину Корзина Оформить