Store Offer Menu

  • Image
    Used Callaway Rogue 4H Hybrid - Right-Handed - 24 Degrees - Ladies Flex

    Used Callaway Rogue 4H Hybrid - Right-Handed - 24 Degrees - Ladies Flex

    Product information for Used Callaway Rogue 4H Hybrid - Right-Handed - 24 Degrees - Ladies Flex

    $106.99
    $63.9940% OFF

    Looking to upgrade your long game without spending a fortune? The Used Callaway Rogue 4H Hybrid in right handed, 24 degrees, with a ladies flex shaft is a fantastic addition to any golfer's bag. At Next Round Golf, we know that finding the right hybrid can transform your performance, and this club delivers exactly that. This Callaway Rogue Hybrid features Jailbreak Technology, which stiffens the body to allow the face to take more impact. The result is increased ball speed and impressive distance on every shot. The Hyper Speed Face Cup also ensures you get consistent speed and performance even on off center hits, making this hybrid incredibly forgiving. It is perfect for those tough long approach shots or when you need a reliable option from the fairway or rough. This specific club is in very good condition, showing only typical signs of use like light ball marks and minor paint chips. It has been well maintained and is ready to perform. The Aldila Quaranta shaft at 40 grams is specifically designed for a ladies flex, offering a smooth, lightweight feel that helps generate more clubhead speed. Our team at Next Round Golf recommends this hybrid for any golfer looking to replace a long iron with something easier to hit. You get modern technology at a used price, making it an incredible value. Plus, you can shop with total confidence. We back every purchase with over 18,000 five star reviews and a 30 day money back guarantee. Visit us at nextroundgolf.com and see how this Callaway Rogue Hybrid can help you enjoy the game more.

  • More Deals You’ll Love

    Titleist Hybrid Titleist VG3(2016) HY 23° Stiff Titleist VG H(2016)
    GOLF Partner logo

    Titleist Hybrid Titleist VG3(2016) HY 23° Stiff Ti...

    Product Ref: 2100385595844Brand: TitleistGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: Titleist VG3(2016)Loft: 23°Flex: StiffShaft Type: Titleist VG H(2016)Shaft Material: CarbonLength (inch): 39.5Lie Angle: StandardSwing Balance: C9.5Total Weight (g): 294Headcover: Not IncludeWrench: Not IncludeConditions: CActual item pictured above
    $86.99
    $69.5920% OFF
    Yamaha Hybrid Open Box RMX VD(2024) 25° Regular TENSEI TR60h
    GOLF Partner logo

    Yamaha Hybrid Open Box RMX VD(2024) 25° Regular TE...

    Product Ref: 9000101442182Brand: YamahaGolf Club Type: HybridClub Number: U5Number of Clubs: -Handedness: Right-HandedDepartment: MenModel: RMX VD(2024)Loft: 25°Flex: RegularShaft Type: TENSEI TR60hShaft Material: CarbonLength (inch): 39Lie Angle: StandardSwing Balance: D2Total Weight (g): 350Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $259.99
    $103.9960% OFF
    Used TaylorMade M2 6H Hybrid - Right-Handed - 28 Degrees - Ladies Flex
    Next Round logo

    Used TaylorMade M2 6H Hybrid - Right-Handed - 28 D...

    /* 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: Good Club Number: 6H Loft: 28° Handedness: Right-Handed Length: 38 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: Ladies Shaft Brand: TaylorMade Shaft Model: M2 REAX Shaft Material: Graphite Shaft Weight: 45g Headcover Included?: No (function () { 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|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 TaylorMade M2 Hybrid is a high-performance used golf club that combines modern technology with affordability. Its unique design features a low center of gravity, promoting higher launch and improved stability, making it an ideal choice for golfers seeking to enhance their long game. The club's Speed Pocket technology increases the sweet spot, ensuring maximum distance even on off-center hits. This affordable, used golf club is perfect for golfers who value performance and consistency on the course. The TaylorMade M2 Hybrid is a testament to the balance between advanced golf technology and cost-effectiveness. This hybrid 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. Our Recommendation Our Next Round Golf club experts recommend the TaylorMade M2 Hybrid for golfers who want to improve their long game. With its advanced technology, this club provides maximum forgiveness and distance, making it easier to hit accurate shots from the fairway or rough. We believe that the TaylorMade M2 Hybrid is a great addition to any golfer's bag, helping them to achieve their best performance on the course. About TaylorMade TaylorMade is a powerhouse brand known for breakthrough driver technologies like Twist Face and Speed Pocket. From the Stealth series to P-Series irons, TaylorMade gear blends speed, forgiveness, and innovation for all skill levels. Playing It Forward By choosing this premium used hybrid, 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 TaylorMade golf clubs. Stock # S2025-10-02-407467 Master SKU # 1007222
    $89.99
    $43.9951% OFF
    Used Titleist TSR1 5H Hybrid - Right-Handed - 23 Degrees - Ladies Flex
    Next Round logo

    Used Titleist TSR1 5H Hybrid - Right-Handed - 23 D...

    /* 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: 5H Loft: 23° Handedness: Right-Handed Length: 40 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: Ladies Shaft Brand: Fujikura Shaft Model: Air Speeder Shaft Material: Graphite Shaft Weight: 35g Headcover Included?: No (function () { 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|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 TSR1 Hybrid is a versatile club that can help golfers of all skill levels improve their game. Its advanced technology allows for easy launch and increased distance, while its forgiving design helps minimize mis-hits. This club is perfect for golfers who struggle with long irons or need a reliable option for approach shots. With its sleek design and superior performance, the Titleist TSR1 Hybrid is a must-have for any golfer looking to up their game. This hybrid 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. Our Recommendation Our Next Round Golf club experts recommend the Titleist TSR1 Hybrid for golfers who want to improve their long game. With its advanced technology, this club provides maximum forgiveness and distance, making it easier to hit accurate shots from the fairway or rough. We believe that this hybrid is a great addition to any golfer's bag, helping them to achieve their best performance 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 hybrid, 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 # S2025-09-18-505088 Master SKU # 1011484
    $299.99
    $125.9958% OFF
    HONMA Hybrid Open Box BERES BLACK HY 19° Stiff ARMRQ MX BLACK
    GOLF Partner logo

    HONMA Hybrid Open Box BERES BLACK HY 19° Stiff ARM...

    Product Ref: 9000101019767Brand: HONMAGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: BERES BLACKLoft: 19°Flex: StiffShaft Type: ARMRQ MX BLACKShaft Material: CarbonLength (inch): 40.5Lie Angle: StandardSwing Balance: D1.0Total Weight (g): 327Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $399.99
    $159.9960% OFF
    HONMA Hybrid Open Box BERES BLACK HY 22° Senior ARMRQ MX BLACK
    GOLF Partner logo

    HONMA Hybrid Open Box BERES BLACK HY 22° Senior AR...

    Product Ref: 9000101019756Brand: HONMAGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: BERES BLACKLoft: 22°Flex: SeniorShaft Type: ARMRQ MX BLACKShaft Material: CarbonLength (inch): 40Lie Angle: StandardSwing Balance: D0.0Total Weight (g): 321Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $399.99
    $159.9960% OFF
    HONMA Hybrid Open Box BERES BLACK HY 22° StiffRegular ARMRQ MX BLACK
    GOLF Partner logo

    HONMA Hybrid Open Box BERES BLACK HY 22° StiffRegu...

    Product Ref: 9000101019764Brand: HONMAGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: BERES BLACKLoft: 22°Flex: StiffRegularShaft Type: ARMRQ MX BLACKShaft Material: CarbonLength (inch): 40Lie Angle: StandardSwing Balance: D1Total Weight (g): 327Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $399.99
    $159.9960% OFF
    Titleist Hybrid Fair Rating 913 H HY 21° Stiff Dynamic Gold S200
    GOLF Partner logo

    Titleist Hybrid Fair Rating 913 H HY 21° Stiff Dyn...

    Product Ref: 2100375160885Brand: TitleistGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: 913 HLoft: 21°Flex: StiffShaft Type: Dynamic Gold S200Shaft Material: SteelLength (inch): 39.5Lie Angle: StandardSwing Balance: D4.5Total Weight (g): 410Headcover: Not IncludeWrench: Not IncludeConditions: FActual item pictured above
    $89.99
    $62.9930% OFF
    TaylorMade Hybrid SIM2 HY 19.5° Stiff NS PRO 910GH
    GOLF Partner logo

    TaylorMade Hybrid SIM2 HY 19.5° Stiff NS PRO 910GH

    Product Ref: 2100379933140Brand: TaylorMadeGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: SIM2Loft: 19.5°Flex: StiffShaft Type: NS PRO 910GHShaft Material: SteelLength (inch): 40.25Lie Angle: StandardSwing Balance: D2.0Total Weight (g): 389Headcover: IncludeWrench: Not IncludeConditions: CActual item pictured above
    $149.99
    $112.4925% OFF
    XXIO Hybrid Left-Handed XXIO12 HY 23° Regular XXIO MP1200
    GOLF Partner logo

    XXIO Hybrid Left-Handed XXIO12 HY 23° Regular XXIO...

    Product Ref: 2100372136975Brand: XXIOGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Left-HandedDepartment: MenModel: XXIO12Loft: 23°Flex: RegularShaft Type: XXIO MP1200 Shaft Material: CarbonLength (inch): 39.75Lie Angle: StandardSwing Balance: D0Total Weight (g): 326Headcover: IncludeWrench: Not IncludeConditions: CActual item pictured above
    $179.99
    $134.9925% OFF
    HONMA Hybrid Open Box BERES BLACK HY 25° Senior ARMRQ MX BLACK
    GOLF Partner logo

    HONMA Hybrid Open Box BERES BLACK HY 25° Senior AR...

    Product Ref: 9000101019757Brand: HONMAGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: BERES BLACKLoft: 25°Flex: SeniorShaft Type: ARMRQ MX BLACKShaft Material: CarbonLength (inch): 39.5Lie Angle: StandardSwing Balance: D0.0Total Weight (g): 325Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $399.99
    $159.9960% OFF
    Yamaha Hybrid Open Box RMX VD(2024) 25° Regular TENSEI TR60h:
    GOLF Partner logo

    Yamaha Hybrid Open Box RMX VD(2024) 25° Regular TE...

    Product Ref: 2100406584130Brand: YamahaGolf Club Type: HybridClub Number: U5Number of Clubs: -Handedness: Right-HandedDepartment: MenModel: RMX VD(2024)Loft: 25°Flex: RegularShaft Type: TENSEI TR60hShaft Material: CarbonLength (inch): 39Lie Angle: StandardSwing Balance: D2Total Weight (g): 350Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $259.99
    $181.9930% OFF
    HONMA Hybrid Open Box BERES BLACK HY 22 Regular ARMRQ MX BLACK
    GOLF Partner logo

    HONMA Hybrid Open Box BERES BLACK HY 22 Regular AR...

    Product Ref: 9000101019760Brand: HONMAGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: BERES BLACKLoft: 22Flex: RegularShaft Type: ARMRQ MX BLACKShaft Material: CarbonLength (inch): 40.0Lie Angle: StandardSwing Balance: D0.0Total Weight (g): 322Headcover: IncludeConditions: Open BoxActual item pictured above
    $399.99
    $159.9960% OFF
    HONMA Hybrid Open Box BERES BLACK HY 19° StiffRegular ARMRQ MX BLACK
    GOLF Partner logo

    HONMA Hybrid Open Box BERES BLACK HY 19° StiffRegu...

    Product Ref: 9000101019763Brand: HONMAGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: BERES BLACKLoft: 19°Flex: StiffRegularShaft Type: ARMRQ MX BLACKShaft Material: CarbonLength (inch): 40.5Lie Angle: StandardSwing Balance: D1.0Total Weight (g): 323Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $399.99
    $159.9960% OFF
    Yamaha Hybrid Open Box RMX VD(2024) 22° Regular TENSEI TR60h:
    GOLF Partner logo

    Yamaha Hybrid Open Box RMX VD(2024) 22° Regular TE...

    Product Ref: 2100406583553Brand: YamahaGolf Club Type: HybridClub Number: U4Number of Clubs: -Handedness: Right-HandedDepartment: MenModel: RMX VD(2024)Loft: 22°Flex: RegularShaft Type: TENSEI TR60hShaft Material: CarbonLength (inch): 39.5Lie Angle: StandardSwing Balance: D2Total Weight (g): 346Headcover: IncludeWrench: Not IncludeConditions: Open BoxActual item pictured above
    $259.99
    $181.9930% OFF
    Used Cobra 2023 Air X Womens 6H Hybrid - Right-Handed - 28 Degrees - Ladies Flex
    Next Round logo

    Used Cobra 2023 Air X Womens 6H Hybrid - Right-Han...

    /* 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: 6H Loft: 28° Handedness: Right-Handed Length: 37 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: Ladies Shaft Brand: Cobra Shaft Model: Ultra Lite Shaft Material: Graphite Shaft Weight: 45g Headcover Included?: No (function () { // --- NEW LOGIC START --- // 1. Capture the department variable const department = "Women"; // 2. Identify the image element const chartImg = document.getElementById('chart-img'); // 3. Define the Women's Chart URL (from your sixth link) const womenChartUrl = "https://cdn.shopify.com/s/files/1/0601/0165/6746/files/Women_s_Hybrid_Standard_Lengths.png?v=1771424026&width=1640"; // 4. If the department is exactly "Women", swap the source if (chartImg && department.trim() === 'Women') { chartImg.src = womenChartUrl; chartImg.alt = "Women's Hybrid 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 Cobra 2023 Air X Women’s Hybrid is built ultra‑light with heel‑biased internal weighting and a subtle offset to calm slices and launch shots higher. A low‑profile, shallow face helps pick the ball cleanly from rough or tight lies, delivering easy carry and consistent yardage in a compact, confidence‑inspiring shape. This hybrid is in above average condition for its age and has been well-maintained. Typical wear includes ball marks and scratching on the face, sole and crown, as well as minor paint chips and blemishes from normal use. Pured Shaft Upgrade Our Recommendation Our Next Round Golf club experts recommend the Cobra 2023 Air X Womens Hybrid for women golfers seeking easy launch, added speed, and maximum forgiveness. Its lightweight construction, low-profile shape, and offset design help elevate shots and reduce slices for straighter, more confident results. 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 hybrid, 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 Cobra golf clubs. Stock # S2025-07-16-573180 Master SKU # 1017510 (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"; } })();
    $94.99
    $60.9936% OFF
    Bridgestone Hybrid TOUR B XD-H(2018) HY 21° Stiff NS PRO MODUS3 TOUR105
    GOLF Partner logo

    Bridgestone Hybrid TOUR B XD-H(2018) HY 21° Stiff ...

    Product Ref: 2100378924279Brand: BridgestoneGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: TOUR B XD-H(2018)Loft: 21°Flex: StiffShaft Type: NS PRO MODUS3 TOUR105Shaft Material: SteelLength (inch): 40Lie Angle: StandardSwing Balance: D2.0Total Weight (g): 387Headcover: Not IncludeWrench: Not IncludeConditions: CActual item pictured above
    $99.99
    $69.9930% OFF
    Used TaylorMade Rescue 3H Hybrid - Right-Handed - 19 Degrees - Regular Flex
    Next Round logo

    Used TaylorMade Rescue 3H Hybrid - Right-Handed - ...

    /* 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: Good Club Number: 3H Loft: 19° Handedness: Right-Handed Length: 40.25 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: Regular Shaft Brand: Aldila Shaft Model: REAX Shaft Material: Graphite Shaft Weight: 65g Headcover Included?: No (function () { 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 TaylorMade Rescue Hybrid is a high-performance used golf club that combines modern technology with affordability. This club features a unique design that enhances distance and accuracy, making it an ideal choice for golfers looking to improve their game. The club's innovative technology ensures a smooth swing and a high launch, providing an edge on the course. The TaylorMade Rescue Hybrid is particularly beneficial for intermediate golfers seeking to elevate their performance without breaking the bank. With its blend of advanced features and cost-effectiveness, this club is a smart addition to any golfer's arsenal. This hybrid shows minor scratches on the crown and light to heavy sole wear from play. There is noticeable to heavy face wear from ball strikes and minor paint chips on the head. Our Recommendation Our Next Round Golf club experts recommend the TaylorMade Rescue Hybrid for golfers who struggle with hitting long irons. This club features advanced technology that allows for easier and more accurate shots from a variety of lies on the course. We believe this club can help improve your game and give you more confidence on the course. About TaylorMade TaylorMade is a powerhouse brand known for breakthrough driver technologies like Twist Face and Speed Pocket. From the Stealth series to P-Series irons, TaylorMade gear blends speed, forgiveness, and innovation for all skill levels. Playing It Forward By choosing this premium used hybrid, 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 TaylorMade golf clubs. Stock # S2026-02-06-368889 Master SKU # 1007245
    $37.99
    $29.9921% OFF
    Used Cobra King F8 3H Hybrid - Right-Handed - 19 Degrees - Regular Flex
    Next Round logo

    Used Cobra King F8 3H Hybrid - Right-Handed - 19 D...

    /* 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: 3H Loft: 19° Handedness: Right-Handed Length: 40 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: Regular Shaft Brand: Aldila Shaft Model: Rogue Pro Shaft Material: Graphite Shaft Weight: 75g Headcover Included?: No (function () { 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|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 Cobra King F8 Hybrid is a high-performance used golf club that combines modern technology with affordability. Its unique Baffler Rail Technology ensures smoother turf interaction, enhancing your swing and improving your game. The club's 360 Aero-Innovative Polymer trips reduce drag for maximum clubhead speed, making it ideal for golfers seeking to increase their distance. The Cobra King F8 Hybrid is not only affordable but also packed with features that make it a valuable addition to any golfer's bag, especially those looking to improve their long game. This used golf club is a testament to the perfect blend of performance, technology, and value. This hybrid shows minor scratches on the crown, heavy sole wear, noticeable face wear from ball strikes, minor paint chips on the head, and cosmetic damage to the ferrule/shaft. Overall, it remains functional and offers good performance. Our Recommendation Our Next Round Golf club experts recommend the Cobra King F8 Hybrid for golfers who want to improve their accuracy and distance on the fairway. With its advanced technology, including a precision milled face and Baffler Rail System, this club delivers consistent performance and forgiveness. We believe this hybrid is a game-changer for any golfer looking to take their game to the next level. 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 hybrid, 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 Cobra golf clubs. Stock # S2026-01-20-418305 Master SKU # 1002581
    $77.99
    $61.9921% OFF
    HONMA Hybrid LB 818 HY 20°(HeadOnly)
    GOLF Partner logo

    HONMA Hybrid LB 818 HY 20°(HeadOnly)

    Product Ref: 2100393741318Brand: HONMAGolf Club Type: HybridClub Number: HybridNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: LB 818Loft: 20°Flex: -Shaft Type: -Shaft Material: -Length (inch): 0Lie Angle: StandardSwing Balance: 0Total Weight (g): 228Headcover: Not IncludeWrench: Not IncludeConditions: CActual item pictured above
    $109.99
    $76.9930% OFF
    Used Titleist 818 H2 4H Hybrid - Left-Handed - 21 Degrees - Regular Flex
    Next Round logo

    Used Titleist 818 H2 4H Hybrid - Left-Handed - 21 ...

    /* 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: Good Club Number: 4H Loft: 21° Handedness: Left-Handed Length: 40 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: Regular Shaft Brand: Mitsubishi Shaft Model: Tensei CK Series Red Shaft Material: Graphite Shaft Weight: 70g Headcover Included?: No (function () { 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|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 818 H2 Hybrid is a high-performance used golf club that combines advanced technology with affordability. This club features a sleek, streamlined design that enhances speed and distance, making it ideal for golfers seeking to improve their long game. The unique Active Recoil Channel technology ensures superior ball speed and forgiveness, providing an edge on the course. The SureFit CG system allows for customizable ball flight and optimal performance. This affordable, high-quality hybrid is perfect for the ambitious golfer looking to elevate their game without breaking the bank. This hybrid 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. Our Recommendation Our Next Round Golf club experts recommend the Titleist 818 H2 Hybrid for golfers who want a versatile club that can handle any lie. With its SureFit CG technology, this club allows for precise customization to fit your swing and course conditions. The high MOI design provides forgiveness on off-center hits, while the active recoil channel increases ball speed for more distance. Trust us, you won't regret adding the Titleist 818 H2 Hybrid to your bag. 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 hybrid, 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 # S2025-10-27-414042 Master SKU # 1008076
    $106.99
    $75.9929% OFF

    Subscribe to Next Round coupon newsletter

    Get notified of offers and coupon codes from Next Round before they expire!