Solid Steel Anchor Setter
.product-detail-container { /* Design System Variables */ --primary: #FF6B00; /* Industrial Orange */ --primary-hover: #E65A00; --text-main: #111827; --text-sub: #4B5563; --bg-body : #FFFFFF; --bg-card: #F3F4F6; --radius-md: 6px; --radius-lg: 8px; --shadow-sm: 0 2px 4px rgba(0,0,0,0.05); --shadow-lg: 0 10px 20px rgba(0,0,0,0.08); --border-color: #E5E7EB; /* Strict Layout Constraints */ max-width: 1200px; margin: 0 auto; padding: 0 5%; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); overflow-wrap: break-word; word-break: break-word; background-color: var(--bg-body); } .product-detail-container * { box-sizing: border-box; } /* Typography System */ .pd-h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 800; line-height: 1.2; margin-top: 0; margin-bottom: 1rem; color: var(--text-main); text-transform: uppercase; letter-spacing: -0.02em; } .pd-h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; line-height: 1.3; margin-top: 0; margin-bottom: 1rem; color: var(--text-main); } .pd-h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 700; line-height: 1.4; margin-top: 0; margin-bottom: 0.75rem; color: var(--text-main); } .pd-p { font-size: clamp(18px, 2vw, 20px); line-height: 1.7; color: var(--text-sub); margin-top: 0; margin-bottom: 1.5rem; } /* Layout & Spacing */ .pd-section { margin-bottom: clamp(3rem, 6vw, 5rem); } /* Badges (Non-interactive) */ .pd-badge-wrapper { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; } .pd-badge { background-color: #FFF7ED; color: var(--primary); padding: 0.5rem 1rem; border-radius: var(--radius-md); font-size: 16px; font-weight: 700; border: 1px solid var(--primary); display: inline-flex; align-items: center; justify-content: center; user-select: none; } /* Media & Images Protocol */ .pd-img-fluid { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); } .pd-placeholder { width: 100%; aspect-ratio: 4/3; background-color: #E5E7EB; border: 2px dashed #9CA3AF; display: flex; align-items: center; justify-content: center; color: #4B5563; font-size: 18px; font-weight: 600; border-radius: var(--radius-lg); } /* Hero Section */ .pd-hero { display: flex; flex-direction: column; gap: 2rem; } .pd-hero-proof { font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .pd-hero-proof::before { content: "★ ★ ★ ★ ★"; color: var(--primary); letter-spacing: 2px; } @media (min-width: 768px) { .pd-hero { flex-direction: row; align-items: center; gap: 4rem; } .pd-hero-content { flex: 1; } .pd-hero-media { flex: 1; } } /* Feature Z-Pattern (Mobile Ordering Lock) */ .pd-feature-item { display: flex; flex-direction: column; gap: 2rem; margin-bottom: clamp(3rem, 6vw, 5rem); } /* Mobile Lock: Image (1) -> Text (2) */ .pd-feature-media { order: 1; width: 100%; } .pd-feature-copy { order: 2; width: 100%; display: flex; flex-direction: column; justify-content: center; } @media (min-width: 768px) { .pd-feature-item { flex-direction: row; align-items: center; gap: 4rem; } .pd-feature-media { flex: 1; order: unset; } .pd-feature-copy { flex: 1; order: unset; } /* Desktop Z-Pattern */ .pd-feature-item:nth-child(even) .pd-feature-media { order: 2; } .pd-feature-item:nth-child(even) .pd-feature-copy { order: 1; } } /* Specifications Table (Mobile Card Lock) */ .pd-table-wrapper { width: 100%; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); background: #fff; } .pd-table { width: 100%; border-collapse: collapse; text-align: left; margin: 0; } .pd-table th, .pd-table td { padding: 1.25rem 1.5rem; font-size: clamp(16px, 1.8vw, 18px); color: var(--text-main); } .pd-table th { background-color: var(--bg-card); font-weight: 800; border-bottom: 2px solid var(--border-color); width: 35%; text-transform: uppercase; font-size: 16px; letter-spacing: 0.05em; } .pd-table td { color: var(--text-sub); } .pd-table tr:not(:last-child) { border-bottom: 1px solid var(--border-color); } @media (max-width: 767px) { .pd-table-wrapper { border: none; overflow: visible; background: transparent; } .pd-table, .pd-table tbody, .pd-table tr, .pd-table td { display: block; width: 100%; } .pd-table thead { display: none; } .pd-table tr { background: var(--bg-body); border-radius: var(--radius-lg); margin-bottom: 1.5rem; border: 1px solid var(--border-color); padding: 0.5rem 0; box-shadow: var(--shadow-sm); } .pd-table td { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-color); gap: 1rem; text-align: right; } .pd-table tr td:last-child { border-bottom: none; } .pd-table td::before { content: attr(data-label); font-weight: 800; color: var(--text-main); text-align: left; flex-shrink: 0; font-size: 16px; text-transform: uppercase; } } /* FAQ Section */ .pd-faq-list { display: flex; flex-direction: column; gap: 1.5rem; } .pd-faq-item { background: var(--bg-card); border-radius: var(--radius-lg); padding: 2rem; border-left: 6px solid var(--primary); } .pd-faq-q { color: var(--text-main); font-size: clamp(20px, 2.5vw, 22px); font-weight: 800; margin-top: 0; margin-bottom: 0.75rem; display: flex; gap: 0.75rem; } .pd-faq-q::before { content: "Q:"; color: var(--primary); } .pd-faq-a { color: var(--text-sub); font-size: clamp(18px, 2vw, 20px); line-height: 1.7; margin-bottom: 0; } Trusted by 10,000+ Pros Drive Wedge Anchors Faster, Straighter, Stronger Ditch the manual hammer. This heavy-duty Wedge Anchor Setter is engineered specifically for SDS Plus rotary hammer drills to set concrete anchors with zero fatigue and perfect consistency. Solid Steel Build SDS Plus Compatible Masonry Ready Proper Anchor Expansion Every Time A poorly set anchor is a liability. The inner tapered design of this tool ensures that concrete wedge anchors expand correctly and evenly inside the foundation. Get maximum pull-out resistance and a rock-solid, reliable hold for your most demanding masonry fastening jobs. Slash Your Installation Time Stop wearing out your shoulder with a hand hammer. Designed to work flawlessly with your SDS Plus hammer drill, this setter drives anchors into deep concrete in seconds. Perfect for high-volume commercial jobs where reducing installation time means saving money. Indestructible Jobsite Construction Forged from a single piece of premium solid steel, this tool is built for pure abuse. It handles thousands of high-impact anchor installations without mushrooming, deforming, or cracking. It is the definitive heavy-duty solution for concrete walls, floors, and structural foundations. Technical Specifications Specification Details One-Piece Solid Steel High-carbon hardened steel for heavy impact SDS Plus Chucks Fits all major brands of SDS Plus rotary hammer drills Concrete & Masonry Floors, walls, foundation plates, heavy equipment anchoring 250.0 g (8.8 oz) Optimized weight for downward driving force 16.0 cm (6.3 in) Deep-reach clearance for tight wall assemblies Frequently Asked Questions Will this fit a standard regular drill? No. This tool is specifically engineered with an SDS Plus shank. It must be used with rotary hammer drills that support the SDS Plus chuck system to deliver the necessary impact force. Does this work with any brand of wedge anchors? Yes. The inner taper is universally designed to properly seat standard concrete wedge anchors from all major manufacturers securely into solid concrete or dense masonry. Will the tool damage the threads on my anchors? Not at all. The recessed internal taper applies driving force entirely to the solid body of the wedge anchor. It acts as a protective shield for the threaded top, ensuring nuts twist on perfectly after the anchor is set.
More you might like
Related
Red Setter - Rustic Rusted Pet Garden Sculpture - Solid Stee
Related
English Setter - Rustic Rusted Pet Garden Sculpture - Solid
Related
Irish Setter - Rustic Rusted Pet Garden Sculpture - Solid St
Related