Rolex Sky-Dweller
The Rolex Sky-Dweller emerges as a stand-out piece in the catalog of Rolex watches. This model blends technical sophistication with user-friendly functionality. Designed for world travelers, the Sky-Dweller stands out with its dual time zone display and annual calendar, hallmarks of Rolex's innovative spirit.
- 336938-002 Rolex 8178
- G0336959TBR-002 Rolex 7234
- G0326935-010 Rolex 7228
- G0326259TBR-005 Rolex 6561
- G0336235-002 Rolex 4671
- G0336935-002 Rolex 4668
- G0326939-SPY-001 Rolex 3000
<style>
.catalog-category-view .product-item .product-item-details .old-price [data-price-type=oldPrice] .price, .cms-index-index .product-item .product-item-details .old-price [data-price-type=oldPrice] .price {
display: none !important;
}
.category-text {
display: none;
}
</style>
<script>
(function() {
const path = window.location.pathname || "";
if (!path.includes("/rolex-sky-dweller")) return;
const cssId = "custom-black-friday-css";
const customCSS = `
.catalog-category-view .product-item .product-item-details .old-price [data-price-type=oldPrice] .price,
.cms-index-index .product-item .product-item-details .old-price [data-price-type=oldPrice] .price {
display: none !important;
}
.category-text {
display: none;
}
`;
function injectCustomCSS() {
if (document.getElementById(cssId)) return;
const style = document.createElement("style");
style.id = cssId;
style.type = "text/css";
style.appendChild(document.createTextNode(customCSS));
document.head.appendChild(style);
}
// Inject on initial load
injectCustomCSS();
// Re-inject after any AJAX content load (Magento uses jQuery.ajax)
if (window.jQuery) {
jQuery(document).ajaxComplete(function() {
if (!document.getElementById(cssId)) {
injectCustomCSS();
}
});
}
// Extra fallback: Watch for DOM changes to product list
const observer = new MutationObserver(() => {
if (!document.getElementById(cssId)) {
injectCustomCSS();
}
});
observer.observe(document.body, {
childList: true,
subtree: true
});
})();
</script>







