
Used Callaway Apex Ai300 Approach Wedge - Right-Handed - 47 Degrees - Extra Stiff Flex
Product information for Used Callaway Apex Ai300 Approach Wedge - Right-Handed - 47 Degrees - Extra Stiff Flex
$209.99
$136.9935% OFF
/* Force a real 2-column grid on THIS list only, overriding the theme */ #product-desc-list{ display:grid !important; grid-template-columns:1fr 1fr; gap:0; list-style:none; margin:0 0 16px 0; padding:0; column-count:initial !important; /* kill multi-column layout */ } #product-desc-list > li{ margin:0 !important; padding:6px !important; border-bottom:1px solid #d9d9d9 !important; float:none !important; /* kill float layouts */ width:auto !important; /* kill width:50% rules */ } #product-desc-list > li._left { border-right:1px solid #d9d9d9 !important; } Club Condition: Excellent Club Number: Approach Wedge Loft: 47° Lie Angle Color: Not Specified Bounce: Not Specified° Handedness: Right-Handed Length: 35 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: Fujikura Shaft Model: Axiom Shaft Material: Graphite Shaft Weight: 125g (function () { // --- NEW LOGIC START --- // 1. Capture the department variable const department = "Men"; // 2. Identify the image element const chartImg = document.getElementById('chart-img'); // 3. Define the Women's Chart URL (from your twelfth link) const womenChartUrl = "https://cdn.shopify.com/s/files/1/0601/0165/6746/files/Women_s_Iron_Standard_Lengths.png?v=1771424027&width=1640"; // 4. If the department is exactly "Women", swap the source if (chartImg && department.trim() === 'Women') { chartImg.src = womenChartUrl; chartImg.alt = "Women's Iron Standard Lengths"; } // 5. PURED SHAFT LOGIC ADDED HERE const puredValue = ""; const puredSection = document.getElementById('nr-pured-section'); if (puredSection) { const cleanPured = puredValue.trim(); // Only show if Yes or Yes + Premium Shaft if (cleanPured === "Yes" || cleanPured === "Yes + Premium Shaft") { puredSection.style.display = "block"; } } // --- NEW LOGIC END --- const ul = document.getElementById('product-desc-list'); if (!ul) return; function pruneAndLayout(){ // --- SETTINGS: LIST OF WORDS TO HIDE --- const hiddenValues = [ "not specified", "unspecified", "not applicable", "n/a", "na", "none" ]; // --------------------------------------- const items = Array.from(ul.querySelectorAll('li')); let kept = []; items.forEach(li => { const label = li.querySelector('b'); const labelText = label ? label.textContent : ''; // 1. Get the text value let valueOnly = label ? li.textContent.replace(labelText, '').trim() : li.textContent.trim(); // 2. SCRUBBER: Remove any degree symbols (°) and make it lowercase for checking // This turns "Not Specified°" into just "not specified" const cleanValue = valueOnly.replace(/°/g, '').trim().toLowerCase(); // 3. Check against the list // (We also check if valueOnly is JUST a degree symbol, which means the data was empty) const shouldHide = cleanValue === '' || hiddenValues.includes(cleanValue); if (shouldHide) { li.remove(); // Delete it } else { kept.push(li); // Keep it } }); // Re-mark visible items as left/right cells so borders line up kept.forEach((li, i) => { li.classList.toggle('_left', i % 2 === 0); li.classList.toggle('_right', i % 2 === 1); }); // If odd count, add a blank cell so the last row closes cleanly if (kept.length % 2 === 1) { const filler = document.createElement('li'); filler.innerHTML = ''; ul.appendChild(filler); filler.classList.add('_right'); } ul.style.visibility = 'visible'; } // Run immediately pruneAndLayout(); // Watch for changes const mo = new MutationObserver(() => pruneAndLayout()); mo.observe(ul, { childList: true, subtree: false, attributes: false }); })(); The Apex Ai300 Wedge matches the Ai300 iron set with precision shaping and AI face optimization for consistent spin. A forged feel and compact profile make it suitable for players who prefer control in scoring clubs. This wedge has seen minimal time on the course. Typical cosmetic wear may include a few ball marks faintly visible on the face and/or a few minor nicks and scratches and grips will be in top shape. Pured Shaft Upgrade Our Recommendation Our Next Round Golf club experts recommend the Callaway Apex Ai300 Wedge for golfers seeking a forgiving, premium-feeling scoring club that helps them launch controlled approach shots with confidence. Its larger, cavity-back design and AI-inspired shaping promote consistency, improved turf interaction, and reliable distance gapping around the greens. 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 wedge, you're not only investing in your own game but also contributing to Next Round Golf's mission of making golf more affordable and accessible for enthusiasts at every skill level. You’re joining a passionate community dedicated to sustainability, continuous improvement, and the shared joy of discovering new potential on the course. Next Round Guarantee With over 18,000 five star reviews and a 30 day money back guarantee, you can trust Next Round Golf for high-quality used Callaway golf clubs. Stock # S2025-10-01-505333 Master SKU # 1017005 (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"; } })();






















