/* Force a real 2-column grid on THIS list only, overriding the theme */ #product-desc-list{ display:grid !important; grid-template-columns:1fr 1fr; gap:0; list-style:none; margin:0 0 16px 0; padding:0; column-count:initial !important; /* kill multi-column layout */ } #product-desc-list > li{ margin:0 !important; padding:6px !important; border-bottom:1px solid #d9d9d9 !important; float:none !important; /* kill float layouts */ width:auto !important; /* kill width:50% rules */ } #product-desc-list > li._left { border-right:1px solid #d9d9d9 !important; } Club Condition: Very Good Club Number: 6-Iron Loft: ° Lie Angle Color: Not Specified Handedness: Right-Handed Length: 37.75 in ✕ /* Force true centering and sit above theme layers */ #lengthChartModal.length-modal{ position: fixed !important; inset: 50% auto auto 50% !important; transform: translate(-50%, -50%) !important; margin: 0 !important; padding: 0 !important; border: none !important; background: transparent !important; z-index: 999999 !important; } #lengthChartModal::backdrop{ background: rgba(0,0,0,.65); } /* The visible card (bigger + scroll-safe) */ #lengthChartModal .length-card{ position: relative; width: min(90vw, 600px); /* <- adjust this for desktop width */ max-height: 80vh; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.35); overflow: hidden; } /* Make image fill card; ignore any width/height attrs */ #lengthChartModal img{ display: block; width: 100% !important; height: auto !important; max-height: 80vh !important; object-fit: contain; } /* Close button INSIDE the card so it can’t be clipped */ #lengthChartModal .length-close{ position: absolute; top: 8px; right: 8px; width: 36px; height: 36px; border-radius: 999px; border: 2px solid rgba(0,0,0,.2); background: #fff; font-size: 20px; line-height: 1; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.15); } Shaft Flex: Extra Stiff Shaft Brand: Nippon Shaft Shaft Model: N.S. Pro Modus 3 Shaft Material: Steel Shaft Weight: 120g (function () { // --- NEW LOGIC START --- // 1. Capture the department variable const department = "Men"; // 2. Identify the image element const chartImg = document.getElementById('chart-img'); // 3. Define the Women's Chart URL (from your seventh link) const womenChartUrl = "https://cdn.shopify.com/s/files/1/0601/0165/6746/files/Women_s_Iron_Standard_Lengths.png?v=1771424027&width=1640"; // 4. If the department is exactly "Women", swap the source if (chartImg && department.trim() === 'Women') { chartImg.src = womenChartUrl; chartImg.alt = "Women's Iron Standard Lengths"; } // --- NEW LOGIC END --- const ul = document.getElementById('product-desc-list'); if (!ul) return; function pruneAndLayout(){ // Remove empty/unspecified rows instead of hiding them const items = Array.from(ul.querySelectorAll('li')); let kept = []; items.forEach(li => { const label = li.querySelector('b'); const labelText = label ? label.textContent : ''; const valueOnly = label ? li.textContent.replace(labelText, '').trim() : li.textContent.trim(); const emptyish = valueOnly === '' || valueOnly === '°' || /^(Not Specified|Not Specified°|Unspecified|Not Applicable|N\/A|NA)$/i.test(valueOnly); if (emptyish) li.remove(); else kept.push(li); }); // Re-mark visible items as left/right cells so borders line up kept = Array.from(ul.querySelectorAll('li')); // in case we removed some kept.forEach((li, i) => { li.classList.toggle('_left', i % 2 === 0); li.classList.toggle('_right', i % 2 === 1); }); // If odd count, add a blank cell so the last row closes cleanly if (kept.length % 2 === 1) { const filler = document.createElement('li'); filler.innerHTML = ''; ul.appendChild(filler); filler.classList.add('_right'); } // Show after we’re done so there’s no flash ul.style.visibility = 'visible'; } // Run immediately (before most theme scripts finish) pruneAndLayout(); // Guard: if the theme reflows/rewrites after our run, fix it again const mo = new MutationObserver(() => pruneAndLayout()); mo.observe(ul, { childList: true, subtree: false, attributes: false }); })(); The Titleist 718 CB Single Iron is a high-performance used golf club that offers exceptional control and precision on the course. With its advanced technology and sleek design, this club is perfect for the experienced golfer looking to take their game to the next level. The unique benefits of this club include its forged construction, which provides a soft feel and consistent ball flight, and its cavity back design, which enhances forgiveness and playability. Whether you're a scratch golfer or a mid-handicapper, the Titleist 718 CB Single Iron is an affordable option that will help you improve your game and lower your scores. This single iron shows moderate sole wear and medium face/groove wear, indicating regular use. Overall, it remains in very good condition, suitable for players seeking reliable performance without the premium price. Pured Shaft Upgrade Our Recommendation Our Next Round Golf club experts recommend the Titleist 718 CB Single Iron for golfers who want precision and control in their iron shots. This club features advanced technology that allows for a consistent ball flight and improved distance control. The sleek design and forged construction provide a soft feel and excellent feedback on every shot. Trust us, you won't be disappointed with the performance of this club on the course. About Titleist Titleist is synonymous with tour performance - offering world-class golf balls, irons, drivers, and wedges. Known for the Pro V1 and T-Series clubs, Titleist suits players who demand precision and premium craftsmanship. Playing It Forward By choosing this premium used single iron, you're not only investing in your own game but also contributing to Next Round Golf's mission of making golf more affordable and accessible for enthusiasts at every skill level. You’re joining a passionate community dedicated to sustainability, continuous improvement, and the shared joy of discovering new potential on the course. Next Round Guarantee With over 18,000 five star reviews and a 30 day money back guarantee, you can trust Next Round Golf for high-quality used Titleist golf clubs. Stock # S2026-03-04-417332 Master SKU # 1013502 (function () { // Read the template variable const pured = "No"; // Find the new section + text holder const section = document.getElementById('pured-shaft-section'); const textEl = document.getElementById('pured-shaft-text'); if (!section || !textEl) return; // Clean it up (handles empty, extra spaces, etc.) const value = (pured || "").trim(); // Show only for the allowed "Yes" values const shouldShow = (value === "Yes" || value === "Yes + Premium Shaft"); if (shouldShow) { textEl.textContent = "This shaft has been pured through computerized analysis to identify its most stable, consistent bending plane, optimizing performance, increasing distance, tightening dispersion, and reducing natural structural irregularities."; section.style.display = ""; } else { // Keep fully hidden so no text and no spacing appears section.style.display = "none"; } })();