تخطي للذهاب إلى المحتوى

United States

cardoO Watch X Gold Edition
Artboard 2@3x.webp
Artboard 4@3x.webp
Artboard 8@3x.webp

cardoO Watch X Gold Edition

https://cardoo.co/web/image/product.template/1489/image_1920?unique=8444150

50,000 Down Payment

بتجمع بين التكنولوجيا المتطورة والتصميم الرياضي الجريء.

50,000.00 LE 50000.0 EGP 50,000.00 LE

غير متوفر للبيع

  • Watch X Gold Type

هذه التركيبة غير موجودة.

Invalid email
We'll notify you once the product is back in stock.

Reserve your watch now!
00 ساعة 00 دقيقة 00 ثانية
1,000,000M EGP 1,000,000M EGP
ratings 428
document.addEventListener("DOMContentLoaded", function () { if (document.body.classList.contains("editor_enable")) return; // === إعدادات التحكم === const disableAllProduct = false; const disabledVariantIds = []; const manualOriginalPrice = "4000"; // === عناصر من الـ DOM === const desktopBtn = document.getElementById("desktop_add_to_cart"); const mobileBtn = document.getElementById("mobile_add_to_cart"); const addToCartBtn = document.querySelector("#add_to_cart"); const productName = document.querySelector("h1[itemprop='name']"); const currentPrice = document.querySelector(".oe_price .oe_currency_value"); const originalPrice = document.querySelector(".oe_default_price .oe_currency_value"); const stickyName = document.getElementById("sticky_product_name"); const stickyCurrent = document.getElementById("sticky_current_price"); const stickyOriginal = document.getElementById("sticky_original_price"); const mobileCurrent = document.getElementById("mobile_current_price"); const mobileOriginal = document.getElementById("mobile_original_price"); const hourEl = document.getElementById("mobile_hours"); const minuteEl = document.getElementById("mobile_minutes"); const secondEl = document.getElementById("mobile_seconds"); const format = v => Math.floor(parseFloat(v.replace(",", ""))).toLocaleString("en-EG") + " EGP"; if (productName) stickyName.textContent = productName.textContent.trim(); if (currentPrice) { const val = format(currentPrice.textContent.trim()); stickyCurrent.textContent = "1,000,000 EGP"; mobileCurrent.textContent = "1,000,000 EGP"; } if (manualOriginalPrice) { const formatted = Math.floor(parseFloat(manualOriginalPrice.replace(",", ""))).toLocaleString("en-EG") + " EGP"; stickyOriginal.textContent = formatted; mobileOriginal.textContent = formatted; stickyOriginal.style.display = ""; mobileOriginal.style.display = ""; } else if (originalPrice && originalPrice.offsetParent !== null) { const val = format(originalPrice.textContent.trim()); stickyOriginal.textContent = val; mobileOriginal.textContent = val; } else { stickyOriginal.style.display = "none"; mobileOriginal.style.display = "none"; } const header = document.getElementById("desktop_sticky_header"); window.addEventListener("scroll", () => { const y = window.scrollY; header.classList.toggle("scrolled", y > 10); header.classList.toggle("at-top", y <= 10); }); function buildVariants(targetId, prefix) { const holder = document.getElementById(targetId); const groups = document.querySelectorAll(".js_add_cart_variants > li[data-attribute_id]"); holder.innerHTML = ""; groups.forEach(group => { const attrId = group.dataset.attribute_id; const inputs = group.querySelectorAll("input[type='radio']"); const groupWrap = document.createElement("div"); groupWrap.className = "variant-group"; inputs.forEach(input => { const li = document.createElement("div"); const label = input.closest("label"); const newLabel = document.createElement("label"); newLabel.className = "variant-color" + (input.checked ? " active" : ""); newLabel.style.background = label?.style.background; const clone = document.createElement("input"); clone.type = "radio"; clone.name = prefix + "-" + attrId; clone.value = input.value; newLabel.addEventListener("click", () => { input.checked = true; input.dispatchEvent(new Event("change", { bubbles: true })); groupWrap.querySelectorAll(".variant-color").forEach(el => el.classList.remove("active")); newLabel.classList.add("active"); checkDisableCondition(); }); newLabel.appendChild(clone); li.appendChild(newLabel); groupWrap.appendChild(li); }); holder.appendChild(groupWrap); }); } buildVariants("sticky_variants", "sticky"); buildVariants("mobile_variants", "mobile"); function checkDisableCondition() { const selectedVariant = document.querySelector(".js_add_cart_variants input[type='radio']:checked"); const selectedVariantId = selectedVariant?.value; const isDisabled = disableAllProduct || disabledVariantIds.includes(selectedVariantId); [desktopBtn, mobileBtn].forEach((btn, idx) => { if (btn) { btn.disabled = isDisabled; btn.style.opacity = isDisabled ? "0.5" : ""; btn.style.cursor = isDisabled ? "not-allowed" : ""; const msg = document.getElementById(idx === 0 ? "desktop_out_of_stock_msg" : "mobile_out_of_stock_msg"); if (msg) msg.style.display = isDisabled ? "block" : "none"; } }); } function updateTimer() { const now = Date.now(); const fiveHoursMs = 5 * 60 * 60 * 1000; const elapsed = now % fiveHoursMs; const remaining = fiveHoursMs - elapsed; const totalSeconds = Math.floor(remaining / 1000); const h = Math.floor(totalSeconds / 3600); const m = Math.floor((totalSeconds % 3600) / 60); const s = totalSeconds % 60; hourEl.textContent = String(h).padStart(2, '0'); minuteEl.textContent = String(m).padStart(2, '0'); secondEl.textContent = String(s).padStart(2, '0'); translateCountdownLabels(); } updateTimer(); setInterval(updateTimer, 1000); checkDisableCondition(); translateToArabic(); const handleClick = (e) => { e.preventDefault(); if (desktopBtn.disabled || mobileBtn.disabled) return; if (addToCartBtn) addToCartBtn.click(); }; desktopBtn?.addEventListener("click", handleClick); mobileBtn?.addEventListener("click", handleClick); function isArabic() { return document.documentElement.lang === "ar" || document.documentElement.dir === "rtl"; } function translateToArabic() { if (!isArabic()) return; const offerText = document.querySelector(".mobile-countdown .offer-text"); if (offerText) { offerText.textContent = "صُممت خصيصاً لك!"; } const desktopBtn = document.getElementById("desktop_add_to_cart"); if (desktopBtn) desktopBtn.textContent = "احجز نسختك بـ50,000"; const mobileBtn = document.getElementById("mobile_add_to_cart"); if (mobileBtn) mobileBtn.textContent = "احجز نسختك بـ50,000"; const ratingsText = document.querySelector(".mobile-ratings span"); if (ratingsText) { ratingsText.textContent = ratingsText.textContent.replace("ratings 428", "428 تقييم"); } translateCountdownLabels(); } function translateCountdownLabels() { if (!isArabic()) return; const hourLabel = document.querySelector(".label-hour"); const minuteLabel = document.querySelector(".label-minute"); const secondLabel = document.querySelector(".label-second"); if (hourLabel) hourLabel.textContent = "ساعة"; if (minuteLabel) minuteLabel.textContent = "دقيقة"; if (secondLabel) secondLabel.textContent = "ثانية"; } });
document.addEventListener("DOMContentLoaded", function () { const productNameElement = document.querySelector("h1[itemprop='name']"); const mobileProductName = document.getElementById("mobileProductName"); if (productNameElement && mobileProductName) { mobileProductName.textContent = productNameElement.textContent.trim(); } const mobileHeader = document.getElementById("mobile-embed-header"); window.addEventListener("scroll", () => { const y = window.scrollY; mobileHeader.classList.toggle("scrolled", y > 10); mobileHeader.classList.toggle("at-top", y <= 10); }); });
Play Icon
Play Video
function openVideoPopup() { const popup = document.getElementById("popup"); const iframe = document.getElementById("youtubeIframe"); iframe.src = "https://www.youtube.com/embed/dnC8HFZEukA?autoplay=1&playsinline=1"; popup.style.display = "flex"; } function closeVideoPopup(event) { if (event.target.closest(".popup-content") && !event.target.classList.contains("close-btn")) return; const popup = document.getElementById("popup"); const iframe = document.getElementById("youtubeIframe"); iframe.src = ""; popup.style.display = "none"; }

 في عالمٍ يُسيطر عليه التقليد، ساعةٌ واحدةٌ فقط تُمثّل الفرادة - مُصممةٌ خصيصاً بحروفك الأولى، و بسوارك، و بإرثك الخاص. لن تُكرّر أبداً.

 

The cardoO Gold Edition
 is a fusion of precision engineering and timeless material.Crafted with real gold, powered by next-gen intelligence—this is not a watch, it’s a statement.