
Used Cleveland RTZ Tour Rack Lob Wedge - Right-Handed - 60 Degrees - Seniors Flex
Product information for Used Cleveland RTZ Tour Rack Lob Wedge - Right-Handed - 60 Degrees - Seniors Flex
$179.99
$115.9936% OFF
/* 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: Excellent Club Number: Lob Wedge Loft: 60° Lie Angle Color: Not Specified Bounce: 6° Handedness: Right-Handed Length: 34.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: Seniors Shaft Brand: VA Composites Shaft Model: Rajin 2.0 Shaft Material: Graphite Shaft Weight: 55g (function () { // --- NEW LOGIC START --- // 1. Capture the department variable const department = "Seniors"; // 2. Identify the image element const chartImg = document.getElementById('chart-img'); // 3. Define the Women's Chart URL (from your twelfth 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"; } // 5. PURED SHAFT LOGIC ADDED HERE const puredValue = "Yes"; const puredSection = document.getElementById('nr-pured-section'); if (puredSection) { const cleanPured = puredValue.trim(); // Only show if Yes or Yes + Premium Shaft if (cleanPured === "Yes" || cleanPured === "Yes + Premium Shaft") { puredSection.style.display = "block"; } } // --- NEW LOGIC END --- const ul = document.getElementById('product-desc-list'); if (!ul) return; function pruneAndLayout(){ // --- SETTINGS: LIST OF WORDS TO HIDE --- const hiddenValues = [ "not specified", "unspecified", "not applicable", "n/a", "na", "none" ]; // --------------------------------------- const items = Array.from(ul.querySelectorAll('li')); let kept = []; items.forEach(li => { const label = li.querySelector('b'); const labelText = label ? label.textContent : ''; // 1. Get the text value let valueOnly = label ? li.textContent.replace(labelText, '').trim() : li.textContent.trim(); // 2. SCRUBBER: Remove any degree symbols (°) and make it lowercase for checking // This turns "Not Specified°" into just "not specified" const cleanValue = valueOnly.replace(/°/g, '').trim().toLowerCase(); // 3. Check against the list // (We also check if valueOnly is JUST a degree symbol, which means the data was empty) const shouldHide = cleanValue === '' || hiddenValues.includes(cleanValue); if (shouldHide) { li.remove(); // Delete it } else { kept.push(li); // Keep it } }); // Re-mark visible items as left/right cells so borders line up 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'); } ul.style.visibility = 'visible'; } // Run immediately pruneAndLayout(); // Watch for changes const mo = new MutationObserver(() => pruneAndLayout()); mo.observe(ul, { childList: true, subtree: false, attributes: false }); })(); The Cleveland RTZ Tour Rack Wedge offers raw face technology and versatile sole grinds for maximum spin and control. Ideal for skilled players who prioritize shot shaping and feel around the green, this used golf club delivers tour-level short-game precision. This wedge has seen minimal time on the course. Typical cosmetic wear may include a few ball marks faintly visible on the face and/or a few minor nicks and scratches and grips will be in top shape. This shaft has been pured, a process that optimizes maximum performance, better distance, and tighter dispersion. Pured Shaft Upgrade Our Recommendation About Cleveland Cleveland Golf is best known for its tour-trusted wedges, delivering exceptional spin and control. Their full lineup - irons, woods, and more - focuses on forgiveness and consistency, making Cleveland a go-to brand for short-game lovers and improving players. Playing It Forward By choosing this premium used wedge, 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 Cleveland golf clubs. Stock # S2025-09-10-505010 Master SKU # 1017134 (function () { // Read the template variable const pured = "Yes"; // 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"; } })();






















