{"product_id":"broken-stud-extractor","title":"Broken Stud Extractor","description":"\u003cmeta charset=\"UTF-8\"\u003e\u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\u003ctitle\u003e\u003c\/title\u003e\n\u003c!-- Clean, technical font suitable for tools\/hardware --\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@400;500;600;700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\u003cstyle type=\"text\/css\"\u003e\/* Global Variables - Industrial\/Tool Theme *\/\n    :root {\n        --bg-main: #f1f5f9;\n        --bg-card: #ffffff;\n        --text-dark: #1e293b;\n        --text-gray: #475569;\n        --accent-color: #ea580c; \/* Industrial Orange *\/\n        --accent-gradient: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);\n        --header-bg: #0f172a; \/* Dark Slate *\/\n        --border-color: #e2e8f0;\n        --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);\n        --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);\n    }\n\n    * {\n        box-sizing: border-box;\n    }\n\n    body {\n        margin: 0;\n        padding: 0;\n        font-family: 'Inter', sans-serif;\n        background-color: var(--bg-main);\n        color: var(--text-dark);\n        line-height: 1.6;\n    }\n\n    img {\n        max-width: 100%;\n        height: auto;\n        display: block;\n        border-radius: 12px;\n    }\n\n    \/* Main Container *\/\n    .container {\n        max-width: 1100px;\n        margin: 40px auto;\n        background-color: var(--bg-card);\n        box-shadow: var(--shadow-md);\n        border-radius: 16px;\n        overflow: hidden;\n    }\n\n    \/* Hero Header *\/\n    .hero-header {\n        background: var(--header-bg);\n        padding: 80px 40px;\n        text-align: center;\n        position: relative;\n        border-bottom: 6px solid var(--accent-color);\n    }\n    .hero-header h1 {\n        font-size: 40px;\n        font-weight: 800;\n        margin: 0 0 15px 0;\n        line-height: 1.2;\n        color: #ffffff; \/* 强行指定纯白，确保对比度 *\/\n        letter-spacing: -0.5px;\n    }\n    .hero-header p {\n        font-size: 18px;\n        font-weight: 400;\n        margin: 0 auto;\n        color: #94a3b8;\n        max-width: 700px;\n    }\n\n    \/* Content Sections *\/\n    .section-wrapper {\n        padding: 70px 50px;\n    }\n\n    \/* Alternating Feature Layout *\/\n    .feature-row {\n        display: flex;\n        align-items: center;\n        gap: 60px;\n        margin-bottom: 80px;\n    }\n    .feature-row:last-child {\n        margin-bottom: 0;\n    }\n    .feature-row:nth-child(even) {\n        flex-direction: row-reverse;\n    }\n\n    .feature-text {\n        flex: 1;\n    }\n    .feature-text h3 {\n        font-weight: 700;\n        font-size: 28px;\n        color: var(--text-dark);\n        margin-top: 0;\n        margin-bottom: 16px;\n        line-height: 1.3;\n        display: flex;\n        align-items: center;\n        gap: 12px;\n    }\n    .feature-text p {\n        color: var(--text-gray);\n        font-size: 17px;\n        margin: 0;\n    }\n\n    .feature-image {\n        flex: 1;\n        position: relative;\n    }\n    .feature-image img {\n        box-shadow: var(--shadow-md);\n        border: 1px solid var(--border-color);\n    }\n\n    \/* Divider *\/\n    .divider {\n        height: 1px;\n        background-color: var(--border-color);\n        margin: 0 50px;\n    }\n\n    \/* Block Titles *\/\n    .block-title {\n        font-size: 32px;\n        font-weight: 800;\n        text-align: center;\n        margin-bottom: 50px;\n        color: var(--text-dark);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n    .block-title span {\n        color: var(--accent-color);\n    }\n\n    \/* Specifications Grid *\/\n    .specs-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 20px;\n    }\n    .spec-card {\n        background: #f8fafc;\n        padding: 25px;\n        border-radius: 12px;\n        border-left: 4px solid var(--accent-color);\n        transition: all 0.3s ease;\n    }\n    .spec-card:hover {\n        background: #ffffff;\n        box-shadow: var(--shadow-sm);\n        transform: translateY(-2px);\n    }\n    .spec-label {\n        font-size: 13px;\n        color: var(--text-gray);\n        font-weight: 600;\n        margin-bottom: 6px;\n        text-transform: uppercase;\n        letter-spacing: 0.5px;\n    }\n    .spec-value {\n        font-size: 16px;\n        font-weight: 700;\n        color: var(--text-dark);\n    }\n\n    \/* FAQ Section *\/\n    .faq-container {\n        max-width: 850px;\n        margin: 0 auto;\n        display: grid;\n        gap: 20px;\n    }\n    .faq-item {\n        background: #ffffff;\n        border-radius: 12px;\n        padding: 25px 30px;\n        border: 1px solid var(--border-color);\n        box-shadow: var(--shadow-sm);\n    }\n    .faq-q {\n        font-weight: 700;\n        font-size: 18px;\n        color: var(--text-dark);\n        margin-bottom: 10px;\n        display: flex;\n        align-items: flex-start;\n        gap: 10px;\n    }\n    .faq-q::before {\n        content: 'Q:';\n        color: var(--accent-color);\n        font-weight: 800;\n    }\n    .faq-a {\n        color: var(--text-gray);\n        font-size: 16px;\n        margin: 0;\n        padding-left: 30px;\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        .container {\n            margin: 0;\n            border-radius: 0;\n        }\n        .hero-header h1 {\n            font-size: 32px;\n        }\n        .section-wrapper {\n            padding: 50px 25px;\n        }\n        .feature-row, .feature-row:nth-child(even) {\n            flex-direction: column;\n            gap: 30px;\n            margin-bottom: 60px;\n        }\n        .feature-text h3 {\n            font-size: 24px;\n        }\n        .divider {\n            margin: 0 25px;\n        }\n        .faq-a {\n            padding-left: 0;\n            margin-top: 10px;\n        }\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"container\"\u003e\n\u003c!-- Hero Header --\u003e\n\u003cdiv class=\"hero-header\"\u003e\n\u003ch1\u003e3\/8\" Hex Stud Extractor\u003c\/h1\u003e\n\n\u003cp\u003eHeavy-Duty Broken Bolt Remover Tool • Save time and reduce frustration during repairs\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Features Section --\u003e\n\n\u003cdiv class=\"section-wrapper\"\u003e\n\u003c!-- Feature 1 --\u003e\n\u003cdiv class=\"feature-row\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003e🔧 Multi-Purpose Stud Removal Tool\u003c\/h3\u003e\n\n\u003cp\u003eDesigned for removing threaded, broken, rusted, painted, or stripped studs. Perfect for exhaust manifolds, fuel plugs, setscrews, and stubborn bolts.\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-image\"\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg alt=\"Multi-Purpose Stud Removal Tool\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260302140112\/afabe188e20de5431c47b0761cc5c8ca.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 2 --\u003e\n\n\u003cdiv class=\"feature-row\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003e📏 Wide Extraction Range\u003c\/h3\u003e\n\n\u003cp\u003eCompatible with studs ranging from 1\/4\" to 1\/2\" (6–12 mm). The inner jaw firmly grips smooth or damaged studs for reliable removal.\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-image\"\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg alt=\"Wide Extraction Range\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260302140112\/dc341503121e4ced7ca483888180044c.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 3 --\u003e\n\n\u003cdiv class=\"feature-row\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003e⚙️ 3\/8\" Hex Drive Compatibility\u003c\/h3\u003e\n\n\u003cp\u003eFeatures a 3\/8\" hex end for use with manual or pneumatic impact wrenches, ratchets, adjustable wrenches, and flat wrenches. Suitable for most drive tools.\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-image\"\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg alt=\"3\/8 Hex Drive Compatibility\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260302140112\/cecac07d108195d4e2dced5cf3ea3386.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 4 --\u003e\n\n\u003cdiv class=\"feature-row\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003e🛡️ Built to Last\u003c\/h3\u003e\n\n\u003cp\u003eCrafted from heat-treated alloy steel for maximum strength and durability. Chrome finish enhances rust resistance and protects against chipping or dulling. Ideal for heavy-duty automotive and mechanical applications.\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-image\"\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg alt=\"Built to Last\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260302140112\/966537538f2a0bdb304b19fa1ae1a2c2.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 5 --\u003e\n\n\u003cdiv class=\"feature-row\"\u003e\n\u003cdiv class=\"feature-text\"\u003e\n\u003ch3\u003e🛠️ Simple \u0026amp; Effective Operation\u003c\/h3\u003e\n\n\u003cp\u003ePlace the extractor over the stud. Tighten the jaws by turning the bottom hex nut counterclockwise. Once securely clamped, continue turning counterclockwise to remove the stud. Fast, efficient, and easy to use.\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-image\"\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg alt=\"Simple \u0026amp; Effective Operation\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260302140112\/a61790b9f6c1df27a912f23098c4aad3.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"divider\"\u003e \u003c\/div\u003e\n\u003c!-- Specifications --\u003e\n\n\u003cdiv class=\"section-wrapper\"\u003e\n\u003ch2 class=\"block-title\"\u003eProduct \u003cspan\u003eSpecifications\u003c\/span\u003e\n\u003c\/h2\u003e\n\n\u003cdiv class=\"specs-grid\"\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-label\"\u003eDrive Size\u003c\/div\u003e\n\n\u003cdiv class=\"spec-value\"\u003e3\/8\" Hex\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-label\"\u003eExtraction Range\u003c\/div\u003e\n\n\u003cdiv class=\"spec-value\"\u003e1\/4\" – 1\/2\" (6–12 mm)\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-label\"\u003eMaterial\u003c\/div\u003e\n\n\u003cdiv class=\"spec-value\"\u003eHeat-Treated Alloy Steel\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-label\"\u003eFinish\u003c\/div\u003e\n\n\u003cdiv class=\"spec-value\"\u003eChrome Plated\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"spec-card\"\u003e\n\u003cdiv class=\"spec-label\"\u003eApplication\u003c\/div\u003e\n\n\u003cdiv class=\"spec-value\"\u003eAutomotive \u0026amp; Mechanical\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"divider\"\u003e \u003c\/div\u003e\n\u003c!-- FAQ --\u003e\n\n\u003cdiv class=\"section-wrapper\"\u003e\n\u003ch2 class=\"block-title\"\u003eFrequently Asked \u003cspan\u003eQuestions\u003c\/span\u003e\n\u003c\/h2\u003e\n\n\u003cdiv class=\"faq-container\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-q\"\u003eCan it remove rusted bolts?\u003c\/div\u003e\n\n\u003cp class=\"faq-a\"\u003eYes. The internal jaw design grips rusted and stripped studs effectively.\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-q\"\u003eIs it compatible with impact wrenches?\u003c\/div\u003e\n\n\u003cp class=\"faq-a\"\u003eYes. The 3\/8\" hex end works with manual and pneumatic tools.\u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-q\"\u003eWhat size studs can it handle?\u003c\/div\u003e\n\n\u003cp class=\"faq-a\"\u003eIt fits studs from 1\/4\" to 1\/2\" (6–12 mm).\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n","brand":"Bak","offers":[{"title":"Default Title","offer_id":47224694112433,"sku":"0311-1724125","price":24.95,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0718\/1467\/6657\/files\/3065187efeb1fb8203573d0c87ed7efd.jpg?v=1776850243","url":"https:\/\/wondolla.com\/products\/broken-stud-extractor","provider":"Wondolla","version":"1.0","type":"link"}