Store Offer Menu

  • Image
    HONMA Driver BERES A-spec 10.5° Stiff 3S ARMRQ A-spec 47

    HONMA Driver BERES A-spec 10.5° Stiff 3S ARMRQ A-spec 47

    Product information for HONMA Driver BERES A-spec 10.5° Stiff 3S ARMRQ A-spec 47

    $449.99
    $359.9920% OFF

    Product Ref: 2100391034894Brand: HONMAGolf Club Type: DriverClub Number: 1WNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: BERES A-specLoft: 10.5°Flex: StiffShaft Type: 3S ARMRQ A-spec 47Shaft Material: CarbonLength (inch): 46Lie Angle: StandardSwing Balance: D1.0Total Weight (g): 289Headcover: Not IncludeWrench: Not IncludeConditions: CActual item pictured above

  • More Deals You’ll Love

    XXIO Driver XXIO 12 9.5° Stiff XXIO MP1200
    GOLF Partner logo

    XXIO Driver XXIO 12 9.5° Stiff XXIO MP1200

    Product Ref: 2100394481596Brand: XXIOGolf Club Type: DriverClub Number: 1WNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: XXIO 12Loft: 9.5°Flex: StiffShaft Type: XXIO MP1200Shaft Material: CarbonLength (inch): 46Lie Angle: StandardSwing Balance: D4.0Total Weight (g): 285Headcover: Not IncludeWrench: Not IncludeConditions: CActual item pictured above
    $229.99
    $183.9920% OFF
    XXIO Driver XXIO13 13.5° Ladies XXIO MP1300L
    GOLF Partner logo

    XXIO Driver XXIO13 13.5° Ladies XXIO MP1300L

    Product Ref: 2100358121636Brand: XXIOGolf Club Type: DriverClub Number: 1WNumber of Clubs: -Handedness: Right-HandedDepartment: WomenModel: XXIO13Loft: 13.5°Flex: LadiesShaft Type: XXIO MP1300LShaft Material: CarbonLength (inch): 44Lie Angle: StandardSwing Balance: C1.0Total Weight (g): 260Headcover: Not IncludeWrench: Not IncludeConditions: CActual item pictured above
    $239.99
    $191.9920% OFF
    Grand Prix Driver GP MAX ONE MINUTE MAX - StiffRegular Speeder 569
    GOLF Partner logo

    Grand Prix Driver GP MAX ONE MINUTE MAX - StiffReg...

    Product Ref: 2100394757257Brand: Grand PrixGolf Club Type: DriverClub Number: 1WNumber of Clubs: -Handedness: Right-HandedDepartment: MenModel: GP MAX ONE MINUTE MAXLoft: -Flex: StiffRegularShaft Type: Speeder 569Shaft Material: CarbonLength (inch): 46Lie Angle: StandardSwing Balance: D1.0Total Weight (g): 302Headcover: IncludeWrench: Not IncludeConditions: CActual item pictured above
    $99.99
    $79.9920% OFF
    Used TaylorMade STEALTH HD Driver - 10.5 Degrees - Regular Flex Fujikura Air Speeder - Left-Handed
    Next Round logo

    Used TaylorMade STEALTH HD Driver - 10.5 Degrees -...

    /* 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 Loft: 10.5° Handedness: Left-Handed Length: 45.5 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: Fujikura Shaft Model: Air Speeder 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 STEALTH HD Driver is a high-performance used golf club that combines advanced technology with affordability. This club features a unique carbon face design that enhances ball speed and distance, making it an ideal choice for golfers seeking to improve their long game. The club's aerodynamic shape and lightweight construction ensure easy handling and increased swing speed. With its blend of modern technology and cost-effectiveness, the TaylorMade STEALTH HD Driver is a perfect choice for golfers who want to elevate their game without breaking the bank. This club is particularly beneficial for intermediate and advanced golfers looking to gain an edge on the course. This driver 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 used golf club experts recommend the STEALTH HD Driver for golfers looking for maximum performance. With advanced features and technology, this driver is perfect for low handicap golfers who play often and want the latest and greatest equipment to improve their game. 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 driver, 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-28-505535 Master SKU # 1010328
    $579.99
    $218.9962% OFF
    Used Callaway Big Bertha REVA 23 Driver - HEAD ONLY - Right-Handed - 10.5 Degrees
    Next Round logo

    Used Callaway Big Bertha REVA 23 Driver - HEAD ONL...

    /* 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 Type: Brand: Callaway Model: Big Bertha REVA 23 Loft: 10.5° Lie Angle Color: Handedness: Right-Handed 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 Callaway Big Bertha Reva 2023 Driver is a high-performance used golf club that offers exceptional distance and accuracy. With its advanced technology, this club is perfect for golfers who want to improve their game without breaking the bank. The most enticing feature of this club is its unique design, which helps golfers hit the ball farther and straighter than ever before. Whether you're a beginner or an experienced player, the Callaway Big Bertha Reva 2023 Driver is an affordable option that can help you take your game to the next level. This driver 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 Callaway Big Bertha Reva 2023 Driver for golfers who want to improve their distance and accuracy off the tee. This driver features advanced technology, including a lightweight carbon crown and adjustable perimeter weighting, to help golfers hit longer and straighter drives. With its forgiving design and easy-to-hit shape, the Big Bertha Reva 2023 Driver is a great choice for golfers of all skill levels who want to take their game to the next level. About Callaway Callaway is one of golf's leading brands, known for innovation across drivers, irons, wedges, balls, and more. Technologies like Jailbreak and AI-designed faces power their performance, making Callaway gear a trusted option for players at every skill level. Playing It Forward By choosing this premium used club head, 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 Callaway golf clubs. Stock # S2025-10-31-500303 Master SKU # 1016325
    $499.99
    $174.9965% OFF
    Used TaylorMade Qi35 MAX Driver - 9 Degrees - Stiff Flex Mitsubishi Kai'li White - Right-Handed
    Next Round logo

    Used TaylorMade Qi35 MAX Driver - 9 Degrees - Stif...

    /* 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 Loft: 9° Handedness: Right-Handed Length: 45.5 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: Stiff Shaft Brand: Mitsubishi Shaft Model: Kai'li White Shaft Material: Graphite Shaft Weight: 60g Headcover Included?: Yes (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 Qi35 MAX Driver offers forgiveness and fast ball speeds in a high-MOI head. Great for players who want distance and accuracy off the tee, this used golf club inspires confidence. This driver shows light sole wear from play, indicating it has been used but remains in excellent condition overall. The performance and aesthetics are still impressive, making it a great choice for golfers looking for quality equipment. Our Recommendation 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 driver, 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-12-16-589161 Master SKU # 1017204
    $520.99
    $388.9925% OFF
    Used TaylorMade Qi35 MAX Driver - 9 Degrees - Stiff Flex Mitsubishi Diamana T+ 60 - Right-Handed
    Next Round logo

    Used TaylorMade Qi35 MAX Driver - 9 Degrees - Stif...

    /* 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 Loft: 9° Handedness: Right-Handed Length: 45.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: Stiff Shaft Brand: Mitsubishi Shaft Model: Diamana T+ 60 Shaft Material: Graphite Shaft Weight: 60g Headcover Included?: Yes (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 Qi35 MAX Driver offers forgiveness and fast ball speeds in a high-MOI head. Great for players who want distance and accuracy off the tee, this used golf club inspires confidence. This driver 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 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 driver, 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-11-13-505736 Master SKU # 1017204
    $599.99
    $388.9935% OFF
    Used TaylorMade Qi35 Driver - 10.5 Degrees - Stiff Flex Aldila Rogue - Right-Handed
    Next Round logo

    Used TaylorMade Qi35 Driver - 10.5 Degrees - Stiff...

    /* 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 Loft: 10.5° Handedness: Right-Handed Length: 45.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: Stiff Shaft Brand: Aldila Shaft Model: Rogue Shaft Material: Graphite Shaft Weight: 70g Headcover Included?: Yes (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 Qi35 was named the best TaylorMade driver of 2025 by MyGolfSpy and secured praise from Golf Monthly for its high-speed performance. Built for golfers with faster swings, it offers explosive distance with a clean, confidence-inspiring look at address. This driver 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 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 driver, 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-28-595507 Master SKU # 1017197
    $599.99
    $393.9934% OFF
    Used TaylorMade Qi35 LS Driver - HEAD ONLY - Right-Handed - 10.5 Degrees
    Next Round logo

    Used TaylorMade Qi35 LS Driver - HEAD ONLY - Right...

    /* 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 Type: Brand: TaylorMade Model: Qi35 LS Loft: 10.5° Lie Angle Color: Handedness: Right-Handed Headcover Included?: Yes (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 Qi35 LS Driver is built for players seeking low spin and a strong ball flight. Designed with advanced carbon construction and forgiveness in mind, this used golf club delivers powerful performance off the tee for mid to low handicappers. The driver shows minor scratches on the crown and light sole wear from play. These cosmetic imperfections do not affect performance, making it a solid choice for golfers seeking quality equipment. Our Recommendation 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 club head, 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-12-18-588904 Master SKU # 1017059
    $588.99
    $371.9937% OFF
    Used Callaway Rogue ST Triple Diamond LS Driver - 9 Degrees - Extra Stiff Flex Mitsubishi Tensei AV Blue - Right-Handed
    Next Round logo

    Used Callaway Rogue ST Triple Diamond LS Driver - ...

    /* 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 Loft: 9° Handedness: Right-Handed Length: 46 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: Mitsubishi Shaft Model: Tensei AV Blue Shaft Material: Graphite Shaft Weight: 60g 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 Callaway Rogue ST Triple Diamond LS Driver is a high-performance used golf club that combines advanced technology with affordability. This club features a unique Triple Diamond design for enhanced control and precision, making it ideal for golfers seeking to improve their game. The LS (Low Spin) technology offers a lower spin rate, providing a straighter and longer flight path for your golf balls. This club is perfect for the seasoned golfer looking for a balance between modern technology and cost-effectiveness. With the Callaway Rogue ST Triple Diamond LS Driver, you can experience superior performance without breaking the bank. This driver 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. Our Recommendation Our Next Round Golf used golf club experts recommend the Callaway Rogue ST Triple Diamond LS Driver for golfers looking for maximum performance. This driver is designed with advanced technology to help improve your game. If you're a low handicap golfer who plays often and wants to invest in high-quality equipment, this driver is perfect for you. Improve your game with the Callaway Rogue ST Triple Diamond LS Driver. About Callaway Callaway is one of golf's leading brands, known for innovation across drivers, irons, wedges, balls, and more. Technologies like Jailbreak and AI-designed faces power their performance, making Callaway gear a trusted option for players at every skill level. Playing It Forward By choosing this premium used driver, 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 Callaway golf clubs. Stock # S2025-11-12-568545 Master SKU # 1010361
    $549.99
    $207.9962% OFF
    Used TaylorMade Qi35 LS Driver - 10.5 Degrees - Stiff Flex KBS PGW - Right-Handed
    Next Round logo

    Used TaylorMade Qi35 LS Driver - 10.5 Degrees - St...

    Elevate your tee game with this exceptional used TaylorMade Qi35 LS Driver. Designed for the player who demands low spin and a powerful, penetrating ball flight, this driver leverages advanced carbon construction to deliver explosive distance without sacrificing forgiveness. It's the ideal choice for mid to low handicappers looking to maximize their performance off the tee. This right-handed driver features a 10.5-degree loft and comes equipped with a stiff flex KBS PGW graphite shaft, weighing in at 60 grams for optimal control and stability through your swing. The standard length of 45.5 inches provides a confident setup at address. Rated in Excellent condition, this club has seen minimal course time. You can expect only light cosmetic signs of play, such as faint ball marks on the face or minor superficial scratches, while the grip remains in top playing shape. A headcover is not included with this individual club. At Next Round Golf, we believe every golfer deserves access to premium equipment. By choosing this pre-owned TaylorMade driver from our curated selection at nextroundgolf.com, you're making a smart investment in your game while supporting our mission to make golf more affordable and sustainable. You join a community passionate about performance and value. Rest assured with the Next Round Golf guarantee, backed by over 18,000 five-star reviews and a straightforward 30-day return policy. Experience the innovative technology of TaylorMade, a brand synonymous with speed and forgiveness, and discover new potential on the course. Find your advantage with confidence.
    $649.99
    $397.9939% OFF
    Used TaylorMade Qi35 LS Driver 10.5° Stiff Flex Right-Handed
    Next Round logo

    Used TaylorMade Qi35 LS Driver 10.5° Stiff Flex Ri...

    Elevate your tee game with this pre-owned TaylorMade Qi35 LS Driver, engineered for golfers seeking low spin and powerful ball flight. Featuring a 10.5-degree loft and a stiff flex KBS PGW graphite shaft, this driver is designed to deliver maximum distance and forgiveness. The advanced carbon construction provides a solid feel and enhanced stability, making it an excellent choice for mid to low handicappers looking to optimize their performance off the tee. This used TaylorMade driver is in excellent condition with minimal signs of wear. You may notice a few faint ball marks on the clubface or minor cosmetic scratches, but the grip remains in top playing shape. It comes without a headcover. By choosing this premium used golf club from Next Round Golf, you're investing in high-quality equipment while supporting our mission to make golf more affordable and sustainable. Join thousands of satisfied golfers who trust our 30-day money-back guarantee and extensive selection of pre-owned clubs. Discover the perfect blend of innovation and value for your game today.
    $649.99
    $397.9939% OFF
    Used Cobra DS-ADAPT X Driver - 9 Degrees - Stiff Flex Project X Denali Black - Right-Handed
    Next Round logo

    Used Cobra DS-ADAPT X Driver - 9 Degrees - Stiff F...

    Elevate your tee game with a premium used Cobra DS-ADAPT X Driver from Next Round Golf. This right-handed, 9-degree driver is engineered for golfers who demand a perfect blend of explosive distance and pinpoint accuracy. Featuring a neutral setup and advanced weighting technology, it offers exceptional forgiveness to help you find more fairways, making it a versatile choice for a wide range of players. This specific club is in outstanding mint condition, meticulously inspected and ready for your next round. It comes equipped with a high-performance Project X Denali Black graphite shaft in a stiff flex, offering a stable 60g weight for powerful, controlled swings. The complete package includes the original headcover, ensuring your investment stays protected. At Next Round Golf, we believe great gear shouldn't break the bank. By choosing this certified pre-owned Cobra driver, you unlock tour-level technology at a fraction of the cost, all while supporting our mission to make golf more accessible. You can shop with absolute confidence, backed by our community of over 18,000 five-star reviews and a straightforward 30-day money-back guarantee. Discover the power and precision of Cobra Golf, trusted by pros for its innovative designs. Visit NextRoundGolf.com today to claim this exceptional driver and experience the Next Round difference for yourself.
    $457.99
    $346.9924% OFF
    Used Callaway Big Bertha REVA 23 Driver - 12.5 Degrees - Ladies Flex Acer Velocity - Right-Handed
    Next Round logo

    Used Callaway Big Bertha REVA 23 Driver - 12.5 Deg...

    Elevate your tee game with a premium used Callaway Big Bertha REVA 2023 Driver, expertly sourced by Next Round Golf. Designed specifically for women golfers, this right-handed driver features a 12.5-degree loft and a Ladies Flex Acer Velocity graphite shaft, engineered to promote a higher launch and maximize distance with less effort. Its advanced technology, including a lightweight carbon crown, delivers exceptional forgiveness, helping you hit longer, straighter drives with more consistency. This driver is in Excellent condition, showing only minimal cosmetic wear from limited course time. You can expect a clean face with perhaps a faint ball mark and a grip that remains in top playing shape. It offers incredible value, allowing you to experience Callaway's latest innovation without the price tag of a brand-new club. At Next Round Golf, we are passionate about making high-performance golf more accessible. By choosing this used club, you're investing in your game and supporting a sustainable cycle that benefits golfers everywhere. Our experts recommend the Big Bertha REVA for players seeking to improve their accuracy and add crucial yards off the tee. Shop with complete confidence thanks to our 30-day money-back guarantee and backed by over 18,000 five-star reviews. Discover the perfect blend of performance and value at nextroundgolf.com and take your next round to a new level.
    $296.99
    $214.9928% OFF
    Used Titleist GT1 Driver - 12 Degrees - Regular Flex Fujikura Air Speeder - Right-Handed
    Next Round logo

    Used Titleist GT1 Driver - 12 Degrees - Regular Fl...

    Elevate your tee game with this exceptional used Titleist GT1 Driver. Designed for maximum speed and forgiveness, this 12-degree loft driver features a confidence-inspiring shape that helps players of all levels find more fairways and add crucial distance. The regular flex Fujikura Air Speeder graphite shaft, weighing just 40g, promotes a smooth, easy swing for optimal launch conditions. This right-handed club is a fantastic value for golfers seeking premium Titleist performance without the premium price tag. This specific driver is in Excellent condition, having seen minimal time on the course. You can expect it to arrive ready to play, complete with its original headcover. Typical cosmetic wear may include faint ball marks on the face or minor nicks, but the grip remains in top shape. It represents a smart, sustainable choice for your bag. At Next Round Golf, we are passionate about making high-performance equipment accessible. By choosing this used Titleist GT1 driver from Next Round Golf at https://nextroundgolf.com, you're investing in your game and supporting our mission to grow the sport. You can shop with absolute confidence thanks to our 30-day money-back guarantee and over 18,000 five-star reviews from golfers just like you. Discover the perfect blend of tour-proven technology and outstanding value today.
    $600.99
    $399.9933% OFF
    Used TaylorMade SLDR Mini Driver - 14 Degrees - Stiff Flex Fujikura Speeder 65 - Left-Handed
    Next Round logo

    Used TaylorMade SLDR Mini Driver - 14 Degrees - St...

    /* 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 Loft: 14° Handedness: Left-Handed Length: 43.5 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: Stiff Shaft Brand: Fujikura Shaft Model: Speeder 65 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|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 SLDR Mini Driver is a high-performance used golf club that combines modern technology with affordability. This club features a low-forward center of gravity that promotes high launch, fast ball speed, and low spin for phenomenal distance. Its larger-than-average clubface enhances playability and boosts confidence at address, making it ideal for golfers seeking to improve their game. The SLDR S Mini Driver is a testament to TaylorMade's commitment to innovation, offering a unique blend of distance and control. This affordable, high-performance used golf club is perfect for the golfer looking to take their game to the next level. This driver shows minor scratches on the crown, light sole wear from play, and noticeable face wear from ball strikes. Overall, it remains in good playing condition. Our Recommendation Our Next Round Golf club experts recommend the TaylorMade SLDR Mini Driver for regular golfers looking to improve their game. This club offers a balance of performance and affordability, making it a great option for those who want reliable and proven equipment without breaking the bank. Its release in 2014 also adds to its appeal. Improve your game with the TaylorMade SLDR S Mini Driver. 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 driver, 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-01-05-589438 Master SKU # 1007060
    $227.99
    $179.9921% OFF
    Used TaylorMade Qi35 LS Driver - HEAD ONLY - Right-Handed - 9 Degrees
    Next Round logo

    Used TaylorMade Qi35 LS Driver - HEAD ONLY - Right...

    /* 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 Type: Brand: TaylorMade Model: Qi35 LS Loft: 9° Lie Angle Color: Handedness: Right-Handed Headcover Included?: Yes (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 Qi35 LS Driver is built for players seeking low spin and a strong ball flight. Designed with advanced carbon construction and forgiveness in mind, this used golf club delivers powerful performance off the tee for mid to low handicappers. This driver 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 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 club head, 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-23-588101 Master SKU # 1017059
    $649.99
    $359.9945% OFF
    Used Callaway Mavrik Driver - 9 Degrees - Stiff Flex Mitsubishi MMT - Left-Handed
    Next Round logo

    Used Callaway Mavrik Driver - 9 Degrees - Stiff Fl...

    /* 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 Loft: 9° Handedness: Left-Handed Length: 45.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: Stiff Shaft Brand: Mitsubishi Shaft Model: MMT Shaft Material: Graphite Shaft Weight: 60g 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 Callaway Mavrik Driver is a high-performance used golf club that combines advanced technology with affordability. Its unique Artificial Intelligence-designed Flash Face SS20 technology ensures faster ball speeds and increased distance, making it an ideal choice for golfers looking to improve their game. The club's aerodynamic head shape and lightweight carbon crown contribute to its exceptional performance, offering a perfect blend of speed, stability, and accuracy. The Callaway Mavrik Driver is particularly beneficial for intermediate golfers seeking to enhance their driving distance without breaking the bank. This affordable, high-performance used golf club is a smart investment for those aiming to elevate their golfing skills. The driver shows noticeable scratches on the crown, minor paint chips, and light sole wear from play. There is also noticeable face wear from ball strikes, indicating regular use. Our Recommendation Our Next Round Golf club experts recommend the Callaway Mavrik Driver for golfers looking to improve their distance and accuracy off the tee. With advanced technology like AI-designed Flash Face SS20 and Jailbreak bars, this driver delivers faster ball speeds and more forgiveness on off-center hits. Upgrade your game with the Callaway Mavrik Driver. About Callaway Callaway is one of golf's leading brands, known for innovation across drivers, irons, wedges, balls, and more. Technologies like Jailbreak and AI-designed faces power their performance, making Callaway gear a trusted option for players at every skill level. Playing It Forward By choosing this premium used driver, 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 Callaway golf clubs. Stock # S2026-01-22-413199 Master SKU # 1001013
    $175.99
    $147.9916% OFF
    Used Titleist 917 D3 Driver - 9.5 Degrees - Stiff Flex Aldila Rogue 110 MSI - Right-Handed
    Next Round logo

    Used Titleist 917 D3 Driver - 9.5 Degrees - Stiff ...

    /* 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 Loft: 9.5° Handedness: Right-Handed Length: 45 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: Stiff Shaft Brand: Aldila Shaft Model: Rogue 110 MSI Shaft Material: Graphite Shaft Weight: 60g 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 917D3 Driver is a high-performance used golf club that combines advanced technology with affordability. This club features a unique SureFit CG system, providing optimal distance and accuracy for serious golfers. Its high-speed, active recoil channel technology ensures superior ball speed and reduced spin, making it ideal for golfers seeking to improve their game. The Titleist 917D3 Driver is not only affordable but also offers the perfect balance of modern technology and value. This club is best suited for the dedicated golfer looking to enhance their performance on the course. This driver shows noticeable scratches on the crown, minor paint chips, and light sole wear from play. There is also noticeable face wear from ball strikes, indicating regular use. Our Recommendation Our Next Round Golf used golf club experts recommend the Titleist 917D3 Driver for serious golfers who want maximum performance. With advanced technology and adjustable features, this driver can help you achieve your potential on the course. Its adjustable weight and loft settings cater to your specific needs. Trust us, the Titleist 917D3 Driver is the club you need to take your game to the next level. 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 driver, 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-01-22-413257 Master SKU # 1008022
    $140.99
    $118.9916% OFF
    Used TaylorMade STEALTH PLUS Driver - 8 Degrees - Stiff Flex True Temper Hzrdus RDX Smoke - Right-Handed
    Next Round logo

    Used TaylorMade STEALTH PLUS Driver - 8 Degrees - ...

    /* 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 Loft: 8° Handedness: Right-Handed Length: 45.5 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: Stiff Shaft Brand: True Temper Shaft Model: Hzrdus RDX Smoke Shaft Material: Graphite Shaft Weight: 60g 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 STEALTH PLUS Driver is a high-performance used golf club that combines advanced technology with affordability. This club features a unique carbonwood construction, offering an unparalleled blend of distance, forgiveness, and accuracy. The STEALTH PLUS Driver is perfect for golfers seeking to improve their game without breaking the bank. Its Twist Face technology ensures straighter shots, even on off-center hits, making it ideal for golfers striving for consistency. With its blend of modern design and cost-effectiveness, the TaylorMade STEALTH PLUS Driver is a smart choice for the budget-conscious golfer seeking top-tier performance. This driver shows minor scratches on the crown, light sole wear from play, and noticeable face wear from ball strikes. Overall, it remains in good playing condition. Our Recommendation Our Next Round Golf club experts recommend the TaylorMade STEALTH PLUS Driver for the serious golfer looking for maximum performance. With advanced features and technology, this driver is perfect for the low handicap golfer who plays often and is willing to invest in high-quality gear to improve their game. 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 driver, 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-01-21-584612 Master SKU # 1010329
    $215.99
    $182.9915% OFF
    Used Callaway Rogue Sub Zero Driver - 10.5 Degrees - Regular Flex Aldila SYNERGY 50 Blue - Right-Handed
    Next Round logo

    Used Callaway Rogue Sub Zero Driver - 10.5 Degrees...

    /* 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 Loft: 10.5° Handedness: Right-Handed Length: 45 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: SYNERGY 50 Blue Shaft Material: Graphite Shaft Weight: 55g 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 Callaway Rogue Sub Zero Driver is a high-performance used golf club that combines advanced technology with affordability. This club features Jailbreak and X-Face VFT technologies, enhancing ball speed and distance. Its Triaxial Carbon Crown and Sub Zero weighting offer exceptional control, making it ideal for golfers seeking to improve their game. The Rogue Sub Zero Driver is a testament to Callaway's commitment to innovation, offering a unique blend of power, precision, and value. This club is perfect for the discerning golfer who values performance and affordability in their equipment. This driver shows minor scratches on the crown, light sole wear, noticeable face wear from ball strikes, and minor paint chips. Overall, it remains in good playing condition. Our Recommendation Our Next Round Golf club experts recommend the Callaway Rogue Sub Zero Driver for regular golfers with a mid to high handicap. This driver offers excellent performance and forgiveness at a reasonable price point. With an adjustable weighting system and high MOI, it's perfect for improving your game without breaking the bank. About Callaway Callaway is one of golf's leading brands, known for innovation across drivers, irons, wedges, balls, and more. Technologies like Jailbreak and AI-designed faces power their performance, making Callaway gear a trusted option for players at every skill level. Playing It Forward By choosing this premium used driver, 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 Callaway golf clubs. Stock # S2026-02-03-416861 Master SKU # 1001039
    $158.99
    $134.9915% OFF

    Subscribe to GOLF Partner coupon newsletter

    Get notified of offers and coupon codes from GOLF Partner before they expire!