Оптовым клиентам

Кофты

Сортировка по:
Толстовка 20%

Толстовка

195.00 грн
245.00
Заканчивается
S M L XL
  • Темно-розовый
  • Светло-бежевый
  • Светло-серый
  • Рожевий
  • Серый
  • Зеленый
  • Черный
  • Светло-зеленый
console.log("CUSTOM JS LOADED"); document.addEventListener("DOMContentLoaded", function () { const observer = new MutationObserver(function (mutations) { mutations.forEach(function (mutation) { const text = document.body.innerText.toLowerCase(); if ( text.includes("заказ получен") || text.includes("замовлення прийнято") || text.includes("thank you for your order") ) { if (!window.orderTracked) { window.orderTracked = true; if (typeof gtag === "function") { gtag("event", "purchase_lead", { event_category: "conversion", event_label: "order_success" }); } console.log("ORDER SENT tracked"); } } }); }); observer.observe(document.body, { childList: true, subtree: true }); });