.product-details { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; line-height: 1.6; color: #333; } .product-description { font-size: 1rem; line-height: 1.8; color: #333; margin-bottom: 2rem; padding: 1rem; background-color: #f9f9f9; border-left: 3px solid #333; } .product-details h2 { font-size: 1.5rem; font-weight: 600; margin-top: 2rem; margin-bottom: 1rem; border-bottom: 1px solid #e0e0e0; padding-bottom: 0.5rem; } .product-details h2:first-of-type { margin-top: 0; } .spec-table { width: 100%; margin-bottom: 1.5rem; } .spec-row { display: flex; padding: 0.75rem 0; border-bottom: 1px solid #f0f0f0; } .spec-row:last-child { border-bottom: none; } .spec-label { flex: 0 0 180px; font-weight: 500; color: #666; } .spec-value { flex: 1; color: #333; } .condition-text { margin: 0.5rem 0; line-height: 1.8; } With Documentation Specifications SKU 05312026121621 Item Wristwatch Brand Rolex Model Datejust Reference 16200 Year 2003 Dial Color Blue Case Material Steel Movement Automatic Caliber 3135 Country Swiss Gender Unisex Jewels 31 Grade Band Material Functions Type Department Balance Condition Overall Condition Fair, overall condition Case Shows desk marks. Has dents/dings. Crystal Crystal Condition Dial Bezel It has hairline scratches. Smooth Bezel Crown Crown Condition Hands Hands Condition Band Shows desk marks. The band has some stretch between the links. Function Running strongly with no apparent issues, but no known service history Winding Timing Data +16 seconds/day, 288 amplitude, 0.5 be Complications Date. Additional Notes Measurements Diameter 36 Dial Diameter Width Length Height Thickness 12 Lug Width 20 Lug to Lug 43 Bracelet Size Inside Diameter Outside Diameter Inside Width Inside Length Outside Length Outside Width Band Width Band Clasp Width Band End Link Width Band Length Box Length Box Width Size Standardized Size About the Brand Rolex: Founded in 1905 by Hans Wilsdorf, few brands command the luxury watch space like Rolex. The five-pointed crown has become almost synonymous with success and prestige, and the desirability of the brand’s watches reflects that reputation. Renowned for accuracy, durability, and functional design, Rolex has produced some of the most iconic and recognizable wristwatches ever made, earning a lasting place at the top of the horological world. document.addEventListener("DOMContentLoaded", function() { // Hide description paragraphs if empty var descriptionDivs = document.querySelectorAll('.product-description'); descriptionDivs.forEach(function(descriptionDiv) { var paragraph = descriptionDiv.querySelector('p'); if (paragraph && paragraph.textContent.replace(/\u00A0/g, '').trim() === '') { descriptionDiv.classList.add('hidden-field'); descriptionDiv.style.display = 'none'; var prevElement = descriptionDiv.previousElementSibling; if (prevElement && prevElement.tagName === 'H2') { prevElement.style.display = 'none'; } } }); // Hide empty spec rows var specRows = document.querySelectorAll('.product-details .spec-row'); specRows.forEach(function(row) { var valueElement = row.querySelector('.spec-value'); if (valueElement) { var valueText = valueElement.textContent.replace(/\u00A0/g, '').trim(); if (valueText === '' || valueText.startsWith('{{') || valueText === 'undefined' || valueText === 'null') { row.classList.add('hidden-field'); row.style.display = 'none'; } } }); // Hide entire sections if all rows are hidden var sections = document.querySelectorAll('.product-details h2'); sections.forEach(function(section) { var nextElement = section.nextElementSibling; if (!nextElement) return; if (nextElement.classList.contains('spec-table')) { var visibleRows = nextElement.querySelectorAll('.spec-row:not(.hidden-field)'); if (visibleRows.length === 0) { section.style.display = 'none'; nextElement.style.display = 'none'; } } else if (nextElement.classList.contains('product-description') && nextElement.classList.contains('hidden-field')) { section.style.display = 'none'; } }); });