- Club Condition: Good
- Club Number: Pitching Wedge
- Loft: 44
- Lie Angle Color: Not Specified
- Bounce: Not Specified
- Handedness: Left-Handed
- Length: 35.75 in
- Shaft Flex: Seniors
- Shaft Brand: Cobra
- Shaft Model: UltraLite
- Shaft Material: Graphite
- Shaft Weight: 45g
(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 = ""; 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 Cobra 2021 T-Rail Wedge is a super game-improvement scoring club that blends hybrid-style forgiveness with wedge versatility, featuring a hollow body and Cobras Hollow Split Rail (Baffler Rail) sole to improve turf interaction and help the club glide through rough, sand, or tight lies. A forged E9 variable-thickness face boosts ball speed and maintains distance on off-center strikes, while precision grooves enhance spin and control around the green. Designed for easy launch and maximum forgiveness, its especially well-suited for golfers who struggle with consistent contact and want a more forgiving option for short-game shots.
This wedge is in average condition for its age. It has been well played by its former owner, and shows cosmetic wear including scratches, nicks, and paint chips on the face, sole, and crown.
Pured Shaft Upgrade Our Recommendation Our Next Round Golf club experts recommend the Cobra 2021 T-Rail Wedge for golfers who want maximum forgiveness and easy launch around the greens; we like its hybrid-style hollow construction paired with Cobras Hollow Split Rail (Baffler Rail) technology, which helps the club glide through turf and rough while increasing face flex for higher launch and more consistent contact, while the forged E9 variable-thickness face maintains ball speed on off-center strikes and the wide sole design promotes confidence from a variety of liesmaking it an excellent option for higher-handicap players or anyone looking for a super game-improvement wedge that prioritizes ease of use and consistency over traditional shot-shaping control.
About Cobra Cobra Golf blends innovation with bold design. Known for forgiving drivers and distance-boosting irons, Cobra clubs appeal to players who want power, flair, and modern performance. Popular with personalities like Rickie Fowler and Bryson DeChambeau.
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. Youre 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 Cobra golf clubs.
Stock # S2025-12-16-412898 Master SKU # 1021787(function () { // Read the template variable const pured = ""; // 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"; }})();