{"product_id":"portable-nail-gun-1","title":"Portable Nail Gun","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Barlow+Condensed:wght@700;900\u0026amp;family=Barlow:wght@400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n  :root {\n    --black: #0a0a0a;\n    --orange: #ff5500;\n    --orange-dim: #cc4400;\n    --steel: #c8c8c8;\n    --gray: #1e1e1e;\n    --light-gray: #2e2e2e;\n    --text: #e8e8e8;\n    --accent: #ffd200;\n  }\n\n  * { margin: 0; padding: 0; box-sizing: border-box; }\n\n  body {\n    background: var(--black);\n    color: var(--text);\n    font-family: 'Barlow', sans-serif;\n    overflow-x: hidden;\n  }\n\n  \/* HEADER *\/\n  header {\n    background: var(--gray);\n    border-bottom: 3px solid var(--orange);\n    padding: 0 2rem;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    height: 70px;\n    position: sticky;\n    top: 0;\n    z-index: 100;\n  }\n\n  .logo {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 900;\n    font-size: 1.6rem;\n    letter-spacing: 0.06em;\n    text-transform: uppercase;\n    color: #fff;\n  }\n\n  .logo span { color: var(--orange); }\n\n  nav { display: flex; gap: 2rem; }\n  nav a {\n    color: var(--steel);\n    text-decoration: none;\n    font-size: 0.85rem;\n    font-weight: 600;\n    letter-spacing: 0.1em;\n    text-transform: uppercase;\n    transition: color 0.2s;\n  }\n  nav a:hover { color: var(--orange); }\n\n  \/* HERO *\/\n  .hero {\n    position: relative;\n    min-height: 520px;\n    display: flex;\n    align-items: center;\n    overflow: hidden;\n    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);\n    padding: 4rem 2rem;\n  }\n\n  .hero::before {\n    content: '';\n    position: absolute;\n    top: -60px; right: -80px;\n    width: 500px; height: 500px;\n    border-radius: 50%;\n    background: radial-gradient(circle, rgba(255,85,0,0.18) 0%, transparent 70%);\n    pointer-events: none;\n  }\n\n  .diagonal-stripe {\n    position: absolute;\n    top: 0; right: 0;\n    width: 45%;\n    height: 100%;\n    background: repeating-linear-gradient(\n      -60deg,\n      transparent,\n      transparent 18px,\n      rgba(255,85,0,0.04) 18px,\n      rgba(255,85,0,0.04) 36px\n    );\n    pointer-events: none;\n  }\n\n  .hero-content {\n    position: relative;\n    z-index: 2;\n    max-width: 700px;\n  }\n\n  .hero-badge {\n    display: inline-block;\n    background: var(--orange);\n    color: #fff;\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 700;\n    font-size: 0.75rem;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    padding: 0.3rem 0.9rem;\n    margin-bottom: 1.2rem;\n    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);\n  }\n\n  .hero h1 {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 900;\n    font-size: clamp(2.8rem, 6vw, 4.5rem);\n    line-height: 0.95;\n    text-transform: uppercase;\n    letter-spacing: 0.02em;\n    color: #fff;\n    margin-bottom: 1.4rem;\n  }\n\n  .hero h1 em {\n    font-style: normal;\n    color: var(--orange);\n    display: block;\n  }\n\n  .hero p {\n    font-size: 1.05rem;\n    color: var(--steel);\n    line-height: 1.7;\n    max-width: 520px;\n    margin-bottom: 2rem;\n  }\n\n  .hero-cta {\n    display: inline-flex;\n    align-items: center;\n    gap: 0.7rem;\n    background: var(--orange);\n    color: #fff;\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 700;\n    font-size: 1rem;\n    letter-spacing: 0.12em;\n    text-transform: uppercase;\n    padding: 0.85rem 2rem;\n    text-decoration: none;\n    border: none;\n    cursor: pointer;\n    transition: background 0.2s, transform 0.15s;\n  }\n  .hero-cta:hover { background: var(--orange-dim); transform: translateX(3px); }\n  .hero-cta .arrow { font-size: 1.2rem; }\n\n  \/* SECTION BASE *\/\n  section { padding: 4rem 2rem; }\n\n  .section-label {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 700;\n    font-size: 0.7rem;\n    letter-spacing: 0.25em;\n    text-transform: uppercase;\n    color: var(--orange);\n    margin-bottom: 0.6rem;\n    display: flex;\n    align-items: center;\n    gap: 0.6rem;\n  }\n  .section-label::before {\n    content: '';\n    display: inline-block;\n    width: 28px; height: 2px;\n    background: var(--orange);\n  }\n\n  .section-title {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 900;\n    font-size: clamp(2rem, 4vw, 3rem);\n    text-transform: uppercase;\n    color: #fff;\n    line-height: 1.05;\n    margin-bottom: 1rem;\n  }\n\n  \/* FEATURES *\/\n  .features {\n    background: var(--gray);\n    border-top: 1px solid var(--light-gray);\n  }\n\n  .features-intro {\n    max-width: 600px;\n    margin-bottom: 3rem;\n  }\n\n  .features-intro p {\n    color: var(--steel);\n    font-size: 1rem;\n    line-height: 1.7;\n  }\n\n  .features-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));\n    gap: 1.5px;\n    background: var(--light-gray);\n  }\n\n  .feature-card {\n    background: var(--gray);\n    padding: 2rem 1.8rem;\n    position: relative;\n    overflow: hidden;\n    transition: background 0.2s;\n  }\n  .feature-card:hover { background: #252525; }\n\n  .feature-card::after {\n    content: '';\n    position: absolute;\n    bottom: 0; left: 0;\n    width: 0; height: 2px;\n    background: var(--orange);\n    transition: width 0.3s ease;\n  }\n  .feature-card:hover::after { width: 100%; }\n\n  .feature-icon {\n    font-size: 2rem;\n    margin-bottom: 1rem;\n    display: block;\n  }\n\n  .feature-card h3 {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 700;\n    font-size: 1.2rem;\n    text-transform: uppercase;\n    letter-spacing: 0.05em;\n    color: #fff;\n    margin-bottom: 0.5rem;\n  }\n\n  .feature-card p {\n    color: var(--steel);\n    font-size: 0.9rem;\n    line-height: 1.6;\n  }\n\n  \/* PERFORMANCE *\/\n  .performance {\n    background: var(--black);\n  }\n\n  .performance-inner {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 4rem;\n    align-items: center;\n  }\n\n  @media (max-width: 700px) {\n    .performance-inner { grid-template-columns: 1fr; gap: 2rem; }\n    nav { display: none; }\n  }\n\n  .performance p {\n    color: var(--steel);\n    line-height: 1.7;\n    margin-bottom: 1.5rem;\n  }\n\n  .stat-row {\n    display: flex;\n    flex-direction: column;\n    gap: 1.2rem;\n  }\n\n  .stat {\n    display: flex;\n    flex-direction: column;\n    gap: 0.4rem;\n  }\n\n  .stat-header {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n  }\n\n  .stat-name {\n    font-size: 0.8rem;\n    font-weight: 600;\n    letter-spacing: 0.1em;\n    text-transform: uppercase;\n    color: var(--steel);\n  }\n\n  .stat-val {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 700;\n    font-size: 0.9rem;\n    color: var(--accent);\n  }\n\n  .stat-bar {\n    height: 4px;\n    background: var(--light-gray);\n    border-radius: 2px;\n    overflow: hidden;\n  }\n\n  .stat-fill {\n    height: 100%;\n    background: linear-gradient(90deg, var(--orange), var(--accent));\n    border-radius: 2px;\n    animation: fillBar 1.5s ease forwards;\n  }\n\n  @keyframes fillBar {\n    from { width: 0; }\n  }\n\n  \/* TAGLINE *\/\n  .tagline-section {\n    background: var(--orange);\n    padding: 3rem 2rem;\n    text-align: center;\n  }\n\n  .tagline-section h2 {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 900;\n    font-size: clamp(2.2rem, 5vw, 4rem);\n    text-transform: uppercase;\n    letter-spacing: 0.04em;\n    color: #fff;\n    line-height: 1.05;\n    margin-bottom: 0.8rem;\n  }\n\n  .tagline-section p {\n    color: rgba(255,255,255,0.85);\n    font-size: 1rem;\n    letter-spacing: 0.05em;\n  }\n\n  .tagline-tags {\n    display: flex;\n    justify-content: center;\n    gap: 1.5rem;\n    margin-top: 1.2rem;\n    flex-wrap: wrap;\n  }\n\n  .tag {\n    background: rgba(0,0,0,0.2);\n    color: #fff;\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 700;\n    font-size: 0.85rem;\n    letter-spacing: 0.15em;\n    text-transform: uppercase;\n    padding: 0.4rem 1.1rem;\n    border: 1px solid rgba(255,255,255,0.3);\n  }\n\n  \/* FOOTER *\/\n  footer {\n    background: #080808;\n    border-top: 2px solid var(--light-gray);\n    padding: 2rem;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    flex-wrap: wrap;\n    gap: 1rem;\n  }\n\n  .footer-logo {\n    font-family: 'Barlow Condensed', sans-serif;\n    font-weight: 900;\n    font-size: 1.2rem;\n    text-transform: uppercase;\n    color: var(--steel);\n  }\n  .footer-logo span { color: var(--orange); }\n\n  footer p {\n    font-size: 0.8rem;\n    color: #555;\n    letter-spacing: 0.05em;\n  }\n\u003c\/style\u003e\n\u003c!-- HEADER --\u003e\u003cheader\u003e\n\u003cdiv class=\"logo\"\u003eNail\u003cspan\u003ePro\u003c\/span\u003e Tools\u003c\/div\u003e\n\u003cnav\u003e\u003ca href=\"#features\"\u003eFeatures\u003c\/a\u003e \u003ca href=\"#performance\"\u003ePerformance\u003c\/a\u003e \u003ca href=\"#\"\u003eBuy Now\u003c\/a\u003e\u003c\/nav\u003e\u003c\/header\u003e\u003c!-- HERO SECTION --\u003e\n\u003csection class=\"hero\"\u003e\n\u003cdiv class=\"diagonal-stripe\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"hero-content\"\u003e\n\u003cdiv class=\"hero-badge\"\u003e🔥 New Release — Pro Series\u003c\/div\u003e\n\u003ch1\u003ePortable \u003cem\u003eNail Gun\u003cbr\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0707\/7304\/7382\/files\/imageye___-_imgi_10_portable-nail-gun-109-749.jpg?v=1777997185\" alt=\"\"\u003e\u003cbr\u003e\u003c\/em\u003e\n\u003c\/h1\u003e\n\u003cp\u003eUnleash unmatched power and precision—the ultimate game-changer for anyone who demands speed, control, and flawless results. Engineered for performance, styled for convenience.\u003c\/p\u003e\n\u003ca class=\"hero-cta\" href=\"#\"\u003eShop Now \u003cspan class=\"arrow\"\u003e→\u003c\/span\u003e\u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- FEATURES SECTION --\u003e\n\u003csection id=\"features\" class=\"features\"\u003e\n\u003cdiv class=\"features-intro\"\u003e\n\u003cdiv class=\"section-label\"\u003eWhy Choose It\u003c\/div\u003e\n\u003ch2 class=\"section-title\"\u003eBuilt for the Job\u003c\/h2\u003e\n\u003cp\u003eThis tool packs serious driving force into a sleek, compact body—letting you tackle tough jobs with effortless control. Whether you're crafting fine woodwork or powering through heavy-duty projects, every shot is clean, precise, and perfectly placed.\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0707\/7304\/7382\/files\/imageye___-_imgi_8_portable-nail-gun-109-862.jpg?v=1777997185\" alt=\"\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"features-grid\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💪\u003c\/span\u003e\n\u003ch3\u003eMaximum Power\u003c\/h3\u003e\n\u003cp\u003eSerious driving force packed into a sleek, compact body. Handles both fine woodwork and heavy-duty projects with equal ease.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🎯\u003c\/span\u003e\n\u003ch3\u003eFlawless Precision\u003c\/h3\u003e\n\u003cp\u003eEvery shot is clean, precise, and perfectly placed. Engineered for accuracy so you never miss, no matter the material.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e✋\u003c\/span\u003e\n\u003ch3\u003eErgonomic Grip\u003c\/h3\u003e\n\u003cp\u003eAnti-slip grip and balanced weight distribution means it feels like an extension of your hand—reducing fatigue while maximizing control.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e⚡\u003c\/span\u003e\n\u003ch3\u003eRapid-Fire Mode\u003c\/h3\u003e\n\u003cp\u003eRapid-fire capability and smooth reload system keep your workflow uninterrupted. Move faster and finish stronger, every time.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🔋\u003c\/span\u003e\n\u003ch3\u003eFully Cordless\u003c\/h3\u003e\n\u003cp\u003eNo cords. No limits. Just pure freedom. Take it anywhere, use it anytime—complete portability for any job site.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🛠️\u003c\/span\u003e\n\u003ch3\u003ePro-Grade Results\u003c\/h3\u003e\n\u003cp\u003eTransform ordinary work into professional-grade craftsmanship. The tool that separates amateurs from true professionals.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- PERFORMANCE SECTION --\u003e\n\u003csection id=\"performance\" class=\"performance\"\u003e\n\u003cdiv class=\"performance-inner\"\u003e\n\u003cdiv\u003e\n\u003cdiv class=\"section-label\"\u003ePerformance\u003c\/div\u003e\n\u003ch2 class=\"section-title\"\u003eRaw Power. \u003cbr\u003eZero Compromise.\u003c\/h2\u003e\n\u003cp\u003eEngineered from the ground up for professionals who refuse to slow down. From the first nail to the last, consistency and power are guaranteed.\u003c\/p\u003e\n\u003cp\u003eDesigned with a comfortable, anti-slip grip and perfectly balanced weight—it reduces fatigue while maximizing accuracy across long sessions.\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0707\/7304\/7382\/files\/imageye___-_imgi_6_portable-nail-gun-109-925.jpg?v=1777997185\" alt=\"\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat-row\"\u003e\n\u003cdiv class=\"stat\"\u003e\n\u003cdiv class=\"stat-header\"\u003e\n\u003cspan class=\"stat-name\"\u003eDriving Power\u003c\/span\u003e \u003cspan class=\"stat-val\"\u003e95 \/ 100\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat-bar\"\u003e\n\u003cdiv style=\"width: 95%;\" class=\"stat-fill\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat\"\u003e\n\u003cdiv class=\"stat-header\"\u003e\n\u003cspan class=\"stat-name\"\u003ePrecision Accuracy\u003c\/span\u003e \u003cspan class=\"stat-val\"\u003e98 \/ 100\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat-bar\"\u003e\n\u003cdiv style=\"width: 98%;\" class=\"stat-fill\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat\"\u003e\n\u003cdiv class=\"stat-header\"\u003e\n\u003cspan class=\"stat-name\"\u003eErgonomic Comfort\u003c\/span\u003e \u003cspan class=\"stat-val\"\u003e90 \/ 100\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat-bar\"\u003e\n\u003cdiv style=\"width: 90%;\" class=\"stat-fill\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat\"\u003e\n\u003cdiv class=\"stat-header\"\u003e\n\u003cspan class=\"stat-name\"\u003eFire Rate Speed\u003c\/span\u003e \u003cspan class=\"stat-val\"\u003e93 \/ 100\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat-bar\"\u003e\n\u003cdiv style=\"width: 93%;\" class=\"stat-fill\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat\"\u003e\n\u003cdiv class=\"stat-header\"\u003e\n\u003cspan class=\"stat-name\"\u003eBattery Life\u003c\/span\u003e \u003cspan class=\"stat-val\"\u003e88 \/ 100\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"stat-bar\"\u003e\n\u003cdiv style=\"width: 88%;\" class=\"stat-fill\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- TAGLINE SECTION --\u003e\n\u003cdiv class=\"tagline-section\"\u003e\n\u003ch2\u003eFast. Powerful. Portable.\u003c\/h2\u003e\n\u003cp\u003eThis isn't just a tool—it's your new secret weapon for getting the job done right, every single time. 🚀\u003c\/p\u003e\n\u003cdiv class=\"tagline-tags\"\u003e\n\u003cspan class=\"tag\"\u003e🔥 Fast\u003c\/span\u003e \u003cspan class=\"tag\"\u003e💥 Powerful\u003c\/span\u003e \u003cspan class=\"tag\"\u003e🔋 Portable\u003c\/span\u003e \u003cspan class=\"tag\"\u003e🎯 Precise\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- FOOTER --\u003e\u003cfooter\u003e\n\u003cdiv class=\"footer-logo\"\u003eNail\u003cspan\u003ePro\u003c\/span\u003e Tools\u003c\/div\u003e\n\u003cp\u003e© 2026 NailPro Tools. All rights reserved.\u003c\/p\u003e\n\u003cp\u003eBuilt for professionals. Trusted by craftsmen.\u003c\/p\u003e\n\u003c\/footer\u003e","brand":"Elite collections","offers":[{"title":"Default Title","offer_id":44660175831126,"sku":null,"price":0.0,"currency_code":"AED","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0707\/7304\/7382\/files\/imageye___-_imgi_10_portable-nail-gun-109-749.jpg?v=1777997185","url":"https:\/\/salvea.store\/products\/portable-nail-gun-1","provider":"Salvea","version":"1.0","type":"link"}