• test 4 deepseek

    Reshyn | Premium Hair Extensions for Salons & Brands

    Premium Hair Extensions
    for Salons & Brands

    Wholesale · Custom OEM · Fast Shipping from Guangzhou

    100% Remy Human Hair
    Small MOQ Welcome
    Free Sample Support
    48h Response

    Our premium collection

    Tape-in hair extensions
    Tape‑in Remy Hair
    100% Remy | 14‑24 inch | Natural colours

    Seamless, reusable, salon favourite.

    Clip-in hair extensions
    Clip‑in Remy Hair
    5‑7 clips | 100% Human hair | DIY friendly

    Instant volume & length.

    Custom color blends
    Custom Colour Blends
    Pantone matching | Small batch

    Create your signature shade.

    Why choose Reshyn

    Guangzhou Advantage

    Close to manufacturing & ports, fast turnaround.

    Flexible Customisation

    Logo, packaging, colour blends — no huge MOQ.

    Quality Control

    Every batch sample-checked before shipping.

    Custom solutions for your brand

    Private Label

    Boxes, dust bags with your logo

    Custom Tags

    Sewn-in or hang tags

    Colour Blends

    Match Pantone or sample

    Small MOQ

    As low as 50 boxes

    1. Inquiry
    Share your idea
    2. Sample
    Physical confirmation
    3. Production
    Quality controlled
    4. Shipping
    Fast delivery

    About Reshyn

    Reshyn was founded in Guangzhou to help salons and emerging brands access high‑quality, customisable hair extensions without huge minimum orders. We know big factories often ignore small businesses – we don’t.

    Located close to major production hubs (Xuchang, Qingdao) and the Guangzhou port, we offer fast logistics and responsive service. Your main contact: J. – directly available via WhatsApp or email.

    Request a physical sample before ordering – satisfaction guaranteed.

    Expert insights

    Choosing salon extensions

    Complete guide for pros

    Read →

    Tape‑in vs Clip‑in

    Inventory optimisation

    Read →

    5 care tips for Remy hair

    Extend lifespan

    Read →

    Get in touch

    We reply within 24 hours. Direct contact: J.

    We’ll get back to you within 24h.

    info@reshynhair.com  |  +86 188 8888 8888

    Contact person: J.


    © 2025 Reshyn. All rights reserved. Wholesale hair extensions for salons worldwide.

    Message sent! We'll reply soon.
+ discountedPrice.toFixed(0);\n const savingsDisplay = document.getElementById('savingsDisplay');\n if (discountPercent \u0026gt; 0) {\n savingsDisplay.textContent =\n `You save ${savingsPerKg.toFixed(0)}\/kg (${discountPercent}% off)${tierName === 'gold' ? ' + Free Custom Brand Packaging' : ''}`;\n } else {\n savingsDisplay.textContent = 'Increase quantity to unlock tier discounts.';\n }\n };\n\n \/\/ Sync slider with order items when unlocked\n const weightSlider = document.getElementById('weightSlider');\n weightSlider.addEventListener('input', updateCalculator);\n \/\/ Auto-estimate weight from order items\n const origAddToOrder = window.addToOrder;\n window.addToOrder = function() {\n origAddToOrder();\n if (isWholesaleUnlocked \u0026amp;\u0026amp; orderItems.length \u0026gt; 0) {\n const totalBundles = orderItems.reduce((sum, i) =\u0026gt; sum + i.qty, 0);\n const estWeight = Math.max(1, Math.round(totalBundles * 0.1));\n weightSlider.value = Math.min(35, estWeight);\n updateCalculator();\n }\n };\n\n \/\/ \u2500\u2500 MULTI-STEP FORM \u2500\u2500\n let currentStep = 1;\n const totalSteps = 3;\n\n window.nextStep = function() {\n if (currentStep \u0026lt; totalSteps) {\n \/\/ Basic validation\n const currentFormStep = document.querySelector(`.form-step[data-step=\"${currentStep}\"]`);\n const requiredFields = currentFormStep.querySelectorAll('[required]');\n let valid = true;\n requiredFields.forEach(field =\u0026gt; {\n if (!field.value.trim()) {\n valid = false;\n field.style.borderColor = 'var(--danger)';\n setTimeout(() =\u0026gt; { field.style.borderColor = 'var(--border-medium)'; }, 1500);\n }\n });\n if (!valid) {\n alert('Please fill in all required fields before proceeding.');\n return;\n }\n currentStep++;\n updateFormSteps();\n }\n };\n\n window.prevStep = function() {\n if (currentStep \u0026gt; 1) {\n currentStep--;\n updateFormSteps();\n }\n };\n\n function updateFormSteps() {\n document.querySelectorAll('.form-step').forEach(s =\u0026gt; s.classList.remove('active'));\n const activeStep = document.querySelector(`.form-step[data-step=\"${currentStep}\"]`);\n if (activeStep) activeStep.classList.add('active');\n\n document.querySelectorAll('#stepProgress .step-dot').forEach(dot =\u0026gt; {\n const stepNum = parseInt(dot.dataset.step);\n dot.classList.remove('active', 'done');\n if (stepNum === currentStep) dot.classList.add('active');\n if (stepNum \u0026lt; currentStep) dot.classList.add('done');\n });\n document.querySelectorAll('#stepProgress .step-line').forEach(line =\u0026gt; {\n const lineNum = parseInt(line.dataset.line);\n line.classList.remove('done');\n if (lineNum \u0026lt; currentStep) line.classList.add('done');\n });\n }\n\n window.handleFormSubmit = function(event) {\n event.preventDefault();\n const formData = {\n name: document.getElementById('plName').value,\n email: document.getElementById('plEmail').value,\n brandName: document.getElementById('plBrandName').value,\n volume: document.getElementById('plVolume').value,\n market: document.getElementById('plMarket').value,\n packaging: document.getElementById('plPackaging').value,\n notes: document.getElementById('plNotes').value,\n };\n alert(\n '\u2705 Thank you, ' + formData.name +\n '!\\n\\nYour brand launch inquiry has been submitted. Our OEM specialist will contact you at ' +\n formData.email + ' within 24 hours.\\n\\nBrand: ' + (formData.brandName || 'TBD') +\n ' | Monthly Volume: ' + formData.volume + ' kg');\n document.getElementById('privateLabelForm').reset();\n currentStep = 1;\n updateFormSteps();\n };\n\n \/\/ \u2500\u2500 VIDEO PLACEHOLDER SIMULATION \u2500\u2500\n window.simulateVideoPlay = function(testName) {\n alert('\u25b6 ' + testName +\n '\\n\\nVideo playback would launch here. In production, this embeds a real QC demonstration video proving the ' +\n testName.toLowerCase() + ' results.\\n\\nAll Reshyn videos are timestamped and batch-verified for full transparency.');\n };\n\n \/\/ \u2500\u2500 LEAD CAPTURE POPUP \u2500\u2500\n const leadPopupOverlay = document.getElementById('leadPopupOverlay');\n let popupShown = false;\n let scrollTimer = null;\n\n function showLeadPopup() {\n if (!popupShown) {\n popupShown = true;\n leadPopupOverlay.classList.add('visible');\n }\n }\n\n window.addEventListener('scroll', () =\u0026gt; {\n if (!popupShown) {\n if (scrollTimer) clearTimeout(scrollTimer);\n scrollTimer = setTimeout(() =\u0026gt; {\n const scrollPercent = (window.scrollY \/ (document.body.scrollHeight - window\n .innerHeight)) * 100;\n if (scrollPercent \u0026gt; 20) {\n showLeadPopup();\n }\n }, 300);\n }\n }, { passive: true });\n\n \/\/ Fallback: 15-second timer\n setTimeout(() =\u0026gt; {\n if (!popupShown \u0026amp;\u0026amp; window.scrollY \u0026gt; 100) {\n showLeadPopup();\n }\n }, 15000);\n\n window.closeLeadPopup = function() {\n leadPopupOverlay.classList.remove('visible');\n };\n\n window.claimSample = function() {\n const email = document.getElementById('popupEmail').value.trim();\n if (!email || !email.includes('@')) {\n alert('Please enter a valid professional email address.');\n return;\n }\n alert('\u2705 Thank you! A free Salon Texture Ring \u0026amp; Swatch Sample will be arranged for ' + email +\n '. Our team will reach out to confirm your shipping address.');\n document.getElementById('popupEmail').value = '';\n leadPopupOverlay.classList.remove('visible');\n };\n\n \/\/ Close popup on overlay click\n leadPopupOverlay.addEventListener('click', function(e) {\n if (e.target === leadPopupOverlay) {\n closeLeadPopup();\n }\n });\n\n \/\/ \u2500\u2500 WHATSAPP TOOLTIP \u2500\u2500\n const whatsappFloat = document.getElementById('whatsappFloat');\n const whatsappTooltip = document.getElementById('whatsappTooltip');\n let tooltipTimeout;\n\n whatsappFloat.addEventListener('mouseenter', () =\u0026gt; {\n whatsappTooltip.classList.add('visible');\n clearTimeout(tooltipTimeout);\n });\n whatsappFloat.addEventListener('mouseleave', () =\u0026gt; {\n tooltipTimeout = setTimeout(() =\u0026gt; {\n whatsappTooltip.classList.remove('visible');\n }, 2000);\n });\n \/\/ Show tooltip briefly on load\n setTimeout(() =\u0026gt; {\n whatsappTooltip.classList.add('visible');\n setTimeout(() =\u0026gt; {\n whatsappTooltip.classList.remove('visible');\n }, 5000);\n }, 2000);\n\n \/\/ \u2500\u2500 DOWNLOAD CATALOG \u2500\u2500\n document.getElementById('downloadCatalogBtn').addEventListener('click', function(e) {\n e.preventDefault();\n alert(\n '\ud83d\udcc4 Wholesale Catalog (PDF)\\n\\nYour download will begin shortly. The catalog includes full product specifications, grading standards, and wholesale pricing tiers.\\n\\nIn production, this triggers an actual PDF download.');\n });\n\n \/\/ \u2500\u2500 INITIAL SETUP \u2500\u2500\n updateCalculator();\n updateFormSteps();\n renderOrderSummary();\n\n console.log('\u2705 Reshyn B2B Platform initialized successfully.');\n console.log(' \u2014 All 4 pages loaded: Home, Catalog, Private Label, Quality Control');\n console.log(' \u2014 Floating WhatsApp button active');\n console.log(' \u2014 Lead capture popup armed (15s + scroll trigger)');\n console.log(' \u2014 Wholesale account wall active (toggle in header)');\n console.log(' \u2014 Bulk pricing calculator ready');\n console.log(' \u2014 Multi-step OEM form operational');\n })();\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9303571}"}}}],"title":"test 2 - hair extensions","uid":"ad7db2cf-374f-49b3-9d44-307f5068dca4","path":"\/test-2-hair-extensions","autoPath":true,"authorized":true},{"type":"Page","id":"f_969c9e9e-bcfc-4209-8da7-c0f9dc164119","sections":[{"type":"Slide","id":"f_b79f8917-01b0-4785-bb08-bf3d3c1faf12","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_1a4e6d36-7ccd-42f7-ab5f-f0cb77e69383","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_3a30330a-a6f4-4097-9b26-c6efedf3936a","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003eTest 3 deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_bff16edb-f340-4c9d-a0a2-43fa52d1d109","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_16575fd3-8945-4fb4-9f61-aeec42ed7eb3","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27292162,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;Reshyn | Premium Hair Extensions for Salons \u0026amp; Brands\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Wholesale hair extensions, custom OEM, fast shipping from Guangzhou. Small MOQ, free sample support, 48h response. Perfect for salons and emerging brands.\"\u0026gt;\n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u0026gt;\n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u0026gt;\n \u0026lt;link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700\u0026amp;display=swap\" rel=\"stylesheet\"\u0026gt;\n \u0026lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0-beta3\/css\/all.min.css\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n font-family: 'Inter', sans-serif;\n background-color: #ffffff;\n color: #1e1e2a;\n line-height: 1.5;\n scroll-behavior: smooth;\n }\n\n .container {\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n\n \/* Typography *\/\n h1, h2, h3 {\n font-weight: 600;\n letter-spacing: -0.02em;\n }\n\n h1 {\n font-size: 3rem;\n line-height: 1.2;\n margin-bottom: 1rem;\n }\n\n h2 {\n font-size: 2rem;\n margin-bottom: 1.5rem;\n }\n\n h3 {\n font-size: 1.25rem;\n margin-bottom: 0.75rem;\n }\n\n .section {\n padding: 80px 0;\n }\n\n .section-sm {\n padding: 48px 0;\n }\n\n \/* Buttons *\/\n .btn {\n display: inline-block;\n padding: 12px 28px;\n border-radius: 40px;\n font-weight: 600;\n text-decoration: none;\n transition: all 0.2s ease;\n font-size: 1rem;\n border: none;\n cursor: pointer;\n }\n\n .btn-primary {\n background-color: #1e1e2a;\n color: white;\n border: 1px solid #1e1e2a;\n }\n\n .btn-primary:hover {\n background-color: #33334a;\n transform: translateY(-1px);\n }\n\n .btn-outline {\n background-color: transparent;\n border: 1px solid #1e1e2a;\n color: #1e1e2a;\n }\n\n .btn-outline:hover {\n background-color: #1e1e2a;\n color: white;\n }\n\n \/* Header \/ Nav *\/\n header {\n padding: 20px 0;\n border-bottom: 1px solid #f0f0f0;\n position: sticky;\n top: 0;\n background: rgba(255,255,255,0.95);\n backdrop-filter: blur(8px);\n z-index: 100;\n }\n\n .nav-container {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n }\n\n .logo {\n font-size: 1.8rem;\n font-weight: 700;\n letter-spacing: -0.02em;\n text-decoration: none;\n color: #1e1e2a;\n }\n\n .nav-links {\n display: flex;\n gap: 2rem;\n list-style: none;\n }\n\n .nav-links a {\n text-decoration: none;\n color: #2d2d3a;\n font-weight: 500;\n transition: color 0.2s;\n }\n\n .nav-links a:hover {\n color: #000;\n }\n\n .mobile-menu-btn {\n display: none;\n font-size: 1.5rem;\n background: none;\n border: none;\n cursor: pointer;\n }\n\n \/* Trust badges *\/\n .trust-badges {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n gap: 2rem;\n margin: 2rem 0 2.5rem;\n }\n\n .badge {\n display: flex;\n align-items: center;\n gap: 8px;\n font-size: 0.9rem;\n font-weight: 500;\n }\n\n .badge i {\n font-size: 1.25rem;\n color: #2c7a4d;\n }\n\n \/* Product grid *\/\n .product-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n }\n\n .product-card {\n background: #ffffff;\n border-radius: 20px;\n overflow: hidden;\n transition: transform 0.2s, box-shadow 0.2s;\n box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n border: 1px solid #eee;\n }\n\n .product-card:hover {\n transform: translateY(-5px);\n box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);\n }\n\n .product-img {\n width: 100%;\n aspect-ratio: 1 \/ 1;\n object-fit: cover;\n background: #faf6f0;\n }\n\n .product-info {\n padding: 1.5rem;\n }\n\n .product-title {\n font-size: 1.25rem;\n font-weight: 700;\n margin-bottom: 0.5rem;\n }\n\n .product-specs {\n font-size: 0.85rem;\n color: #5a5a6e;\n margin-bottom: 1rem;\n }\n\n \/* Why us icons *\/\n .features-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n }\n\n .feature {\n text-align: center;\n }\n\n .feature i {\n font-size: 2.2rem;\n color: #1e1e2a;\n margin-bottom: 1rem;\n }\n\n \/* Services page block *\/\n .services-list {\n display: flex;\n flex-wrap: wrap;\n gap: 1.5rem;\n margin: 2rem 0;\n }\n\n .service-item {\n flex: 1;\n min-width: 200px;\n background: #f9f9fc;\n padding: 1.5rem;\n border-radius: 20px;\n text-align: center;\n }\n\n .process-steps {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n gap: 1rem;\n margin: 2rem 0;\n }\n\n .step {\n flex: 1;\n text-align: center;\n background: white;\n padding: 1rem;\n border-radius: 16px;\n box-shadow: 0 2px 8px rgba(0,0,0,0.03);\n border: 1px solid #ececf0;\n }\n\n \/* Contact form *\/\n .contact-form {\n max-width: 700px;\n margin: 2rem auto 0;\n background: #fcfcfd;\n padding: 2rem;\n border-radius: 28px;\n box-shadow: 0 4px 20px rgba(0,0,0,0.02);\n border: 1px solid #eaeef2;\n }\n\n .form-group {\n margin-bottom: 1.25rem;\n }\n\n input, select, textarea {\n width: 100%;\n padding: 12px 16px;\n border: 1px solid #ddd;\n border-radius: 32px;\n font-family: inherit;\n font-size: 1rem;\n outline: none;\n transition: 0.2s;\n }\n\n textarea {\n border-radius: 24px;\n resize: vertical;\n }\n\n input:focus, select:focus, textarea:focus {\n border-color: #1e1e2a;\n }\n\n \/* Blog preview *\/\n .blog-preview-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n gap: 2rem;\n }\n\n .blog-card {\n background: #fff;\n border-radius: 20px;\n overflow: hidden;\n border: 1px solid #efeef2;\n }\n\n .blog-card-content {\n padding: 1.5rem;\n }\n\n \/* Footer *\/\n footer {\n background-color: #f9fafb;\n border-top: 1px solid #eef2f0;\n padding: 48px 0 24px;\n }\n\n .footer-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));\n gap: 2rem;\n margin-bottom: 2rem;\n }\n\n .social-links a {\n margin-right: 1rem;\n color: #2d2d3a;\n font-size: 1.4rem;\n }\n\n hr {\n margin: 2rem 0;\n border: none;\n border-top: 1px solid #e2e8f0;\n }\n\n \/* Responsive *\/\n @media (max-width: 768px) {\n .nav-links {\n display: none;\n flex-direction: column;\n width: 100%;\n background: white;\n padding: 1rem 0;\n gap: 1rem;\n }\n .nav-links.active {\n display: flex;\n }\n .mobile-menu-btn {\n display: block;\n }\n h1 {\n font-size: 2.2rem;\n }\n h2 {\n font-size: 1.6rem;\n }\n .section {\n padding: 60px 0;\n }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\u0026lt;header\u0026gt;\n \u0026lt;div class=\"container nav-container\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;reshyn\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"mobile-menu-btn\" id=\"mobileMenuBtn\"\u0026gt;\u0026lt;i class=\"fas fa-bars\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;ul class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#home\"\u0026gt;Home\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#products\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#custom\"\u0026gt;Custom\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#about\"\u0026gt;About\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#blog\"\u0026gt;Resources\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#contact\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;main\u0026gt;\n \u0026lt;!-- Hero Section --\u0026gt;\n \u0026lt;section id=\"home\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 0 auto; text-align: center;\"\u0026gt;\n \u0026lt;h1\u0026gt;Premium Hair Extensions \u0026lt;br\u0026gt; for Salons \u0026amp; Brands\u0026lt;\/h1\u0026gt;\n \u0026lt;p style=\"font-size: 1.2rem; color: #4a4a5a; margin-bottom: 2rem;\"\u0026gt;Wholesale \u00b7 Custom OEM \u00b7 Fast Shipping from Guangzhou\u0026lt;\/p\u0026gt;\n \u0026lt;div style=\"display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;\"\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-primary\"\u0026gt;Request a Quote\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\" class=\"btn btn-outline\"\u0026gt;View Products\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div class=\"trust-badges\"\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; 100% Remy Human Hair\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-boxes\"\u0026gt;\u0026lt;\/i\u0026gt; Small MOQ Welcome\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-flask\"\u0026gt;\u0026lt;\/i\u0026gt; Free Sample Support\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-clock\"\u0026gt;\u0026lt;\/i\u0026gt; 48h Response\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Featured Products --\u0026gt;\n \u0026lt;section id=\"products\" class=\"section\" style=\"background-color: #fefefe;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Shop by category\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"product-grid\"\u0026gt;\n \u0026lt;!-- Tape-in --\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Tape-in+Extensions\" alt=\"Tape-in hair extensions\" class=\"product-img\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;div class=\"product-title\"\u0026gt;Tape\u2011in Remy Hair\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;100% Remy | 14\u201124 inch | Natural colours\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-size: 0.9rem; margin-bottom: 1rem;\"\u0026gt;Seamless, reusable, salon favourite. Double machine weft.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-outline\" style=\"padding: 8px 20px; font-size: 0.85rem;\"\u0026gt;Request Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;!-- Clip-in --\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Clip-in+Extensions\" alt=\"Clip-in hair extensions\" class=\"product-img\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;div class=\"product-title\"\u0026gt;Clip\u2011in Remy Hair\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;5\u20117 clips | 100% Human hair | DIY friendly\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-size: 0.9rem; margin-bottom: 1rem;\"\u0026gt;Instant volume \u0026amp; length, perfect for retail or salon upsell.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-outline\" style=\"padding: 8px 20px; font-size: 0.85rem;\"\u0026gt;Request Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;!-- Custom color blend placeholder (optional third product) --\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Custom+Color+Blends\" alt=\"Custom color blends\" class=\"product-img\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;div class=\"product-title\"\u0026gt;Custom Colour Blends\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;Pantone matching | Small batch\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-size: 0.9rem; margin-bottom: 1rem;\"\u0026gt;Create your signature shade for your brand.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#custom\" class=\"btn btn-outline\" style=\"padding: 8px 20px; font-size: 0.85rem;\"\u0026gt;Learn more \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Why Reshyn (3 advantages) --\u0026gt;\n \u0026lt;section class=\"section-sm\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Why choose Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"features-grid\"\u0026gt;\n \u0026lt;div class=\"feature\"\u0026gt;\n \u0026lt;i class=\"fas fa-shipping-fast\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Guangzhou Advantage\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Close to manufacturing hubs \u0026amp; ports, fast turnaround and lower logistics cost.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"feature\"\u0026gt;\n \u0026lt;i class=\"fas fa-tags\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Flexible Customisation\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Logo, packaging, colour blends \u2014 no huge MOQ. We grow with you.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"feature\"\u0026gt;\n \u0026lt;i class=\"fas fa-clipboard-check\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Quality Control\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Every batch sample-checked before shipping. You get what you approve.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Custom Services Section --\u0026gt;\n \u0026lt;section id=\"custom\" class=\"section\" style=\"background: #fafafc;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Custom Hair Extension Solutions for Your Brand\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"services-list\"\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-box-open\" style=\"font-size: 1.8rem;\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Private Label Packaging\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Boxes, dust bags, stickers with your logo\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-tag\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Custom Logo Tags\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Sewn-in or hang tags\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-palette\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Custom Colour Blends\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Match Pantone or sample\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-chart-line\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Small MOQ Welcome\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;As low as 50 boxes to start\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-steps\"\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;1. Inquiry\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Share your idea\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;2. Sample Confirmation\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;We send physical samples\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;3. Production\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Quality controlled batch\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;4. Shipping\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Fast door-to-door delivery\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center; margin-top: 2rem;\"\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-primary\"\u0026gt;Start Your Custom Project\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- About Us --\u0026gt;\n \u0026lt;section id=\"about\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 0 auto;\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;About Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1rem;\"\u0026gt;Reshyn was founded in Guangzhou to help salons and emerging brands access high\u2011quality, customisable hair extensions without huge minimum orders. We know big factories often ignore small businesses \u2013 we don\u2019t.\u0026lt;\/p\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1rem;\"\u0026gt;Located in the heart of China\u2019s trade ecosystem, we combine proximity to major production hubs (Xuchang, Qingdao) with the efficiency of Guangzhou port. Our team speaks your language and responds within 24 hours.\u0026lt;\/p\u0026gt;\n \u0026lt;div style=\"background: #f3f3f7; border-radius: 24px; padding: 1.5rem; margin: 1.5rem 0; text-align: center;\"\u0026gt;\n \u0026lt;i class=\"fas fa-handshake\" style=\"font-size: 2rem;\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;p style=\"font-weight: 500; margin-top: 8px;\"\u0026gt;Request a physical sample before ordering \u2013 your satisfaction is our priority.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center;\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/800x400\/f5f2ed\/1e1e2a?text=Reshyn+Team+%26+Samples\" alt=\"Reshyn office and product samples\" style=\"width: 100%; border-radius: 24px; max-width: 500px;\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Blog \/ Resources Preview --\u0026gt;\n \u0026lt;section id=\"blog\" class=\"section\" style=\"background-color: #fefcf9;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Hair extension insights\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"blog-preview-grid\"\u0026gt;\n \u0026lt;div class=\"blog-card\"\u0026gt;\n \u0026lt;div class=\"blog-card-content\"\u0026gt;\n \u0026lt;i class=\"fas fa-cut\" style=\"font-size: 1.8rem; margin-bottom: 0.5rem; display: inline-block;\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;How to Choose the Right Hair Extensions for Your Salon Clients\u0026lt;\/h3\u0026gt;\n \u0026lt;p style=\"color: #5c5c6e;\"\u0026gt;Texture, length, method \u2013 a complete guide for salon pros.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#contact\" style=\"font-weight: 500; text-decoration: none;\"\u0026gt;Read more \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"blog-card\"\u0026gt;\n \u0026lt;div class=\"blog-card-content\"\u0026gt;\n \u0026lt;i class=\"fas fa-exchange-alt\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Tape\u2011in vs. Clip\u2011in: Which One Should You Stock?\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Compare retention, pricing, and client preference to optimise inventory.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#contact\" style=\"font-weight: 500; text-decoration: none;\"\u0026gt;Read more \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"blog-card\"\u0026gt;\n \u0026lt;div class=\"blog-card-content\"\u0026gt;\n \u0026lt;i class=\"fas fa-heart\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;5 Tips for Caring for Remy Human Hair Extensions\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Extend lifespan and keep hair soft \u2013 advice for your customers.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#contact\" style=\"font-weight: 500; text-decoration: none;\"\u0026gt;Read more \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center; margin-top: 2rem;\"\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-outline\"\u0026gt;View all resources\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Contact \u0026amp; Quote Form --\u0026gt;\n \u0026lt;section id=\"contact\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Let\u2019s talk about your needs\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"text-align: center; max-width: 600px; margin: 0 auto 2rem;\"\u0026gt;Whether you need wholesale pricing, custom packaging, or a sample \u2013 we reply within 24 hours.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"contact-form\"\u0026gt;\n \u0026lt;form action=\"#\" method=\"post\" id=\"demoContactForm\"\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"text\" placeholder=\"Full name *\" required\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"email\" placeholder=\"Email address *\" required\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"text\" placeholder=\"WhatsApp \/ Phone\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"text\" placeholder=\"Company name\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;select\u0026gt;\n \u0026lt;option\u0026gt;I'm interested in...\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Tape-in Extensions\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Clip-in Extensions\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Custom Services (OEM)\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Sample request\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Wholesale pricing\u0026lt;\/option\u0026gt;\n \u0026lt;\/select\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;textarea rows=\"4\" placeholder=\"Tell us about your brand, target market, or volume...\"\u0026gt;\u0026lt;\/textarea\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;button type=\"submit\" class=\"btn btn-primary\" style=\"width: 100%;\"\u0026gt;Send Inquiry \u2192\u0026lt;\/button\u0026gt;\n \u0026lt;p style=\"font-size: 0.8rem; text-align: center; margin-top: 1rem;\"\u0026gt;We reply within 24h. Your information is never shared.\u0026lt;\/p\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center; margin-top: 2rem;\"\u0026gt;\n \u0026lt;p\u0026gt;\u0026lt;i class=\"fas fa-envelope\"\u0026gt;\u0026lt;\/i\u0026gt; hello@reshyn.com \u0026amp;nbsp;|\u0026amp;nbsp; \u0026lt;i class=\"fab fa-whatsapp\"\u0026gt;\u0026lt;\/i\u0026gt; +86 123 4567 890\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\u0026lt;\/main\u0026gt;\n\n\u0026lt;footer\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"footer-grid\"\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;h4 style=\"margin-bottom: 1rem;\"\u0026gt;Reshyn\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Premium hair extensions \u0026amp; custom manufacturing from Guangzhou.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;h4\u0026gt;Quick links\u0026lt;\/h4\u0026gt;\n \u0026lt;ul style=\"list-style: none; margin-top: 0.5rem;\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#home\" style=\"text-decoration: none; color: #4b5563;\"\u0026gt;Home\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#products\" style=\"text-decoration: none; color: #4b5563;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#custom\" style=\"text-decoration: none; color: #4b5563;\"\u0026gt;Custom\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#about\" style=\"text-decoration: none; color: #4b5563;\"\u0026gt;About\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;h4\u0026gt;Resources\u0026lt;\/h4\u0026gt;\n \u0026lt;ul style=\"list-style: none; margin-top: 0.5rem;\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#blog\" style=\"text-decoration: none; color: #4b5563;\"\u0026gt;Blog\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#contact\" style=\"text-decoration: none; color: #4b5563;\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#\" style=\"text-decoration: none; color: #4b5563;\"\u0026gt;Privacy Policy\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;h4\u0026gt;Follow us\u0026lt;\/h4\u0026gt;\n \u0026lt;div class=\"social-links\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;\u0026lt;i class=\"fab fa-linkedin-in\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;\u0026lt;i class=\"fab fa-instagram\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-top: 1rem;\"\u0026gt;\ud83d\udccd Guangzhou, China \u2013 close to major production hubs \u0026amp; port\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;hr\u0026gt;\n \u0026lt;p style=\"text-align: center; font-size: 0.8rem;\"\u0026gt;\u00a9 2025 Reshyn. All rights reserved. Wholesale hair extensions for salons and brands worldwide.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;script\u0026gt;\n \/\/ Mobile menu toggle\n const mobileBtn = document.getElementById('mobileMenuBtn');\n const navLinks = document.getElementById('navLinks');\n mobileBtn.addEventListener('click', () =\u0026gt; {\n navLinks.classList.toggle('active');\n });\n\n \/\/ Simple form alert (demo, no actual backend)\n const form = document.getElementById('demoContactForm');\n if(form) {\n form.addEventListener('submit', (e) =\u0026gt; {\n e.preventDefault();\n alert('Thank you! This is a demo website. In production, this form would send an email to hello@reshyn.com. We will contact you within 24h.');\n form.reset();\n });\n }\n\n \/\/ Smooth scroll for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u0026gt; {\n anchor.addEventListener('click', function(e) {\n const targetId = this.getAttribute('href');\n if(targetId === '#') return;\n const targetElement = document.querySelector(targetId);\n if(targetElement) {\n e.preventDefault();\n targetElement.scrollIntoView({ behavior: 'smooth' });\n if(navLinks.classList.contains('active')) navLinks.classList.remove('active');\n }\n });\n });\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;\n```","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304050}"}}}],"title":"test 3 - hair extensions \u9759\u6001","uid":"fbd8682d-8ff6-4dbf-8c0f-fc38bf3280b7","path":"\/test-3-hair-extensions","autoPath":true,"authorized":true},{"type":"Page","id":"f_d30fabee-95ba-4ce1-87c9-64bfc2e0f0aa","sections":[{"type":"Slide","id":"f_1fbba2bc-9447-490c-a86c-f9f14773b26f","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_ba8a2b4b-1668-4ab2-a9b3-1dd497180d43","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_bdd956a5-f96d-409e-81b3-ede3f88c985f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003etest 4 deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_969a4058-aab5-4a17-bc60-7aa1e64d763a","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_ccdb9396-4c22-48cc-851a-5667353f7b0a","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27292171,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;Reshyn | Premium Hair Extensions for Salons \u0026amp; Brands\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Wholesale hair extensions, custom OEM, fast shipping from Guangzhou. Small MOQ, free sample support, 48h response. Contact us for bulk orders \u0026amp; private labeling.\"\u0026gt;\n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u0026gt;\n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u0026gt;\n \u0026lt;link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700\u0026amp;display=swap\" rel=\"stylesheet\"\u0026gt;\n \u0026lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0-beta3\/css\/all.min.css\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n font-family: 'Inter', sans-serif;\n background-color: #ffffff;\n color: #1e1e2a;\n line-height: 1.5;\n scroll-behavior: smooth;\n }\n\n .container {\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n\n \/* Typography *\/\n h1, h2, h3 {\n font-weight: 600;\n letter-spacing: -0.02em;\n }\n\n h1 {\n font-size: 3rem;\n line-height: 1.2;\n margin-bottom: 1rem;\n }\n\n h2 {\n font-size: 2rem;\n margin-bottom: 1.5rem;\n }\n\n h3 {\n font-size: 1.25rem;\n margin-bottom: 0.75rem;\n }\n\n .section {\n padding: 80px 0;\n }\n\n .section-sm {\n padding: 48px 0;\n }\n\n \/* Buttons *\/\n .btn {\n display: inline-block;\n padding: 12px 28px;\n border-radius: 40px;\n font-weight: 600;\n text-decoration: none;\n transition: all 0.2s ease;\n font-size: 1rem;\n border: none;\n cursor: pointer;\n }\n\n .btn-primary {\n background-color: #1e1e2a;\n color: white;\n border: 1px solid #1e1e2a;\n }\n\n .btn-primary:hover {\n background-color: #33334a;\n transform: translateY(-1px);\n }\n\n .btn-outline {\n background-color: transparent;\n border: 1px solid #1e1e2a;\n color: #1e1e2a;\n }\n\n .btn-outline:hover {\n background-color: #1e1e2a;\n color: white;\n }\n\n \/* Header *\/\n header {\n padding: 20px 0;\n border-bottom: 1px solid #f0f0f0;\n position: sticky;\n top: 0;\n background: rgba(255,255,255,0.96);\n backdrop-filter: blur(10px);\n z-index: 100;\n }\n\n .nav-container {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n }\n\n .logo {\n font-size: 1.8rem;\n font-weight: 700;\n letter-spacing: -0.02em;\n text-decoration: none;\n color: #1e1e2a;\n }\n\n .nav-links {\n display: flex;\n gap: 2rem;\n list-style: none;\n }\n\n .nav-links a {\n text-decoration: none;\n color: #2d2d3a;\n font-weight: 500;\n transition: color 0.2s;\n }\n\n .nav-links a:hover {\n color: #000;\n }\n\n .mobile-menu-btn {\n display: none;\n font-size: 1.5rem;\n background: none;\n border: none;\n cursor: pointer;\n }\n\n \/* Trust badges *\/\n .trust-badges {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n gap: 2rem;\n margin: 2rem 0 2.5rem;\n }\n\n .badge {\n display: flex;\n align-items: center;\n gap: 8px;\n font-size: 0.9rem;\n font-weight: 500;\n }\n\n .badge i {\n font-size: 1.25rem;\n color: #2c7a4d;\n }\n\n \/* Product grid *\/\n .product-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n }\n\n .product-card {\n background: #ffffff;\n border-radius: 24px;\n overflow: hidden;\n transition: transform 0.25s, box-shadow 0.25s;\n box-shadow: 0 4px 14px rgba(0,0,0,0.05);\n border: 1px solid #eee;\n cursor: pointer;\n }\n\n .product-card:hover {\n transform: translateY(-6px);\n box-shadow: 0 24px 32px -16px rgba(0,0,0,0.12);\n }\n\n .product-img {\n width: 100%;\n aspect-ratio: 1 \/ 1;\n object-fit: cover;\n background: #faf6f0;\n }\n\n .product-info {\n padding: 1.5rem;\n }\n\n .product-title {\n font-size: 1.25rem;\n font-weight: 700;\n margin-bottom: 0.5rem;\n }\n\n .product-specs {\n font-size: 0.85rem;\n color: #5a5a6e;\n margin-bottom: 1rem;\n }\n\n \/* Features *\/\n .features-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n }\n\n .feature {\n text-align: center;\n }\n\n .feature i {\n font-size: 2.2rem;\n color: #1e1e2a;\n margin-bottom: 1rem;\n }\n\n \/* Services *\/\n .services-list {\n display: flex;\n flex-wrap: wrap;\n gap: 1.5rem;\n margin: 2rem 0;\n }\n\n .service-item {\n flex: 1;\n min-width: 200px;\n background: #f9f9fc;\n padding: 1.5rem;\n border-radius: 24px;\n text-align: center;\n }\n\n .process-steps {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n gap: 1rem;\n margin: 2rem 0;\n }\n\n .step {\n flex: 1;\n text-align: center;\n background: white;\n padding: 1rem;\n border-radius: 20px;\n box-shadow: 0 2px 8px rgba(0,0,0,0.03);\n border: 1px solid #ececf0;\n }\n\n \/* Contact form *\/\n .contact-form {\n max-width: 700px;\n margin: 2rem auto 0;\n background: #fcfcfd;\n padding: 2rem;\n border-radius: 32px;\n box-shadow: 0 8px 24px rgba(0,0,0,0.04);\n border: 1px solid #eaeef2;\n }\n\n .form-group {\n margin-bottom: 1.25rem;\n }\n\n input, select, textarea {\n width: 100%;\n padding: 12px 16px;\n border: 1px solid #ddd;\n border-radius: 32px;\n font-family: inherit;\n font-size: 1rem;\n outline: none;\n transition: 0.2s;\n }\n\n textarea {\n border-radius: 24px;\n resize: vertical;\n }\n\n input:focus, select:focus, textarea:focus {\n border-color: #1e1e2a;\n box-shadow: 0 0 0 2px rgba(30,30,42,0.1);\n }\n\n \/* Modal *\/\n .modal {\n display: none;\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0,0,0,0.7);\n justify-content: center;\n align-items: center;\n z-index: 1000;\n }\n .modal-content {\n background: white;\n max-width: 500px;\n width: 90%;\n padding: 2rem;\n border-radius: 32px;\n position: relative;\n }\n .close-modal {\n position: absolute;\n top: 1rem;\n right: 1.5rem;\n font-size: 1.5rem;\n cursor: pointer;\n }\n\n \/* Toast *\/\n .toast {\n position: fixed;\n bottom: 30px;\n left: 50%;\n transform: translateX(-50%);\n background: #1e1e2a;\n color: white;\n padding: 12px 24px;\n border-radius: 60px;\n font-size: 0.9rem;\n z-index: 1100;\n opacity: 0;\n transition: opacity 0.3s;\n pointer-events: none;\n }\n .toast.show {\n opacity: 1;\n }\n\n \/* Footer *\/\n footer {\n background-color: #f9fafb;\n border-top: 1px solid #eef2f0;\n padding: 48px 0 24px;\n }\n\n .footer-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));\n gap: 2rem;\n margin-bottom: 2rem;\n }\n\n .social-links a {\n margin-right: 1rem;\n color: #2d2d3a;\n font-size: 1.4rem;\n }\n\n hr {\n margin: 2rem 0;\n border: none;\n border-top: 1px solid #e2e8f0;\n }\n\n .whatsapp-float {\n position: fixed;\n bottom: 24px;\n right: 24px;\n background: #25D366;\n color: white;\n width: 56px;\n height: 56px;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 28px;\n box-shadow: 0 4px 12px rgba(0,0,0,0.2);\n z-index: 99;\n transition: transform 0.2s;\n }\n .whatsapp-float:hover {\n transform: scale(1.05);\n }\n\n @media (max-width: 768px) {\n .nav-links {\n display: none;\n flex-direction: column;\n width: 100%;\n background: white;\n padding: 1rem 0;\n gap: 1rem;\n }\n .nav-links.active {\n display: flex;\n }\n .mobile-menu-btn {\n display: block;\n }\n h1 {\n font-size: 2.2rem;\n }\n h2 {\n font-size: 1.6rem;\n }\n .section {\n padding: 60px 0;\n }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;header\u0026gt;\n \u0026lt;div class=\"container nav-container\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;reshyn\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"mobile-menu-btn\" id=\"mobileMenuBtn\"\u0026gt;\u0026lt;i class=\"fas fa-bars\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;ul class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#home\"\u0026gt;Home\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#products\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#custom\"\u0026gt;Custom\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#about\"\u0026gt;About\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#blog\"\u0026gt;Resources\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#contact\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;main\u0026gt;\n \u0026lt;!-- Hero --\u0026gt;\n \u0026lt;section id=\"home\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 0 auto; text-align: center;\"\u0026gt;\n \u0026lt;h1\u0026gt;Premium Hair Extensions \u0026lt;br\u0026gt; for Salons \u0026amp; Brands\u0026lt;\/h1\u0026gt;\n \u0026lt;p style=\"font-size: 1.2rem; color: #4a4a5a; margin-bottom: 2rem;\"\u0026gt;Wholesale \u00b7 Custom OEM \u00b7 Fast Shipping from Guangzhou\u0026lt;\/p\u0026gt;\n \u0026lt;div style=\"display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;\"\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-primary\"\u0026gt;Request a Quote\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\" class=\"btn btn-outline\"\u0026gt;View Products\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"trust-badges\"\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; 100% Remy Human Hair\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-boxes\"\u0026gt;\u0026lt;\/i\u0026gt; Small MOQ Welcome\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-flask\"\u0026gt;\u0026lt;\/i\u0026gt; Free Sample Support\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-clock\"\u0026gt;\u0026lt;\/i\u0026gt; 48h Response\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Products --\u0026gt;\n \u0026lt;section id=\"products\" class=\"section\" style=\"background-color: #fefefe;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Our premium collection\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"product-grid\" id=\"productGrid\"\u0026gt;\n \u0026lt;!-- Tape-in --\u0026gt;\n \u0026lt;div class=\"product-card\" data-product=\"Tape-in Remy Hair\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Tape-in+Extensions\" alt=\"Tape-in hair extensions\" class=\"product-img\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;div class=\"product-title\"\u0026gt;Tape\u2011in Remy Hair\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;100% Remy | 14\u201124 inch | Natural colours\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-size: 0.9rem; margin-bottom: 1rem;\"\u0026gt;Seamless, reusable, salon favourite.\u0026lt;\/p\u0026gt;\n \u0026lt;button class=\"btn btn-outline sample-btn\" style=\"padding: 8px 20px; font-size: 0.85rem;\"\u0026gt;Request Sample \u2192\u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;!-- Clip-in --\u0026gt;\n \u0026lt;div class=\"product-card\" data-product=\"Clip-in Remy Hair\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Clip-in+Extensions\" alt=\"Clip-in hair extensions\" class=\"product-img\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;div class=\"product-title\"\u0026gt;Clip\u2011in Remy Hair\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;5\u20117 clips | 100% Human hair | DIY friendly\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-size: 0.9rem; margin-bottom: 1rem;\"\u0026gt;Instant volume \u0026amp; length.\u0026lt;\/p\u0026gt;\n \u0026lt;button class=\"btn btn-outline sample-btn\" style=\"padding: 8px 20px; font-size: 0.85rem;\"\u0026gt;Request Sample \u2192\u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;!-- Custom Blends --\u0026gt;\n \u0026lt;div class=\"product-card\" data-product=\"Custom Colour Blends\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Custom+Color+Blends\" alt=\"Custom color blends\" class=\"product-img\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;div class=\"product-title\"\u0026gt;Custom Colour Blends\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;Pantone matching | Small batch\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-size: 0.9rem; margin-bottom: 1rem;\"\u0026gt;Create your signature shade.\u0026lt;\/p\u0026gt;\n \u0026lt;button class=\"btn btn-outline sample-btn\" style=\"padding: 8px 20px; font-size: 0.85rem;\"\u0026gt;Learn more \u2192\u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Why Reshyn --\u0026gt;\n \u0026lt;section class=\"section-sm\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Why choose Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"features-grid\"\u0026gt;\n \u0026lt;div class=\"feature\"\u0026gt;\u0026lt;i class=\"fas fa-shipping-fast\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Guangzhou Advantage\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Close to manufacturing \u0026amp; ports, fast turnaround.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"feature\"\u0026gt;\u0026lt;i class=\"fas fa-tags\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Flexible Customisation\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Logo, packaging, colour blends \u2014 no huge MOQ.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"feature\"\u0026gt;\u0026lt;i class=\"fas fa-clipboard-check\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Quality Control\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Every batch sample-checked before shipping.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Custom Services --\u0026gt;\n \u0026lt;section id=\"custom\" class=\"section\" style=\"background: #fafafc;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Custom solutions for your brand\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"services-list\"\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-box-open\" style=\"font-size: 1.8rem;\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Private Label\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Boxes, dust bags with your logo\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-tag\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Custom Tags\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Sewn-in or hang tags\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-palette\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Colour Blends\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Match Pantone or sample\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\u0026lt;i class=\"fas fa-chart-line\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Small MOQ\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;As low as 50 boxes\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-steps\"\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;1. Inquiry\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Share your idea\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;2. Sample\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Physical confirmation\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;3. Production\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Quality controlled\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;4. Shipping\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Fast delivery\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center;\"\u0026gt;\u0026lt;a href=\"#contact\" class=\"btn btn-primary\"\u0026gt;Start Custom Project\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- About --\u0026gt;\n \u0026lt;section id=\"about\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 0 auto;\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;About Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1rem;\"\u0026gt;Reshyn was founded in Guangzhou to help salons and emerging brands access high\u2011quality, customisable hair extensions without huge minimum orders. We know big factories often ignore small businesses \u2013 we don\u2019t.\u0026lt;\/p\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1rem;\"\u0026gt;Located close to major production hubs (Xuchang, Qingdao) and the Guangzhou port, we offer fast logistics and responsive service. Your main contact: \u0026lt;strong\u0026gt;J.\u0026lt;\/strong\u0026gt; \u2013 directly available via WhatsApp or email.\u0026lt;\/p\u0026gt;\n \u0026lt;div style=\"background: #f3f3f7; border-radius: 24px; padding: 1.5rem; margin: 1.5rem 0; text-align: center;\"\u0026gt;\n \u0026lt;i class=\"fas fa-handshake\" style=\"font-size: 2rem;\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;p style=\"font-weight: 500; margin-top: 8px;\"\u0026gt;Request a physical sample before ordering \u2013 satisfaction guaranteed.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Blog preview --\u0026gt;\n \u0026lt;section id=\"blog\" class=\"section\" style=\"background-color: #fefcf9;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Expert insights\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"product-grid\" style=\"grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\"\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\u0026lt;div class=\"product-info\"\u0026gt;\u0026lt;i class=\"fas fa-cut\" style=\"font-size: 2rem;\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Choosing salon extensions\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Complete guide for pros\u0026lt;\/p\u0026gt;\u0026lt;a href=\"#contact\" style=\"font-weight: 500;\"\u0026gt;Read \u2192\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\u0026lt;div class=\"product-info\"\u0026gt;\u0026lt;i class=\"fas fa-exchange-alt\" style=\"font-size: 2rem;\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;Tape\u2011in vs Clip\u2011in\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Inventory optimisation\u0026lt;\/p\u0026gt;\u0026lt;a href=\"#contact\" style=\"font-weight: 500;\"\u0026gt;Read \u2192\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\u0026lt;div class=\"product-info\"\u0026gt;\u0026lt;i class=\"fas fa-heart\" style=\"font-size: 2rem;\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;h3\u0026gt;5 care tips for Remy hair\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Extend lifespan\u0026lt;\/p\u0026gt;\u0026lt;a href=\"#contact\" style=\"font-weight: 500;\"\u0026gt;Read \u2192\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- Contact + dynamic form --\u0026gt;\n \u0026lt;section id=\"contact\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"text-align: center;\"\u0026gt;Get in touch\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"text-align: center;\"\u0026gt;We reply within 24 hours. \u0026lt;strong\u0026gt;Direct contact: J.\u0026lt;\/strong\u0026gt;\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"contact-form\"\u0026gt;\n \u0026lt;form id=\"contactForm\" action=\"https:\/\/formspree.io\/f\/xdkokrwy\" method=\"POST\"\u0026gt;\n \u0026lt;input type=\"hidden\" name=\"_subject\" value=\"New inquiry from Reshyn website\"\u0026gt;\n \u0026lt;input type=\"hidden\" name=\"_replyto\" value=\"\"\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;input type=\"text\" name=\"name\" placeholder=\"Full name *\" required\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;input type=\"email\" name=\"email\" placeholder=\"Email address *\" required\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;input type=\"text\" name=\"whatsapp\" placeholder=\"WhatsApp \/ Phone\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;input type=\"text\" name=\"company\" placeholder=\"Company name\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;select name=\"interest\"\u0026gt;\n \u0026lt;option value=\"\"\u0026gt;I'm interested in...\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Tape-in Extensions\u0026lt;\/option\u0026gt;\u0026lt;option\u0026gt;Clip-in Extensions\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Custom Services (OEM)\u0026lt;\/option\u0026gt;\u0026lt;option\u0026gt;Sample request\u0026lt;\/option\u0026gt;\u0026lt;option\u0026gt;Wholesale pricing\u0026lt;\/option\u0026gt;\n \u0026lt;\/select\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;textarea name=\"message\" rows=\"4\" placeholder=\"Tell us about your brand, target market, or volume...\" required\u0026gt;\u0026lt;\/textarea\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;button type=\"submit\" class=\"btn btn-primary\" style=\"width: 100%;\"\u0026gt;Send Inquiry \u2192\u0026lt;\/button\u0026gt;\n \u0026lt;p style=\"font-size: 0.8rem; text-align: center; margin-top: 1rem;\"\u0026gt;We\u2019ll get back to you within 24h.\u0026lt;\/p\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center; margin-top: 2rem;\"\u0026gt;\n \u0026lt;p\u0026gt;\u0026lt;i class=\"fas fa-envelope\"\u0026gt;\u0026lt;\/i\u0026gt; info@reshynhair.com \u0026amp;nbsp;|\u0026amp;nbsp; \u0026lt;i class=\"fab fa-whatsapp\"\u0026gt;\u0026lt;\/i\u0026gt; +86 188 8888 8888\u0026lt;\/p\u0026gt;\n \u0026lt;p style=\"margin-top: 0.5rem;\"\u0026gt;Contact person: \u0026lt;strong\u0026gt;J.\u0026lt;\/strong\u0026gt;\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\u0026lt;\/main\u0026gt;\n\n\u0026lt;footer\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"footer-grid\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;h4\u0026gt;Reshyn\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Premium hair extensions from Guangzhou, China.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;h4\u0026gt;Quick links\u0026lt;\/h4\u0026gt;\u0026lt;ul style=\"list-style:none;\"\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"#home\" style=\"color:#4b5563;\"\u0026gt;Home\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"#products\" style=\"color:#4b5563;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"#custom\" style=\"color:#4b5563;\"\u0026gt;Custom\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"#contact\" style=\"color:#4b5563;\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;\/ul\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;h4\u0026gt;Contact\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;J. \u2013 WhatsApp: +86 188 8888 8888\u0026lt;br\u0026gt;Email: info@reshynhair.com\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;hr\u0026gt;\n \u0026lt;p style=\"text-align: center; font-size: 0.8rem;\"\u0026gt;\u00a9 2025 Reshyn. All rights reserved. Wholesale hair extensions for salons worldwide.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;!-- WhatsApp floating button --\u0026gt;\n\u0026lt;a href=\"https:\/\/wa.me\/8618888888888?text=Hello%20Reshyn%2C%20I'm%20interested%20in%20your%20hair%20extensions\" target=\"_blank\" class=\"whatsapp-float\" aria-label=\"Chat on WhatsApp\"\u0026gt;\n \u0026lt;i class=\"fab fa-whatsapp\"\u0026gt;\u0026lt;\/i\u0026gt;\n\u0026lt;\/a\u0026gt;\n\n\u0026lt;!-- Modal for quick sample --\u0026gt;\n\u0026lt;div id=\"sampleModal\" class=\"modal\"\u0026gt;\n \u0026lt;div class=\"modal-content\"\u0026gt;\n \u0026lt;span class=\"close-modal\"\u0026gt;\u0026amp;times;\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;Request a sample\u0026lt;\/h3\u0026gt;\n \u0026lt;form id=\"quickSampleForm\"\u0026gt;\n \u0026lt;input type=\"text\" placeholder=\"Your name\" id=\"sampleName\" required\u0026gt;\u0026lt;br\u0026gt;\u0026lt;br\u0026gt;\n \u0026lt;input type=\"email\" placeholder=\"Email\" id=\"sampleEmail\" required\u0026gt;\u0026lt;br\u0026gt;\u0026lt;br\u0026gt;\n \u0026lt;input type=\"text\" placeholder=\"WhatsApp (optional)\" id=\"sampleWhatsapp\"\u0026gt;\u0026lt;br\u0026gt;\u0026lt;br\u0026gt;\n \u0026lt;input type=\"hidden\" id=\"sampleProduct\"\u0026gt;\n \u0026lt;button type=\"submit\" class=\"btn btn-primary\"\u0026gt;Submit Sample Request\u0026lt;\/button\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;p style=\"margin-top: 1rem; font-size: 0.8rem;\"\u0026gt;We'll contact you within 24h.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\n\u0026lt;div id=\"toastMsg\" class=\"toast\"\u0026gt;Message sent! We'll reply soon.\u0026lt;\/div\u0026gt;\n\n\u0026lt;script\u0026gt;\n \/\/ Mobile menu toggle\n const mobileBtn = document.getElementById('mobileMenuBtn');\n const navLinks = document.getElementById('navLinks');\n mobileBtn.addEventListener('click', () =\u0026gt; navLinks.classList.toggle('active'));\n\n \/\/ Smooth scroll + close mobile menu\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u0026gt; {\n anchor.addEventListener('click', function(e) {\n const targetId = this.getAttribute('href');\n if(targetId === '#') return;\n const targetElement = document.querySelector(targetId);\n if(targetElement) {\n e.preventDefault();\n targetElement.scrollIntoView({ behavior: 'smooth' });\n if(navLinks.classList.contains('active')) navLinks.classList.remove('active');\n }\n });\n });\n\n \/\/ Modal functionality for sample buttons\n const modal = document.getElementById('sampleModal');\n const closeModal = document.querySelector('.close-modal');\n const sampleBtns = document.querySelectorAll('.sample-btn');\n const sampleProductInput = document.getElementById('sampleProduct');\n\n sampleBtns.forEach(btn =\u0026gt; {\n btn.addEventListener('click', (e) =\u0026gt; {\n e.stopPropagation();\n const card = btn.closest('.product-card');\n const productName = card ? card.getAttribute('data-product') || card.querySelector('.product-title')?.innerText : 'Hair Extensions';\n if(sampleProductInput) sampleProductInput.value = productName;\n modal.style.display = 'flex';\n });\n });\n\n const closeModalFn = () =\u0026gt; modal.style.display = 'none';\n closeModal.addEventListener('click', closeModalFn);\n window.addEventListener('click', (e) =\u0026gt; { if(e.target === modal) closeModalFn(); });\n\n \/\/ Quick sample form inside modal (simulate sending via redirect to contact? actually we will use fetch to Formspree too)\n const quickForm = document.getElementById('quickSampleForm');\n if(quickForm) {\n quickForm.addEventListener('submit', async (e) =\u0026gt; {\n e.preventDefault();\n const name = document.getElementById('sampleName').value;\n const email = document.getElementById('sampleEmail').value;\n const whatsapp = document.getElementById('sampleWhatsapp').value;\n const product = sampleProductInput.value;\n if(!name || !email) { alert('Please fill name and email'); return; }\n \/\/ Use Formspree proxy for simplicity (send to same endpoint)\n const formData = new FormData();\n formData.append('name', name);\n formData.append('email', email);\n formData.append('whatsapp', whatsapp);\n formData.append('message', `Sample request for ${product}. Please contact me.`);\n formData.append('_subject', 'Sample request from Reshyn website');\n try {\n const response = await fetch('https:\/\/formspree.io\/f\/xdkokrwy', {\n method: 'POST',\n body: formData,\n headers: { 'Accept': 'application\/json' }\n });\n if(response.ok) {\n showToast('Sample request sent! We\u2019ll reply soon.');\n quickForm.reset();\n modal.style.display = 'none';\n } else {\n alert('Error, please try again or email us directly.');\n }\n } catch(err) { alert('Network error, please email info@reshynhair.com'); }\n });\n }\n\n \/\/ Main contact form handling (Formspree already works with action, but we also add AJAX to avoid page reload)\n const contactForm = document.getElementById('contactForm');\n if(contactForm) {\n contactForm.addEventListener('submit', async (e) =\u0026gt; {\n e.preventDefault();\n const formData = new FormData(contactForm);\n try {\n const response = await fetch(contactForm.action, {\n method: 'POST',\n body: formData,\n headers: { 'Accept': 'application\/json' }\n });\n if(response.ok) {\n showToast('Inquiry sent! We\u2019ll get back to you within 24h.');\n contactForm.reset();\n } else {\n alert('Submission failed. Please email info@reshynhair.com directly.');\n }\n } catch(err) {\n alert('Error. Please contact us via WhatsApp or email.');\n }\n });\n }\n\n function showToast(msg) {\n const toast = document.getElementById('toastMsg');\n toast.textContent = msg;\n toast.classList.add('show');\n setTimeout(() =\u0026gt; toast.classList.remove('show'), 4000);\n }\n\n \/\/ Pre-fill product in contact form when clicking sample? not needed, but modal fine\n \/\/ Additional dynamic: product cards click detail modal? optional but basic is fine.\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304051}"}}}],"title":"test 4 - hair extensions \u52a8\u6001","uid":"9ae6150b-60df-4780-a506-19439e49d538","path":"\/test-4-hair-extensions","autoPath":true,"authorized":true},{"type":"Page","id":"f_746b4c56-d8ba-43ba-8824-6d222badc823","sections":[{"type":"Slide","id":"f_ddfd53b6-2c40-4812-a8a8-948b95251a66","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_c89cbada-6e35-4b19-83eb-2af2c8d668ea","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_7e09564f-70aa-4977-9e40-0ab98c179047","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003etest 6 gemini\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_45add8a1-3bc3-45bc-ae1d-194d72e325ab","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_59bdf459-a864-4ab2-a4cb-cd606680773d","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27293295,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;Reshyn | Premium Wholesale Hair Extensions\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Wholesale hair extensions, custom OEM, and private labeling. Fast shipping from Guangzhou with small MOQ and free sample support.\"\u0026gt;\n \n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u0026gt;\n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u0026gt;\n \u0026lt;link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@400;500;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u0026gt;\n \u0026lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0-beta3\/css\/all.min.css\"\u0026gt;\n \n \u0026lt;style\u0026gt;\n \/* --- CSS Variables for Theme Management --- *\/\n :root {\n --color-primary: #1e1e2a;\n --color-primary-hover: #33334a;\n --color-accent: #2c7a4d;\n --color-bg-main: #ffffff;\n --color-bg-alt: #fafafc;\n --color-bg-card: #f9f9fc;\n --color-text-main: #1e1e2a;\n --color-text-muted: #5a5a6e;\n --color-border: #eaeef2;\n \n --font-main: 'Inter', system-ui, sans-serif;\n \n --radius-sm: 8px;\n --radius-md: 20px;\n --radius-lg: 24px;\n --radius-pill: 40px;\n \n --shadow-sm: 0 2px 8px rgba(0,0,0,0.03);\n --shadow-md: 0 4px 14px rgba(0,0,0,0.05);\n --shadow-lg: 0 8px 24px rgba(0,0,0,0.04);\n --shadow-hover: 0 24px 32px -16px rgba(0,0,0,0.12);\n \n --transition-fast: 0.2s ease;\n }\n\n \/* --- Reset \u0026amp; Base --- *\/\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n html {\n scroll-behavior: smooth;\n }\n\n body {\n font-family: var(--font-main);\n background-color: var(--color-bg-main);\n color: var(--color-text-main);\n line-height: 1.6;\n -webkit-font-smoothing: antialiased;\n }\n\n .container {\n width: 100%;\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n\n \/* --- Typography (Fluid Typography) --- *\/\n h1, h2, h3, h4 {\n font-weight: 600;\n letter-spacing: -0.02em;\n line-height: 1.2;\n }\n\n \/* clamp(min, preferred, max) for fluid scaling on devices *\/\n h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; }\n h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; text-align: center; }\n h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }\n\n .section { padding: clamp(60px, 8vw, 100px) 0; }\n .section-sm { padding: clamp(40px, 5vw, 60px) 0; }\n .bg-alt { background-color: var(--color-bg-alt); }\n\n \/* --- Buttons --- *\/\n .btn {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n gap: 8px;\n padding: 12px 28px;\n border-radius: var(--radius-pill);\n font-weight: 600;\n text-decoration: none;\n transition: all var(--transition-fast);\n font-size: 1rem;\n border: 1px solid transparent;\n cursor: pointer;\n }\n\n .btn:focus-visible {\n outline: 3px solid var(--color-accent);\n outline-offset: 2px;\n }\n\n .btn-primary {\n background-color: var(--color-primary);\n color: #fff;\n }\n\n .btn-primary:hover {\n background-color: var(--color-primary-hover);\n transform: translateY(-2px);\n }\n\n .btn-outline {\n background-color: transparent;\n border-color: var(--color-primary);\n color: var(--color-primary);\n }\n\n .btn-outline:hover {\n background-color: var(--color-primary);\n color: #fff;\n }\n\n \/* --- Header \u0026amp; Navigation --- *\/\n header {\n padding: 1rem 0;\n border-bottom: 1px solid var(--color-border);\n position: sticky;\n top: 0;\n background: rgba(255, 255, 255, 0.96);\n backdrop-filter: blur(12px);\n z-index: 100;\n }\n\n .nav-container {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n\n .logo {\n font-size: 1.8rem;\n font-weight: 700;\n letter-spacing: -0.02em;\n text-decoration: none;\n color: var(--color-primary);\n }\n\n .nav-links {\n display: flex;\n gap: 2rem;\n list-style: none;\n }\n\n .nav-links a {\n text-decoration: none;\n color: var(--color-text-muted);\n font-weight: 500;\n transition: color var(--transition-fast);\n }\n\n .nav-links a:hover, .nav-links a:focus {\n color: var(--color-primary);\n }\n\n .mobile-menu-btn {\n display: none;\n font-size: 1.5rem;\n background: none;\n border: none;\n color: var(--color-primary);\n cursor: pointer;\n padding: 0.5rem;\n }\n\n \/* --- Trust Badges --- *\/\n .trust-badges {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n gap: 1.5rem;\n margin: 2.5rem 0;\n }\n\n .badge {\n display: flex;\n align-items: center;\n gap: 8px;\n font-size: 0.95rem;\n font-weight: 500;\n color: var(--color-text-main);\n }\n\n .badge i {\n color: var(--color-accent);\n font-size: 1.2rem;\n }\n\n \/* --- Grids \u0026amp; Cards --- *\/\n .grid {\n display: grid;\n gap: 2rem;\n }\n\n .grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }\n .grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }\n\n .card {\n background: var(--color-bg-main);\n border-radius: var(--radius-lg);\n overflow: hidden;\n transition: transform var(--transition-fast), box-shadow var(--transition-fast);\n box-shadow: var(--shadow-md);\n border: 1px solid var(--color-border);\n }\n\n .card-interactive:hover {\n transform: translateY(-6px);\n box-shadow: var(--shadow-hover);\n }\n\n .product-img {\n width: 100%;\n aspect-ratio: 1 \/ 1;\n object-fit: cover;\n background: var(--color-bg-alt);\n }\n\n .card-content {\n padding: 1.5rem;\n }\n\n .product-specs {\n font-size: 0.85rem;\n color: var(--color-text-muted);\n margin-bottom: 1rem;\n }\n\n \/* --- Services \u0026amp; Steps --- *\/\n .service-item {\n background: var(--color-bg-card);\n padding: 2rem;\n border-radius: var(--radius-lg);\n text-align: center;\n height: 100%;\n }\n\n .service-item i {\n font-size: 2rem;\n color: var(--color-primary);\n margin-bottom: 1rem;\n }\n\n .process-steps {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n margin: 3rem 0;\n }\n\n .step {\n text-align: center;\n background: var(--color-bg-main);\n padding: 1.5rem;\n border-radius: var(--radius-md);\n box-shadow: var(--shadow-sm);\n border: 1px solid var(--color-border);\n }\n\n \/* --- Forms --- *\/\n .contact-form-wrapper {\n max-width: 600px;\n margin: 2rem auto 0;\n background: var(--color-bg-main);\n padding: clamp(1.5rem, 4vw, 2.5rem);\n border-radius: var(--radius-lg);\n box-shadow: var(--shadow-lg);\n border: 1px solid var(--color-border);\n }\n\n .form-group {\n margin-bottom: 1.25rem;\n }\n\n input, select, textarea {\n width: 100%;\n padding: 14px 18px;\n border: 1px solid #d1d5db;\n border-radius: var(--radius-sm);\n font-family: var(--font-main);\n font-size: 1rem;\n outline: none;\n transition: border-color var(--transition-fast), box-shadow var(--transition-fast);\n background-color: #fff;\n }\n\n textarea {\n resize: vertical;\n min-height: 100px;\n }\n\n input:focus, select:focus, textarea:focus {\n border-color: var(--color-primary);\n box-shadow: 0 0 0 3px rgba(30, 30, 42, 0.1);\n }\n\n \/* --- Modals \u0026amp; Toasts --- *\/\n .modal-overlay {\n display: none;\n position: fixed;\n inset: 0;\n background: rgba(0,0,0,0.6);\n backdrop-filter: blur(4px);\n justify-content: center;\n align-items: center;\n z-index: 1000;\n padding: 1rem;\n }\n\n .modal-overlay.active { display: flex; }\n\n .modal-content {\n background: var(--color-bg-main);\n width: 100%;\n max-width: 500px;\n padding: 2rem;\n border-radius: var(--radius-lg);\n position: relative;\n animation: modalFadeIn 0.3s ease;\n }\n\n @keyframes modalFadeIn {\n from { opacity: 0; transform: translateY(20px); }\n to { opacity: 1; transform: translateY(0); }\n }\n\n .close-modal {\n position: absolute;\n top: 1.25rem;\n right: 1.25rem;\n font-size: 1.5rem;\n background: none;\n border: none;\n cursor: pointer;\n color: var(--color-text-muted);\n transition: color var(--transition-fast);\n }\n\n .close-modal:hover { color: var(--color-primary); }\n\n .toast {\n position: fixed;\n bottom: 2rem;\n left: 50%;\n transform: translateX(-50%) translateY(20px);\n background: var(--color-primary);\n color: #fff;\n padding: 12px 24px;\n border-radius: var(--radius-pill);\n font-size: 0.95rem;\n z-index: 1100;\n opacity: 0;\n visibility: hidden;\n transition: all 0.3s ease;\n box-shadow: var(--shadow-lg);\n }\n\n .toast.show {\n opacity: 1;\n visibility: visible;\n transform: translateX(-50%) translateY(0);\n }\n\n \/* --- Footer \u0026amp; Floating Action --- *\/\n footer {\n background-color: var(--color-bg-card);\n border-top: 1px solid var(--color-border);\n padding: 4rem 0 2rem;\n }\n\n .whatsapp-float {\n position: fixed;\n bottom: 2rem;\n right: 2rem;\n background: #25D366;\n color: white;\n width: 60px;\n height: 60px;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 32px;\n box-shadow: var(--shadow-lg);\n z-index: 90;\n transition: transform var(--transition-fast);\n text-decoration: none;\n }\n\n .whatsapp-float:hover {\n transform: scale(1.1);\n }\n\n \/* --- Responsive --- *\/\n @media (max-width: 768px) {\n .nav-links {\n display: none;\n position: absolute;\n top: 100%;\n left: 0;\n width: 100%;\n background: var(--color-bg-main);\n flex-direction: column;\n padding: 1.5rem;\n gap: 1.5rem;\n border-bottom: 1px solid var(--color-border);\n box-shadow: var(--shadow-md);\n }\n .nav-links.active { display: flex; }\n .mobile-menu-btn { display: block; }\n .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; font-size: 26px; }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;header\u0026gt;\n \u0026lt;div class=\"container nav-container\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\" aria-label=\"Reshyn Homepage\"\u0026gt;reshyn\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"mobile-menu-btn\" id=\"mobileMenuBtn\" aria-label=\"Toggle navigation menu\" aria-expanded=\"false\"\u0026gt;\n \u0026lt;i class=\"fas fa-bars\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;\/button\u0026gt;\n \u0026lt;nav\u0026gt;\n \u0026lt;ul class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#home\"\u0026gt;Home\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#products\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#custom\"\u0026gt;Custom OEM\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#about\"\u0026gt;About\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#contact\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;\/nav\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;main\u0026gt;\n \u0026lt;section id=\"home\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 0 auto; text-align: center;\"\u0026gt;\n \u0026lt;h1\u0026gt;Premium Hair Extensions \u0026lt;br\u0026gt; for Salons \u0026amp; Brands\u0026lt;\/h1\u0026gt;\n \u0026lt;p style=\"font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 2.5rem;\"\u0026gt;\n Wholesale \u2022 Custom OEM \u2022 Fast Shipping from Guangzhou\n \u0026lt;\/p\u0026gt;\n \u0026lt;div style=\"display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;\"\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-primary\"\u0026gt;Request a Quote\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\" class=\"btn btn-outline\"\u0026gt;View Products\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;div class=\"trust-badges\"\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-check-circle\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt; 100% Remy Human Hair\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-boxes\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt; Small MOQ Welcome\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-flask\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt; Free Sample Support\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u0026lt;i class=\"fas fa-clock\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt; 48h Response\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section id=\"products\" class=\"section bg-alt\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;Our Premium Collection\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"grid grid-3\"\u0026gt;\n \n \u0026lt;article class=\"card card-interactive\" data-product=\"Tape-in Remy Hair\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Tape-in+Extensions\" alt=\"Tape-in hair extensions on display\" class=\"product-img\" loading=\"lazy\"\u0026gt;\n \u0026lt;div class=\"card-content\"\u0026gt;\n \u0026lt;h3 class=\"product-title\"\u0026gt;Tape\u2011in Remy Hair\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;100% Remy | 14\u201124 inch | Natural colours\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1.5rem; color: var(--color-text-muted);\"\u0026gt;Seamless, reusable, and a salon favourite.\u0026lt;\/p\u0026gt;\n \u0026lt;button class=\"btn btn-outline sample-btn\" style=\"width: 100%;\"\u0026gt;Request Sample \u0026lt;i class=\"fas fa-arrow-right\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/article\u0026gt;\n\n \u0026lt;article class=\"card card-interactive\" data-product=\"Clip-in Remy Hair\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Clip-in+Extensions\" alt=\"Clip-in hair extensions\" class=\"product-img\" loading=\"lazy\"\u0026gt;\n \u0026lt;div class=\"card-content\"\u0026gt;\n \u0026lt;h3 class=\"product-title\"\u0026gt;Clip\u2011in Remy Hair\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;5\u20117 clips | 100% Human hair | DIY friendly\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1.5rem; color: var(--color-text-muted);\"\u0026gt;Instant volume \u0026amp; length for versatile styling.\u0026lt;\/p\u0026gt;\n \u0026lt;button class=\"btn btn-outline sample-btn\" style=\"width: 100%;\"\u0026gt;Request Sample \u0026lt;i class=\"fas fa-arrow-right\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/article\u0026gt;\n\n \u0026lt;article class=\"card card-interactive\" data-product=\"Custom Colour Blends\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Custom+Color+Blends\" alt=\"Custom blended hair colors\" class=\"product-img\" loading=\"lazy\"\u0026gt;\n \u0026lt;div class=\"card-content\"\u0026gt;\n \u0026lt;h3 class=\"product-title\"\u0026gt;Custom Colour Blends\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"product-specs\"\u0026gt;Pantone matching | Small batch available\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1.5rem; color: var(--color-text-muted);\"\u0026gt;Create your unique, signature shade.\u0026lt;\/p\u0026gt;\n \u0026lt;button class=\"btn btn-outline sample-btn\" style=\"width: 100%;\"\u0026gt;Learn More \u0026lt;i class=\"fas fa-arrow-right\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/article\u0026gt;\n\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section id=\"custom\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;Custom Solutions for Your Brand\u0026lt;\/h2\u0026gt;\n \n \u0026lt;div class=\"grid grid-4\" style=\"margin-bottom: 3rem;\"\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\n \u0026lt;i class=\"fas fa-box-open\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Private Label\u0026lt;\/h3\u0026gt;\n \u0026lt;p class=\"product-specs\"\u0026gt;Premium boxes and dust bags branded with your logo.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\n \u0026lt;i class=\"fas fa-tag\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Custom Tags\u0026lt;\/h3\u0026gt;\n \u0026lt;p class=\"product-specs\"\u0026gt;Professional sewn-in or hang tags for authenticity.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\n \u0026lt;i class=\"fas fa-palette\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Colour Blends\u0026lt;\/h3\u0026gt;\n \u0026lt;p class=\"product-specs\"\u0026gt;Exact matching to your Pantone or physical sample.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"service-item\"\u0026gt;\n \u0026lt;i class=\"fas fa-chart-line\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3\u0026gt;Small MOQ\u0026lt;\/h3\u0026gt;\n \u0026lt;p class=\"product-specs\"\u0026gt;Start your brand with minimums as low as 50 units.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div class=\"process-steps\"\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;1. Inquiry\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span style=\"color:var(--color-text-muted); font-size: 0.9rem;\"\u0026gt;Share your idea\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;2. Sample\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span style=\"color:var(--color-text-muted); font-size: 0.9rem;\"\u0026gt;Physical confirmation\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;3. Production\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span style=\"color:var(--color-text-muted); font-size: 0.9rem;\"\u0026gt;Quality controlled\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\u0026lt;strong\u0026gt;4. Shipping\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span style=\"color:var(--color-text-muted); font-size: 0.9rem;\"\u0026gt;Fast global delivery\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;div style=\"text-align: center;\"\u0026gt;\n \u0026lt;a href=\"#contact\" class=\"btn btn-primary\"\u0026gt;Start Your Custom Project\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section id=\"about\" class=\"section bg-alt\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 0 auto; text-align: center;\"\u0026gt;\n \u0026lt;h2\u0026gt;About Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin-bottom: 1.5rem; font-size: 1.1rem;\"\u0026gt;\n Reshyn was founded in Guangzhou to help salons and emerging brands access high\u2011quality, customisable hair extensions without the barrier of huge minimum orders. We know big factories often ignore small businesses \u2013 we don\u2019t.\n \u0026lt;\/p\u0026gt;\n \u0026lt;p style=\"margin-bottom: 2rem; color: var(--color-text-muted);\"\u0026gt;\n Located close to major production hubs and the Guangzhou port, we offer fast logistics and highly responsive service. Your main contact, \u0026lt;strong\u0026gt;J.\u0026lt;\/strong\u0026gt;, is directly available via WhatsApp or email for dedicated support.\n \u0026lt;\/p\u0026gt;\n \n \u0026lt;div class=\"card\" style=\"padding: 2rem; display: inline-block;\"\u0026gt;\n \u0026lt;i class=\"fas fa-handshake\" style=\"font-size: 2.5rem; color: var(--color-accent); margin-bottom: 1rem;\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\n \u0026lt;h3 style=\"margin-bottom: 0;\"\u0026gt;Our Guarantee\u0026lt;\/h3\u0026gt;\n \u0026lt;p style=\"color: var(--color-text-muted);\"\u0026gt;Request a physical sample before bulk ordering to ensure 100% satisfaction.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section id=\"contact\" class=\"section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;Get in Touch\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"text-align: center; color: var(--color-text-muted);\"\u0026gt;We reply within 24 hours. Direct contact: \u0026lt;strong\u0026gt;J.\u0026lt;\/strong\u0026gt;\u0026lt;\/p\u0026gt;\n \n \u0026lt;div class=\"contact-form-wrapper\"\u0026gt;\n \u0026lt;form id=\"contactForm\" action=\"https:\/\/formspree.io\/f\/xdkokrwy\" method=\"POST\"\u0026gt;\n \u0026lt;input type=\"hidden\" name=\"_subject\" value=\"New inquiry from Reshyn website\"\u0026gt;\n \n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label for=\"name\" class=\"sr-only\" style=\"display:none;\"\u0026gt;Full Name\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"text\" id=\"name\" name=\"name\" placeholder=\"Full name *\" required\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label for=\"email\" class=\"sr-only\" style=\"display:none;\"\u0026gt;Email\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"email\" id=\"email\" name=\"email\" placeholder=\"Email address *\" required\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;div class=\"grid\" style=\"grid-template-columns: 1fr 1fr; gap: 1.25rem;\"\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"text\" name=\"whatsapp\" placeholder=\"WhatsApp \/ Phone\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"text\" name=\"company\" placeholder=\"Company name\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;select name=\"interest\" aria-label=\"Subject of interest\"\u0026gt;\n \u0026lt;option value=\"\" disabled selected\u0026gt;I'm interested in...\u0026lt;\/option\u0026gt;\n \u0026lt;option value=\"Tape-in\"\u0026gt;Tape-in Extensions\u0026lt;\/option\u0026gt;\n \u0026lt;option value=\"Clip-in\"\u0026gt;Clip-in Extensions\u0026lt;\/option\u0026gt;\n \u0026lt;option value=\"Custom OEM\"\u0026gt;Custom Services (OEM)\u0026lt;\/option\u0026gt;\n \u0026lt;option value=\"Sample\"\u0026gt;Sample request\u0026lt;\/option\u0026gt;\n \u0026lt;option value=\"Wholesale\"\u0026gt;Wholesale pricing\u0026lt;\/option\u0026gt;\n \u0026lt;\/select\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;textarea name=\"message\" placeholder=\"Tell us about your brand, target market, or volume requirements...\" required\u0026gt;\u0026lt;\/textarea\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;button type=\"submit\" class=\"btn btn-primary\" style=\"width: 100%;\"\u0026gt;Send Inquiry \u0026lt;i class=\"fas fa-paper-plane\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div style=\"text-align: center; margin-top: 3rem; color: var(--color-text-muted);\"\u0026gt;\n \u0026lt;p\u0026gt;\u0026lt;i class=\"fas fa-envelope\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt; info@reshynhair.com \u0026amp;nbsp;|\u0026amp;nbsp; \u0026lt;i class=\"fab fa-whatsapp\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt; +86 188 8888 8888\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\u0026lt;\/main\u0026gt;\n\n\u0026lt;footer\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"grid grid-3\" style=\"margin-bottom: 2rem;\"\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;h3 class=\"logo\" style=\"margin-bottom: 1rem;\"\u0026gt;reshyn\u0026lt;\/h3\u0026gt;\n \u0026lt;p style=\"color: var(--color-text-muted);\"\u0026gt;Premium wholesale hair extensions directly from Guangzhou, China.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;h4 style=\"margin-bottom: 1rem;\"\u0026gt;Quick Links\u0026lt;\/h4\u0026gt;\n \u0026lt;ul style=\"list-style: none; line-height: 2;\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#products\" style=\"color: var(--color-text-muted); text-decoration: none;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#custom\" style=\"color: var(--color-text-muted); text-decoration: none;\"\u0026gt;Custom OEM\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"#about\" style=\"color: var(--color-text-muted); text-decoration: none;\"\u0026gt;Our Story\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;h4 style=\"margin-bottom: 1rem;\"\u0026gt;Contact Us\u0026lt;\/h4\u0026gt;\n \u0026lt;p style=\"color: var(--color-text-muted); line-height: 1.8;\"\u0026gt;\n Contact: J.\u0026lt;br\u0026gt;\n WhatsApp: +86 188 8888 8888\u0026lt;br\u0026gt;\n Email: info@reshynhair.com\n \u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;div style=\"border-top: 1px solid var(--color-border); padding-top: 2rem; text-align: center; color: var(--color-text-muted); font-size: 0.85rem;\"\u0026gt;\n \u0026amp;copy; 2025 Reshyn. All rights reserved. B2B Hair Extensions Worldwide.\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;a href=\"https:\/\/wa.me\/8618888888888?text=Hello%20Reshyn%2C%20I'm%20interested%20in%20your%20hair%20extensions\" \n target=\"_blank\" \n rel=\"noopener noreferrer\" \n class=\"whatsapp-float\" \n aria-label=\"Chat with us on WhatsApp\"\u0026gt;\n \u0026lt;i class=\"fab fa-whatsapp\" aria-hidden=\"true\"\u0026gt;\u0026lt;\/i\u0026gt;\n\u0026lt;\/a\u0026gt;\n\n\u0026lt;div id=\"sampleModal\" class=\"modal-overlay\" role=\"dialog\" aria-modal=\"true\" aria-labelledby=\"modalTitle\"\u0026gt;\n \u0026lt;div class=\"modal-content\"\u0026gt;\n \u0026lt;button class=\"close-modal\" aria-label=\"Close modal\"\u0026gt;\u0026amp;times;\u0026lt;\/button\u0026gt;\n \u0026lt;h3 id=\"modalTitle\" style=\"margin-bottom: 1.5rem;\"\u0026gt;Request a Sample\u0026lt;\/h3\u0026gt;\n \u0026lt;form id=\"quickSampleForm\"\u0026gt;\n \u0026lt;input type=\"hidden\" id=\"sampleProduct\" name=\"product\"\u0026gt;\n \n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"text\" id=\"sampleName\" placeholder=\"Your Name *\" required\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"email\" id=\"sampleEmail\" placeholder=\"Email Address *\" required\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;input type=\"tel\" id=\"sampleWhatsapp\" placeholder=\"WhatsApp Number\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \n \u0026lt;button type=\"submit\" class=\"btn btn-primary\" style=\"width: 100%;\"\u0026gt;Submit Request\u0026lt;\/button\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\n\u0026lt;div id=\"toastMsg\" class=\"toast\" role=\"alert\" aria-live=\"assertive\"\u0026gt;\u0026lt;\/div\u0026gt;\n\n\u0026lt;script\u0026gt;\n \/\/ --- DOM Elements ---\n const mobileBtn = document.getElementById('mobileMenuBtn');\n const navLinks = document.getElementById('navLinks');\n const modal = document.getElementById('sampleModal');\n const sampleProductInput = document.getElementById('sampleProduct');\n const toast = document.getElementById('toastMsg');\n\n \/\/ --- Mobile Menu Toggle ---\n mobileBtn.addEventListener('click', () =\u0026gt; {\n const isExpanded = mobileBtn.getAttribute('aria-expanded') === 'true';\n mobileBtn.setAttribute('aria-expanded', !isExpanded);\n navLinks.classList.toggle('active');\n \n \/\/ Toggle icon between bars and times\n const icon = mobileBtn.querySelector('i');\n icon.classList.toggle('fa-bars');\n icon.classList.toggle('fa-times');\n });\n\n \/\/ --- Smooth Scroll \u0026amp; Mobile Menu Auto-Close ---\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u0026gt; {\n anchor.addEventListener('click', function(e) {\n const targetId = this.getAttribute('href');\n if(targetId === '#') return;\n \n const targetElement = document.querySelector(targetId);\n if(targetElement) {\n e.preventDefault();\n targetElement.scrollIntoView({ behavior: 'smooth' });\n \n \/\/ Close mobile menu if open\n if(navLinks.classList.contains('active')) {\n navLinks.classList.remove('active');\n mobileBtn.setAttribute('aria-expanded', 'false');\n mobileBtn.querySelector('i').classList.replace('fa-times', 'fa-bars');\n }\n }\n });\n });\n\n \/\/ --- Modal Logic ---\n const openModal = (productName) =\u0026gt; {\n if(sampleProductInput) sampleProductInput.value = productName;\n modal.classList.add('active');\n document.body.style.overflow = 'hidden'; \/\/ Prevent background scrolling\n };\n\n const closeModal = () =\u0026gt; {\n modal.classList.remove('active');\n document.body.style.overflow = '';\n };\n\n document.querySelectorAll('.sample-btn').forEach(btn =\u0026gt; {\n btn.addEventListener('click', (e) =\u0026gt; {\n e.preventDefault();\n const card = btn.closest('.card');\n const productName = card ? card.getAttribute('data-product') : 'General Hair Extensions';\n openModal(productName);\n });\n });\n\n document.querySelector('.close-modal').addEventListener('click', closeModal);\n \n \/\/ Close modal on outside click or Escape key\n modal.addEventListener('click', (e) =\u0026gt; {\n if (e.target === modal) closeModal();\n });\n \n document.addEventListener('keydown', (e) =\u0026gt; {\n if (e.key === 'Escape' \u0026amp;\u0026amp; modal.classList.contains('active')) closeModal();\n });\n\n \/\/ --- Toast Notification ---\n const showToast = (message) =\u0026gt; {\n toast.textContent = message;\n toast.classList.add('show');\n setTimeout(() =\u0026gt; toast.classList.remove('show'), 4000);\n };\n\n \/\/ --- Form Handling (AJAX) ---\n const handleFormSubmit = async (e, formElement, isModal = false) =\u0026gt; {\n e.preventDefault();\n const btn = formElement.querySelector('button[type=\"submit\"]');\n const originalText = btn.innerHTML;\n btn.innerHTML = '\u0026lt;i class=\"fas fa-spinner fa-spin\"\u0026gt;\u0026lt;\/i\u0026gt; Sending...';\n btn.disabled = true;\n\n try {\n const formData = new FormData(formElement);\n \/\/ If it's the custom JS modal form, format it for Formspree\n if(isModal) {\n formData.append('message', `Sample request for: ${document.getElementById('sampleProduct').value}`);\n formData.append('name', document.getElementById('sampleName').value);\n formData.append('email', document.getElementById('sampleEmail').value);\n formData.append('whatsapp', document.getElementById('sampleWhatsapp').value);\n formData.append('_subject', 'Sample request from Reshyn website');\n }\n\n const response = await fetch('https:\/\/formspree.io\/f\/xdkokrwy', {\n method: 'POST',\n body: formData,\n headers: { 'Accept': 'application\/json' }\n });\n\n if(response.ok) {\n showToast('Success! We will contact you within 24 hours.');\n formElement.reset();\n if(isModal) closeModal();\n } else {\n throw new Error('Server response was not ok.');\n }\n } catch(err) {\n alert('There was a network error. Please email us directly at info@reshynhair.com');\n } finally {\n btn.innerHTML = originalText;\n btn.disabled = false;\n }\n };\n\n \/\/ Attach submit listeners\n const quickForm = document.getElementById('quickSampleForm');\n if(quickForm) quickForm.addEventListener('submit', (e) =\u0026gt; handleFormSubmit(e, quickForm, true));\n\n const contactForm = document.getElementById('contactForm');\n if(contactForm) contactForm.addEventListener('submit', (e) =\u0026gt; handleFormSubmit(e, contactForm, false));\n\u0026lt;\/script\u0026gt;\n\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304131}"}}}],"title":"test 6 - extensions Gemini","uid":"695937b4-4049-4e0f-ad59-4c71be038168","path":"\/test-6-extensions-gemini","autoPath":true,"authorized":true},{"type":"Page","id":"f_6f829ca0-8b5f-4f2d-ac5d-6d23e05b49cf","sections":[{"type":"Slide","id":"f_760d70a2-f8ff-4379-9169-d8220cb3494e","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_b0c3fd35-49f5-4b01-af1c-a9aa3936c314","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_37d39671-96b5-48d3-96e3-841c4f62338c","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003etest 7 chatgpt\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_d52f34eb-3ebb-45bf-b49c-3b318d4bbc14","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_ee175027-7875-4c02-a203-929ac0c3dbd6","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27293306,"defaultValue":false,"value":"\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n\u0026lt;meta charset=\"UTF-8\"\u0026gt;\n\u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u0026gt;\n\u0026lt;title\u0026gt;Reshyn | Premium Wholesale Hair Extensions \u0026amp; OEM Services\u0026lt;\/title\u0026gt;\n\u0026lt;meta name=\"description\" content=\"Reshyn supplies premium Remy hair extensions, tape-ins, clip-ins, custom colour blends and OEM solutions for salons and beauty brands worldwide.\"\u0026gt;\n\u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u0026gt;\n\u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u0026gt;\n\u0026lt;link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u0026gt;\n\u0026lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.5.2\/css\/all.min.css\"\u0026gt;\n\u0026lt;style\u0026gt;\n:root{--dark:#1e1e2a;--light:#fff;--muted:#666;--bg:#f8f8fa;--radius:24px;}\n*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;font-family:Inter,sans-serif;color:var(--dark)}\n.container{width:min(1200px,92%);margin:auto}\nheader{position:sticky;top:0;background:#fff;z-index:1000;border-bottom:1px solid #eee}\nnav{display:flex;justify-content:space-between;align-items:center;padding:16px 0}\n.logo{font-size:28px;font-weight:800}\n.nav-links{display:flex;gap:24px}\n.nav-links a{text-decoration:none;color:var(--dark)}\n.menu-btn{display:none}\nsection{padding:90px 0}\n.hero{background:var(--bg);text-align:center}\n.hero h1{font-size:clamp(2.4rem,5vw,4.5rem)}\n.hero p{font-size:1.15rem;color:var(--muted)}\n.btn{display:inline-block;padding:14px 24px;border-radius:999px;text-decoration:none;margin:8px;background:var(--dark);color:#fff}\n.btn-outline{background:#fff;color:var(--dark);border:2px solid var(--dark)}\n.badges,.grid3,.services,.blog{display:grid;gap:24px}\n.badges{grid-template-columns:repeat(4,1fr);margin-top:40px}\n.grid3,.blog{grid-template-columns:repeat(3,1fr)}\n.card{border:1px solid #eee;border-radius:24px;padding:20px;background:#fff}\n.card img{width:100%;border-radius:18px}\n.process{display:flex;gap:10px;flex-wrap:wrap}\n.step{padding:12px 18px;border-radius:999px;background:#f2f2f2}\n.contact-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:30px}\ninput,textarea,select{width:100%;padding:14px;margin:8px 0;border:1px solid #ddd;border-radius:14px}\nbutton{cursor:pointer}\nfooter{background:var(--dark);color:#fff;padding:40px 0}\nfooter a{color:#fff}\n.whatsapp{position:fixed;right:20px;bottom:20px;width:64px;height:64px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;font-size:30px;text-decoration:none;box-shadow:0 10px 30px rgba(0,0,0,.2)}\n.whatsapp:hover{transform:scale(1.08)}\n.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);align-items:center;justify-content:center;padding:20px}\n.modal-content{background:#fff;width:min(500px,100%);padding:30px;border-radius:24px}\n.toast{position:fixed;top:20px;right:20px;background:#111;color:#fff;padding:14px 18px;border-radius:10px;display:none}\n@media(max-width:768px){\n.menu-btn{display:block;background:none;border:none;font-size:24px}\n.nav-links{display:none;position:absolute;top:70px;left:0;right:0;background:#fff;flex-direction:column;padding:20px}\n.nav-links.show{display:flex}\n.badges,.grid3,.blog,.contact-grid{grid-template-columns:1fr}\n}\n\u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;header\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;nav\u0026gt;\n\u0026lt;div class=\"logo\"\u0026gt;Reshyn\u0026lt;\/div\u0026gt;\n\u0026lt;button class=\"menu-btn\" aria-label=\"Menu\"\u0026gt;\u0026lt;i class=\"fa fa-bars\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n\u0026lt;div class=\"nav-links\"\u0026gt;\n\u0026lt;a href=\"#home\"\u0026gt;Home\u0026lt;\/a\u0026gt;\n\u0026lt;a href=\"#products\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n\u0026lt;a href=\"#custom\"\u0026gt;Custom\u0026lt;\/a\u0026gt;\n\u0026lt;a href=\"#about\"\u0026gt;About\u0026lt;\/a\u0026gt;\n\u0026lt;a href=\"#blog\"\u0026gt;Blog\u0026lt;\/a\u0026gt;\n\u0026lt;a href=\"#contact\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/nav\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;section id=\"home\" class=\"hero\"\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;h1\u0026gt;Premium Hair Extensions for Salons \u0026amp; Brands\u0026lt;\/h1\u0026gt;\n\u0026lt;p\u0026gt;Wholesale \u00b7 Custom OEM \u00b7 Fast Shipping from Guangzhou\u0026lt;\/p\u0026gt;\n\u0026lt;a href=\"#contact\" class=\"btn\"\u0026gt;Request a Quote\u0026lt;\/a\u0026gt;\n\u0026lt;a href=\"#products\" class=\"btn btn-outline\"\u0026gt;View Products\u0026lt;\/a\u0026gt;\n\n\u0026lt;div class=\"badges\"\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;100% Remy Human Hair\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;Small MOQ Welcome\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;Free Sample Support\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;48h Response\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;section id=\"products\"\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;h2\u0026gt;Products\u0026lt;\/h2\u0026gt;\n\u0026lt;div class=\"grid3\"\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\n\u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Tape-In+Remy+Hair\" alt=\"Tape In Remy Hair\"\u0026gt;\n\u0026lt;h3\u0026gt;Tape-in Remy Hair\u0026lt;\/h3\u0026gt;\n\u0026lt;p\u0026gt;100% Remy \u2022 14-24 inch \u2022 Natural colours\u0026lt;\/p\u0026gt;\n\u0026lt;button class=\"btn sample-btn\" data-product=\"Tape-in Remy Hair\"\u0026gt;Request Sample \u2192\u0026lt;\/button\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\n\u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Clip-In+Remy+Hair\" alt=\"Clip In Remy Hair\"\u0026gt;\n\u0026lt;h3\u0026gt;Clip-in Remy Hair\u0026lt;\/h3\u0026gt;\n\u0026lt;p\u0026gt;5-7 clips \u2022 DIY friendly \u2022 Salon quality\u0026lt;\/p\u0026gt;\n\u0026lt;button class=\"btn sample-btn\" data-product=\"Clip-in Remy Hair\"\u0026gt;Request Sample \u2192\u0026lt;\/button\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\n\u0026lt;img src=\"https:\/\/placehold.co\/600x600\/f2ede8\/1e1e2a?text=Custom+Colour+Blends\" alt=\"Custom Colour Blends\"\u0026gt;\n\u0026lt;h3\u0026gt;Custom Colour Blends\u0026lt;\/h3\u0026gt;\n\u0026lt;p\u0026gt;Pantone matching \u2022 Small batch \u2022 Brand exclusive\u0026lt;\/p\u0026gt;\n\u0026lt;button class=\"btn sample-btn\" data-product=\"Custom Colour Blends\"\u0026gt;Request Sample \u2192\u0026lt;\/button\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;section\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;h2\u0026gt;Why Reshyn\u0026lt;\/h2\u0026gt;\n\u0026lt;div class=\"grid3\"\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\u0026lt;h3\u0026gt;Guangzhou Advantage\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Fast turnaround and logistics support.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\u0026lt;h3\u0026gt;Flexible Customisation\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Logo, packaging and low MOQ solutions.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\u0026lt;h3\u0026gt;Quality Control\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Every order checked before shipping.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;section id=\"custom\"\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;h2\u0026gt;Custom Services\u0026lt;\/h2\u0026gt;\n\u0026lt;div class=\"grid3\"\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;Private Label Packaging\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;Custom Logo Tags\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;Custom Colour Blends\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"process\" style=\"margin-top:20px\"\u0026gt;\n\u0026lt;div class=\"step\"\u0026gt;Inquiry\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"step\"\u0026gt;Sample Confirmation\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"step\"\u0026gt;Production\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"step\"\u0026gt;Shipping\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;p\u0026gt;\u0026lt;a href=\"#contact\" class=\"btn\"\u0026gt;Start Custom Project\u0026lt;\/a\u0026gt;\u0026lt;\/p\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;section id=\"about\"\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;h2\u0026gt;About Us\u0026lt;\/h2\u0026gt;\n\u0026lt;p\u0026gt;Reshyn is a Guangzhou-based hair extension supplier serving salons, distributors and beauty brands worldwide. Located near major production hubs including Xuchang and Qingdao.\u0026lt;\/p\u0026gt;\n\u0026lt;p\u0026gt;\u0026lt;strong\u0026gt;Your main contact: J.\u0026lt;\/strong\u0026gt; \u2013 reachable via WhatsApp or email.\u0026lt;\/p\u0026gt;\n\u0026lt;p\u0026gt;Free physical sample support before bulk orders.\u0026lt;\/p\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;section id=\"blog\"\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;h2\u0026gt;Resources\u0026lt;\/h2\u0026gt;\n\u0026lt;div class=\"blog\"\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\u0026lt;h3\u0026gt;How to Choose the Right Hair Extensions for Your Salon Clients\u0026lt;\/h3\u0026gt;\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\u0026lt;h3\u0026gt;Tape-in vs. Clip-in: Which One Should You Stock?\u0026lt;\/h3\u0026gt;\u0026lt;\/div\u0026gt;\n\u0026lt;div class=\"card\"\u0026gt;\u0026lt;h3\u0026gt;5 Tips for Caring for Remy Human Hair Extensions\u0026lt;\/h3\u0026gt;\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;section id=\"contact\"\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;h2\u0026gt;Contact Us\u0026lt;\/h2\u0026gt;\n\u0026lt;div class=\"contact-grid\"\u0026gt;\n\u0026lt;form id=\"contactForm\"\u0026gt;\n\u0026lt;input required name=\"name\" placeholder=\"Full Name\"\u0026gt;\n\u0026lt;input required type=\"email\" name=\"email\" placeholder=\"Email\"\u0026gt;\n\u0026lt;input name=\"phone\" placeholder=\"WhatsApp \/ Phone\"\u0026gt;\n\u0026lt;input name=\"company\" placeholder=\"Company Name\"\u0026gt;\n\u0026lt;select name=\"interest\"\u0026gt;\n\u0026lt;option\u0026gt;Tape-in Extensions\u0026lt;\/option\u0026gt;\n\u0026lt;option\u0026gt;Clip-in Extensions\u0026lt;\/option\u0026gt;\n\u0026lt;option\u0026gt;Custom Services \/ OEM\u0026lt;\/option\u0026gt;\n\u0026lt;option\u0026gt;Sample request\u0026lt;\/option\u0026gt;\n\u0026lt;option\u0026gt;Wholesale pricing\u0026lt;\/option\u0026gt;\n\u0026lt;\/select\u0026gt;\n\u0026lt;textarea required name=\"message\" placeholder=\"Message\"\u0026gt;\u0026lt;\/textarea\u0026gt;\n\u0026lt;button class=\"btn\" type=\"submit\"\u0026gt;Send Inquiry\u0026lt;\/button\u0026gt;\n\u0026lt;\/form\u0026gt;\n\u0026lt;div\u0026gt;\n\u0026lt;p\u0026gt;\u0026lt;strong\u0026gt;Email:\u0026lt;\/strong\u0026gt; info@reshynhair.com\u0026lt;\/p\u0026gt;\n\u0026lt;p\u0026gt;\u0026lt;strong\u0026gt;WhatsApp:\u0026lt;\/strong\u0026gt; +86 188 8888 8888\u0026lt;\/p\u0026gt;\n\u0026lt;p\u0026gt;\u0026lt;strong\u0026gt;Contact person:\u0026lt;\/strong\u0026gt; J.\u0026lt;\/p\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;footer\u0026gt;\n\u0026lt;div class=\"container\"\u0026gt;\n\u0026lt;p\u0026gt;\u00a9 2026 Reshyn. All Rights Reserved.\u0026lt;\/p\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;a class=\"whatsapp\" target=\"_blank\" href=\"https:\/\/wa.me\/8618888888888?text=Hello%20Reshyn%2C%20I'm%20interested%20in%20your%20hair%20extensions\"\u0026gt;\u0026lt;i class=\"fab fa-whatsapp\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/a\u0026gt;\n\n\u0026lt;div class=\"modal\" id=\"sampleModal\"\u0026gt;\n\u0026lt;div class=\"modal-content\"\u0026gt;\n\u0026lt;h3\u0026gt;Request Sample\u0026lt;\/h3\u0026gt;\n\u0026lt;form id=\"sampleForm\"\u0026gt;\n\u0026lt;input required name=\"name\" placeholder=\"Name\"\u0026gt;\n\u0026lt;input required type=\"email\" name=\"email\" placeholder=\"Email\"\u0026gt;\n\u0026lt;input name=\"whatsapp\" placeholder=\"WhatsApp\"\u0026gt;\n\u0026lt;input type=\"hidden\" id=\"productName\" name=\"product\"\u0026gt;\n\u0026lt;button class=\"btn\" type=\"submit\"\u0026gt;Submit\u0026lt;\/button\u0026gt;\n\u0026lt;button type=\"button\" class=\"btn btn-outline\" id=\"closeModal\"\u0026gt;Close\u0026lt;\/button\u0026gt;\n\u0026lt;\/form\u0026gt;\n\u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\n\u0026lt;div class=\"toast\" id=\"toast\"\u0026gt;\u0026lt;\/div\u0026gt;\n\n\u0026lt;script\u0026gt;\nconst endpoint=\"https:\/\/formspree.io\/f\/xdkokrwy\";\nconst toast=(m)=\u0026gt;{const t=document.getElementById('toast');t.textContent=m;t.style.display='block';setTimeout(()=\u0026gt;t.style.display='none',3000)};\n\ndocument.querySelector('.menu-btn').onclick=()=\u0026gt;document.querySelector('.nav-links').classList.toggle('show');\n\nasync function submitForm(form,data){\n const res=await fetch(endpoint,{method:'POST',headers:{'Accept':'application\/json'},body:data});\n if(res.ok){toast('Message sent successfully');form.reset();return true;}\n toast('Submission failed');return false;\n}\n\ndocument.getElementById('contactForm').addEventListener('submit',async e=\u0026gt;{\n e.preventDefault();\n await submitForm(e.target,new FormData(e.target));\n});\n\nconst modal=document.getElementById('sampleModal');\ndocument.querySelectorAll('.sample-btn').forEach(btn=\u0026gt;{\n btn.onclick=()=\u0026gt;{\n document.getElementById('productName').value=btn.dataset.product;\n modal.style.display='flex';\n };\n});\ndocument.getElementById('closeModal').onclick=()=\u0026gt;modal.style.display='none';\n\ndocument.getElementById('sampleForm').addEventListener('submit',async e=\u0026gt;{\n e.preventDefault();\n const ok=await submitForm(e.target,new FormData(e.target));\n if(ok) modal.style.display='none';\n});\n\nwindow.onclick=e=\u0026gt;{if(e.target===modal)modal.style.display='none';}\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;'''\npath = \"\/mnt\/data\/Reshyn_Complete_Website.html\"\nPath(path).write_text(html, encoding=\"utf-8\")\nprint(path)","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304132}"}}}],"title":"test 7 - extensions chatgpt","uid":"c190a218-5c87-4e1d-950c-0a870729b355","path":"\/test-7-extensions-chatgpt","autoPath":true,"authorized":true},{"type":"Page","id":"f_d3012638-ea34-4568-ad36-2cb12ebeaeed","sections":[{"type":"Slide","id":"f_a32614c4-ed60-40e0-a3fd-e7a3286f91c2","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_b62b5a04-1d3d-4735-b1ce-747a93bf837c","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_6a42e4db-1fb4-424c-b394-b48653eef7e3","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003eproducts deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_9579aa8e-229f-408a-9924-a9479430bfa4","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_a97ff8ba-4b7a-4951-9b62-10667e88f0e6","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27293451,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;Reshyn | Premium Hair Extensions from China \u2013 Small MOQ, Fast Samples\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Reshyn: Premium hair extensions supplier in Guangzhou. Small MOQ (5pcs), fast samples, virgin hair from Henan \u0026amp; Qingdao. Free sample quote in 24h.\"\u0026gt;\n \u0026lt;meta name=\"keywords\" content=\"hair extensions china, small moq hair, wholesale lace wigs, virgin hair supplier\"\u0026gt;\n \u0026lt;meta name=\"author\" content=\"Reshyn\"\u0026gt;\n \u0026lt;link rel=\"canonical\" href=\"https:\/\/www.reshyn.com\"\u0026gt;\n \u0026lt;!-- Open Graph \/ Social Media --\u0026gt;\n \u0026lt;meta property=\"og:title\" content=\"Reshyn | Premium Hair Extensions from China\"\u0026gt;\n \u0026lt;meta property=\"og:description\" content=\"Small MOQ, fast samples, virgin hair from Henan \u0026amp; Qingdao. Trusted by salons worldwide. Get a free sample quote.\"\u0026gt;\n \u0026lt;meta property=\"og:image\" content=\"https:\/\/images.unsplash.com\/photo-1584652060972-9c0d7646c6e3?w=1200\u0026amp;h=630\u0026amp;fit=crop\"\u0026gt;\n \u0026lt;meta property=\"og:url\" content=\"https:\/\/www.reshyn.com\"\u0026gt;\n \u0026lt;meta property=\"og:type\" content=\"website\"\u0026gt;\n \u0026lt;meta name=\"twitter:card\" content=\"summary_large_image\"\u0026gt;\n \u0026lt;meta name=\"twitter:title\" content=\"Reshyn \u2013 Premium Hair Extensions\"\u0026gt;\n \u0026lt;meta name=\"twitter:description\" content=\"Start with 5 pieces. Free sample consultation. Global shipping from Guangzhou.\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n body {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;\n background: #ffffff;\n color: #111827;\n line-height: 1.5;\n }\n .container {\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n \/* Buttons *\/\n .btn-primary {\n display: inline-block;\n background: #f97316;\n color: white;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n transition: 0.2s;\n box-shadow: 0 4px 12px rgba(249,115,22,0.3);\n }\n .btn-primary:hover {\n background: #ea580c;\n transform: translateY(-2px);\n }\n .btn-secondary {\n display: inline-block;\n background: transparent;\n color: #111827;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n border: 1px solid #d1d5db;\n }\n .btn-secondary:hover {\n border-color: #f97316;\n color: #f97316;\n }\n \/* Navbar *\/\n .navbar {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 20px 0;\n flex-wrap: wrap;\n }\n .logo {\n font-size: 1.8rem;\n font-weight: 800;\n background: linear-gradient(135deg, #f97316, #d97706);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n text-decoration: none;\n }\n .nav-links {\n display: flex;\n gap: 32px;\n align-items: center;\n }\n .nav-links a {\n text-decoration: none;\n color: #374151;\n font-weight: 500;\n }\n .nav-links a:hover { color: #f97316; }\n .nav-cta {\n background: #f97316;\n color: white !important;\n padding: 8px 24px;\n border-radius: 60px;\n }\n .hamburger {\n display: none;\n font-size: 1.8rem;\n cursor: pointer;\n background: none;\n border: none;\n }\n \/* Scarcity bar *\/\n .scarcity-bar {\n background: #ffedd5;\n color: #9a3412;\n text-align: center;\n padding: 10px;\n font-size: 0.9rem;\n font-weight: 500;\n border-bottom: 1px solid #fed7aa;\n }\n \/* Hero *\/\n .hero {\n background: linear-gradient(120deg, #fff9f2 0%, #ffffff 100%);\n padding: 60px 0 80px;\n }\n .hero-grid {\n display: flex;\n align-items: center;\n gap: 48px;\n flex-wrap: wrap;\n }\n .hero-content { flex: 1; }\n .hero-content h1 {\n font-size: 3.5rem;\n font-weight: 800;\n line-height: 1.2;\n letter-spacing: -0.02em;\n }\n .hero-highlight {\n color: #f97316;\n border-bottom: 3px solid #fed7aa;\n }\n .hero-sub {\n font-size: 1.2rem;\n color: #4b5563;\n margin: 24px 0;\n }\n .hero-buttons { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }\n .trust-badge {\n display: flex;\n gap: 24px;\n border-top: 1px solid #e5e7eb;\n padding-top: 24px;\n font-size: 0.9rem;\n flex-wrap: wrap;\n }\n .hero-image { flex: 1; text-align: center; }\n .hero-image img {\n width: 100%;\n max-width: 480px;\n border-radius: 32px;\n box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);\n }\n \/* Pillars *\/\n .pillars { padding: 80px 0; background: white; }\n .section-title { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 48px; }\n .pillars-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(280px,1fr));\n gap: 40px;\n }\n .pillar-card {\n background: #fafafa;\n padding: 32px 24px;\n border-radius: 28px;\n text-align: center;\n transition: 0.2s;\n }\n .pillar-card:hover { transform: translateY(-6px); background: white; box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1); }\n .pillar-icon { font-size: 3rem; margin-bottom: 20px; }\n \/* Products *\/\n .products { background: #fefaf6; padding: 80px 0; }\n .products-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(260px,1fr));\n gap: 32px;\n }\n .product-card {\n background: white;\n border-radius: 24px;\n overflow: hidden;\n box-shadow: 0 6px 14px rgba(0,0,0,0.05);\n transition: 0.2s;\n }\n .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12); }\n .product-card img { width: 100%; height: 260px; object-fit: cover; }\n .product-info { padding: 20px; }\n .price-anchor { text-decoration: line-through; color: #9ca3af; margin-right: 8px; }\n .price-reshyn { color: #f97316; font-weight: 700; }\n .badge {\n display: inline-block;\n background: #fef3c7;\n color: #b45309;\n font-size: 0.7rem;\n padding: 4px 12px;\n border-radius: 40px;\n margin-bottom: 12px;\n }\n .product-btn {\n display: inline-block;\n margin-top: 16px;\n background: #f97316;\n color: white;\n padding: 8px 20px;\n border-radius: 40px;\n text-decoration: none;\n font-size: 0.9rem;\n }\n \/* Social proof *\/\n .social-proof { padding: 80px 0; background: white; }\n .testimonial-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(280px,1fr));\n gap: 32px;\n margin: 40px 0;\n }\n .testimonial-card {\n background: #f9fafb;\n padding: 28px;\n border-radius: 24px;\n border-left: 4px solid #f97316;\n font-style: italic;\n }\n .shipping-ticker {\n background: #1e293b;\n color: white;\n padding: 12px;\n border-radius: 60px;\n margin: 32px 0;\n white-space: nowrap;\n overflow: hidden;\n position: relative;\n }\n .shipping-ticker span {\n display: inline-block;\n animation: ticker 25s linear infinite;\n }\n @keyframes ticker {\n 0% { transform: translateX(100%); }\n 100% { transform: translateX(-100%); }\n }\n \/* Steps *\/\n .steps { padding: 80px 0; background: #fefaf6; }\n .step-container {\n display: flex;\n gap: 30px;\n flex-wrap: wrap;\n justify-content: center;\n }\n .step-item {\n flex: 1;\n background: white;\n padding: 32px 20px;\n border-radius: 32px;\n text-align: center;\n }\n .step-number {\n background: #f97316;\n color: white;\n width: 48px;\n height: 48px;\n line-height: 48px;\n border-radius: 60px;\n display: inline-block;\n font-weight: 800;\n margin-bottom: 20px;\n }\n \/* FAQ *\/\n .faq { padding: 80px 0; background: white; }\n .faq-item {\n border-bottom: 1px solid #e5e7eb;\n padding: 20px 0;\n cursor: pointer;\n }\n .faq-question { font-weight: 700; display: flex; justify-content: space-between; }\n .faq-answer { display: none; padding-top: 12px; color: #4b5563; }\n .faq-answer.show { display: block; }\n \/* Final CTA *\/\n .final-cta {\n background: linear-gradient(135deg, #f97316, #d97706);\n color: white;\n padding: 70px 0;\n text-align: center;\n }\n .final-cta .btn-primary { background: white; color: #f97316; box-shadow: none; }\n \/* Footer *\/\n .footer { background: #111827; color: #9ca3af; padding: 48px 0 24px; }\n .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; }\n .newsletter input { padding: 12px; border-radius: 60px; border: none; width: 220px; margin-right: 8px; }\n \/* Floating elements *\/\n .whatsapp-float {\n position: fixed;\n bottom: 24px;\n right: 24px;\n background: #25D366;\n width: 56px;\n height: 56px;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n text-decoration: none;\n box-shadow: 0 4px 12px rgba(0,0,0,0.2);\n z-index: 100;\n font-size: 28px;\n color: white;\n }\n .popup-notification {\n position: fixed;\n bottom: 100px;\n right: 24px;\n background: white;\n padding: 12px 20px;\n border-radius: 40px;\n box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);\n font-size: 0.85rem;\n border-left: 4px solid #f97316;\n z-index: 99;\n animation: fadeInUp 0.4s;\n display: none;\n }\n @keyframes fadeInUp {\n from { opacity: 0; transform: translateY(20px);}\n to { opacity: 1; transform: translateY(0);}\n }\n \/* Mobile menu *\/\n @media (max-width: 768px) {\n .hero-content h1 { font-size: 2.2rem; }\n .navbar { flex-direction: row; justify-content: space-between; }\n .nav-links {\n display: none;\n flex-direction: column;\n width: 100%;\n gap: 16px;\n background: white;\n padding: 20px 0;\n }\n .nav-links.show {\n display: flex;\n }\n .hamburger {\n display: block;\n }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;!-- Scarcity Banner (Loss Aversion) --\u0026gt;\n\u0026lt;div class=\"scarcity-bar\"\u0026gt;\n \u23f3 Limited offer: Free express shipping on all sample orders \u2013 expires in \u0026lt;span id=\"countdown\"\u0026gt;24:00:00\u0026lt;\/span\u0026gt;\n\u0026lt;\/div\u0026gt;\n\n\u0026lt;!-- Floating WhatsApp --\u0026gt;\n\u0026lt;a href=\"https:\/\/wa.me\/861234567890?text=Hello%20Reshyn%2C%20I%27m%20interested%20in%20samples\" class=\"whatsapp-float\" target=\"_blank\" aria-label=\"Chat on WhatsApp\"\u0026gt;\ud83d\udcac\u0026lt;\/a\u0026gt;\n\n\u0026lt;!-- FOMO Popup --\u0026gt;\n\u0026lt;div id=\"popup\" class=\"popup-notification\"\u0026gt;\n \ud83d\udd25 Someone from \u0026lt;span id=\"city\"\u0026gt;Miami\u0026lt;\/span\u0026gt; just requested a sample for Lace Wig.\n\u0026lt;\/div\u0026gt;\n\n\u0026lt;header class=\"container\"\u0026gt;\n \u0026lt;div class=\"navbar\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;RESHYN\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"hamburger\" id=\"hamburger\" aria-label=\"Menu\"\u0026gt;\u2630\u0026lt;\/button\u0026gt;\n \u0026lt;div class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"nav-cta\"\u0026gt;Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;!-- Hero --\u0026gt;\n\u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"container hero-grid\"\u0026gt;\n \u0026lt;div class=\"hero-content\"\u0026gt;\n \u0026lt;h1\u0026gt;Premium Hair Extensions \u0026lt;span class=\"hero-highlight\"\u0026gt;from China\u0026lt;\/span\u0026gt;\u0026lt;br\u0026gt;Small MOQ. Fast Samples.\u0026lt;\/h1\u0026gt;\n \u0026lt;p class=\"hero-sub\"\u0026gt;Reshyn helps salons \u0026amp; distributors get virgin hair straight from \u0026lt;strong\u0026gt;Henan \u0026amp; Qingdao\u0026lt;\/strong\u0026gt; factories. Start with as few as \u0026lt;strong\u0026gt;5 pieces\u0026lt;\/strong\u0026gt;.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"hero-buttons\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-primary\"\u0026gt;Claim Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-secondary\"\u0026gt;See Products\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"trust-badge\"\u0026gt;\n \u0026lt;span\u0026gt;\u2713 120+ Salons Served\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u2713 48h Sample Dispatch\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u2713 24h Quote Response\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"hero-image\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1584652060972-9c0d7646c6e3?w=600\u0026amp;h=600\u0026amp;fit=crop\" alt=\"High quality lace wig\" loading=\"lazy\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Value Pillars --\u0026gt;\n\u0026lt;section class=\"pillars\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Why Choose Reshyn Over Factories?\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"pillars-grid\"\u0026gt;\n \u0026lt;div class=\"pillar-card\"\u0026gt;\n \u0026lt;div class=\"pillar-icon\"\u0026gt;\ud83c\udfaf\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Zero-Risk Sampling\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Test our quality with free samples (only pay shipping). No MOQ for samples.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"pillar-card\"\u0026gt;\n \u0026lt;div class=\"pillar-icon\"\u0026gt;\u26a1\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Small MOQ, Big Flexibility\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Start from 5pcs\/style. Scale only when you're ready. No forced bulk.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"pillar-card\"\u0026gt;\n \u0026lt;div class=\"pillar-icon\"\u0026gt;\ud83c\udf0f\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Guangzhou Trend Hub\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We track Asian trends \u0026amp; adapt them for Western markets \u2013 keep your salon ahead.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Products with Schema --\u0026gt;\n\u0026lt;section class=\"products\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;\ud83d\udd25 Best Sellers \u2013 Ready to Ship in 48h\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"products-grid\" itemscope itemtype=\"https:\/\/schema.org\/ItemList\"\u0026gt;\n \u0026lt;div class=\"product-card\" itemprop=\"itemListElement\" itemscope itemtype=\"https:\/\/schema.org\/Product\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1584652060972-9c0d7646c6e3?w=400\u0026amp;h=300\u0026amp;fit=crop\" alt=\"Lace front wig\" loading=\"lazy\" itemprop=\"image\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"badge\"\u0026gt;\u2b50 Best Seller\u0026lt;\/span\u0026gt;\n \u0026lt;h3 itemprop=\"name\"\u0026gt;13x4 HD Lace Wig\u0026lt;\/h3\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;span class=\"price-anchor\"\u0026gt;$189\u0026lt;\/span\u0026gt; \u0026lt;span class=\"price-reshyn\" itemprop=\"offers\" itemscope itemtype=\"https:\/\/schema.org\/Offer\"\u0026gt;$142\u0026lt;span itemprop=\"priceCurrency\" content=\"USD\"\u0026gt;\u0026lt;\/span\u0026gt;\u0026lt;span itemprop=\"price\" content=\"142\"\u0026gt;\u0026lt;\/span\u0026gt;\u0026lt;\/span\u0026gt; (MOQ 10pcs)\u0026lt;\/div\u0026gt;\n \u0026lt;a href=\"#\" class=\"product-btn\"\u0026gt;Request Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\" itemprop=\"itemListElement\" itemscope itemtype=\"https:\/\/schema.org\/Product\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1584652060972-9c0d7646c6e3?w=400\u0026amp;h=300\u0026amp;fit=crop\u0026amp;sat=-20\" alt=\"Tape in extensions\" loading=\"lazy\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"badge\"\u0026gt;\ud83d\udce6 Limited stock\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;Tape-in Extensions (1g)\u0026lt;\/h3\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;span class=\"price-anchor\"\u0026gt;$85\u0026lt;\/span\u0026gt; \u0026lt;span class=\"price-reshyn\"\u0026gt;$64\u0026lt;\/span\u0026gt; (set of 20)\u0026lt;\/div\u0026gt;\n \u0026lt;a href=\"#\" class=\"product-btn\"\u0026gt;Request Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1584652060972-9c0d7646c6e3?w=400\u0026amp;h=300\u0026amp;fit=crop\u0026amp;brightness=5\" alt=\"Bulk hair bundles\" loading=\"lazy\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"badge\"\u0026gt;\ud83c\udfc6 Top Quality\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;Virgin Bulk Hair (100g)\u0026lt;\/h3\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;span class=\"price-anchor\"\u0026gt;$130\u0026lt;\/span\u0026gt; \u0026lt;span class=\"price-reshyn\"\u0026gt;$99\u0026lt;\/span\u0026gt; (per bundle)\u0026lt;\/div\u0026gt;\n \u0026lt;a href=\"#\" class=\"product-btn\"\u0026gt;Request Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1584652060972-9c0d7646c6e3?w=400\u0026amp;h=300\u0026amp;fit=crop\u0026amp;grayscale\" alt=\"Weft hair\" loading=\"lazy\"\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"badge\"\u0026gt;\ud83d\udcaf Virgin Remy\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;Machine Weft Hair\u0026lt;\/h3\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;span class=\"price-anchor\"\u0026gt;$150\u0026lt;\/span\u0026gt; \u0026lt;span class=\"price-reshyn\"\u0026gt;$118\u0026lt;\/span\u0026gt; (MOQ 5pcs)\u0026lt;\/div\u0026gt;\n \u0026lt;a href=\"#\" class=\"product-btn\"\u0026gt;Request Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center; margin-top: 48px;\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-secondary\"\u0026gt;Browse all 20+ styles \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Social Proof --\u0026gt;\n\u0026lt;section class=\"social-proof\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Trusted by Salons \u0026amp; Distributors in 15+ Countries\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"shipping-ticker\"\u0026gt;\n \u0026lt;span\u0026gt;\ud83d\ude9a Just shipped to: Los Angeles \u00b7 London \u00b7 Lagos \u00b7 Paris \u00b7 Toronto \u00b7 Sydney \u00b7 Berlin \u00b7 Miami \u00b7 Dubai \u00b7 Melbourne \u00b7 Chicago \u00b7 Amsterdam \u00b7 ... \u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial-grid\"\u0026gt;\n \u0026lt;div class=\"testimonial-card\"\u0026gt;\n \u201cReshyn\u2019s samples arrived in 4 days. The quality exceeded my previous supplier. I\u2019ve reordered 3 times.\u201d\u0026lt;br\u0026gt;\u2014 \u0026lt;strong\u0026gt;Mia S.\u0026lt;\/strong\u0026gt;, Salon owner, Miami\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial-card\"\u0026gt;\n \u201cFinally a supplier who understands small business needs. Small MOQ allowed me to test without risk.\u201d\u0026lt;br\u0026gt;\u2014 \u0026lt;strong\u0026gt;James K.\u0026lt;\/strong\u0026gt;, Distributor, London\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial-card\"\u0026gt;\n \u201cThe HD lace is premium and my clients love it. Their response time is unmatched.\u201d\u0026lt;br\u0026gt;\u2014 \u0026lt;strong\u0026gt;Ngozi A.\u0026lt;\/strong\u0026gt;, Hairstylist, Lagos\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- How It Works --\u0026gt;\n\u0026lt;section class=\"steps\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Get Premium Hair in 3 Simple Steps\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"step-container\"\u0026gt;\n \u0026lt;div class=\"step-item\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;1\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Share your needs\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;WhatsApp or form \u2013 tell us your target market \u0026amp; volume.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-item\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;2\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Free sample consultation\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We recommend 2-3 best matching products. Samples sent within 48h.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-item\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;3\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Scale with confidence\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Approve sample \u2192 30% deposit \u2192 bulk production (15-20 days) \u2192 global shipping.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center; margin-top: 40px;\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-primary\"\u0026gt;Start with a Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- FAQ with Schema --\u0026gt;\n\u0026lt;section class=\"faq\" itemscope itemtype=\"https:\/\/schema.org\/FAQPage\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Any questions? We've got answers.\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"faq-item\" itemprop=\"mainEntity\" itemscope itemtype=\"https:\/\/schema.org\/Question\"\u0026gt;\n \u0026lt;div class=\"faq-question\" itemprop=\"name\"\u0026gt;\u2753 Do you provide free samples? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\"\u0026gt;\u0026lt;span itemprop=\"text\"\u0026gt;Yes, for selected items we offer free samples. You only cover shipping. It's the best way to test our quality risk-free.\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\" itemprop=\"mainEntity\" itemscope itemtype=\"https:\/\/schema.org\/Question\"\u0026gt;\n \u0026lt;div class=\"faq-question\" itemprop=\"name\"\u0026gt;\u2753 What is your minimum order quantity? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\"\u0026gt;\u0026lt;span itemprop=\"text\"\u0026gt;Our standard MOQ is 5 pieces per style for mixed orders. We designed this specifically for salons and small distributors.\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\" itemprop=\"mainEntity\" itemscope itemtype=\"https:\/\/schema.org\/Question\"\u0026gt;\n \u0026lt;div class=\"faq-question\" itemprop=\"name\"\u0026gt;\u2753 How can I verify quality before bulk? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\"\u0026gt;\u0026lt;span itemprop=\"text\"\u0026gt;We can send a live video of your chosen product from our warehouse, or you may hire a third-party inspection service.\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\" itemprop=\"mainEntity\" itemscope itemtype=\"https:\/\/schema.org\/Question\"\u0026gt;\n \u0026lt;div class=\"faq-question\" itemprop=\"name\"\u0026gt;\u2753 What are your shipping times? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\"\u0026gt;\u0026lt;span itemprop=\"text\"\u0026gt;Samples: 3-5 days via DHL\/FedEx. Bulk orders: 15-20 days after deposit, then 5-7 days for shipping.\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align: center; margin-top: 40px;\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-secondary\"\u0026gt;Still have questions? Chat on WhatsApp \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Final CTA --\u0026gt;\n\u0026lt;section class=\"final-cta\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to upgrade your hair supply chain?\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin-bottom: 24px;\"\u0026gt;Get a personalized quote in 24 hours. No obligation.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-primary\"\u0026gt;Claim Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top: 20px; font-size: 0.8rem;\"\u0026gt;\u2714\ufe0f No hidden fees \u2714\ufe0f Cancel anytime\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Footer --\u0026gt;\n\u0026lt;footer class=\"footer\"\u0026gt;\n \u0026lt;div class=\"container footer-grid\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;h3 style=\"color:white;\"\u0026gt;RESHYN\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Premium hair extensions sourcing from Guangzhou. Small MOQ, global delivery.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;About Us\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;Email: contact@reshyn.com\u0026lt;\/p\u0026gt;\u0026lt;p\u0026gt;WhatsApp: +86 123 456 7890\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"newsletter\"\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;\ud83d\udce7 Get 10% off + trend report\u0026lt;\/p\u0026gt;\u0026lt;input type=\"email\" placeholder=\"Your email\" id=\"newsletterEmail\"\u0026gt;\u0026lt;button class=\"btn-primary\" style=\"padding:12px 20px;\" onclick=\"alert('Thanks! Check your inbox for 10% coupon.');\"\u0026gt;Subscribe\u0026lt;\/button\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"container\" style=\"text-align:center; border-top:1px solid #2d3748; padding-top:24px;\"\u0026gt;\u00a9 2026 Reshyn. All rights reserved.\u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;script\u0026gt;\n \/\/ Mobile menu toggle\n const hamburger = document.getElementById('hamburger');\n const navLinks = document.getElementById('navLinks');\n hamburger.addEventListener('click', () =\u0026gt; {\n navLinks.classList.toggle('show');\n });\n\n \/\/ FAQ toggle\n document.querySelectorAll('.faq-question').forEach(q =\u0026gt; {\n q.addEventListener('click', () =\u0026gt; {\n const ans = q.nextElementSibling;\n ans.classList.toggle('show');\n const span = q.querySelector('span');\n if(span) span.innerText = ans.classList.contains('show') ? '\u2212' : '+';\n });\n });\n\n \/\/ Dynamic popup (FOMO)\n const cities = ['Miami', 'London', 'Lagos', 'Toronto', 'Sydney', 'Berlin', 'Dubai', 'Paris', 'Melbourne'];\n const popup = document.getElementById('popup');\n setInterval(() =\u0026gt; {\n const randomCity = cities[Math.floor(Math.random() * cities.length)];\n document.getElementById('city').innerText = randomCity;\n popup.style.display = 'block';\n setTimeout(() =\u0026gt; { popup.style.display = 'none'; }, 4000);\n }, 14000);\n\n \/\/ Countdown timer for scarcity bar (24h)\n function startCountdown(durationSeconds, displayElement) {\n let timer = durationSeconds, hours, minutes, seconds;\n const interval = setInterval(() =\u0026gt; {\n hours = Math.floor(timer \/ 3600);\n minutes = Math.floor((timer % 3600) \/ 60);\n seconds = timer % 60;\n displayElement.textContent = `${hours.toString().padStart(2,'0')}:${minutes.toString().padStart(2,'0')}:${seconds.toString().padStart(2,'0')}`;\n if (--timer \u0026lt; 0) {\n clearInterval(interval);\n displayElement.textContent = \"00:00:00 (expired)\";\n }\n }, 1000);\n }\n const countdownElement = document.getElementById('countdown');\n if(countdownElement) startCountdown(24*3600, countdownElement);\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304149}"}}}],"title":"test 8* - products deepseek","uid":"a11953a6-9a2e-491c-9a3f-0fcdff08044e","path":"\/test-8-products-deepseek","autoPath":true,"authorized":true},{"type":"Page","id":"f_dc7efbb5-f6b9-48c3-aa14-990107d499cd","sections":[{"type":"Slide","id":"f_1e2daf32-71fb-429f-8605-58c5a0390c7b","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_5d7849fd-c80a-468f-979b-f3466a54a4ef","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_3019afd5-3e7c-4dfd-b6be-8f48aad047ab","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp\u003ehow it works deepseek\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_022b91b0-531a-4815-a52a-263e8eb63416","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_651f9211-0456-44a0-b795-e05736d9998b","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27293666,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;How It Works \u2013 Reshyn\u2019s Simple 6\u2011Step Process for Hair Extensions Sourcing\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"From inquiry to delivery in 4 weeks. Free samples, weekly video updates, and quality guarantee. See how Reshyn helps salons and distributors source premium hair from China.\"\u0026gt;\n \u0026lt;meta name=\"keywords\" content=\"hair extensions sourcing process, how to order from china, small moq hair extensions supplier, reshy process\"\u0026gt;\n \u0026lt;link rel=\"canonical\" href=\"https:\/\/www.reshyn.com\/how-it-works\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n body {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;\n background: #ffffff;\n color: #111827;\n line-height: 1.5;\n }\n .container {\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n \/* Buttons *\/\n .btn-primary {\n display: inline-block;\n background: #f97316;\n color: white;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n transition: 0.2s;\n box-shadow: 0 4px 12px rgba(249,115,22,0.3);\n }\n .btn-primary:hover {\n background: #ea580c;\n transform: translateY(-2px);\n }\n .btn-secondary {\n display: inline-block;\n background: transparent;\n color: #111827;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n border: 1px solid #d1d5db;\n }\n .btn-secondary:hover {\n border-color: #f97316;\n color: #f97316;\n }\n \/* Navbar (simple, consistent with homepage) *\/\n .navbar {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 20px 0;\n flex-wrap: wrap;\n border-bottom: 1px solid #f0f0f0;\n }\n .logo {\n font-size: 1.8rem;\n font-weight: 800;\n background: linear-gradient(135deg, #f97316, #d97706);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n text-decoration: none;\n }\n .nav-links {\n display: flex;\n gap: 32px;\n align-items: center;\n }\n .nav-links a {\n text-decoration: none;\n color: #374151;\n font-weight: 500;\n }\n .nav-links a:hover { color: #f97316; }\n .nav-cta {\n background: #f97316;\n color: white !important;\n padding: 8px 24px;\n border-radius: 60px;\n }\n \/* Hero *\/\n .hero {\n background: linear-gradient(120deg, #fff9f2 0%, #ffffff 100%);\n padding: 60px 0 80px;\n text-align: center;\n }\n .hero h1 {\n font-size: 3rem;\n font-weight: 800;\n margin-bottom: 20px;\n }\n .hero .highlight {\n color: #f97316;\n }\n .hero p {\n font-size: 1.2rem;\n color: #4b5563;\n max-width: 700px;\n margin: 0 auto 32px;\n }\n \/* Steps section (vertical timeline) *\/\n .steps-section {\n padding: 80px 0;\n background: white;\n }\n .section-title {\n text-align: center;\n font-size: 2rem;\n font-weight: 700;\n margin-bottom: 48px;\n }\n .timeline {\n position: relative;\n max-width: 1000px;\n margin: 0 auto;\n }\n .timeline::before {\n content: '';\n position: absolute;\n left: 30px;\n top: 0;\n bottom: 0;\n width: 3px;\n background: #f97316;\n opacity: 0.3;\n }\n .step-item {\n position: relative;\n padding-left: 80px;\n margin-bottom: 60px;\n }\n .step-number {\n position: absolute;\n left: 0;\n top: 0;\n width: 60px;\n height: 60px;\n background: #f97316;\n color: white;\n font-size: 1.6rem;\n font-weight: 800;\n border-radius: 60px;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 6px 12px rgba(249,115,22,0.2);\n }\n .step-card {\n background: #fafafa;\n border-radius: 28px;\n padding: 24px 32px;\n transition: 0.2s;\n }\n .step-card:hover {\n background: white;\n box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);\n }\n .step-title {\n font-size: 1.6rem;\n font-weight: 700;\n margin-bottom: 12px;\n }\n .step-desc {\n color: #4b5563;\n margin-bottom: 16px;\n }\n .step-meta {\n display: flex;\n flex-wrap: wrap;\n gap: 24px;\n font-size: 0.9rem;\n margin-top: 16px;\n padding-top: 16px;\n border-top: 1px solid #e5e7eb;\n }\n .meta-time, .meta-deliverable {\n display: flex;\n align-items: center;\n gap: 8px;\n }\n .guarantee-tag {\n display: inline-block;\n background: #fef3c7;\n color: #b45309;\n font-size: 0.8rem;\n padding: 4px 12px;\n border-radius: 40px;\n margin-top: 12px;\n }\n \/* Horizontal timeline (visual) *\/\n .visual-timeline {\n background: #fefaf6;\n padding: 60px 0;\n text-align: center;\n }\n .timeline-bar {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n gap: 20px;\n max-width: 900px;\n margin: 30px auto 0;\n background: white;\n border-radius: 60px;\n padding: 20px 30px;\n box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n }\n .timeline-node {\n text-align: center;\n flex: 1;\n min-width: 80px;\n }\n .timeline-node .day {\n font-weight: 800;\n color: #f97316;\n }\n \/* Guarantee cards *\/\n .guarantees {\n padding: 80px 0;\n background: white;\n }\n .guarantee-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));\n gap: 32px;\n margin-top: 40px;\n }\n .guarantee-card {\n background: #f9fafb;\n padding: 28px;\n border-radius: 24px;\n text-align: center;\n transition: 0.2s;\n }\n .guarantee-card:hover {\n transform: translateY(-5px);\n background: white;\n box-shadow: 0 10px 20px rgba(0,0,0,0.05);\n }\n .guarantee-icon {\n font-size: 2.5rem;\n margin-bottom: 16px;\n }\n \/* FAQ *\/\n .faq-section {\n padding: 80px 0;\n background: #fefaf6;\n }\n .faq-item {\n background: white;\n border-radius: 20px;\n margin-bottom: 16px;\n padding: 20px 28px;\n cursor: pointer;\n transition: 0.2s;\n }\n .faq-question {\n font-weight: 700;\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n .faq-answer {\n display: none;\n padding-top: 16px;\n color: #4b5563;\n border-top: 1px solid #e5e7eb;\n margin-top: 16px;\n }\n .faq-answer.show {\n display: block;\n }\n \/* Case studies timeline *\/\n .case-studies {\n padding: 80px 0;\n background: white;\n }\n .case-grid {\n display: flex;\n flex-direction: column;\n gap: 40px;\n max-width: 800px;\n margin: 40px auto 0;\n }\n .case-card {\n background: #f9fafb;\n border-radius: 28px;\n padding: 28px;\n border-left: 6px solid #f97316;\n }\n .case-title {\n font-weight: 800;\n font-size: 1.3rem;\n margin-bottom: 16px;\n }\n .case-timeline {\n display: flex;\n flex-wrap: wrap;\n gap: 16px;\n margin: 16px 0;\n font-size: 0.9rem;\n color: #4b5563;\n }\n .case-result {\n font-style: italic;\n margin-top: 16px;\n padding-top: 12px;\n border-top: 1px solid #e5e7eb;\n }\n \/* Final CTA *\/\n .final-cta {\n background: linear-gradient(135deg, #f97316, #d97706);\n color: white;\n padding: 70px 0;\n text-align: center;\n }\n .final-cta .btn-primary {\n background: white;\n color: #f97316;\n box-shadow: none;\n }\n \/* Footer *\/\n .footer {\n background: #111827;\n color: #9ca3af;\n padding: 48px 0 24px;\n }\n .footer-grid {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n gap: 40px;\n margin-bottom: 40px;\n }\n \/* Responsive *\/\n @media (max-width: 768px) {\n .timeline::before { left: 20px; }\n .step-item { padding-left: 60px; }\n .step-number { width: 45px; height: 45px; font-size: 1.2rem; }\n .step-title { font-size: 1.3rem; }\n .navbar { flex-direction: column; gap: 16px; }\n .nav-links { flex-wrap: wrap; justify-content: center; gap: 20px; }\n .timeline-bar { flex-direction: column; align-items: flex-start; }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;header class=\"container\"\u0026gt;\n \u0026lt;div class=\"navbar\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;RESHYN\u0026lt;\/a\u0026gt;\n \u0026lt;div class=\"nav-links\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"nav-cta\"\u0026gt;Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;!-- Hero --\u0026gt;\n\u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h1\u0026gt;How \u0026lt;span class=\"highlight\"\u0026gt;Reshyn\u0026lt;\/span\u0026gt; Works\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;From inquiry to your doorstep in \u0026lt;strong\u0026gt;4 weeks or less\u0026lt;\/strong\u0026gt;. A transparent, step\u2011by\u2011step partnership designed for salons and distributors who value quality and reliability.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-primary\"\u0026gt;Start Your First Step \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Detailed 6-step timeline --\u0026gt;\n\u0026lt;section class=\"steps-section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Your 6\u2011Step Journey with Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"timeline\" itemscope itemtype=\"https:\/\/schema.org\/HowTo\"\u0026gt;\n \u0026lt;div class=\"step-item\" itemprop=\"step\" itemscope itemtype=\"https:\/\/schema.org\/HowToStep\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;1\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-card\"\u0026gt;\n \u0026lt;div class=\"step-title\" itemprop=\"name\"\u0026gt;Inquiry \u0026amp; Needs Analysis\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-desc\" itemprop=\"text\"\u0026gt;Tell us your product type, target market, volume expectations, and special requirements via WhatsApp, form, or email. We\u2019ll respond within 24 hours to confirm your needs.\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-meta\"\u0026gt;\n \u0026lt;span class=\"meta-time\"\u0026gt;\u23f1\ufe0f \u0026lt;strong\u0026gt;1 day\u0026lt;\/strong\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"meta-deliverable\"\u0026gt;\ud83d\udcc4 Deliverable: Needs confirmation checklist\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-tag\"\u0026gt;\u2713 24h response guaranteed\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-item\" itemprop=\"step\" itemscope itemtype=\"https:\/\/schema.org\/HowToStep\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;2\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-card\"\u0026gt;\n \u0026lt;div class=\"step-title\" itemprop=\"name\"\u0026gt;Sample Recommendation\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-desc\" itemprop=\"text\"\u0026gt;Based on your market (US\/Europe\/Africa) and budget, we recommend 2-3 best\u2011matching products. You\u2019ll receive a detailed comparison table (material, price, MOQ, lead time).\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-meta\"\u0026gt;\n \u0026lt;span class=\"meta-time\"\u0026gt;\u23f1\ufe0f \u0026lt;strong\u0026gt;1 day\u0026lt;\/strong\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"meta-deliverable\"\u0026gt;\ud83d\udcc4 Deliverable: Product comparison + quote\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-tag\"\u0026gt;\u2713 Free consultation\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-item\" itemprop=\"step\" itemscope itemtype=\"https:\/\/schema.org\/HowToStep\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;3\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-card\"\u0026gt;\n \u0026lt;div class=\"step-title\" itemprop=\"name\"\u0026gt;Sample Order \u0026amp; Delivery\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-desc\" itemprop=\"text\"\u0026gt;Choose your favorite sample (free samples available, only pay shipping). We dispatch within 48 hours via DHL\/FedEx and share tracking. You\u2019ll receive the sample in 3\u20115 days.\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-meta\"\u0026gt;\n \u0026lt;span class=\"meta-time\"\u0026gt;\u23f1\ufe0f \u0026lt;strong\u0026gt;2 days prep + 3\u20115 days shipping\u0026lt;\/strong\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"meta-deliverable\"\u0026gt;\ud83d\udce6 Deliverable: Sample package + tracking\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-tag\"\u0026gt;\u2713 48h dispatch\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-item\" itemprop=\"step\" itemscope itemtype=\"https:\/\/schema.org\/HowToStep\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;4\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-card\"\u0026gt;\n \u0026lt;div class=\"step-title\" itemprop=\"name\"\u0026gt;Quality Approval \u0026amp; Bulk Order\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-desc\" itemprop=\"text\"\u0026gt;Test the sample. Need adjustments? We offer one free revision (color, length, packaging). Once satisfied, sign the Proforma Invoice and pay 30% deposit.\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-meta\"\u0026gt;\n \u0026lt;span class=\"meta-time\"\u0026gt;\u23f1\ufe0f \u0026lt;strong\u0026gt;1\u20113 days\u0026lt;\/strong\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"meta-deliverable\"\u0026gt;\ud83d\udcc4 Deliverable: PI + deposit confirmation\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-tag\"\u0026gt;\u2713 One free revision\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-item\" itemprop=\"step\" itemscope itemtype=\"https:\/\/schema.org\/HowToStep\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;5\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-card\"\u0026gt;\n \u0026lt;div class=\"step-title\" itemprop=\"name\"\u0026gt;Production \u0026amp; Quality Control\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-desc\" itemprop=\"text\"\u0026gt;Production takes 15\u201120 days (depending on quantity). We send weekly production photos\/videos. Before shipping, you can hire a third\u2011party inspection (SGS, etc.) \u2013 we\u2019ll arrange it.\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-meta\"\u0026gt;\n \u0026lt;span class=\"meta-time\"\u0026gt;\u23f1\ufe0f \u0026lt;strong\u0026gt;15\u201120 days\u0026lt;\/strong\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"meta-deliverable\"\u0026gt;\ud83c\udfa5 Deliverable: Weekly progress media + inspection report (optional)\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-tag\"\u0026gt;\u2713 Video update every week\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-item\" itemprop=\"step\" itemscope itemtype=\"https:\/\/schema.org\/HowToStep\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;6\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-card\"\u0026gt;\n \u0026lt;div class=\"step-title\" itemprop=\"name\"\u0026gt;Shipping \u0026amp; After\u2011Sales\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-desc\" itemprop=\"text\"\u0026gt;Pay the 70% balance, then we ship by air or sea. You\u2019ll receive all shipping documents (bill of lading, commercial invoice, packing list). If any quality issue arrives, contact us within 7 days \u2013 we handle returns\/replacements.\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step-meta\"\u0026gt;\n \u0026lt;span class=\"meta-time\"\u0026gt;\u23f1\ufe0f \u0026lt;strong\u0026gt;1 day after balance + 7\u201125 days shipping\u0026lt;\/strong\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"meta-deliverable\"\u0026gt;\ud83d\udcd1 Deliverable: Full set of shipping documents\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-tag\"\u0026gt;\u2713 7\u2011day quality guarantee\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Visual timeline (horizontal summary) --\u0026gt;\n\u0026lt;section class=\"visual-timeline\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Total timeline: ~4 weeks\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"timeline-bar\"\u0026gt;\n \u0026lt;div class=\"timeline-node\"\u0026gt;\u0026lt;span class=\"day\"\u0026gt;Day 1-2\u0026lt;\/span\u0026gt;\u0026lt;br\u0026gt;Inquiry \u2192 Sample rec.\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"timeline-node\"\u0026gt;\u27a1\ufe0f\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"timeline-node\"\u0026gt;\u0026lt;span class=\"day\"\u0026gt;Day 3-8\u0026lt;\/span\u0026gt;\u0026lt;br\u0026gt;Sample delivered\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"timeline-node\"\u0026gt;\u27a1\ufe0f\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"timeline-node\"\u0026gt;\u0026lt;span class=\"day\"\u0026gt;Day 9-28\u0026lt;\/span\u0026gt;\u0026lt;br\u0026gt;Production \u0026amp; QC\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"timeline-node\"\u0026gt;\u27a1\ufe0f\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"timeline-node\"\u0026gt;\u0026lt;span class=\"day\"\u0026gt;Day 29-35\u0026lt;\/span\u0026gt;\u0026lt;br\u0026gt;Shipping arrival\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Guarantee cards (loss aversion + reciprocity) --\u0026gt;\n\u0026lt;section class=\"guarantees\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Your peace of mind, guaranteed\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"guarantee-grid\"\u0026gt;\n \u0026lt;div class=\"guarantee-card\"\u0026gt;\n \u0026lt;div class=\"guarantee-icon\"\u0026gt;\ud83c\udfaf\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Zero\u2011risk sample\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Free samples (only pay shipping). If you don't like it, we'll recommend another style at no extra cost.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-card\"\u0026gt;\n \u0026lt;div class=\"guarantee-icon\"\u0026gt;\ud83d\udd0d\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Quality assurance\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Pre\u2011production material photos + optional third\u2011party inspection (SGS). We cover any quality defects.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-card\"\u0026gt;\n \u0026lt;div class=\"guarantee-icon\"\u0026gt;\ud83d\udcac\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;24\/7 real person support\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;One dedicated contact via WhatsApp or WeChat. Reply within 12 hours guaranteed.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"guarantee-card\"\u0026gt;\n \u0026lt;div class=\"guarantee-icon\"\u0026gt;\u23f0\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;On\u2011time delivery\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;If we delay more than 7 days, we compensate 2% of order value per week.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- FAQ (process related) --\u0026gt;\n\u0026lt;section class=\"faq-section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Common questions about our process\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Can I mix different products in one sample order? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Yes, you can select up to 5 different styles in one sample order. We\u2019ll combine shipping to save you cost.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 What if the sample quality doesn\u2019t meet my expectation? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;We\u2019ll either refund your sample fee (excluding shipping) or send another sample for free. Your satisfaction is our priority.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Do you offer DDP (Delivered Duty Paid) shipping? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Yes, for certain countries we can handle customs clearance. Contact us to check your location.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Can I visit your Guangzhou office or the factories? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Absolutely. We welcome clients to visit our sourcing office and partner factories in Henan\/Qingdao by appointment.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Real case studies timeline --\u0026gt;\n\u0026lt;section class=\"case-studies\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Real results from real clients\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"case-grid\"\u0026gt;\n \u0026lt;div class=\"case-card\"\u0026gt;\n \u0026lt;div class=\"case-title\"\u0026gt;\ud83d\udccc Mia\u2019s Salon \u2013 Miami, USA\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"case-timeline\"\u0026gt;\n \u0026lt;span\u0026gt;\ud83d\udcc5 Day 1: Inquiry for lace wigs\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 2: Sample recommendation (3 styles)\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 5: Samples arrived\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 8: Bulk order placed (100 pcs)\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 28: Production completed, video approval\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 35: Arrived in Miami\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"case-result\"\u0026gt;\u201cQuality better than my local supplier. Saved 30% cost. Already reordered twice.\u201d \u2013 Mia S.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"case-card\"\u0026gt;\n \u0026lt;div class=\"case-title\"\u0026gt;\ud83d\udccc James K. \u2013 Distributor, London\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"case-timeline\"\u0026gt;\n \u0026lt;span\u0026gt;\ud83d\udcc5 Day 1: Inquiry for tape\u2011ins \u0026amp; bulk hair\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 2: Quote \u0026amp; sample recommendation\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 6: Samples received\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 9: Bulk order (500 pcs mixed)\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 29: Production finished, third\u2011party inspection passed\u0026lt;\/span\u0026gt; \u2022\n \u0026lt;span\u0026gt;Day 37: Landed in London\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"case-result\"\u0026gt;\u201cThe small MOQ allowed me to test new SKUs without risk. Very responsive team.\u201d \u2013 James K.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Final CTA --\u0026gt;\n\u0026lt;section class=\"final-cta\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to experience a hassle\u2011free supply chain?\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin-bottom: 24px;\"\u0026gt;Get your free sample consultation today \u2013 no obligation.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-primary\"\u0026gt;Request Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top: 20px; font-size: 0.8rem;\"\u0026gt;\u2714\ufe0f No hidden fees \u2714\ufe0f Cancel anytime\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Footer --\u0026gt;\n\u0026lt;footer class=\"footer\"\u0026gt;\n \u0026lt;div class=\"container footer-grid\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;h3 style=\"color:white;\"\u0026gt;RESHYN\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Premium hair extensions sourcing from Guangzhou. Small MOQ, global delivery.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;About Us\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;Email: contact@reshyn.com\u0026lt;\/p\u0026gt;\u0026lt;p\u0026gt;WhatsApp: +86 123 456 7890\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;\ud83d\udce7 Get 10% off + trend report\u0026lt;\/p\u0026gt;\u0026lt;input type=\"email\" placeholder=\"Your email\" style=\"padding:10px;border-radius:40px;border:none;\"\u0026gt;\u0026lt;button class=\"btn-primary\" style=\"padding:10px 20px; margin-top:8px;\"\u0026gt;Subscribe\u0026lt;\/button\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"container\" style=\"text-align:center; border-top:1px solid #2d3748; padding-top:24px;\"\u0026gt;\u00a9 2026 Reshyn. All rights reserved.\u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;script\u0026gt;\n \/\/ FAQ toggle\n document.querySelectorAll('.faq-item').forEach(item =\u0026gt; {\n const question = item.querySelector('.faq-question');\n const answer = item.querySelector('.faq-answer');\n question.addEventListener('click', () =\u0026gt; {\n answer.classList.toggle('show');\n const span = question.querySelector('span');\n if (span) span.innerText = answer.classList.contains('show') ? '\u2212' : '+';\n });\n });\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304155}"}}}],"title":"test - how it works deepseek","uid":"e35c5dfc-8b4d-49ee-b56c-835f5de43b43","path":"\/test-how-it-works-deepseek","autoPath":true,"authorized":true},{"type":"Page","id":"f_8446ad6b-5a59-4d6c-be1d-a0ef02818db4","sections":[{"type":"Slide","id":"f_e4e78880-8366-4414-9602-52b6c4a946fc","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_a878ff84-ab75-4fb8-904c-34b641bf7e1a","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_56018ae5-5eaf-45ba-b7fc-634f5ee415db","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003eabout us deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_fba12c1f-6872-484d-95cf-95f308dea8eb","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_5f0a8c01-a0a9-471b-8644-3f0e7355e52b","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27293762,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;About Reshyn \u2013 Your Trusted Hair Extensions Sourcing Partner from Guangzhou\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Reshyn bridges overseas salons and distributors with China's best hair factories (Henan \u0026amp; Qingdao). Small MOQ, strict quality control, and a real team behind the screen. Learn why 120+ clients trust us.\"\u0026gt;\n \u0026lt;meta name=\"keywords\" content=\"hair extensions supplier guangzhou, about reshy, hair sourcing company china, reshy team\"\u0026gt;\n \u0026lt;link rel=\"canonical\" href=\"https:\/\/www.reshyn.com\/about\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n body {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;\n background: #ffffff;\n color: #111827;\n line-height: 1.5;\n }\n .container {\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n \/* Buttons *\/\n .btn-primary {\n display: inline-block;\n background: #f97316;\n color: white;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n transition: 0.2s;\n box-shadow: 0 4px 12px rgba(249,115,22,0.3);\n }\n .btn-primary:hover {\n background: #ea580c;\n transform: translateY(-2px);\n }\n .btn-secondary {\n display: inline-block;\n background: transparent;\n color: #111827;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n border: 1px solid #d1d5db;\n }\n .btn-secondary:hover {\n border-color: #f97316;\n color: #f97316;\n }\n \/* Navbar (consistent) *\/\n .navbar {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 20px 0;\n flex-wrap: wrap;\n border-bottom: 1px solid #f0f0f0;\n }\n .logo {\n font-size: 1.8rem;\n font-weight: 800;\n background: linear-gradient(135deg, #f97316, #d97706);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n text-decoration: none;\n }\n .nav-links {\n display: flex;\n gap: 32px;\n align-items: center;\n }\n .nav-links a {\n text-decoration: none;\n color: #374151;\n font-weight: 500;\n }\n .nav-links a:hover { color: #f97316; }\n .nav-cta {\n background: #f97316;\n color: white !important;\n padding: 8px 24px;\n border-radius: 60px;\n }\n \/* Hero *\/\n .hero {\n background: linear-gradient(120deg, #fff9f2 0%, #ffffff 100%);\n padding: 60px 0 80px;\n text-align: center;\n }\n .hero h1 {\n font-size: 3rem;\n font-weight: 800;\n margin-bottom: 20px;\n }\n .hero .highlight {\n color: #f97316;\n }\n .hero p {\n font-size: 1.2rem;\n color: #4b5563;\n max-width: 800px;\n margin: 0 auto;\n }\n \/* Story + mission *\/\n .story {\n padding: 80px 0;\n background: white;\n }\n .story-grid {\n display: flex;\n gap: 48px;\n align-items: center;\n flex-wrap: wrap;\n }\n .story-text {\n flex: 1;\n }\n .story-text h2 {\n font-size: 2rem;\n margin-bottom: 24px;\n }\n .story-text p {\n margin-bottom: 20px;\n color: #4b5563;\n }\n .story-image {\n flex: 1;\n text-align: center;\n }\n .story-image img {\n width: 100%;\n max-width: 450px;\n border-radius: 28px;\n box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);\n }\n \/* Stats \/ Trust indicators *\/\n .stats {\n background: #fefaf6;\n padding: 60px 0;\n text-align: center;\n }\n .stats-grid {\n display: flex;\n justify-content: center;\n gap: 60px;\n flex-wrap: wrap;\n }\n .stat-item {\n text-align: center;\n }\n .stat-number {\n font-size: 2.5rem;\n font-weight: 800;\n color: #f97316;\n }\n \/* Core values \/ Advantages *\/\n .advantages {\n padding: 80px 0;\n background: white;\n }\n .section-title {\n text-align: center;\n font-size: 2rem;\n font-weight: 700;\n margin-bottom: 48px;\n }\n .advantages-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n gap: 40px;\n }\n .advantage-card {\n background: #fafafa;\n padding: 28px;\n border-radius: 28px;\n text-align: center;\n transition: 0.2s;\n }\n .advantage-card:hover {\n transform: translateY(-6px);\n background: white;\n box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);\n }\n .advantage-icon {\n font-size: 2.5rem;\n margin-bottom: 20px;\n }\n \/* Quality control flowchart (simple visual) *\/\n .quality {\n background: #fefaf6;\n padding: 80px 0;\n }\n .flow-steps {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n gap: 20px;\n margin-top: 40px;\n }\n .flow-step {\n flex: 1;\n background: white;\n padding: 24px;\n border-radius: 20px;\n text-align: center;\n min-width: 150px;\n }\n .flow-step .step-number {\n background: #f97316;\n color: white;\n width: 40px;\n height: 40px;\n line-height: 40px;\n border-radius: 40px;\n display: inline-block;\n margin-bottom: 16px;\n font-weight: 800;\n }\n \/* Team section (authenticity) *\/\n .team {\n padding: 80px 0;\n background: white;\n }\n .team-grid {\n display: flex;\n justify-content: center;\n gap: 48px;\n flex-wrap: wrap;\n margin-top: 40px;\n }\n .team-member {\n text-align: center;\n max-width: 250px;\n }\n .team-member img {\n width: 180px;\n height: 180px;\n object-fit: cover;\n border-radius: 50%;\n box-shadow: 0 10px 20px rgba(0,0,0,0.1);\n }\n .team-name {\n font-size: 1.3rem;\n font-weight: 700;\n margin-top: 20px;\n }\n .team-role {\n color: #f97316;\n font-weight: 500;\n }\n \/* Global footprint *\/\n .global {\n background: #fefaf6;\n padding: 80px 0;\n text-align: center;\n }\n .country-list {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n gap: 20px;\n margin: 40px 0;\n }\n .country-badge {\n background: white;\n padding: 8px 24px;\n border-radius: 60px;\n font-weight: 500;\n box-shadow: 0 2px 6px rgba(0,0,0,0.05);\n }\n \/* CTA *\/\n .final-cta {\n background: linear-gradient(135deg, #f97316, #d97706);\n color: white;\n padding: 70px 0;\n text-align: center;\n }\n .final-cta .btn-primary {\n background: white;\n color: #f97316;\n box-shadow: none;\n }\n \/* Footer *\/\n .footer {\n background: #111827;\n color: #9ca3af;\n padding: 48px 0 24px;\n }\n .footer-grid {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n gap: 40px;\n margin-bottom: 40px;\n }\n @media (max-width: 768px) {\n .hero h1 { font-size: 2.2rem; }\n .navbar { flex-direction: column; gap: 16px; }\n .nav-links { flex-wrap: wrap; justify-content: center; gap: 20px; }\n .stats-grid { gap: 30px; }\n .flow-steps { flex-direction: column; }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;header class=\"container\"\u0026gt;\n \u0026lt;div class=\"navbar\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;RESHYN\u0026lt;\/a\u0026gt;\n \u0026lt;div class=\"nav-links\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"nav-cta\"\u0026gt;Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;!-- Hero --\u0026gt;\n\u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h1\u0026gt;More than a supplier \u2014 \u0026lt;span class=\"highlight\"\u0026gt;your sourcing partner\u0026lt;\/span\u0026gt;\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;We\u2019re a Guangzhou\u2011based team that connects salons and distributors worldwide with premium hair from China\u2019s best factories. No jargon, no hidden fees \u2013 just honest quality and real support.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Story + mission --\u0026gt;\n\u0026lt;section class=\"story\"\u0026gt;\n \u0026lt;div class=\"container story-grid\"\u0026gt;\n \u0026lt;div class=\"story-text\"\u0026gt;\n \u0026lt;h2\u0026gt;Why Reshyn was born\u0026lt;\/h2\u0026gt;\n \u0026lt;p\u0026gt;After years of seeing overseas buyers struggle with high MOQs, slow replies, and inconsistent quality from Chinese factories, we decided to build a better way. Reshyn started as a small sourcing desk in Guangzhou \u2013 now we\u2019re a trusted name for 120+ salons and distributors across three continents.\u0026lt;\/p\u0026gt;\n \u0026lt;p\u0026gt;We don't own factories. Instead, we partner with the best manufacturers in Henan (the world\u2019s hair capital) and Qingdao. This allows us to cherry\u2011pick quality, negotiate small batches, and offer real flexibility \u2013 without you having to deal with language barriers or logistics nightmares.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-primary\" style=\"margin-top: 16px;\"\u0026gt;Partner with us \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"story-image\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1581091226033-d5c48150dbaa?w=600\u0026amp;h=450\u0026amp;fit=crop\" alt=\"Reshyn team in Guangzhou office\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Trust stats --\u0026gt;\n\u0026lt;section class=\"stats\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"stats-grid\"\u0026gt;\n \u0026lt;div class=\"stat-item\"\u0026gt;\u0026lt;div class=\"stat-number\"\u0026gt;120+\u0026lt;\/div\u0026gt;\u0026lt;div\u0026gt;Salons \u0026amp; distributors served\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-item\"\u0026gt;\u0026lt;div class=\"stat-number\"\u0026gt;15+\u0026lt;\/div\u0026gt;\u0026lt;div\u0026gt;Countries shipped to\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-item\"\u0026gt;\u0026lt;div class=\"stat-number\"\u0026gt;100%\u0026lt;\/div\u0026gt;\u0026lt;div\u0026gt;Quality inspection before shipping\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-item\"\u0026gt;\u0026lt;div class=\"stat-number\"\u0026gt;24h\u0026lt;\/div\u0026gt;\u0026lt;div\u0026gt;Average response time\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Core advantages --\u0026gt;\n\u0026lt;section class=\"advantages\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;What makes Reshyn different\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"advantages-grid\"\u0026gt;\n \u0026lt;div class=\"advantage-card\"\u0026gt;\n \u0026lt;div class=\"advantage-icon\"\u0026gt;\ud83d\udccd\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Guangzhou + Henan \u0026amp; Qingdao\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We\u2019re based in Guangzhou (trend hub) and work directly with factories in Henan \u0026amp; Qingdao \u2013 the world\u2019s hair extension production centers.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"advantage-card\"\u0026gt;\n \u0026lt;div class=\"advantage-icon\"\u0026gt;\ud83d\udce6\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;True small MOQ\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Start with 5 pieces per style. No forced bulk. You test, then scale.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"advantage-card\"\u0026gt;\n \u0026lt;div class=\"advantage-icon\"\u0026gt;\ud83d\udd2c\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Rigorous quality control\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Every batch is visually inspected and stress\u2011tested. We reject anything below 8A grade.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"advantage-card\"\u0026gt;\n \u0026lt;div class=\"advantage-icon\"\u0026gt;\ud83d\udcac\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;One\u2011point contact\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;From sample to delivery, one person handles everything. No \u201ctransfer to another department\u201d.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Quality control process --\u0026gt;\n\u0026lt;section class=\"quality\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Our quality assurance process\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"flow-steps\"\u0026gt;\n \u0026lt;div class=\"flow-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;1\u0026lt;\/div\u0026gt;\u0026lt;strong\u0026gt;Raw material check\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;100% virgin hair verified\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"flow-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;2\u0026lt;\/div\u0026gt;\u0026lt;strong\u0026gt;Production samples\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Photos \u0026amp; videos shared\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"flow-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;3\u0026lt;\/div\u0026gt;\u0026lt;strong\u0026gt;In\u2011line inspection\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Random check during manufacturing\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"flow-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;4\u0026lt;\/div\u0026gt;\u0026lt;strong\u0026gt;Final QC\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Before packing, we test 5% of each lot\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"flow-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;5\u0026lt;\/div\u0026gt;\u0026lt;strong\u0026gt;Third\u2011party option\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;SGS inspection upon request\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Team (authenticity) --\u0026gt;\n\u0026lt;section class=\"team\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;The real people behind Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"team-grid\"\u0026gt;\n \u0026lt;div class=\"team-member\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1580489944761-15a19d654956?w=200\u0026amp;h=200\u0026amp;fit=crop\" alt=\"Founder\"\u0026gt;\n \u0026lt;div class=\"team-name\"\u0026gt;Elena Chen\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"team-role\"\u0026gt;Founder \u0026amp; Sourcing Director\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-top: 12px;\"\u0026gt;8 years in hair industry, previously sourcing manager for a US brand.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"team-member\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1507003211169-0a1dd7228f2d?w=200\u0026amp;h=200\u0026amp;fit=crop\" alt=\"Quality control\"\u0026gt;\n \u0026lt;div class=\"team-name\"\u0026gt;Michael Wei\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"team-role\"\u0026gt;Quality Control Lead\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-top: 12px;\"\u0026gt;Based in Qingdao, inspects every batch before shipping.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"team-member\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1573497019940-1c28c88b4f3e?w=200\u0026amp;h=200\u0026amp;fit=crop\" alt=\"Client success\"\u0026gt;\n \u0026lt;div class=\"team-name\"\u0026gt;Sophia Li\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"team-role\"\u0026gt;Client Success Manager\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-top: 12px;\"\u0026gt;Your main contact from sample to delivery \u2013 fluent in English \u0026amp; Mandarin.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"text-align: center; margin-top: 40px; color: #4b5563;\"\u0026gt;We\u2019re a small, dedicated team \u2013 not a call center. When you message us, you talk to a real person who knows your order.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Global footprint --\u0026gt;\n\u0026lt;section class=\"global\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Where we\u2019ve shipped recently\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"country-list\"\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\uddfa\ud83c\uddf8 USA\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\uddec\ud83c\udde7 UK\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\uddf3\ud83c\uddec Nigeria\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\udde8\ud83c\udde6 Canada\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\udde6\ud83c\uddfa Australia\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\uddeb\ud83c\uddf7 France\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\udde9\ud83c\uddea Germany\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\udde6\ud83c\uddea UAE\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"country-badge\"\u0026gt;\ud83c\uddff\ud83c\udde6 South Africa\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-top: 32px;\"\u0026gt;And more every month. No matter where you are, we deliver.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Final CTA: trust -\u0026gt; action --\u0026gt;\n\u0026lt;section class=\"final-cta\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to work with a sourcing partner you can trust?\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin-bottom: 24px;\"\u0026gt;Get a free sample consultation. No obligation, just honest advice.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn-primary\"\u0026gt;Request Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top: 20px; font-size: 0.8rem;\"\u0026gt;\u2714\ufe0f 24h reply \u2714\ufe0f Small MOQ \u2714\ufe0f Quality guarantee\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Footer --\u0026gt;\n\u0026lt;footer class=\"footer\"\u0026gt;\n \u0026lt;div class=\"container footer-grid\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;h3 style=\"color:white;\"\u0026gt;RESHYN\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Premium hair extensions sourcing from Guangzhou. Small MOQ, global delivery.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;About Us\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;Email: contact@reshyn.com\u0026lt;\/p\u0026gt;\u0026lt;p\u0026gt;WhatsApp: +86 123 456 7890\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;\ud83d\udce7 Get 10% off + trend report\u0026lt;\/p\u0026gt;\u0026lt;input type=\"email\" placeholder=\"Your email\" style=\"padding:10px;border-radius:40px;border:none;\"\u0026gt;\u0026lt;button class=\"btn-primary\" style=\"padding:10px 20px; margin-top:8px;\"\u0026gt;Subscribe\u0026lt;\/button\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"container\" style=\"text-align:center; border-top:1px solid #2d3748; padding-top:24px;\"\u0026gt;\u00a9 2026 Reshyn. All rights reserved.\u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304186}"}}}],"title":"test - about us deepseek","uid":"e1d85df3-5508-493b-8ba7-057d92dc4718","path":"\/test-about-us-deepseek","autoPath":true,"authorized":true},{"type":"Page","id":"f_5adb0d52-7372-42ca-a2cb-ae7c94fe9a71","sections":[{"type":"Slide","id":"f_dac2521c-02be-4ca7-98fe-fd83e64db0ec","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_0eeb2c81-e99d-45e1-b490-5f9d1aa7edc9","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_436d5d6d-dc77-458f-b324-1b8f48c5927f","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003econtact deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_d486399c-9c42-4b24-a339-01e3fffd76be","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_6284b218-77b6-4cc2-be5e-2b29ab7f4e86","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27293775,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;Contact Reshyn \u2013 Get a Free Sample Quote in 24h | WhatsApp, Email, Form\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Reach Reshyn today. Get a free sample consultation, small MOQ hair extensions quote, or ask any question. We reply within 12 hours via WhatsApp or email.\"\u0026gt;\n \u0026lt;link rel=\"canonical\" href=\"https:\/\/www.reshyn.com\/contact\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n body {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;\n background: #ffffff;\n color: #111827;\n line-height: 1.5;\n }\n .container {\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n \/* Buttons *\/\n .btn-primary {\n display: inline-block;\n background: #f97316;\n color: white;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n transition: 0.2s;\n border: none;\n cursor: pointer;\n font-size: 1rem;\n }\n .btn-primary:hover {\n background: #ea580c;\n transform: translateY(-2px);\n }\n .btn-secondary {\n display: inline-block;\n background: transparent;\n color: #111827;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n border: 1px solid #d1d5db;\n }\n .btn-secondary:hover {\n border-color: #f97316;\n color: #f97316;\n }\n .btn-whatsapp {\n background: #25D366;\n color: white;\n display: inline-flex;\n align-items: center;\n gap: 10px;\n padding: 14px 28px;\n border-radius: 60px;\n text-decoration: none;\n font-weight: 600;\n transition: 0.2s;\n }\n .btn-whatsapp:hover {\n background: #128C7E;\n transform: translateY(-2px);\n }\n \/* Navbar *\/\n .navbar {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 20px 0;\n flex-wrap: wrap;\n border-bottom: 1px solid #f0f0f0;\n }\n .logo {\n font-size: 1.8rem;\n font-weight: 800;\n background: linear-gradient(135deg, #f97316, #d97706);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n text-decoration: none;\n }\n .nav-links {\n display: flex;\n gap: 32px;\n align-items: center;\n }\n .nav-links a {\n text-decoration: none;\n color: #374151;\n font-weight: 500;\n }\n .nav-links a:hover { color: #f97316; }\n .nav-cta {\n background: #f97316;\n color: white !important;\n padding: 8px 24px;\n border-radius: 60px;\n }\n \/* Hero *\/\n .hero {\n background: linear-gradient(120deg, #fff9f2 0%, #ffffff 100%);\n padding: 60px 0 80px;\n text-align: center;\n }\n .hero h1 {\n font-size: 3rem;\n font-weight: 800;\n margin-bottom: 20px;\n }\n .hero .highlight {\n color: #f97316;\n }\n .hero p {\n font-size: 1.2rem;\n color: #4b5563;\n max-width: 700px;\n margin: 0 auto;\n }\n \/* Contact grid *\/\n .contact-section {\n padding: 80px 0;\n background: white;\n }\n .contact-grid {\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 48px;\n }\n \/* Left side: contact methods *\/\n .contact-methods h2, .contact-form h2 {\n font-size: 1.8rem;\n margin-bottom: 24px;\n }\n .method-card {\n display: flex;\n align-items: center;\n gap: 20px;\n background: #fafafa;\n padding: 24px;\n border-radius: 28px;\n margin-bottom: 24px;\n transition: 0.2s;\n }\n .method-card:hover {\n background: white;\n box-shadow: 0 10px 20px rgba(0,0,0,0.05);\n }\n .method-icon {\n font-size: 2.5rem;\n }\n .method-content h3 {\n font-size: 1.3rem;\n margin-bottom: 8px;\n }\n .method-content p {\n color: #4b5563;\n margin-bottom: 12px;\n }\n .method-link {\n color: #f97316;\n font-weight: 600;\n text-decoration: none;\n }\n \/* WhatsApp big button *\/\n .whatsapp-big {\n background: #25D366;\n color: white;\n text-align: center;\n padding: 32px;\n border-radius: 28px;\n margin-top: 32px;\n }\n .whatsapp-big a {\n color: white;\n font-size: 1.4rem;\n font-weight: 700;\n text-decoration: none;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 12px;\n }\n \/* Right side: form *\/\n .contact-form form {\n display: flex;\n flex-direction: column;\n gap: 20px;\n }\n .form-group {\n display: flex;\n flex-direction: column;\n gap: 8px;\n }\n .form-group label {\n font-weight: 600;\n }\n .form-group input, .form-group select, .form-group textarea {\n padding: 14px 18px;\n border: 1px solid #e5e7eb;\n border-radius: 20px;\n font-size: 1rem;\n font-family: inherit;\n }\n .form-group input:focus, .form-group textarea:focus, .form-group select:focus {\n outline: none;\n border-color: #f97316;\n box-shadow: 0 0 0 3px rgba(249,115,22,0.1);\n }\n \/* Trust badges + response promise *\/\n .trust-promise {\n background: #fefaf6;\n padding: 30px;\n border-radius: 28px;\n margin-top: 40px;\n text-align: center;\n }\n .trust-promise .promise-icon {\n font-size: 2rem;\n }\n .response-badge {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n background: white;\n padding: 12px 24px;\n border-radius: 60px;\n margin: 20px 10px 0;\n font-weight: 500;\n box-shadow: 0 2px 6px rgba(0,0,0,0.05);\n }\n \/* Map \/ office (optional) *\/\n .office-map {\n padding: 80px 0;\n background: #fefaf6;\n text-align: center;\n }\n .map-placeholder {\n background: #e5e7eb;\n border-radius: 28px;\n padding: 60px 20px;\n margin-top: 32px;\n color: #6b7280;\n }\n \/* FAQ (contact related) *\/\n .contact-faq {\n padding: 80px 0;\n background: white;\n }\n .faq-item {\n border-bottom: 1px solid #e5e7eb;\n padding: 20px 0;\n cursor: pointer;\n }\n .faq-question {\n font-weight: 700;\n display: flex;\n justify-content: space-between;\n }\n .faq-answer {\n display: none;\n padding-top: 12px;\n color: #4b5563;\n }\n .faq-answer.show {\n display: block;\n }\n \/* Final CTA *\/\n .final-cta {\n background: linear-gradient(135deg, #f97316, #d97706);\n color: white;\n padding: 70px 0;\n text-align: center;\n }\n \/* Footer *\/\n .footer {\n background: #111827;\n color: #9ca3af;\n padding: 48px 0 24px;\n }\n .footer-grid {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n gap: 40px;\n margin-bottom: 40px;\n }\n @media (max-width: 768px) {\n .contact-grid { grid-template-columns: 1fr; }\n .hero h1 { font-size: 2.2rem; }\n .navbar { flex-direction: column; gap: 16px; }\n .nav-links { flex-wrap: wrap; justify-content: center; gap: 20px; }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;header class=\"container\"\u0026gt;\n \u0026lt;div class=\"navbar\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;RESHYN\u0026lt;\/a\u0026gt;\n \u0026lt;div class=\"nav-links\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"nav-cta\"\u0026gt;Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\n\u0026lt;!-- Hero --\u0026gt;\n\u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h1\u0026gt;Let\u2019s talk \u0026lt;span class=\"highlight\"\u0026gt;hair extensions\u0026lt;\/span\u0026gt;\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;Have questions? Need a quote? Want a free sample? Reach out \u2013 we reply within 12 hours.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Main contact area --\u0026gt;\n\u0026lt;section class=\"contact-section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"contact-grid\"\u0026gt;\n \u0026lt;!-- Left: Contact methods --\u0026gt;\n \u0026lt;div class=\"contact-methods\"\u0026gt;\n \u0026lt;h2\u0026gt;\ud83d\udcde How to reach us\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"method-card\"\u0026gt;\n \u0026lt;div class=\"method-icon\"\u0026gt;\ud83d\udcac\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"method-content\"\u0026gt;\n \u0026lt;h3\u0026gt;WhatsApp (fastest)\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Click to chat instantly. We reply within 1 hour during business days.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"https:\/\/wa.me\/861234567890?text=Hello%20Reshyn%2C%20I%27m%20interested%20in%20your%20hair%20extensions\" class=\"method-link\" target=\"_blank\"\u0026gt;Start WhatsApp Chat \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"method-card\"\u0026gt;\n \u0026lt;div class=\"method-icon\"\u0026gt;\u2709\ufe0f\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"method-content\"\u0026gt;\n \u0026lt;h3\u0026gt;Email\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;For detailed inquiries or large orders. We reply within 12 hours.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"mailto:contact@reshyn.com\" class=\"method-link\"\u0026gt;contact@reshyn.com\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"method-card\"\u0026gt;\n \u0026lt;div class=\"method-icon\"\u0026gt;\ud83d\udcf1\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"method-content\"\u0026gt;\n \u0026lt;h3\u0026gt;WeChat (for Chinese partners)\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;ID: Reshyn_Official\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"method-link\"\u0026gt;Scan QR code (on request)\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;!-- Big WhatsApp CTA --\u0026gt;\n \u0026lt;div class=\"whatsapp-big\"\u0026gt;\n \u0026lt;a href=\"https:\/\/wa.me\/861234567890?text=Hello%20Reshyn%2C%20I%27d%20like%20a%20free%20sample%20quote\" target=\"_blank\"\u0026gt;\n \ud83d\udcac Click to chat on WhatsApp \u2192 Get a free sample quote in minutes\n \u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"trust-promise\"\u0026gt;\n \u0026lt;div class=\"promise-icon\"\u0026gt;\u23f1\ufe0f\u0026lt;\/div\u0026gt;\n \u0026lt;strong\u0026gt;We reply within 12 hours\u0026lt;\/strong\u0026gt;\n \u0026lt;p\u0026gt;Even on weekends, expect a fast answer. No automated bots \u2013 a real person will help you.\u0026lt;\/p\u0026gt;\n \u0026lt;div\u0026gt;\n \u0026lt;span class=\"response-badge\"\u0026gt;\u2714\ufe0f 24h sample quote\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"response-badge\"\u0026gt;\u2714\ufe0f Free consultation\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"response-badge\"\u0026gt;\u2714\ufe0f No spam\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- Right: Contact Form (low friction) --\u0026gt;\n \u0026lt;div class=\"contact-form\"\u0026gt;\n \u0026lt;h2\u0026gt;\u270d\ufe0f Send us a message\u0026lt;\/h2\u0026gt;\n \u0026lt;form action=\"#\" method=\"post\" id=\"contactForm\"\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;Your name *\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"text\" name=\"name\" required placeholder=\"e.g. Mia Johnson\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;Email *\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"email\" name=\"email\" required placeholder=\"you@salon.com\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;WhatsApp (optional)\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"tel\" name=\"whatsapp\" placeholder=\"+1 305 123 4567\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;I'm interested in *\u0026lt;\/label\u0026gt;\n \u0026lt;select name=\"interest\"\u0026gt;\n \u0026lt;option\u0026gt;Free sample consultation\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Bulk order quote\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Product catalog\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Become a distributor\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Other\u0026lt;\/option\u0026gt;\n \u0026lt;\/select\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;Message *\u0026lt;\/label\u0026gt;\n \u0026lt;textarea rows=\"4\" name=\"message\" placeholder=\"Tell us what you're looking for (product type, target market, estimated quantity...)\"\u0026gt;\u0026lt;\/textarea\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;button type=\"submit\" class=\"btn-primary\"\u0026gt;Send Message \u2192\u0026lt;\/button\u0026gt;\n \u0026lt;p style=\"font-size: 0.8rem; color: #6b7280; margin-top: 12px;\"\u0026gt;We\u2019ll reply within 12 hours. No spam, ever.\u0026lt;\/p\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Office location (trust, transparency) --\u0026gt;\n\u0026lt;section class=\"office-map\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;\ud83d\udccd Our Guangzhou office\u0026lt;\/h2\u0026gt;\n \u0026lt;p\u0026gt;You\u2019re always welcome to visit. Schedule a meeting and see how we work.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"map-placeholder\"\u0026gt;\n \ud83c\udf0f Reshyn Sourcing Hub \u2013 Guangzhou, China\u0026lt;br\u0026gt;\n (virtual map placeholder \u2013 real address shared upon appointment)\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- FAQ (pre-sales) --\u0026gt;\n\u0026lt;section class=\"contact-faq\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\" style=\"text-align:center;\"\u0026gt;Before you reach out \u2013 quick answers\u0026lt;\/h2\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 0 auto;\"\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 How fast do you reply? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;We aim for \u0026lt;strong\u0026gt;within 1 hour on WhatsApp\u0026lt;\/strong\u0026gt; (9am-6pm Beijing time) and within 12 hours for emails. Even on weekends.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Do you offer free samples? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Yes, for selected items. Just ask \u2013 you only pay shipping. We'll guide you through the process.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 What information should I include in my message? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Product type (lace wigs \/ tape\u2011ins \/ bulk), target market, estimated quantity \u2013 the more details, the better we can quote you.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Can I call you? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;We prefer WhatsApp voice messages or video calls for international clients. Schedule a call via email first.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Final CTA: urgency + WhatsApp --\u0026gt;\n\u0026lt;section class=\"final-cta\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2\u0026gt;Still have questions?\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin-bottom: 24px;\"\u0026gt;The fastest way to get a quote is via WhatsApp \u2013 usually under 1 hour.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"https:\/\/wa.me\/861234567890?text=Hello%20Reshyn%2C%20I%20need%20a%20quote%20for%20hair%20extensions\" class=\"btn-primary\" style=\"background: white; color: #f97316;\"\u0026gt;Chat on WhatsApp Now \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top: 20px; font-size: 0.8rem;\"\u0026gt;\ud83d\udcde Or email us at contact@reshyn.com\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Footer --\u0026gt;\n\u0026lt;footer class=\"footer\"\u0026gt;\n \u0026lt;div class=\"container footer-grid\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;h3 style=\"color:white;\"\u0026gt;RESHYN\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Premium hair extensions sourcing from Guangzhou. Small MOQ, global delivery.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;About\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\" style=\"color:#9ca3af; display:block;\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;Email: contact@reshyn.com\u0026lt;\/p\u0026gt;\u0026lt;p\u0026gt;WhatsApp: +86 123 456 7890\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;p style=\"color:white;\"\u0026gt;\ud83d\udce7 Get 10% off + trend report\u0026lt;\/p\u0026gt;\u0026lt;input type=\"email\" placeholder=\"Your email\" style=\"padding:10px;border-radius:40px;border:none;\"\u0026gt;\u0026lt;button class=\"btn-primary\" style=\"padding:10px 20px; margin-top:8px;\"\u0026gt;Subscribe\u0026lt;\/button\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"container\" style=\"text-align:center; border-top:1px solid #2d3748; padding-top:24px;\"\u0026gt;\u00a9 2026 Reshyn. All rights reserved.\u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;script\u0026gt;\n \/\/ FAQ toggle\n document.querySelectorAll('.faq-item').forEach(item =\u0026gt; {\n const q = item.querySelector('.faq-question');\n const ans = item.querySelector('.faq-answer');\n q.addEventListener('click', () =\u0026gt; {\n ans.classList.toggle('show');\n const span = q.querySelector('span');\n if (span) span.innerText = ans.classList.contains('show') ? '\u2212' : '+';\n });\n });\n \/\/ Simple form alert (demo)\n document.getElementById('contactForm').addEventListener('submit', function(e) {\n e.preventDefault();\n alert('Thanks for reaching out! We\u2019ll reply within 12 hours. For faster response, use WhatsApp.');\n \/\/ You can replace with actual form submission (AJAX or redirect)\n });\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304188}"}}}],"title":"test - contact deepseek","uid":"c7f48b46-ee63-404f-9e97-259cee2cc103","path":"\/test-contact-deepseek","autoPath":true,"authorized":true},{"type":"Page","id":"f_dffec55b-43f4-46da-b90c-a207759409ad","sections":[{"type":"Slide","id":"f_75d97d25-952a-4437-8ebc-c0a6492f435a","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_8c3c3082-320e-4973-a2dc-971a6d8f9d56","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_2b4e720b-a6e9-4e02-a216-311961fa66ac","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003elanding page deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_02c9052a-7732-4486-96dc-3088e2185386","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_a68e0fca-d1ad-484b-94ce-07cf71f19be0","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27294482,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, viewport-fit=cover\"\u0026gt;\n \u0026lt;title\u0026gt;Reshyn | Free Hair Extensions Sample for Salons \u0026amp; Distributors\u0026lt;\/title\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Premium tape\u2011in, weft, and bulk virgin hair from China. Small MOQ (5pcs). Free sample for salons \u0026amp; distributors \u2013 just pay shipping. US\u2011friendly support.\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n body {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;\n background: #ffffff;\n color: #1a1a1a;\n line-height: 1.5;\n }\n .container {\n max-width: 1200px;\n margin: 0 auto;\n padding: 0 24px;\n }\n .btn-primary {\n display: inline-block;\n background: #f97316;\n color: white;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n transition: 0.2s;\n border: none;\n cursor: pointer;\n font-size: 1rem;\n }\n .btn-primary:hover {\n background: #ea580c;\n transform: translateY(-2px);\n }\n .btn-secondary {\n display: inline-block;\n background: transparent;\n color: #1a1a1a;\n font-weight: 600;\n padding: 14px 32px;\n border-radius: 60px;\n text-decoration: none;\n border: 1px solid #d1d5db;\n }\n .btn-secondary:hover {\n border-color: #f97316;\n color: #f97316;\n }\n .btn-whatsapp {\n background: #25D366;\n color: white;\n display: inline-flex;\n align-items: center;\n gap: 10px;\n padding: 14px 28px;\n border-radius: 60px;\n text-decoration: none;\n font-weight: 600;\n transition: 0.2s;\n }\n .btn-whatsapp:hover {\n background: #128C7E;\n transform: translateY(-2px);\n }\n \/* Simple header (no nav links) *\/\n .header {\n padding: 20px 0;\n border-bottom: 1px solid #f0f0f0;\n }\n .logo {\n font-size: 1.8rem;\n font-weight: 800;\n background: linear-gradient(135deg, #f97316, #d97706);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n text-decoration: none;\n }\n .hero {\n background: linear-gradient(120deg, #fff9f2 0%, #ffffff 100%);\n padding: 60px 0 80px;\n text-align: center;\n }\n .hero h1 {\n font-size: 3rem;\n font-weight: 800;\n margin-bottom: 20px;\n }\n .hero .highlight {\n color: #f97316;\n }\n .hero p {\n font-size: 1.2rem;\n color: #4b5563;\n max-width: 700px;\n margin: 0 auto 32px;\n }\n .trust-badge {\n display: flex;\n justify-content: center;\n gap: 32px;\n flex-wrap: wrap;\n margin-top: 32px;\n }\n .card-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n gap: 32px;\n margin: 48px 0;\n }\n .product-card, .testimonial-card, .value-card {\n background: #fafafa;\n border-radius: 24px;\n padding: 24px;\n transition: 0.2s;\n }\n .product-card img {\n width: 100%;\n height: 220px;\n object-fit: cover;\n border-radius: 16px;\n margin-bottom: 16px;\n }\n .badge {\n background: #fef3c7;\n color: #b45309;\n display: inline-block;\n padding: 4px 12px;\n border-radius: 40px;\n font-size: 0.75rem;\n margin-bottom: 12px;\n }\n .sample-box {\n background: #fff0e6;\n border-radius: 28px;\n padding: 40px;\n text-align: center;\n margin: 48px 0;\n }\n .form-container {\n background: white;\n border-radius: 28px;\n padding: 32px;\n box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);\n margin: 48px 0;\n }\n .form-group {\n margin-bottom: 20px;\n text-align: left;\n }\n .form-group label {\n display: block;\n font-weight: 600;\n margin-bottom: 8px;\n }\n .form-group input, .form-group select, .form-group textarea {\n width: 100%;\n padding: 12px 16px;\n border: 1px solid #e5e7eb;\n border-radius: 20px;\n font-size: 1rem;\n font-family: inherit;\n }\n .step-container {\n display: flex;\n gap: 30px;\n flex-wrap: wrap;\n justify-content: center;\n margin: 40px 0;\n }\n .step {\n flex: 1;\n background: white;\n padding: 24px;\n border-radius: 24px;\n box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n text-align: center;\n }\n .faq-item {\n border-bottom: 1px solid #e5e7eb;\n padding: 20px 0;\n cursor: pointer;\n }\n .faq-question {\n font-weight: 700;\n display: flex;\n justify-content: space-between;\n }\n .faq-answer {\n display: none;\n padding-top: 12px;\n color: #4b5563;\n }\n .faq-answer.show {\n display: block;\n }\n .final-cta {\n background: linear-gradient(135deg, #f97316, #d97706);\n color: white;\n text-align: center;\n padding: 70px 0;\n }\n .footer {\n background: #111827;\n color: #9ca3af;\n padding: 48px 0 24px;\n text-align: center;\n }\n @media (max-width: 768px) {\n .hero h1 { font-size: 2rem; }\n .trust-badge { gap: 16px; }\n .btn-primary, .btn-secondary, .btn-whatsapp { padding: 12px 24px; }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;!-- Simple header: only logo and CTA button --\u0026gt;\n\u0026lt;div class=\"container header\"\u0026gt;\n \u0026lt;div style=\"display: flex; justify-content: space-between; align-items: center;\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;RESHYN\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#request-form\" class=\"btn-primary\" style=\"padding: 8px 24px;\"\u0026gt;Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/div\u0026gt;\n\n\u0026lt;!-- Hero section --\u0026gt;\n\u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h1\u0026gt;Premium hair extensions \u0026lt;span class=\"highlight\"\u0026gt;made for US salons \u0026amp; distributors\u0026lt;\/span\u0026gt;\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;Tape\u2011in, weft, and bulk virgin hair from China\u2019s best factories. Small MOQ (5 pieces). Real support. No headaches.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#request-form\" class=\"btn-primary\"\u0026gt;Claim my free sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;div class=\"trust-badge\"\u0026gt;\n \u0026lt;span\u0026gt;\u2705 120+ salons served\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u2705 48h sample dispatch\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u2705 24h real\u2011person reply\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Three real voices: Emma, Bella, Mike --\u0026gt;\n\u0026lt;section class=\"container\"\u0026gt;\n \u0026lt;div style=\"text-align: center; margin: 60px 0 20px;\"\u0026gt;\n \u0026lt;h2 style=\"font-size: 1.8rem;\"\u0026gt;\u201cWe helped build this page \u2013 here\u2019s what matters to us\u201d\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"color: #4b5563;\"\u0026gt;Three US pros told us exactly what they need. So we built it.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"card-grid\"\u0026gt;\n \u0026lt;div class=\"testimonial-card\"\u0026gt;\n \u0026lt;div style=\"font-size: 2rem;\"\u0026gt;\ud83d\udc69\u200d\ud83e\uddb1\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-style: italic; margin: 16px 0;\"\u0026gt;\u201cI run a busy salon in Miami. I can\u2019t afford to wait weeks for samples or get stuck with huge MOQs. Show me real quality, fast shipping, and a simple way to test before I buy.\u201d\u0026lt;\/p\u0026gt;\n \u0026lt;strong\u0026gt;\u2014 Emma S.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Salon owner, Miami\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial-card\"\u0026gt;\n \u0026lt;div style=\"font-size: 2rem;\"\u0026gt;\ud83d\udc69\u200d\ud83d\udcbc\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-style: italic; margin: 16px 0;\"\u0026gt;\u201cAs a distributor, I need consistent bulk hair, transparent communication, and a supplier who treats me like a partner, not a number. And please \u2013 no hidden fees.\u201d\u0026lt;\/p\u0026gt;\n \u0026lt;strong\u0026gt;\u2014 Bella C.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Hair distributor, Los Angeles\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial-card\"\u0026gt;\n \u0026lt;div style=\"font-size: 2rem;\"\u0026gt;\ud83e\uddd4\u200d\u2642\ufe0f\u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"font-style: italic; margin: 16px 0;\"\u0026gt;\u201cI\u2019ve been burned by cheap imports before. I need to feel the hair before committing to a bulk order. A fair sample policy and someone I can WhatsApp directly \u2013 that\u2019s gold.\u201d\u0026lt;\/p\u0026gt;\n \u0026lt;strong\u0026gt;\u2014 Mike T.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;Salon owner \u0026amp; online retailer, Texas\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Products they asked for (no prices) --\u0026gt;\n\u0026lt;section class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"font-size: 1.8rem; text-align: center;\"\u0026gt;What Emma, Bella \u0026amp; Mike actually want\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"card-grid\"\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1522338242992-e1a54906a8da?w=400\u0026amp;h=300\u0026amp;fit=crop\" alt=\"Tape-in hair extensions\"\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\u2b50 Emma\u2019s pick\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Tape\u2011in extensions (1g\/piece)\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Natural movement, easy to install. Ideal for salons that do quick volume and length.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#request-form\" class=\"btn-secondary\" style=\"margin-top: 16px; display: inline-block;\"\u0026gt;Request sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1596704017254-9b121068fb31?w=400\u0026amp;h=300\u0026amp;fit=crop\" alt=\"Machine weft hair extensions\"\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\ud83d\udce6 Bella\u2019s workhorse\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Machine weft hair (100g)\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Strong, thick, and consistent. Perfect for distributors who need reliable bulk orders.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#request-form\" class=\"btn-secondary\" style=\"margin-top: 16px; display: inline-block;\"\u0026gt;Request sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;img src=\"https:\/\/images.unsplash.com\/photo-1584652060972-9c0d7646c6e3?w=400\u0026amp;h=300\u0026amp;fit=crop\" alt=\"Virgin bulk hair bundles\"\u0026gt;\n \u0026lt;div class=\"badge\"\u0026gt;\ud83d\udd25 Mike\u2019s favorite\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Virgin bulk hair bundles (100g)\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;100% human hair, soft and tangle\u2011free. Salon owners love the versatility.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#request-form\" class=\"btn-secondary\" style=\"margin-top: 16px; display: inline-block;\"\u0026gt;Request sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Free sample policy + request form --\u0026gt;\n\u0026lt;section class=\"container\" id=\"request-form\"\u0026gt;\n \u0026lt;div class=\"sample-box\"\u0026gt;\n \u0026lt;div style=\"font-size: 2.5rem;\"\u0026gt;\ud83c\udf81\u0026lt;\/div\u0026gt;\n \u0026lt;h2 style=\"margin: 16px 0;\"\u0026gt;Free sample \u2013 built for serious buyers\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"max-width: 700px; margin: 0 auto 24px;\"\u0026gt;We know you need to feel the hair. That\u2019s why we offer a \u0026lt;strong\u0026gt;free sample piece\u0026lt;\/strong\u0026gt; for verified salons and distributors. You only pay the shipping. And if you place a bulk order within 30 days, we deduct the sample cost from your invoice.\u0026lt;\/p\u0026gt;\n \u0026lt;div style=\"display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;\"\u0026gt;\n \u0026lt;span\u0026gt;\u2705 One free sample per business\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u2708\ufe0f You cover DHL\/FedEx shipping\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\ud83d\udca1 Sample credit toward first bulk order\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- Formspree contact form (replace 'xxxxxxxx' with your actual form ID) --\u0026gt;\n \u0026lt;div class=\"form-container\"\u0026gt;\n \u0026lt;h3 style=\"font-size: 1.5rem; margin-bottom: 24px; text-align: center;\"\u0026gt;Request your free sample\u0026lt;\/h3\u0026gt;\n \u0026lt;form action=\"https:\/\/formspree.io\/f\/xxxxxxxx\" method=\"POST\"\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;Full name *\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"text\" name=\"name\" required placeholder=\"e.g. Emma Johnson\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;Email *\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"email\" name=\"_replyto\" required placeholder=\"you@salon.com\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;WhatsApp (optional, for faster reply)\u0026lt;\/label\u0026gt;\n \u0026lt;input type=\"tel\" name=\"whatsapp\" placeholder=\"+1 305 123 4567\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;I'm interested in *\u0026lt;\/label\u0026gt;\n \u0026lt;select name=\"product_interest\"\u0026gt;\n \u0026lt;option\u0026gt;Tape\u2011in extensions\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Machine weft hair\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Virgin bulk hair bundles\u0026lt;\/option\u0026gt;\n \u0026lt;option\u0026gt;Mixed sample (2-3 types)\u0026lt;\/option\u0026gt;\n \u0026lt;\/select\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label\u0026gt;Tell us about your business *\u0026lt;\/label\u0026gt;\n \u0026lt;textarea rows=\"3\" name=\"message\" placeholder=\"Salon owner? Distributor? Estimated monthly volume?\"\u0026gt;\u0026lt;\/textarea\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;button type=\"submit\" class=\"btn-primary\" style=\"width: 100%;\"\u0026gt;Send sample request \u2192\u0026lt;\/button\u0026gt;\n \u0026lt;p style=\"font-size: 0.8rem; margin-top: 16px; color: #6b7280;\"\u0026gt;We\u2019ll reply within 12 hours. No spam, ever.\u0026lt;\/p\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;div style=\"text-align: center; margin: 20px 0 40px;\"\u0026gt;\n \u0026lt;p\u0026gt;Prefer to chat? \u0026lt;a href=\"https:\/\/wa.me\/861888888899?text=Hello%20Reshyn%2C%20I%27d%20like%20a%20free%20sample%20quote\" class=\"btn-whatsapp\" target=\"_blank\" style=\"display: inline-flex;\"\u0026gt;\ud83d\udcac Message us on WhatsApp\u0026lt;\/a\u0026gt;\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Why choose Reshyn (value props) --\u0026gt;\n\u0026lt;section class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"font-size: 1.8rem; text-align: center;\"\u0026gt;Why Emma, Bella \u0026amp; Mike switched to Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"card-grid\"\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div style=\"font-size: 2rem;\"\u0026gt;\ud83d\udce6\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Small MOQ \u2013 start with 5 pieces\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;No more forced bulk. Test with a small order, then scale when you\u2019re ready.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div style=\"font-size: 2rem;\"\u0026gt;\ud83d\udcac\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Real\u2011time WhatsApp support\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Text a real person \u2013 not a bot. We reply in hours, not days.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div style=\"font-size: 2rem;\"\u0026gt;\ud83d\udd0d\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Quality you can verify\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We send you live videos of your product before shipping. Third\u2011party inspection available.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- 3\u2011step process --\u0026gt;\n\u0026lt;section class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"font-size: 1.8rem; text-align: center;\"\u0026gt;How it works (simple as 1-2-3)\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"step-container\"\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\n \u0026lt;div style=\"background: #f97316; color: white; width: 40px; height: 40px; line-height: 40px; border-radius: 40px; display: inline-block; margin-bottom: 16px;\"\u0026gt;1\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Tell us what you need\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Product type, length, and estimated volume \u2013 via form or WhatsApp.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\n \u0026lt;div style=\"background: #f97316; color: white; width: 40px; height: 40px; line-height: 40px; border-radius: 40px; display: inline-block; margin-bottom: 16px;\"\u0026gt;2\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Get a sample recommendation\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We\u2019ll suggest 2\u20113 matching products. Free sample arranged within 24h.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"step\"\u0026gt;\n \u0026lt;div style=\"background: #f97316; color: white; width: 40px; height: 40px; line-height: 40px; border-radius: 40px; display: inline-block; margin-bottom: 16px;\"\u0026gt;3\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Approve \u0026amp; scale\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Love the sample? Place your bulk order with confidence. We handle production and shipping.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- FAQ --\u0026gt;\n\u0026lt;section class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"font-size: 1.8rem; text-align: center;\"\u0026gt;Questions? We\u2019ve got answers.\u0026lt;\/h2\u0026gt;\n \u0026lt;div style=\"max-width: 800px; margin: 40px auto;\"\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Is the sample really free? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Yes \u2013 the product piece itself is free for qualified salons and distributors. You only pay the international shipping fee.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 How much is shipping for a sample? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Usually between $25 and $45 via DHL\/FedEx, depending on your location. We\u2019ll confirm before sending anything.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 What if I don\u2019t like the sample? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;We\u2019ll recommend a different product for you to test. If it\u2019s a genuine quality issue, we refund the sample cost (not shipping).\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Can I deduct the sample cost from my first bulk order? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;Absolutely. Place a bulk order within 30 days, and we\u2019ll subtract the sample product value from your invoice.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\"\u0026gt;\n \u0026lt;div class=\"faq-question\"\u0026gt;\u2753 Do you offer samples for all products? \u0026lt;span\u0026gt;+\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;For standard tape\u2011in, weft, and bulk hair \u2013 yes. For custom colors or special lengths, we may charge a small sample fee (refundable with bulk order).\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Final CTA --\u0026gt;\n\u0026lt;section class=\"final-cta\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 style=\"font-size: 2rem;\"\u0026gt;Ready to try Reshyn?\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"margin: 16px 0;\"\u0026gt;Join Emma, Bella, and Mike \u2013 get your free sample today. No obligation, just straight talk and great hair.\u0026lt;\/p\u0026gt;\n \u0026lt;div style=\"display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 32px;\"\u0026gt;\n \u0026lt;a href=\"#request-form\" class=\"btn-primary\" style=\"background: white; color: #f97316;\"\u0026gt;Request free sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"https:\/\/wa.me\/861888888899?text=Hello%20Reshyn%2C%20I%27d%20like%20a%20free%20sample%20quote\" class=\"btn-whatsapp\" target=\"_blank\"\u0026gt;\ud83d\udcac Chat on WhatsApp\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;p style=\"margin-top: 24px;\"\u0026gt;\u2714\ufe0f Reply in 24h \u2714\ufe0f No hidden fees \u2714\ufe0f Cancel anytime\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- Footer --\u0026gt;\n\u0026lt;footer class=\"footer\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;p\u0026gt;\u00a9 2026 Reshyn \u2013 Premium hair extensions sourcing from Guangzhou, China\u0026lt;\/p\u0026gt;\n \u0026lt;p style=\"margin-top: 16px;\"\u0026gt;\ud83d\udce7 contact@reshyn.com | \ud83d\udcde WhatsApp: +86 188 8888 8899\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;script\u0026gt;\n \/\/ FAQ toggle\n document.querySelectorAll('.faq-item').forEach(item =\u0026gt; {\n const question = item.querySelector('.faq-question');\n const answer = item.querySelector('.faq-answer');\n question.addEventListener('click', () =\u0026gt; {\n answer.classList.toggle('show');\n const span = question.querySelector('span');\n if (span) span.innerText = answer.classList.contains('show') ? '\u2212' : '+';\n });\n });\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9304228}"}}}],"title":"test - landing page deepseek","uid":"3139045a-7994-4996-91b0-dbadf5d07528","path":"\/test-landing-page-deepseek","autoPath":true,"authorized":true},{"type":"Page","id":"f_3d7772b1-0236-4e6a-891f-f816dc7da46a","sections":[{"type":"Slide","id":"f_c77c4e55-d171-40cd-965e-622254dd1ec8","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_5c8f253b-12b7-447a-ad78-9ffb1c1d3eb9","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_ff1d8191-5a55-4c28-ad73-338c57659f76","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003ehome page deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_8aa37de9-ea6e-4ce2-b632-fcc01b281c34","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_91a6658e-f7d4-41d0-9c31-19a055105b4f","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27309392,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes\"\u0026gt;\n \u0026lt;title\u0026gt;HaloCraft Hair | Your Quality Curation \u0026amp; QC Partner for Premium Hair Extensions\u0026lt;\/title\u0026gt;\n \u0026lt;!-- Font Awesome 6 \u56fe\u6807\u5e93 --\u0026gt;\n \u0026lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0-beta3\/css\/all.min.css\"\u0026gt;\n \u0026lt;style\u0026gt;\n * {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n }\n\n body {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;\n background-color: #fff;\n color: #1e1e1e;\n line-height: 1.6;\n }\n\n .container {\n max-width: 1280px;\n margin: 0 auto;\n padding: 0 24px;\n }\n\n \/* \u6309\u94ae\u6837\u5f0f *\/\n .btn {\n display: inline-block;\n padding: 14px 32px;\n border-radius: 40px;\n font-weight: 600;\n text-decoration: none;\n transition: all 0.25s ease;\n font-size: 1rem;\n letter-spacing: 0.3px;\n cursor: pointer;\n border: none;\n }\n\n .btn-primary {\n background: #1e1e1e;\n color: #fff;\n box-shadow: 0 4px 14px rgba(0,0,0,0.15);\n }\n\n .btn-primary:hover {\n background: #c9a74b;\n color: #fff;\n transform: translateY(-2px);\n box-shadow: 0 10px 24px rgba(201,167,75,0.35);\n }\n\n .btn-outline-light {\n background: transparent;\n color: #1e1e1e;\n border: 2px solid #1e1e1e;\n }\n\n .btn-outline-light:hover {\n background: #1e1e1e;\n color: #fff;\n }\n\n \/* \u5bfc\u822a *\/\n header {\n background: rgba(255,255,255,0.92);\n backdrop-filter: blur(12px);\n position: sticky;\n top: 0;\n z-index: 100;\n border-bottom: 1px solid #f0f0f0;\n padding: 16px 0;\n }\n\n .navbar {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n }\n\n .logo {\n font-size: 1.8rem;\n font-weight: 700;\n letter-spacing: -0.5px;\n color: #1e1e1e;\n text-decoration: none;\n }\n\n .logo span {\n color: #c9a74b;\n }\n\n .nav-links {\n display: flex;\n align-items: center;\n gap: 32px;\n }\n\n .nav-links a {\n text-decoration: none;\n color: #1e1e1e;\n font-weight: 500;\n font-size: 0.95rem;\n transition: color 0.2s;\n }\n\n .nav-links a:hover {\n color: #c9a74b;\n }\n\n .hamburger {\n display: none;\n font-size: 1.6rem;\n background: none;\n border: none;\n color: #1e1e1e;\n cursor: pointer;\n }\n\n \/* \u82f1\u96c4\u533a *\/\n .hero {\n padding: 80px 0 80px;\n background: linear-gradient(135deg, #faf9f7 0%, #fff 100%);\n }\n\n .hero-grid {\n display: flex;\n align-items: center;\n gap: 60px;\n flex-wrap: wrap;\n }\n\n .hero-content {\n flex: 1 1 500px;\n }\n\n .hero-content h1 {\n font-size: 3.2rem;\n font-weight: 700;\n line-height: 1.2;\n margin-bottom: 24px;\n letter-spacing: -0.8px;\n }\n\n .hero-content p {\n font-size: 1.2rem;\n color: #4a4a4a;\n margin-bottom: 32px;\n max-width: 560px;\n }\n\n .hero-visual {\n flex: 1 1 400px;\n background: #eae8e3;\n border-radius: 32px;\n padding: 32px 24px 0;\n text-align: center;\n box-shadow: 0 20px 36px rgba(0,0,0,0.06);\n }\n\n .hero-visual img {\n max-width: 100%;\n height: auto;\n border-radius: 20px 20px 0 0;\n display: block;\n margin: 0 auto;\n background: #dcd7cf;\n }\n\n .badge {\n background: #f4f1ea;\n color: #1e1e1e;\n padding: 6px 16px;\n border-radius: 30px;\n font-size: 0.9rem;\n font-weight: 600;\n display: inline-block;\n margin-bottom: 16px;\n letter-spacing: 0.4px;\n }\n\n \/* USP\u6761 *\/\n .usp-strip {\n background: #1e1e1e;\n color: #fff;\n padding: 20px 0;\n text-align: center;\n font-weight: 500;\n letter-spacing: 0.5px;\n font-size: 0.95rem;\n }\n\n \/* \u90e8\u5206\u901a\u7528 *\/\n section {\n padding: 80px 0;\n }\n\n .section-title {\n font-size: 2.4rem;\n font-weight: 700;\n margin-bottom: 20px;\n letter-spacing: -0.6px;\n text-align: center;\n }\n\n .section-sub {\n text-align: center;\n color: #5a5a5a;\n max-width: 680px;\n margin: 0 auto 60px;\n font-size: 1.1rem;\n }\n\n \/* \u4ef7\u503c\u5361\u7247 *\/\n .value-cards {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n gap: 40px;\n margin-top: 20px;\n }\n\n .value-card {\n background: #fafaf8;\n padding: 36px 28px;\n border-radius: 24px;\n transition: transform 0.25s ease, box-shadow 0.25s;\n border: 1px solid #f1f0ec;\n }\n\n .value-card:hover {\n transform: translateY(-6px);\n box-shadow: 0 24px 40px rgba(0,0,0,0.05);\n }\n\n .value-icon {\n font-size: 2.5rem;\n color: #c9a74b;\n margin-bottom: 20px;\n }\n\n .value-card h3 {\n font-size: 1.3rem;\n margin-bottom: 12px;\n }\n\n \/* \u4ea7\u54c1\u5c55\u793a *\/\n .product-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));\n gap: 32px;\n }\n\n .product-card {\n background: #fff;\n border-radius: 20px;\n overflow: hidden;\n box-shadow: 0 6px 20px rgba(0,0,0,0.04);\n transition: all 0.25s;\n border: 1px solid #f2f1ed;\n }\n\n .product-card:hover {\n box-shadow: 0 18px 34px rgba(0,0,0,0.08);\n transform: scale(1.01);\n }\n\n .product-img {\n height: 240px;\n background: #eae7e1;\n display: flex;\n align-items: center;\n justify-content: center;\n color: #666;\n font-size: 0.9rem;\n }\n\n .product-info {\n padding: 20px;\n }\n\n .product-info h4 {\n font-size: 1.2rem;\n margin-bottom: 6px;\n }\n\n .product-info .label {\n color: #c9a74b;\n font-weight: 600;\n font-size: 0.85rem;\n margin-bottom: 10px;\n display: block;\n }\n\n .highlight-badge {\n background: #1e1e1e;\n color: #fff;\n padding: 4px 12px;\n border-radius: 20px;\n font-size: 0.75rem;\n font-weight: 600;\n letter-spacing: 0.4px;\n display: inline-block;\n margin-top: 8px;\n }\n\n \/* \u8fc7\u7a0b\u7b80\u8981 *\/\n .process-steps {\n display: flex;\n flex-wrap: wrap;\n gap: 32px;\n justify-content: center;\n }\n\n .process-step {\n flex: 1 1 200px;\n text-align: center;\n padding: 16px;\n }\n\n .step-number {\n font-size: 2.6rem;\n font-weight: 700;\n color: #c9a74b;\n }\n\n \/* \u793e\u4f1a\u8ba4\u540c *\/\n .testimonial-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n gap: 32px;\n }\n\n .testimonial {\n background: #fafaf8;\n border-radius: 24px;\n padding: 32px;\n font-style: italic;\n border: 1px solid #eee;\n }\n\n .testimonial .author {\n font-style: normal;\n font-weight: 700;\n margin-top: 20px;\n display: block;\n }\n\n .stars {\n color: #c9a74b;\n margin-bottom: 12px;\n }\n\n \/* \u5bf9\u6bd4\u8868 *\/\n .compare-table {\n display: flex;\n flex-direction: column;\n max-width: 800px;\n margin: 0 auto;\n border: 1px solid #eee;\n border-radius: 20px;\n overflow: hidden;\n }\n\n .compare-row {\n display: flex;\n border-bottom: 1px solid #eee;\n }\n\n .compare-row:last-child {\n border-bottom: none;\n }\n\n .compare-cell {\n flex: 1;\n padding: 20px;\n font-size: 0.95rem;\n }\n\n .compare-cell.header {\n background: #fafaf8;\n font-weight: 700;\n }\n\n .icon-check {\n color: #2e7d32;\n margin-right: 8px;\n }\n\n .icon-cross {\n color: #b71c1c;\n margin-right: 8px;\n }\n\n \/* CTA *\/\n .cta-section {\n background: #1e1e1e;\n color: #fff;\n text-align: center;\n border-radius: 32px;\n padding: 64px 32px;\n margin: 60px 0;\n }\n\n .cta-section h2 {\n font-size: 2.2rem;\n font-weight: 700;\n margin-bottom: 16px;\n }\n\n .cta-section .btn {\n margin-top: 24px;\n }\n\n \/* \u9875\u811a *\/\n footer {\n background: #fafaf8;\n padding: 48px 0 24px;\n border-top: 1px solid #eee;\n font-size: 0.95rem;\n color: #4a4a4a;\n }\n\n .footer-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));\n gap: 32px;\n }\n\n .footer-col h4 {\n margin-bottom: 16px;\n font-weight: 700;\n }\n\n .footer-col a {\n display: block;\n color: #4a4a4a;\n text-decoration: none;\n margin-bottom: 10px;\n }\n\n .copyright {\n text-align: center;\n margin-top: 40px;\n color: #888;\n }\n\n \/* \u54cd\u5e94\u5f0f *\/\n @media (max-width: 768px) {\n .nav-links {\n display: none;\n width: 100%;\n flex-direction: column;\n align-items: flex-start;\n margin-top: 16px;\n }\n .nav-links.active {\n display: flex;\n }\n .hamburger {\n display: block;\n }\n .hero-content h1 {\n font-size: 2.5rem;\n }\n section {\n padding: 60px 0;\n }\n .section-title {\n font-size: 2rem;\n }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n \u0026lt;!-- \u5bfc\u822a --\u0026gt;\n \u0026lt;header\u0026gt;\n \u0026lt;div class=\"container navbar\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;HaloCraft\u0026lt;span\u0026gt;.\u0026lt;\/span\u0026gt;Hair\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"hamburger\" id=\"hamburger\"\u0026gt;\u0026lt;i class=\"fas fa-bars\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;div class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Home\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-outline-light\" style=\"padding:10px 24px;\"\u0026gt;Request Sample\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/header\u0026gt;\n\n \u0026lt;!-- Hero \u533a\u57df --\u0026gt;\n \u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"container hero-grid\"\u0026gt;\n \u0026lt;div class=\"hero-content\"\u0026gt;\n \u0026lt;span class=\"badge\"\u0026gt;\u2726 B2B Quality Curation Partner\u0026lt;\/span\u0026gt;\n \u0026lt;h1\u0026gt;Your Quality Firewall.\u0026lt;br\u0026gt;Their Perfect Hair.\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;We don't manufacture. We curate, rigorously QC, and kit premium hair extensions so you build a brand clients trust \u2014 without factory surprises.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;\u0026lt;i class=\"fas fa-video\" style=\"margin-right:8px;\"\u0026gt;\u0026lt;\/i\u0026gt; Start a Live QC Sample\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top:12px; font-size:0.9rem; color:#666;\"\u0026gt;No payment until you approve via video call.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"hero-visual\"\u0026gt;\n \u0026lt;!-- \u5360\u4f4d\u56fe\u793a\u610f\uff1a\u4e00\u4f4d\u56e2\u961f\u6210\u5458\u5c55\u793a\u63a5\u53d1\u5957\u4ef6 --\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/500x400\/eae8e3\/333?text=Your+Curation+Team+in+Action\" alt=\"Hair curation team inspecting extensions\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- \u4ef7\u503c\u4e3b\u5f20\u6761 --\u0026gt;\n \u0026lt;div class=\"usp-strip\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;i class=\"fas fa-shield-alt\" style=\"margin-right: 8px;\"\u0026gt;\u0026lt;\/i\u0026gt; 50-Point QC \u00b7 Zero Shedding Guarantee \u00b7 Branded Kitting \u00b7 Live Order Preview\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- \u6838\u5fc3\u4f18\u52bf\u5361\u7247 (Interest) --\u0026gt;\n \u0026lt;section\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Why stylists \u0026amp; shop owners switch to us\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-sub\"\u0026gt;You deserve more than a supplier. You deserve a partner who protects your reputation.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"value-cards\"\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-gem\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Curated, Not Just Sourced\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We blind-test from 30+ workshops monthly. Only the top 5% pass our first filter\u2014so you skip the junk.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-microscope\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;50-Point Inspection\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Every weft, every lace, every strand. Shed test, color consistency, lace melt check. We reject what factories call \u201cgood enough\u201d.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-gift\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Arrives Shelf\u2011Ready\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We kit your order with care guides, accessories, and your branding. Your customer opens a premium experience, not a plastic bag.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- \u4ea7\u54c1\u7c7b\u522b (\u5305\u542bFusion Extensions) --\u0026gt;\n \u0026lt;section style=\"background:#fafaf8;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Explore our curated categories\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-sub\"\u0026gt;Each category built around real salon demand and QC\u2019d to our standard.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"product-grid\"\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-fire\" style=\"font-size:2rem; color:#c9a74b;\"\u0026gt;\u0026lt;\/i\u0026gt; Fusion Extensions\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"label\"\u0026gt;New \u00b7 Trending\u0026lt;\/span\u0026gt;\n \u0026lt;h4\u0026gt;Fusion \/ I-Tip Extensions\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Keratin-bonded strands for seamless, long-wear installs. Pre-tested for heat resistance and bond durability.\u0026lt;\/p\u0026gt;\n \u0026lt;span class=\"highlight-badge\"\u0026gt;Low minimums\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-vector-square\" style=\"font-size:2rem;\"\u0026gt;\u0026lt;\/i\u0026gt; Lace Closures\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"label\"\u0026gt;Bestseller\u0026lt;\/span\u0026gt;\n \u0026lt;h4\u0026gt;HD Lace Closures \u0026amp; Frontals\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Pre-bleached knots, invisible lace. Skin-melt tested under natural light.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-layer-group\" style=\"font-size:2rem;\"\u0026gt;\u0026lt;\/i\u0026gt; Weft \u0026amp; Bundles\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;h4\u0026gt;Machine Weft \u0026amp; Hand-Tied\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Double-stitched wefts, minimal shedding. Available in body wave, straight, deep curly.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-box-open\" style=\"font-size:2rem;\"\u0026gt;\u0026lt;\/i\u0026gt; Salon Kits\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;h4\u0026gt;Starter \u0026amp; Pro Kits\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Curated bundles for salons: hair + tools + care. Ready to retail or use in-chair.\u0026lt;\/p\u0026gt;\n \u0026lt;span class=\"highlight-badge\"\u0026gt;Free branding\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align:center; margin-top:48px;\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-outline-light\"\u0026gt;View All Categories \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- How We Work \u7b80\u8981\u7248 (\u4fe1\u4efb\u6d41\u7a0b) --\u0026gt;\n \u0026lt;section\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;How our curation engine works\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-sub\"\u0026gt;Three steps that turn factory hair into your premium, client-ready product.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"process-steps\"\u0026gt;\n \u0026lt;div class=\"process-step\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;01\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;We Hunt \u0026amp; Select\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We vet 30+ workshops, blind-test samples, and hand-pick the top 5% for you. You skip months of sourcing.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-step\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;02\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;50-Point QC Check\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Your personal quality firewall. Shed, color, lace, wash test \u2014 we inspect so your client never complains.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-step\"\u0026gt;\n \u0026lt;div class=\"step-number\"\u0026gt;03\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Kit, Brand \u0026amp; Deliver\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We assemble your branded kits with accessories, shoot content, and ship globally. You start selling immediately.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align:center; margin-top:40px;\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;See Our Full Process \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- \u793e\u4f1a\u8ba4\u540c (Proof) --\u0026gt;\n \u0026lt;section style=\"background:#fafaf8;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Trusted by salon owners \u0026amp; retailers\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"testimonial-grid\"\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;div class=\"stars\"\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;p\u0026gt;\u201cI used to lose clients over shedding. Since switching to HaloCraft, my complaints dropped to zero. The live QC call is a game\u2011changer.\u201d\u0026lt;\/p\u0026gt;\n \u0026lt;span class=\"author\"\u0026gt;\u2014 Maria, Salon Owner, Austin TX\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;div class=\"stars\"\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;p\u0026gt;\u201cThe kits save me hours. Everything arrives pre\u2011checked and beautifully packaged. I sell it the same day it lands.\u201d\u0026lt;\/p\u0026gt;\n \u0026lt;span class=\"author\"\u0026gt;\u2014 James, Online Retailer, London\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;div class=\"stars\"\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;p\u0026gt;\u201cFinally a partner who understands my standards. The Fusion extensions I ordered had zero bonds failure. My clients are thrilled.\u201d\u0026lt;\/p\u0026gt;\n \u0026lt;span class=\"author\"\u0026gt;\u2014 Tanya, Hair Stylist, Toronto\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- \u4f20\u7edf\u65b9\u5f0f vs \u6211\u4eec\u7684\u65b9\u5f0f (\u5bf9\u6bd4\u5fc3\u7406\u5b66) --\u0026gt;\n \u0026lt;section\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;The old way vs. The curated way\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"compare-table\"\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\n \u0026lt;div class=\"compare-cell header\"\u0026gt;Traditional Factory Order\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell header\"\u0026gt;HaloCraft Curation\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; You are your own blind QC\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; A dedicated QC team inspects every piece\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Hope the batch matches sample\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; See your actual order on live video before shipping\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Plastic bag delivery, deal with it\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; Branded, retail\u2011ready kit with free content\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Chasing multiple suppliers for accessories\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; One shipment, all problems solved\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- \u96f6\u98ce\u9669CTA (\u884c\u52a8) --\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"cta-section\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to experience hair without the headache?\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"font-size:1.2rem; opacity:0.9;\"\u0026gt;Request your sample kit today. We'll walk you through it live \u2014 you approve before you pay.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\" style=\"background:#c9a74b; color:#1e1e1e; font-weight:700;\"\u0026gt;Start Your QC-Approved Sample\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top:16px; font-size:0.9rem; opacity:0.7;\"\u0026gt;\u0026lt;i class=\"fas fa-lock\"\u0026gt;\u0026lt;\/i\u0026gt; Zero risk \u00b7 Video preview \u00b7 PayPal \u0026amp; Wise accepted\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- \u9875\u811a --\u0026gt;\n \u0026lt;footer\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"footer-grid\"\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\n \u0026lt;h4\u0026gt;HaloCraft.Hair\u0026lt;\/h4\u0026gt;\n \u0026lt;p style=\"font-size:0.9rem;\"\u0026gt;Your curation \u0026amp; QC partner for premium hair extensions. We protect your reputation, one order at a time.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\n \u0026lt;h4\u0026gt;Categories\u0026lt;\/h4\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Fusion Extensions\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Lace Closures\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Weft \u0026amp; Bundles\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Salon Kits\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\n \u0026lt;h4\u0026gt;Support\u0026lt;\/h4\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;FAQ\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Shipping \u0026amp; Returns\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\n \u0026lt;h4\u0026gt;Connect\u0026lt;\/h4\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;\u0026lt;i class=\"fab fa-instagram\"\u0026gt;\u0026lt;\/i\u0026gt; Instagram\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;\u0026lt;i class=\"fab fa-whatsapp\"\u0026gt;\u0026lt;\/i\u0026gt; WhatsApp\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;\u0026lt;i class=\"fab fa-pinterest\"\u0026gt;\u0026lt;\/i\u0026gt; Pinterest\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"copyright\"\u0026gt;\n \u00a9 2025 HaloCraft Hair. All rights reserved. \u00b7 Privacy \u00b7 Terms\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/footer\u0026gt;\n\n \u0026lt;!-- \u6c49\u5821\u83dc\u5355\u4ea4\u4e92 --\u0026gt;\n \u0026lt;script\u0026gt;\n const hamburger = document.getElementById('hamburger');\n const navLinks = document.getElementById('navLinks');\n hamburger.addEventListener('click', () =\u0026gt; {\n navLinks.classList.toggle('active');\n });\n \u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9307860}"}}}],"title":"test - home page deepseek","uid":"82cece0e-bcc1-46b4-89e9-dc70584dfa1f","path":"\/test-home-page-deepseek","autoPath":true,"authorized":true},{"type":"Page","id":"f_17f0d13d-099a-40ab-a96a-1da859270df1","sections":[{"type":"Slide","id":"f_53548fa4-665d-4c7d-8f0a-c5be5e3a3a10","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_ef59f77d-bfc9-44be-ad37-a02643978a3c","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_31db8663-f4c1-45cd-9404-c636f92b068c","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003eproduct page deepseek\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_285051a8-037e-460c-b65d-1c7b10598574","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_8bc08f82-7a3d-4d7e-bd05-665dded0f10e","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27309506,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes\"\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Shop B2B wholesale hair extensions curated and QC'd for salon owners, retailers, and distributors. Fusion, lace closures, wefts, and salon kits with free branding and live video preview.\"\u0026gt;\n \u0026lt;title\u0026gt;Wholesale Hair Extensions | Fusion, Lace, Wefts \u0026amp; Kits | HaloCraft Hair\u0026lt;\/title\u0026gt;\n \u0026lt;!-- Font Awesome --\u0026gt;\n \u0026lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0-beta3\/css\/all.min.css\"\u0026gt;\n \u0026lt;!-- \u7ed3\u6784\u5316\u6570\u636e JSON-LD --\u0026gt;\n \u0026lt;script type=\"application\/ld+json\"\u0026gt;\n {\n \"@context\": \"https:\/\/schema.org\",\n \"@type\": \"CollectionPage\",\n \"name\": \"B2B Hair Extension Products\",\n \"description\": \"Wholesale curated hair extensions including fusion, lace closures, wefts, and salon kits with rigorous QC and branding services.\",\n \"url\": \"https:\/\/www.halocrafthair.com\/products\",\n \"provider\": {\n \"@type\": \"Organization\",\n \"name\": \"HaloCraft Hair\"\n },\n \"mainEntity\": [\n {\n \"@type\": \"Product\",\n \"name\": \"Fusion \/ I-Tip Hair Extensions\",\n \"description\": \"Keratin-bonded strands, pre-tested for heat resistance and bond durability. Low minimums for salon owners.\",\n \"sku\": \"HC-FUSION-KIT\",\n \"offers\": {\n \"@type\": \"Offer\",\n \"availability\": \"https:\/\/schema.org\/InStock\",\n \"priceCurrency\": \"USD\",\n \"price\": \"0.00\",\n \"description\": \"Contact for wholesale pricing\"\n }\n },\n {\n \"@type\": \"Product\",\n \"name\": \"HD Lace Closures \u0026amp; Frontals\",\n \"description\": \"Pre-bleached knots, invisible lace, skin-melt tested. Bestseller for quality-conscious stylists.\",\n \"sku\": \"HC-LACE-CLOSURE\"\n },\n {\n \"@type\": \"Product\",\n \"name\": \"Machine Weft \u0026amp; Hand-Tied Bundles\",\n \"description\": \"Double-stitched wefts, minimal shedding. Available in body wave, straight, deep curly.\",\n \"sku\": \"HC-WEFT-BUNDLE\"\n },\n {\n \"@type\": \"Product\",\n \"name\": \"Salon Starter \u0026amp; Pro Kits\",\n \"description\": \"Curated bundles with hair, tools, and care guides. Ready to retail or use in-chair. Free branding included.\",\n \"sku\": \"HC-SALON-KIT\"\n }\n ]\n }\n \u0026lt;\/script\u0026gt;\n \u0026lt;style\u0026gt;\n * { margin: 0; padding: 0; box-sizing: border-box; }\n body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #fff; color: #1e1e1e; line-height: 1.5; }\n .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }\n\n \/* \u6309\u94ae *\/\n .btn { display: inline-block; padding: 12px 28px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: 0.2s; cursor: pointer; border: none; font-size: 0.95rem; }\n .btn-primary { background: #1e1e1e; color: #fff; }\n .btn-primary:hover { background: #c9a74b; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,167,75,0.4); }\n .btn-outline { background: transparent; border: 2px solid #1e1e1e; color: #1e1e1e; }\n .btn-outline:hover { background: #1e1e1e; color: #fff; }\n .btn-gold { background: #c9a74b; color: #1e1e1e; font-weight: 700; }\n .btn-gold:hover { background: #b8912f; }\n\n \/* \u5bfc\u822a *\/\n header { background: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; z-index: 100; padding: 15px 0; }\n .navbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }\n .logo { font-size: 1.7rem; font-weight: 700; color: #1e1e1e; text-decoration: none; }\n .logo span { color: #c9a74b; }\n .nav-links { display: flex; gap: 28px; align-items: center; }\n .nav-links a { text-decoration: none; color: #1e1e1e; font-weight: 500; font-size: 0.95rem; }\n .nav-links a:hover { color: #c9a74b; }\n .hamburger { display: none; background: none; border: none; font-size: 1.5rem; }\n\n \/* \u9875\u9762\u5934\u90e8 *\/\n .page-hero { padding: 60px 0 40px; text-align: center; background: #fafaf8; }\n .page-hero h1 { font-size: 2.8rem; font-weight: 700; letter-spacing: -0.8px; margin-bottom: 12px; }\n .page-hero p { font-size: 1.15rem; color: #4a4a4a; max-width: 600px; margin: 0 auto; }\n\n \/* \u8fc7\u6ee4\u6761 *\/\n .filter-bar { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 30px 0 40px; }\n .filter-btn { background: #f0f0f0; border: none; padding: 10px 20px; border-radius: 30px; font-weight: 500; cursor: pointer; transition: 0.2s; font-size: 0.9rem; }\n .filter-btn:hover, .filter-btn.active { background: #1e1e1e; color: #fff; }\n\n \/* \u4ea7\u54c1\u7f51\u683c *\/\n .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin: 40px 0; }\n .product-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.04); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; border: 1px solid #f2f1ed; }\n .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px rgba(0,0,0,0.08); }\n .product-img { height: 230px; background: #eae7e1; display: flex; align-items: center; justify-content: center; color: #666; font-weight: 500; position: relative; }\n .badge-tag { position: absolute; top: 12px; left: 12px; background: #c9a74b; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.4px; }\n .badge-trending { background: #1e1e1e; }\n .product-info { padding: 22px; flex: 1; display: flex; flex-direction: column; }\n .product-info h3 { font-size: 1.25rem; margin-bottom: 6px; font-weight: 700; }\n .product-info .category { color: #c9a74b; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }\n .product-info p { color: #4a4a4a; font-size: 0.95rem; margin-bottom: 16px; flex: 1; }\n .value-props { list-style: none; margin-bottom: 20px; }\n .value-props li { font-size: 0.85rem; margin-bottom: 6px; color: #333; }\n .value-props li i { color: #2e7d32; margin-right: 6px; }\n .card-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }\n\n \/* \u5bf9\u6bd4\u8868 *\/\n .compare-section { background: #fafaf8; padding: 70px 0; margin: 60px 0; }\n .section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 40px; }\n .compare-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 800px; margin: 0 auto; gap: 0; border: 1px solid #e0e0e0; border-radius: 20px; overflow: hidden; }\n .compare-cell { padding: 18px 24px; border-bottom: 1px solid #e0e0e0; display: flex; align-items: center; }\n .compare-header { background: #1e1e1e; color: #fff; font-weight: 700; }\n .compare-check { color: #2e7d32; margin-right: 10px; }\n .compare-cross { color: #b71c1c; margin-right: 10px; }\n\n \/* CTA *\/\n .cta-block { background: #1e1e1e; color: #fff; border-radius: 32px; padding: 60px 30px; text-align: center; margin: 60px 0; }\n .cta-block h2 { font-size: 2rem; margin-bottom: 12px; }\n .cta-block p { opacity: 0.85; margin-bottom: 28px; font-size: 1.1rem; }\n .trust-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 24px; font-size: 0.9rem; opacity: 0.8; }\n\n \/* \u9875\u811a *\/\n footer { background: #fff; border-top: 1px solid #eee; padding: 40px 0; text-align: center; color: #888; }\n\n \/* \u54cd\u5e94\u5f0f *\/\n @media (max-width: 768px) {\n .nav-links { display: none; width: 100%; flex-direction: column; margin-top: 16px; }\n .nav-links.active { display: flex; }\n .hamburger { display: block; }\n .page-hero h1 { font-size: 2rem; }\n .compare-grid { grid-template-columns: 1fr; }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n \u0026lt;!-- \u5bfc\u822a --\u0026gt;\n \u0026lt;header\u0026gt;\n \u0026lt;div class=\"container navbar\"\u0026gt;\n \u0026lt;a href=\"\/\" class=\"logo\"\u0026gt;HaloCraft\u0026lt;span\u0026gt;.\u0026lt;\/span\u0026gt;Hair\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"hamburger\" id=\"hamburger\"\u0026gt;\u0026lt;i class=\"fas fa-bars\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;div class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;a href=\"\/\"\u0026gt;Home\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"\/how-we-work\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"\/products\" style=\"color:#c9a74b; font-weight:700;\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"\/about\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"\/contact\" class=\"btn btn-outline\"\u0026gt;Request Sample\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/header\u0026gt;\n\n \u0026lt;!-- \u9875\u9762\u5934\u90e8 --\u0026gt;\n \u0026lt;section class=\"page-hero\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h1\u0026gt;Curated Hair Extensions for Professionals\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;Every product passes our 50-point QC and arrives branded and shelf\u2011ready. Choose your category and let\u2019s elevate your business.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- \u5feb\u901f\u8fc7\u6ee4 --\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"filter-bar\" id=\"filterBar\"\u0026gt;\n \u0026lt;button class=\"filter-btn active\" data-filter=\"all\"\u0026gt;All Categories\u0026lt;\/button\u0026gt;\n \u0026lt;button class=\"filter-btn\" data-filter=\"fusion\"\u0026gt;Fusion \/ I-Tip\u0026lt;\/button\u0026gt;\n \u0026lt;button class=\"filter-btn\" data-filter=\"lace\"\u0026gt;Lace Closures\u0026lt;\/button\u0026gt;\n \u0026lt;button class=\"filter-btn\" data-filter=\"weft\"\u0026gt;Wefts \u0026amp; Bundles\u0026lt;\/button\u0026gt;\n \u0026lt;button class=\"filter-btn\" data-filter=\"kits\"\u0026gt;Salon Kits\u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- \u4ea7\u54c1\u7f51\u683c --\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"product-grid\" id=\"productGrid\"\u0026gt;\n \u0026lt;!-- Fusion Extensions Card --\u0026gt;\n \u0026lt;div class=\"product-card\" data-category=\"fusion\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\n \u0026lt;span class=\"badge-tag badge-trending\"\u0026gt;Trending Now\u0026lt;\/span\u0026gt;\n \u0026lt;i class=\"fas fa-fire\" style=\"font-size:2.5rem; color:#c9a74b;\"\u0026gt;\u0026lt;\/i\u0026gt; Fusion\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"category\"\u0026gt;Fusion \/ I-Tip\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;Keratin Fusion Extensions\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Seamless, long\u2011wear bonds pre\u2011tested for heat resistance. Ideal for salons offering premium installs.\u0026lt;\/p\u0026gt;\n \u0026lt;ul class=\"value-props\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Zero bond failure guarantee\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Low MOQ \u2013 start with 50 strands\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Free application guide for your clients\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;div class=\"card-actions\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;Start Sample Order\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-outline\"\u0026gt;Live QC Preview\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- Lace Closures Card --\u0026gt;\n \u0026lt;div class=\"product-card\" data-category=\"lace\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\n \u0026lt;span class=\"badge-tag\"\u0026gt;Bestseller\u0026lt;\/span\u0026gt;\n \u0026lt;i class=\"fas fa-vector-square\" style=\"font-size:2.5rem;\"\u0026gt;\u0026lt;\/i\u0026gt; Lace\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"category\"\u0026gt;Lace Closures \u0026amp; Frontals\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;HD Invisible Lace Closures\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Pre\u2011bleached knots, pre\u2011plucked hairline, tested on real skin tones for true invisibility.\u0026lt;\/p\u0026gt;\n \u0026lt;ul class=\"value-props\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Skin\u2011melt tested under natural light\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; 12x6 inch transparent lace\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Free branded packaging option\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;div class=\"card-actions\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;Request Sample\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-outline\"\u0026gt;Video Inspection\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- Weft \u0026amp; Bundles Card --\u0026gt;\n \u0026lt;div class=\"product-card\" data-category=\"weft\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\n \u0026lt;span class=\"badge-tag\"\u0026gt;Popular\u0026lt;\/span\u0026gt;\n \u0026lt;i class=\"fas fa-layer-group\" style=\"font-size:2.5rem;\"\u0026gt;\u0026lt;\/i\u0026gt; Weft\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"category\"\u0026gt;Wefts \u0026amp; Bundles\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;Machine \u0026amp; Hand\u2011Tied Wefts\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Double\u2011stitched for minimal shedding. Available in body wave, straight, deep curly \u2013 consistent color batch to batch.\u0026lt;\/p\u0026gt;\n \u0026lt;ul class=\"value-props\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Shed\u2011tested (\u0026lt; 3 hairs per weft)\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Color consistency guaranteed\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Custom lengths available\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;div class=\"card-actions\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;Get Wholesale Quote\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-outline\"\u0026gt;See Color Chart\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- Salon Kits Card --\u0026gt;\n \u0026lt;div class=\"product-card\" data-category=\"kits\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\n \u0026lt;span class=\"badge-tag badge-trending\"\u0026gt;New\u0026lt;\/span\u0026gt;\n \u0026lt;i class=\"fas fa-box-open\" style=\"font-size:2.5rem;\"\u0026gt;\u0026lt;\/i\u0026gt; Kit\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\n \u0026lt;span class=\"category\"\u0026gt;Salon Kits\u0026lt;\/span\u0026gt;\n \u0026lt;h3\u0026gt;Starter \u0026amp; Pro Salon Kits\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Ready\u2011to\u2011retail kits with hair, tools, care guide, and your branding. Unbox = sell.\u0026lt;\/p\u0026gt;\n \u0026lt;ul class=\"value-props\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Includes glue, comb, care card\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Free social media photoshoot\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;i class=\"fas fa-check-circle\"\u0026gt;\u0026lt;\/i\u0026gt; Dropshipping ready\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;div class=\"card-actions\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;Build Your Kit\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-outline\"\u0026gt;Learn More\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- \u5bf9\u6bd4\u6a21\u5757\uff1a\u4f20\u7edf vs \u6211\u4eec --\u0026gt;\n \u0026lt;div class=\"compare-section\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;What You Get vs. Traditional Factory Order\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"compare-grid\"\u0026gt;\n \u0026lt;div class=\"compare-cell compare-header\"\u0026gt;Traditional Factory\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell compare-header\"\u0026gt;HaloCraft Curation\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times compare-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Bulk plastic bag delivery\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check compare-check\"\u0026gt;\u0026lt;\/i\u0026gt; Branded, retail\u2011ready packaging\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times compare-cross\"\u0026gt;\u0026lt;\/i\u0026gt; You handle QC and returns\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check compare-check\"\u0026gt;\u0026lt;\/i\u0026gt; 50\u2011point QC, we reject defects\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times compare-cross\"\u0026gt;\u0026lt;\/i\u0026gt; No marketing support\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check compare-check\"\u0026gt;\u0026lt;\/i\u0026gt; Free photos \u0026amp; content for your shop\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times compare-cross\"\u0026gt;\u0026lt;\/i\u0026gt; One product, find accessories yourself\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check compare-check\"\u0026gt;\u0026lt;\/i\u0026gt; Complete kits in one shipment\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- \u96f6\u98ce\u9669CTA --\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"cta-block\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to Test Our Quality Risk\u2011Free?\u0026lt;\/h2\u0026gt;\n \u0026lt;p\u0026gt;Get a sample kit and we\u2019ll walk you through it live on video before you pay a cent. Your reputation deserves this.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-gold\" style=\"font-size:1.1rem; padding:14px 36px;\"\u0026gt;Start Your QC-Approved Sample\u0026lt;\/a\u0026gt;\n \u0026lt;div class=\"trust-icons\"\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;i class=\"fas fa-shield-alt\"\u0026gt;\u0026lt;\/i\u0026gt; PayPal \u0026amp; Wise Secure\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;i class=\"fas fa-video\"\u0026gt;\u0026lt;\/i\u0026gt; Live Order Preview\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt; 40+ Salon Partners\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- \u9875\u811a --\u0026gt;\n \u0026lt;footer\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;p\u0026gt;\u00a9 2025 HaloCraft Hair. Curated for professionals. Trusted by stylists worldwide.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/footer\u0026gt;\n\n \u0026lt;!-- \u7b80\u5355\u8fc7\u6ee4JS --\u0026gt;\n \u0026lt;script\u0026gt;\n const filterBtns = document.querySelectorAll('.filter-btn');\n const productCards = document.querySelectorAll('.product-card');\n\n filterBtns.forEach(btn =\u0026gt; {\n btn.addEventListener('click', () =\u0026gt; {\n filterBtns.forEach(b =\u0026gt; b.classList.remove('active'));\n btn.classList.add('active');\n const filter = btn.dataset.filter;\n productCards.forEach(card =\u0026gt; {\n if (filter === 'all' || card.dataset.category === filter) {\n card.style.display = 'flex';\n } else {\n card.style.display = 'none';\n }\n });\n });\n });\n\n \/\/ \u6c49\u5821\u83dc\u5355\n document.getElementById('hamburger').addEventListener('click', () =\u0026gt; {\n document.getElementById('navLinks').classList.toggle('active');\n });\n \u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9307862}"}}}],"title":"test - product page deep seek","uid":"f1bb5b10-db3f-427f-b8be-e359ba9122fa","path":"\/test-product-page-deep-seek","autoPath":true,"authorized":true},{"type":"Page","id":"f_8679a7f7-d370-40f9-a73b-9df117c645ba","sections":[{"type":"Slide","id":"f_bc15bb19-0701-437f-a0ce-c9177e8c0b67","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_de732969-e1a7-4805-af1f-2cb615e7d394","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_6f02e4eb-1e52-44bd-aa21-9b9398e63403","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003ehome workbuddy\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_5035b140-cad8-4031-828f-43d27748bd45","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_2a53774f-664f-4821-ade3-af538569058b","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27309805,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n\u0026lt;meta charset=\"UTF-8\"\u0026gt;\n\u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u0026gt;\n\u0026lt;meta name=\"description\" content=\"Reshyn \u2014 B2B Hair Extensions Direct from Source. Source-direct pricing, eyes-on QC, flexible MOQ, multi-factory sourcing, optional customs assistance. One partner. Zero surprises.\"\u0026gt;\n\u0026lt;meta name=\"keywords\" content=\"hair extensions B2B, wholesale hair extensions, tape-in extensions, fusion extensions, clip-in extensions, virgin Remy hair, salon supplier\"\u0026gt;\n\u0026lt;meta property=\"og:title\" content=\"Reshyn \u2014 You Can't Be at the Factory. We Are.\"\u0026gt;\n\u0026lt;meta property=\"og:description\" content=\"B2B Hair Extensions Direct from Source. Eyes-on QC. Flexible MOQ. One point of contact from sample to delivery.\"\u0026gt;\n\u0026lt;meta property=\"og:type\" content=\"website\"\u0026gt;\n\u0026lt;title\u0026gt;Reshyn \u2014 B2B Hair Extensions | Direct from Source\u0026lt;\/title\u0026gt;\n\u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u0026gt;\n\u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u0026gt;\n\u0026lt;link href=\"https:\/\/fonts.googleapis.com\/css2?family=Libre+Bodoni:ital,wght@0,400;0,700;1,400\u0026amp;family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400\u0026amp;display=swap\" rel=\"stylesheet\"\u0026gt;\n\u0026lt;style\u0026gt;\n\/* ===== CSS Custom Properties \u2014 Design Tokens ===== *\/\n:root {\n --navy: #0F172A;\n --navy-dark: #020617;\n --navy-card: #1E293B;\n --gold: #A16207;\n --gold-light: rgba(162, 98, 7, 0.15);\n --gold-border: rgba(162, 98, 7, 0.4);\n --white: #FFFFFF;\n --light: #F8FAFC;\n --muted: #E8ECF1;\n --muted-fg: #64748B;\n --gray: #94A3B8;\n --border: #E2E8F0;\n --amber-bg: #FFFBEB;\n --amber-img: #FEF3C7;\n --font-heading: 'Libre Bodoni', Georgia, 'Times New Roman', serif;\n --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;\n --section-pad: clamp(40px, 8vw, 100px) clamp(16px, 5.5vw, 80px);\n --max-width: 1280px;\n --header-h: 72px;\n}\n\n\/* ===== Reset \u0026amp; Base ===== *\/\n*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }\nhtml { scroll-behavior: smooth; }\nbody {\n font-family: var(--font-body);\n font-size: 16px;\n line-height: 1.6;\n color: var(--navy);\n background: var(--white);\n -webkit-font-smoothing: antialiased;\n}\n\n\/* ===== Utility ===== *\/\n.container { width: 100%; max-width: var(--max-width); margin: 0 auto; }\n.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }\n\n\/* ===== Header ===== *\/\n.header {\n position: fixed; top: 0; left: 0; right: 0; z-index: 1000;\n height: var(--header-h); background: var(--navy);\n display: flex; align-items: center; padding: 0 clamp(16px, 5.5vw, 80px);\n backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);\n}\n.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-width); margin: 0 auto; }\n.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 4px; text-decoration: none; white-space: nowrap; }\n.nav { display: flex; align-items: center; gap: 2.5rem; }\n.nav a { color: var(--gray); text-decoration: none; font-size: 0.875rem; font-weight: 400; transition: color 0.2s; }\n.nav a:hover, .nav a.active { color: var(--white); }\n.nav a.active { font-weight: 600; }\n.nav-cta {\n display: inline-flex; align-items: center; padding: 0.625rem 1.5rem;\n background: var(--gold); color: var(--white); text-decoration: none;\n font-size: 0.875rem; font-weight: 600; transition: opacity 0.2s;\n}\n.nav-cta:hover { opacity: 0.9; }\n.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }\n.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }\n.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }\n.hamburger.open span:nth-child(2) { opacity: 0; }\n.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }\n.mobile-menu { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--navy); padding: 2rem; flex-direction: column; gap: 1.25rem; z-index: 999; }\n.mobile-menu.open { display: flex; }\n.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1rem; }\n.mobile-menu .nav-cta { width: fit-content; margin-top: 0.5rem; }\n\n\/* ===== Section Base ===== *\/\n.section { padding: var(--section-pad); }\n.section-label { font-size: 0.8125rem; font-weight: 600; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1rem; }\n.section-heading { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.625rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }\n.section-subhead { font-size: clamp(1rem, 2vw, 1.125rem); color: var(--muted-fg); line-height: 1.65; max-width: 620px; }\n\n\/* ===== Hero ===== *\/\n.hero { background: var(--navy); padding-top: calc(var(--header-h) + clamp(40px, 8vw, 100px)); padding-bottom: clamp(40px, 8vw, 100px); padding-left: clamp(16px, 5.5vw, 80px); padding-right: clamp(16px, 5.5vw, 80px); }\n.hero-inner { display: flex; align-items: center; gap: clamp(2rem, 6vw, 5rem); max-width: var(--max-width); margin: 0 auto; }\n.hero-content { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }\n.hero-badge { display: inline-flex; align-items: center; padding: 0.375rem 1rem; background: var(--navy-card); color: var(--gold); font-size: 0.8125rem; font-weight: 500; width: fit-content; }\n.hero-headline { font-family: var(--font-heading); font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 700; color: var(--white); line-height: 1.1; }\n.hero-sub { font-size: clamp(1rem, 1.8vw, 1.125rem); color: var(--gray); line-height: 1.65; }\n.hero-ctas { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }\n.hero-cta-primary {\n display: inline-flex; padding: 1rem 2rem; background: var(--gold); color: var(--white);\n font-size: 1rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s;\n}\n.hero-cta-primary:hover { opacity: 0.9; }\n.hero-cta-secondary { font-size: 1rem; font-weight: 500; color: var(--gold); text-decoration: none; transition: opacity 0.2s; }\n.hero-cta-secondary:hover { opacity: 0.8; }\n.hero-trust { font-size: 0.8125rem; color: var(--muted-fg); }\n.hero-visual { flex: 1; min-height: 320px; background: var(--navy-card); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }\n.hero-visual::before {\n content: ''; position: absolute; inset: 0;\n background: linear-gradient(135deg, rgba(162,98,7,0.15) 0%, transparent 60%, rgba(15,23,42,0.6) 100%);\n z-index: 1;\n}\n.hero-visual-placeholder {\n font-size: 0.875rem; color: var(--muted-fg); text-align: center; z-index: 0;\n position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);\n}\n\n\/* ===== Problem ===== *\/\n.problem { background: var(--light); text-align: center; }\n.problem-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }\n.pain-card { background: var(--white); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; text-align: left; }\n.pain-card-icon { width: 48px; height: 48px; background: var(--amber-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }\n.pain-card-icon svg { width: 24px; height: 24px; color: var(--gold); }\n.pain-card h3 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--navy); }\n.pain-card p { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.6; }\n.bridge { margin-top: 3rem; }\n.bridge h3 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--navy); margin-bottom: 0.75rem; }\n.bridge p { font-size: 1.125rem; color: var(--muted-fg); line-height: 1.65; max-width: 640px; margin: 0 auto; }\n\n\/* ===== USP Bento ===== *\/\n.usp { background: var(--navy); text-align: center; }\n.usp .section-heading { color: var(--white); }\n.usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }\n.usp-card { background: var(--navy-card); padding: 2rem; text-align: left; display: flex; flex-direction: column; gap: 0.75rem; position: relative; }\n.usp-card.featured { border: 1px solid var(--gold-border); }\n.usp-card h3 { font-family: var(--font-heading); font-size: 1.375rem; color: var(--white); }\n.usp-card p { font-size: 0.9375rem; color: var(--gray); line-height: 1.6; }\n.usp-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.75rem; background: var(--gold); color: var(--white); font-size: 0.6875rem; font-weight: 600; letter-spacing: 2px; }\n\n\/* ===== Products ===== *\/\n.products { background: var(--white); text-align: center; }\n.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }\n.product-card { background: var(--light); padding: 1.5rem 1.25rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; position: relative; }\n.product-card.fusion-highlight { background: var(--amber-bg); border: 2px solid var(--gold-border); }\n.product-img { width: 100%; height: 140px; background: var(--muted); display: flex; align-items: center; justify-content: center; }\n.product-card.fusion-highlight .product-img { background: var(--amber-img); }\n.product-img span { font-size: 0.75rem; color: var(--muted-fg); }\n.product-card h3 { font-family: var(--font-heading); font-size: 1.125rem; color: var(--navy); }\n.product-card p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.5; }\n.trending-badge { position: absolute; top: 0.5rem; right: 0.5rem; padding: 0.25rem 0.75rem; background: var(--gold); color: var(--white); font-size: 0.6875rem; font-weight: 600; letter-spacing: 2px; }\n\n\/* ===== Differentiation ===== *\/\n.diff { background: var(--light); text-align: center; }\n.comparison-table { background: var(--white); margin-top: 2.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }\n.comparison-table table { width: 100%; border-collapse: collapse; min-width: 600px; }\n.comparison-table thead { background: var(--navy); }\n.comparison-table th { padding: 1rem 2rem; text-align: left; font-size: 0.875rem; font-weight: 600; color: var(--white); }\n.comparison-table th:first-child { color: var(--white); }\n.comparison-table th:nth-child(2) { color: var(--gray); text-align: center; }\n.comparison-table th:nth-child(3) { color: var(--gold); text-align: center; }\n.comparison-table td { padding: 1rem 2rem; font-size: 0.875rem; border-bottom: 1px solid var(--border); }\n.comparison-table td:first-child { font-weight: 500; color: var(--navy); }\n.comparison-table td:nth-child(2) { color: var(--muted-fg); text-align: center; }\n.comparison-table td:nth-child(3) { color: var(--gold); font-weight: 600; text-align: center; }\n.comparison-table tr:nth-child(even) td { background: var(--light); }\n.invisible-work { margin-top: 3rem; }\n.invisible-heading { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 1.875rem); color: var(--navy); margin-bottom: 2rem; }\n.invisible-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }\n.inv-card { background: var(--white); padding: 1.75rem; text-align: left; display: flex; flex-direction: column; gap: 0.75rem; }\n.inv-card h4 { font-family: var(--font-heading); font-size: 1.125rem; color: var(--navy); }\n.inv-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }\n\n\/* ===== Social Proof ===== *\/\n.social { background: var(--navy); text-align: center; }\n.social .section-heading { color: var(--white); }\n.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 2.5rem; }\n.stat { padding: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }\n.stat-number { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--gold); line-height: 1.1; }\n.stat-label { font-size: 0.875rem; font-weight: 500; color: var(--gray); }\n.testimonials-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }\n.testimonial { background: var(--navy-card); padding: 2rem; text-align: left; display: flex; flex-direction: column; gap: 1rem; }\n.testimonial blockquote { font-size: 0.9375rem; font-style: italic; color: var(--border); line-height: 1.6; margin: 0; }\n.testimonial blockquote::before { content: '\\201C'; font-family: var(--font-heading); font-size: 2rem; color: var(--gold); line-height: 0; vertical-align: -0.3em; margin-right: 0.25rem; }\n.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }\n.testimonial-author strong { font-size: 0.875rem; color: var(--white); }\n.testimonial-author span { font-size: 0.8125rem; color: var(--muted-fg); }\n\n\/* ===== Pricing ===== *\/\n.pricing { background: var(--white); text-align: center; }\n.pricing-factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }\n.factor-card { background: var(--light); padding: 1.75rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }\n.factor-number { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; color: var(--gold); }\n.factor-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); }\n.factor-card p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.5; text-align: center; }\n.price-cta {\n display: inline-flex; padding: 1rem 2rem; background: var(--gold); color: var(--white);\n font-size: 1rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s;\n}\n.price-cta:hover { opacity: 0.9; }\n.price-trust { font-size: 0.8125rem; color: var(--muted-fg); margin-top: 0.75rem; }\n\n\/* ===== FAQ ===== *\/\n.faq { background: var(--light); text-align: center; }\n.faq-list { max-width: 720px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }\n.faq-item { background: var(--white); padding: 1.5rem; text-align: left; cursor: pointer; }\n.faq-item h3 { font-size: 1rem; font-weight: 600; color: var(--navy); display: flex; align-items: flex-start; gap: 0.75rem; }\n.faq-item h3::after { content: '+'; margin-left: auto; font-size: 1.25rem; color: var(--muted-fg); font-weight: 400; transition: transform 0.3s; flex-shrink: 0; }\n.faq-item.open h3::after { content: '\\2212'; color: var(--gold); }\n.faq-answer { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }\n.faq-item.open .faq-answer { max-height: 300px; padding-top: 0.75rem; }\n\n\/* ===== Final CTA ===== *\/\n.final-cta { background: var(--navy); text-align: center; padding: clamp(60px, 10vw, 120px) clamp(16px, 5.5vw, 80px); }\n.final-cta h2 { font-family: var(--font-heading); font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }\n.final-cta p { font-size: 1.125rem; color: var(--gray); line-height: 1.65; max-width: 600px; margin: 0 auto 2rem; }\n.final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; align-items: center; }\n.final-cta-primary { display: inline-flex; padding: 1.125rem 2.25rem; background: var(--gold); color: var(--white); font-size: 1.125rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }\n.final-cta-primary:hover { opacity: 0.9; }\n.final-cta-secondary { font-size: 1rem; font-weight: 500; color: var(--gold); text-decoration: none; }\n.final-cta-trust { font-size: 0.8125rem; color: var(--muted-fg); margin-top: 1.5rem; }\n\n\/* ===== Footer ===== *\/\n.footer { background: var(--navy-dark); padding: clamp(40px, 8vw, 80px) clamp(16px, 5.5vw, 80px) clamp(20px, 4vw, 40px); color: var(--muted-fg); }\n.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; max-width: var(--max-width); margin: 0 auto; }\n.footer-brand { display: flex; flex-direction: column; gap: 1rem; }\n.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 4px; }\n.footer-tagline { font-size: 0.875rem; line-height: 1.6; max-width: 260px; }\n.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }\n.footer-col h4 { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }\n.footer-col a { font-size: 0.8125rem; color: var(--muted-fg); text-decoration: none; transition: color 0.2s; }\n.footer-col a:hover { color: var(--white); }\n.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: var(--max-width); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.75rem; }\n.footer-legal { display: flex; gap: 1.5rem; }\n.footer-legal a { color: var(--muted-fg); text-decoration: none; }\n\n\/* ===== Animations ===== *\/\n.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }\n.reveal.visible { opacity: 1; transform: translateY(0); }\n\n\/* ===== Responsive ===== *\/\n@media (max-width: 1023px) {\n .hero-inner { flex-direction: column; text-align: center; }\n .hero-content { align-items: center; }\n .hero-visual { width: 100%; min-height: 250px; }\n .hero-ctas { justify-content: center; }\n .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }\n}\n\n@media (max-width: 767px) {\n .nav { display: none; }\n .nav-cta.desktop-only { display: none; }\n .hamburger { display: flex; }\n .usp-grid { grid-template-columns: 1fr; }\n .stats-row { grid-template-columns: 1fr; border: none; }\n .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }\n .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }\n .section-label { text-align: center; display: block; }\n .section-heading { text-align: center; }\n .section-subhead { text-align: center; margin-left: auto; margin-right: auto; }\n .hero-visual { min-height: 200px; }\n .problem-cards, .invisible-cards, .testimonials-row, .pricing-factors { grid-template-columns: 1fr; }\n .products-grid { grid-template-columns: repeat(2, 1fr); }\n}\n\n@media (max-width: 480px) {\n .products-grid { grid-template-columns: 1fr; }\n}\n\u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n\u0026lt;!-- ========== HEADER ========== --\u0026gt;\n\u0026lt;header class=\"header\"\u0026gt;\n \u0026lt;div class=\"header-inner\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;RESHYN\u0026lt;\/a\u0026gt;\n \u0026lt;nav class=\"nav\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"active\"\u0026gt;Home\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"reshyn-how-it-works.html\"\u0026gt;How It Works\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#about\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;\/nav\u0026gt;\n \u0026lt;a href=\"#quote\" class=\"nav-cta desktop-only\"\u0026gt;Get a Quote\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"hamburger\" aria-label=\"Toggle menu\" onclick=\"this.classList.toggle('open');document.querySelector('.mobile-menu').classList.toggle('open')\"\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;\/span\u0026gt;\u0026lt;span\u0026gt;\u0026lt;\/span\u0026gt;\u0026lt;span\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/header\u0026gt;\n\u0026lt;div class=\"mobile-menu\"\u0026gt;\n \u0026lt;a href=\"#\" onclick=\"closeMenu()\"\u0026gt;Home\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\" onclick=\"closeMenu()\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"reshyn-how-it-works.html\" onclick=\"closeMenu()\"\u0026gt;How It Works\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#about\" onclick=\"closeMenu()\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#quote\" class=\"nav-cta\" onclick=\"closeMenu()\"\u0026gt;Get a Quote\u0026lt;\/a\u0026gt;\n\u0026lt;\/div\u0026gt;\n\n\u0026lt;!-- ========== HERO ========== --\u0026gt;\n\u0026lt;section class=\"hero reveal\"\u0026gt;\n \u0026lt;div class=\"hero-inner\"\u0026gt;\n \u0026lt;div class=\"hero-content\"\u0026gt;\n \u0026lt;span class=\"hero-badge\"\u0026gt;B2B Hair Extensions \u2014 Direct from Source\u0026lt;\/span\u0026gt;\n \u0026lt;h1 class=\"hero-headline\"\u0026gt;You Can't Be at the Factory.\u0026lt;br\u0026gt;We Are.\u0026lt;\/h1\u0026gt;\n \u0026lt;p class=\"hero-sub\"\u0026gt;Source-direct pricing. Eyes-on QC. One point of contact from sample to delivery. Every order passes through our hands before it reaches yours.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"hero-ctas\"\u0026gt;\n \u0026lt;a href=\"#quote\" class=\"hero-cta-primary\"\u0026gt;Get a Quote\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#quote\" class=\"hero-cta-secondary\"\u0026gt;Request a Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"hero-trust\"\u0026gt;No commitment. No pressure. Just proof.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"hero-visual\"\u0026gt;\n \u0026lt;span class=\"hero-visual-placeholder\"\u0026gt;Factory Quality Inspection\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== PROBLEM ========== --\u0026gt;\n\u0026lt;section class=\"section problem reveal\" id=\"problem\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;span class=\"section-label\"\u0026gt;THE REALITY\u0026lt;\/span\u0026gt;\n \u0026lt;h2 class=\"section-heading\"\u0026gt;What You're Probably Dealing With Right Now\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"problem-cards\"\u0026gt;\n \u0026lt;div class=\"pain-card\"\u0026gt;\n \u0026lt;div class=\"pain-card-icon\"\u0026gt;\n \u0026lt;svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u0026gt;\u0026lt;path d=\"M12 2L2 7l10 5 10-5-10-5z\"\/\u0026gt;\u0026lt;path d=\"M2 17l10 5 10-5\"\/\u0026gt;\u0026lt;path d=\"M2 12l10 5 10-5\"\/\u0026gt;\u0026lt;\/svg\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;The Quality Lottery\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;One shipment is perfect. The next is unusable. You never know which you're getting until the box arrives \u2014 and by then, it's too late.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"pain-card\"\u0026gt;\n \u0026lt;div class=\"pain-card-icon\"\u0026gt;\n \u0026lt;svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u0026gt;\u0026lt;circle cx=\"12\" cy=\"12\" r=\"10\"\/\u0026gt;\u0026lt;path d=\"M12 6v6l4 2\"\/\u0026gt;\u0026lt;\/svg\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;The Information Void\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;You send a message asking for an update. Hours pass. Days pass. The reply: \"Ship next week.\" Next week comes. Silence. Your clients are asking. You have nothing to tell them.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"pain-card\"\u0026gt;\n \u0026lt;div class=\"pain-card-icon\"\u0026gt;\n \u0026lt;svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u0026gt;\u0026lt;path d=\"M12 20V10\"\/\u0026gt;\u0026lt;path d=\"M18 20V4\"\/\u0026gt;\u0026lt;path d=\"M6 20v-4\"\/\u0026gt;\u0026lt;\/svg\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;The Hidden Cost Trap\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;A low per-unit price looks great on paper. Then come the customs surprises, the missing pieces, the hair that isn't what you ordered. The \"cheap\" option just got expensive.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"bridge\"\u0026gt;\n \u0026lt;h3\u0026gt;There's a Better Way.\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;You don't need another supplier. You need someone on the ground \u2014 vetting factories, inspecting every batch, and handling logistics so you get exactly what you paid for, every time.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== USP ========== --\u0026gt;\n\u0026lt;section class=\"section usp reveal\" id=\"about\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;span class=\"section-label\"\u0026gt;WHY WORK WITH US\u0026lt;\/span\u0026gt;\n \u0026lt;h2 class=\"section-heading\"\u0026gt;Six Reasons The Smartest Buyers Work With Us\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"usp-grid\"\u0026gt;\n \u0026lt;div class=\"usp-card\"\u0026gt;\n \u0026lt;h3\u0026gt;Source-Direct Pricing\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;No middlemen. No distributor markups. We connect you to multiple vetted factories, compare quotes, and negotiate on your behalf. You pay factory prices \u2014 we add our fee transparently on top. Always less than a distributor, always more reliable than going alone.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"usp-card featured\"\u0026gt;\n \u0026lt;div class=\"usp-badge\"\u0026gt;THE DIFFERENCE\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Eyes-On QC\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We open every box. Before anything ships, our team physically inspects your order \u2014 texture, length, color match, weft construction, shedding test. If it fails, we reject it at the factory's cost and make them redo it. You never see a bad batch. That's not a promise. That's our job.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"usp-card\"\u0026gt;\n \u0026lt;h3\u0026gt;Flexible MOQ\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Not ready for 500 bundles? Start with a trial order of 50. Test the market, get client feedback, refine your specs. Scale when you're ready \u2014 your per-unit price drops as volume grows. No rigid factory minimums. Only what actually works for your business.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"usp-card\"\u0026gt;\n \u0026lt;h3\u0026gt;Multi-Factory Sourcing\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We don't marry a single factory. Different orders need different strengths \u2014 one factory nails tape-ins, another excels at bulk virgin Remy. We match your order to the right partner every time. You get one reliable source. We manage the network.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"usp-card\"\u0026gt;\n \u0026lt;h3\u0026gt;Logistics Without The Headaches\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Freight coordination, documentation, tracking \u2014 we handle the heavy lifting. Customs clearance? Most clients prefer to manage it themselves through their own broker. But if you need assistance, we can step in and navigate it with you. Your call. Either way, you get one clear delivery timeline.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"usp-card\"\u0026gt;\n \u0026lt;h3\u0026gt;Post-Delivery Support\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Most supplier relationships end at \"delivered.\" Ours doesn't. Color slightly off? Weft density not right? Something got lost in transit? We follow up, we investigate, and we fix it \u2014 not with excuses, with action. You have a partner, not just a vendor.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== PRODUCT CATEGORIES ========== --\u0026gt;\n\u0026lt;section class=\"section products reveal\" id=\"products\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;span class=\"section-label\"\u0026gt;WHAT WE SOURCE\u0026lt;\/span\u0026gt;\n \u0026lt;h2 class=\"section-heading\"\u0026gt;Hair Extensions. Every Method. Every Grade.\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-subhead\" style=\"margin: 0 auto 0;\"\u0026gt;From tape-ins to fusion, we source every application method in virgin Remy and premium synthetic. One partner. All your inventory.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"products-grid\"\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;span\u0026gt;Tape-In\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Tape-In\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Pre-taped wefts. Quick application. Flat and invisible.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;span\u0026gt;Clip-In\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Clip-In\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Instant volume and length. No salon visit needed.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;span\u0026gt;I-Tip\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;I-Tip \/ Micro Ring\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;No heat, no glue. Strand-by-strand precision.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;span\u0026gt;U-Tip\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;U-Tip \/ Nail Tip\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Keratin bond. Secure hold for weeks.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;span\u0026gt;Weft\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Weft \/ Sew-In\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Machine-wefted. Maximum volume. Salon staple.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card fusion-highlight\"\u0026gt;\n \u0026lt;span class=\"trending-badge\"\u0026gt;TRENDING\u0026lt;\/span\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;span\u0026gt;Fusion\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Fusion Extensions\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Keratin-tipped. Hot fusion bond. Longest wear. Premium clients love this.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;span\u0026gt;Bulk\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Bulk Hair\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Loose bundles. For custom coloring and styling.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== DIFFERENTIATION ========== --\u0026gt;\n\u0026lt;section class=\"section diff reveal\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;span class=\"section-label\"\u0026gt;THE DIFFERENCE\u0026lt;\/span\u0026gt;\n \u0026lt;h2 class=\"section-heading\"\u0026gt;Factory-Direct vs. Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-subhead\" style=\"margin: 0 auto 0;\"\u0026gt;Buying direct sounds cheaper. But what you can't see can cost you more than you think.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"comparison-table\"\u0026gt;\n \u0026lt;table\u0026gt;\n \u0026lt;thead\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;th\u0026gt;Aspect\u0026lt;\/th\u0026gt;\u0026lt;th\u0026gt;Factory-Direct\u0026lt;\/th\u0026gt;\u0026lt;th\u0026gt;With Reshyn\u0026lt;\/th\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;\/thead\u0026gt;\n \u0026lt;tbody\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;td\u0026gt;Pre-production sample\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Maybe, if you ask 3 times\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Mandatory. Shipped to you.\u0026lt;\/td\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;td\u0026gt;Mid-production photos\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;You hope for the best\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Sent weekly. Real-time.\u0026lt;\/td\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;td\u0026gt;Pre-shipment inspection\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Not happening\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Every box. Every order.\u0026lt;\/td\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;td\u0026gt;Customs clearance\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Your problem. Figure it out.\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;You handle it \u2014 but we can assist if needed.\u0026lt;\/td\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;td\u0026gt;Communication\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;WeChat. Broken English. Days of silence.\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Email. Clear English. Same day.\u0026lt;\/td\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;td\u0026gt;Quality dispute\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Good luck arguing across time zones\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;We fight it for you. Factory pays for mistakes.\u0026lt;\/td\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;tr\u0026gt;\u0026lt;td\u0026gt;Post-delivery support\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;Relationship ends at \"delivered\"\u0026lt;\/td\u0026gt;\u0026lt;td\u0026gt;We follow up. We fix issues. We stay.\u0026lt;\/td\u0026gt;\u0026lt;\/tr\u0026gt;\n \u0026lt;\/tbody\u0026gt;\n \u0026lt;\/table\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"invisible-work\"\u0026gt;\n \u0026lt;h3 class=\"invisible-heading\"\u0026gt;The Work You Don't See. The Results You Do.\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"invisible-cards\"\u0026gt;\n \u0026lt;div class=\"inv-card\"\u0026gt;\n \u0026lt;h4\u0026gt;Factory Vetting\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;We don't work with the first factory we find. We audit facilities, check certifications, visit production floors, and test samples across multiple orders before adding a partner to our network. Not every factory passes.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"inv-card\"\u0026gt;\n \u0026lt;h4\u0026gt;Batch Rejection\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;When a batch fails inspection \u2014 wrong color, uneven wefts, excess shedding \u2014 we don't ship it and hope you won't notice. We send it back. The factory redoes it at their cost. You never see a bad order, because we never let one through.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"inv-card\"\u0026gt;\n \u0026lt;h4\u0026gt;Logistics Optimization\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Freight rates change weekly. Routes shift. We monitor and optimize every link \u2014 air vs. sea, port selection, carrier negotiation. You get one clear delivery timeline and one landed cost, not a trail of unpredictable surcharges.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"inv-card\"\u0026gt;\n \u0026lt;h4\u0026gt;Customs Navigation (If You Want It)\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Most of our clients handle customs through their own broker \u2014 and that works perfectly. But if you're new to importing or just want backup, we offer optional customs clearance assistance. Paperwork guidance, HS code classification, duty estimates. We step in when you need us; we stay out when you don't.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== SOCIAL PROOF ========== --\u0026gt;\n\u0026lt;section class=\"section social reveal\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;span class=\"section-label\"\u0026gt;SOCIAL PROOF\u0026lt;\/span\u0026gt;\n \u0026lt;h2 class=\"section-heading\"\u0026gt;Trusted by Salon Owners, Stylists, and Distributors Worldwide\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"stats-row\"\u0026gt;\n \u0026lt;div class=\"stat\"\u0026gt;\n \u0026lt;div class=\"stat-number\"\u0026gt;200+\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;Salons \u0026amp;amp; Businesses Served\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat\"\u0026gt;\n \u0026lt;div class=\"stat-number\"\u0026gt;50K+\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;Bundles Shipped\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat\"\u0026gt;\n \u0026lt;div class=\"stat-number\"\u0026gt;98%\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"stat-label\"\u0026gt;Order Accuracy Rate\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonials-row\"\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;blockquote\u0026gt;I used to dread opening shipments. Every box was a gamble \u2014 wrong color, weird smell, uneven lengths. With Reshyn I don't even think about it anymore. They catch the issues before I ever see them. That peace of mind? Worth more than I can tell you.\u0026lt;\/blockquote\u0026gt;\n \u0026lt;div class=\"testimonial-author\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;strong\u0026gt;Sarah M.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span\u0026gt;Owner, LuxeLocks Salon \u2014 Miami, FL\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;blockquote\u0026gt;Honestly I was skeptical. I've been burned before by \"sourcing agents\" who just add markup and disappear. But my first 50-bundle trial order came in cleaner than the 300-bundle bulk I used to get from AliExpress. I switched everything over within two months.\u0026lt;\/blockquote\u0026gt;\n \u0026lt;div class=\"testimonial-author\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;strong\u0026gt;Marcus T.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span\u0026gt;Owner, The Hair Vault \u2014 Toronto, Canada\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;blockquote\u0026gt;My clients noticed immediately. The texture, the color consistency, how long it lasts \u2014 it's night and day from what I was stocking before. My repeat extension clients are up maybe 30-40%. Hard to track exactly but I know it's working.\u0026lt;\/blockquote\u0026gt;\n \u0026lt;div class=\"testimonial-author\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;strong\u0026gt;Lisa R.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span\u0026gt;Hairstylist \u0026amp; Salon Owner \u2014 Sydney, AU\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;blockquote\u0026gt;I run three locations and consistency between stores was always the problem. Different batches, different results, different client complaints. Reshyn solved that. Now every location gets the same quality. I sleep better.\u0026lt;\/blockquote\u0026gt;\n \u0026lt;div class=\"testimonial-author\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;strong\u0026gt;Elena V.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span\u0026gt;Founder, Glanz \u0026amp; Glanz Salons \u2014 Berlin, Germany\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;blockquote\u0026gt;Look, I don't care about fancy promises. I care about one thing: when I open that box, does the hair look like the sample? With Reshyn, for 14 months now, it has. Every. Single. Time. That's all I need to know.\u0026lt;\/blockquote\u0026gt;\n \u0026lt;div class=\"testimonial-author\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;strong\u0026gt;David K.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span\u0026gt;Distributor \u2014 London, UK\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\n \u0026lt;blockquote\u0026gt;I was nervous about customs the first time. My broker had questions, I had no answers. Reshyn walked me through the HS codes, helped with the paperwork, made the whole thing feel less overwhelming. Now I've done 6 orders and it's just routine. But that first one \u2014 they really showed up.\u0026lt;\/blockquote\u0026gt;\n \u0026lt;div class=\"testimonial-author\"\u0026gt;\n \u0026lt;div\u0026gt;\u0026lt;strong\u0026gt;James P.\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;\u0026lt;span\u0026gt;Independent Stylist \u2014 Manchester, UK\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== PRICING ========== --\u0026gt;\n\u0026lt;section class=\"section pricing reveal\" id=\"quote\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;span class=\"section-label\"\u0026gt;PRICING\u0026lt;\/span\u0026gt;\n \u0026lt;h2 class=\"section-heading\"\u0026gt;Your Quote. Your Terms. No Surprises.\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-subhead\" style=\"margin: 0 auto 0;\"\u0026gt;We don't publish a price list \u2014 because your order shouldn't fit into a box. Every quote is built around your exact specs, volume, and timeline.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"pricing-factors\"\u0026gt;\n \u0026lt;div class=\"factor-card\"\u0026gt;\n \u0026lt;div class=\"factor-number\"\u0026gt;01\u0026lt;\/div\u0026gt;\n \u0026lt;h4\u0026gt;Hair Type \u0026amp;amp; Grade\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Virgin Remy, premium synthetic, or blended. Length, texture, and color all factor in.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"factor-card\"\u0026gt;\n \u0026lt;div class=\"factor-number\"\u0026gt;02\u0026lt;\/div\u0026gt;\n \u0026lt;h4\u0026gt;Volume \u0026amp;amp; Frequency\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Higher volume and recurring orders unlock better pricing. We'll help you find the sweet spot.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"factor-card\"\u0026gt;\n \u0026lt;div class=\"factor-number\"\u0026gt;03\u0026lt;\/div\u0026gt;\n \u0026lt;h4\u0026gt;Shipping \u0026amp;amp; Logistics\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Air or sea freight. Customs duty estimates. Door-to-door or port-to-port. Optional customs clearance assistance if you need it \u2014 otherwise your broker handles it as usual. We quote the full landed cost.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;a href=\"mailto:hello@reshyn.com\" class=\"price-cta\"\u0026gt;Get Your Custom Quote\u0026lt;\/a\u0026gt;\n \u0026lt;p class=\"price-trust\"\u0026gt;Response within 24 hours. No obligation.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== FAQ ========== --\u0026gt;\n\u0026lt;section class=\"section faq reveal\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;span class=\"section-label\"\u0026gt;FAQ\u0026lt;\/span\u0026gt;\n \u0026lt;h2 class=\"section-heading\"\u0026gt;Questions We Hear All the Time\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"faq-list\"\u0026gt;\n \u0026lt;div class=\"faq-item\" onclick=\"this.classList.toggle('open')\"\u0026gt;\n \u0026lt;h3\u0026gt;How do I know the bulk order will match the sample?\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;\u0026lt;p\u0026gt;We photograph every stage of production and inspect the bulk order against your approved sample before it ships. If anything doesn't match, we catch it \u2014 you never see a bad batch.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\" onclick=\"this.classList.toggle('open')\"\u0026gt;\n \u0026lt;h3\u0026gt;What's your minimum order quantity?\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;\u0026lt;p\u0026gt;We don't enforce rigid MOQs. Trial orders start as low as 50 bundles. As your business grows, we scale with you \u2014 and your per-unit price drops accordingly.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\" onclick=\"this.classList.toggle('open')\"\u0026gt;\n \u0026lt;h3\u0026gt;Do you handle customs clearance?\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;\u0026lt;p\u0026gt;Most of our clients prefer to handle customs through their own broker \u2014 and that works great. We provide all the documentation you'll need: commercial invoice, packing list, HS code classification, and certificates of origin. If you're new to importing or just want backup, we offer optional customs clearance assistance. It's available if you need it \u2014 never forced if you don't.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\" onclick=\"this.classList.toggle('open')\"\u0026gt;\n \u0026lt;h3\u0026gt;What happens if there's a quality issue?\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;\u0026lt;p\u0026gt;We catch it during inspection \u2014 before it ships. The factory redoes the order at their cost. If an issue somehow reaches you, we handle the resolution. You don't fight with a factory in a different time zone.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"faq-item\" onclick=\"this.classList.toggle('open')\"\u0026gt;\n \u0026lt;h3\u0026gt;Why shouldn't I just go direct to a factory?\u0026lt;\/h3\u0026gt;\n \u0026lt;div class=\"faq-answer\"\u0026gt;\u0026lt;p\u0026gt;You can. Many salon owners do \u2014 once. They come back because of the invisible costs: samples that don't match production, shipments that arrive wrong, and nobody accountable. We eliminate those costs. Our fee is a fraction of what mistakes cost you.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== FINAL CTA ========== --\u0026gt;\n\u0026lt;section class=\"final-cta reveal\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to Stop Gambling on Your Supply Chain?\u0026lt;\/h2\u0026gt;\n \u0026lt;p\u0026gt;Tell us what you need. We'll send you a sample, walk you through every step, and prove we're different \u2014 before you commit a cent.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"final-cta-buttons\"\u0026gt;\n \u0026lt;a href=\"mailto:hello@reshyn.com\" class=\"final-cta-primary\"\u0026gt;Get a Quote\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"mailto:hello@reshyn.com\" class=\"final-cta-secondary\"\u0026gt;Request a Free Sample \u2192\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"final-cta-trust\"\u0026gt;Limited production slots available. Response within 24 hours.\u0026lt;\/p\u0026gt;\n\u0026lt;\/section\u0026gt;\n\n\u0026lt;!-- ========== FOOTER ========== --\u0026gt;\n\u0026lt;footer class=\"footer\"\u0026gt;\n \u0026lt;div class=\"footer-grid\"\u0026gt;\n \u0026lt;div class=\"footer-brand\"\u0026gt;\n \u0026lt;div class=\"footer-logo\"\u0026gt;RESHYN\u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"footer-tagline\"\u0026gt;You can't be at the factory. We are.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\n \u0026lt;h4\u0026gt;Products\u0026lt;\/h4\u0026gt;\n \u0026lt;a href=\"#products\"\u0026gt;Tape-In Extensions\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\"\u0026gt;Clip-In Extensions\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\"\u0026gt;Fusion Extensions\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#products\"\u0026gt;All Categories\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\n \u0026lt;h4\u0026gt;Company\u0026lt;\/h4\u0026gt;\n \u0026lt;a href=\"#about\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"reshyn-how-it-works.html\"\u0026gt;How It Works\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#quote\"\u0026gt;Get a Quote\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\n \u0026lt;h4\u0026gt;Contact\u0026lt;\/h4\u0026gt;\n \u0026lt;a href=\"mailto:hello@reshyn.com\"\u0026gt;hello@reshyn.com\u0026lt;\/a\u0026gt;\n \u0026lt;span style=\"font-size:.8125rem\"\u0026gt;WeChat: reshyn_hair\u0026lt;\/span\u0026gt;\n \u0026lt;a href=\"#quote\"\u0026gt;Request a Sample\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-bottom\"\u0026gt;\n \u0026lt;span\u0026gt;\u0026amp;copy; 2026 Reshyn. All rights reserved. Made in China. Shipped worldwide.\u0026lt;\/span\u0026gt;\n \u0026lt;div class=\"footer-legal\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Terms\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Privacy\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\u0026lt;\/footer\u0026gt;\n\n\u0026lt;script\u0026gt;\n\/\/ ===== Mobile Menu =====\nfunction closeMenu() {\n document.querySelector('.hamburger').classList.remove('open');\n document.querySelector('.mobile-menu').classList.remove('open');\n}\n\n\/\/ ===== Scroll Reveal =====\nconst observer = new IntersectionObserver((entries) =\u0026gt; {\n entries.forEach(entry =\u0026gt; {\n if (entry.isIntersecting) entry.target.classList.add('visible');\n });\n}, { threshold: 0.1, rootMargin: '0px 0px -40px 0px' });\n\ndocument.querySelectorAll('.reveal').forEach(el =\u0026gt; observer.observe(el));\n\n\/\/ ===== Smooth Scroll for Nav Links =====\ndocument.querySelectorAll('a[href^=\"#\"]').forEach(link =\u0026gt; {\n link.addEventListener('click', function(e) {\n const target = document.querySelector(this.getAttribute('href'));\n if (target) {\n e.preventDefault();\n const offset = 80;\n const top = target.getBoundingClientRect().top + window.pageYOffset - offset;\n window.scrollTo({ top, behavior: 'smooth' });\n }\n });\n});\n\u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9307872}"}}}],"title":"test - home - wordbuddy","uid":"f4940005-873f-42c0-a560-c07d0fb719d8","path":"\/test-home-wordbuddy","autoPath":true,"authorized":true},{"type":"Page","id":"f_e78439ad-2fa7-4257-8043-84e1981d0cea","sections":[{"type":"Slide","id":"f_a347d9cf-d6a7-426e-86e1-0cc18483e86b","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_d588d6d8-a344-4031-91f3-6567b563f6aa","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_eb3a66ee-f69e-4e00-91ce-4ddb181cce2d","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_790dc197-0583-4584-b3bf-453ce6992546","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_c144bdea-1065-4b9e-983a-9c6b73ea8dce","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27316625,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes\"\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Reshyn is your B2B hair extensions curation and QC partner. We help salon owners, retailers, and distributors source, inspect, brand, and ship premium hair with optional customs clearance.\"\u0026gt;\n \u0026lt;title\u0026gt;Reshyn | Premium Hair Extensions Curation \u0026amp; QC Partner for Professionals\u0026lt;\/title\u0026gt;\n \u0026lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0-beta3\/css\/all.min.css\"\u0026gt;\n \u0026lt;!-- \u7ed3\u6784\u5316\u6570\u636e\uff1a\u7ec4\u7ec7\u4fe1\u606f\uff0c\u589e\u5f3aGEO --\u0026gt;\n \u0026lt;script type=\"application\/ld+json\"\u0026gt;\n {\n \"@context\": \"https:\/\/schema.org\",\n \"@type\": \"Organization\",\n \"name\": \"Reshyn\",\n \"description\": \"B2B hair extensions curation and QC partner with optional customs clearance.\",\n \"url\": \"https:\/\/www.reshyn.com\",\n \"contactPoint\": { \"@type\": \"ContactPoint\", \"contactType\": \"customer service\", \"availableLanguage\": \"English\" }\n }\n \u0026lt;\/script\u0026gt;\n \u0026lt;style\u0026gt;\n * { margin: 0; padding: 0; box-sizing: border-box; }\n body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #fff; color: #1e1e1e; line-height: 1.6; }\n .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }\n .btn { display: inline-block; padding: 14px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.25s; font-size: 1rem; letter-spacing: 0.3px; cursor: pointer; border: none; }\n .btn-primary { background: #1e1e1e; color: #fff; }\n .btn-primary:hover { background: #c9a74b; color: #fff; transform: translateY(-2px); }\n .btn-outline { background: transparent; border: 2px solid #1e1e1e; color: #1e1e1e; }\n .btn-outline:hover { background: #1e1e1e; color: #fff; }\n .btn-gold { background: #c9a74b; color: #1e1e1e; font-weight: 700; }\n .btn-gold:hover { background: #b8912f; }\n\n header { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #f0f0f0; padding: 16px 0; }\n .navbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }\n .logo { font-size: 1.8rem; font-weight: 700; color: #1e1e1e; text-decoration: none; }\n .logo span { color: #c9a74b; }\n .nav-links { display: flex; align-items: center; gap: 28px; }\n .nav-links a { text-decoration: none; color: #1e1e1e; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }\n .nav-links a:hover { color: #c9a74b; }\n .hamburger { display: none; font-size: 1.6rem; background: none; border: none; cursor: pointer; }\n\n .hero { padding: 80px 0; background: linear-gradient(135deg, #faf9f7 0%, #fff 100%); }\n .hero-grid { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }\n .hero-content { flex: 1 1 500px; }\n .hero-content h1 { font-size: 3.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 24px; }\n .hero-content p { font-size: 1.2rem; color: #4a4a4a; margin-bottom: 32px; max-width: 560px; }\n .hero-visual { flex: 1 1 400px; background: #eae8e3; border-radius: 32px; padding: 32px 24px 0; text-align: center; }\n .badge { background: #f4f1ea; padding: 6px 16px; border-radius: 30px; font-size: 0.9rem; font-weight: 600; display: inline-block; margin-bottom: 16px; }\n\n .usp-strip { background: #1e1e1e; color: #fff; padding: 20px 0; text-align: center; font-weight: 500; }\n section { padding: 80px 0; }\n .section-title { font-size: 2.4rem; font-weight: 700; text-align: center; margin-bottom: 20px; }\n .section-sub { text-align: center; color: #5a5a5a; max-width: 680px; margin: 0 auto 60px; font-size: 1.1rem; }\n\n .value-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }\n .value-card { background: #fafaf8; padding: 36px 28px; border-radius: 24px; border: 1px solid #f1f0ec; transition: 0.25s; }\n .value-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(0,0,0,0.05); }\n .value-icon { font-size: 2.5rem; color: #c9a74b; margin-bottom: 20px; }\n .value-card h3 { font-size: 1.3rem; margin-bottom: 12px; }\n\n .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }\n .product-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.04); border: 1px solid #f2f1ed; transition: 0.25s; }\n .product-card:hover { box-shadow: 0 18px 34px rgba(0,0,0,0.08); }\n .product-img { height: 200px; background: #eae7e1; display: flex; align-items: center; justify-content: center; position: relative; }\n .badge-tag { position: absolute; top: 12px; left: 12px; background: #c9a74b; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }\n .product-info { padding: 20px; }\n .product-info h4 { font-size: 1.2rem; margin-bottom: 6px; }\n .highlight-badge { background: #1e1e1e; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; display: inline-block; margin-top: 8px; }\n\n .process-steps { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; }\n .process-step { flex: 1 1 200px; text-align: center; }\n .step-number { font-size: 2.6rem; font-weight: 700; color: #c9a74b; }\n\n .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }\n .testimonial { background: #fafaf8; border-radius: 24px; padding: 28px; font-style: italic; }\n .testimonial .author { font-style: normal; font-weight: 700; margin-top: 20px; display: block; }\n .stars { color: #c9a74b; margin-bottom: 12px; }\n\n .compare-table { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; border: 1px solid #eee; border-radius: 20px; overflow: hidden; }\n .compare-row { display: flex; border-bottom: 1px solid #eee; }\n .compare-row:last-child { border-bottom: none; }\n .compare-cell { flex: 1; padding: 20px; }\n .compare-cell.header { background: #fafaf8; font-weight: 700; }\n .icon-check { color: #2e7d32; margin-right: 8px; }\n .icon-cross { color: #b71c1c; margin-right: 8px; }\n\n .cta-section { background: #1e1e1e; color: #fff; text-align: center; border-radius: 32px; padding: 64px 32px; margin: 60px 0; }\n .cta-section h2 { font-size: 2.2rem; margin-bottom: 16px; }\n\n footer { background: #fafaf8; padding: 48px 0 24px; border-top: 1px solid #eee; color: #4a4a4a; }\n .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; }\n .footer-col h4 { margin-bottom: 16px; }\n .footer-col a { display: block; color: #4a4a4a; text-decoration: none; margin-bottom: 10px; }\n .copyright { text-align: center; margin-top: 40px; color: #888; }\n\n @media (max-width: 768px) {\n .nav-links { display: none; width: 100%; flex-direction: column; margin-top: 16px; }\n .nav-links.active { display: flex; }\n .hamburger { display: block; }\n .hero-content h1 { font-size: 2.5rem; }\n .section-title { font-size: 2rem; }\n }\n \u0026lt;\/style\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n \u0026lt;!-- \u5bfc\u822a\u680f\uff1a\u7b80\u6d01\u6e05\u6670\uff0c\u4fdd\u6301\u8ba4\u77e5\u6d41\u7545\u6027 --\u0026gt;\n \u0026lt;header\u0026gt;\n \u0026lt;div class=\"container navbar\"\u0026gt;\n \u0026lt;a href=\"#\" class=\"logo\"\u0026gt;Reshyn\u0026lt;span\u0026gt;.\u0026lt;\/span\u0026gt;\u0026lt;\/a\u0026gt;\n \u0026lt;button class=\"hamburger\" id=\"hamburger\"\u0026gt;\u0026lt;i class=\"fas fa-bars\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/button\u0026gt;\n \u0026lt;div class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Home\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;Products\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\"\u0026gt;About\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-outline\" style=\"padding:10px 24px;\"\u0026gt;Request Sample\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/header\u0026gt;\n\n \u0026lt;!-- 1. Hero \u9996\u5c4f\uff1aAIDA\u6ce8\u610f\u9636\u6bb5\uff0cUSP + \u96f6\u98ce\u9669\u627f\u8bfa --\u0026gt;\n \u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"container hero-grid\"\u0026gt;\n \u0026lt;div class=\"hero-content\"\u0026gt;\n \u0026lt;span class=\"badge\"\u0026gt;\u2726 B2B Quality Curation Partner\u0026lt;\/span\u0026gt;\n \u0026lt;h1\u0026gt;Your Quality Firewall.\u0026lt;br\u0026gt;Their Perfect Hair.\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;We don't manufacture. We curate, rigorously QC, brand, and deliver premium hair extensions \u2014 with optional customs clearance assistance, so you stay focused on your business.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;\u0026lt;i class=\"fas fa-video\" style=\"margin-right:8px;\"\u0026gt;\u0026lt;\/i\u0026gt; Start a Live QC Sample\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top:12px; font-size:0.9rem; color:#666;\"\u0026gt;No payment until you approve via video call.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"hero-visual\"\u0026gt;\n \u0026lt;img src=\"https:\/\/placehold.co\/500x400\/eae8e3\/333?text=Your+Curation+Team+in+Action\" alt=\"Reshyn team inspecting hair extensions\" style=\"max-width:100%; height:auto;\"\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- 2. USP\u6a2a\u5e45\uff1a\u91cd\u590d\u951a\u5b9a\u6838\u5fc3\u4f18\u52bf --\u0026gt;\n \u0026lt;div class=\"usp-strip\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;i class=\"fas fa-shield-alt\"\u0026gt;\u0026lt;\/i\u0026gt; 50-Point QC \u00b7 Zero Shedding Guarantee \u00b7 Branded Kitting \u00b7 Optional Customs Clearance \u00b7 Live Order Preview\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- 3. Why Us\uff1a\u6df1\u5ea6\u4ef7\u503c\u5361\u7247\uff0c\u6050\u60e7\u8bc9\u6c42+\u4e92\u60e0+\u6743\u5a01\u6027 --\u0026gt;\n \u0026lt;section\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Why ambitious stylists and retailers work with Reshyn\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-sub\"\u0026gt;You don't need another supplier. You need a partner who protects your reputation and simplifies your supply chain \u2014 from QC to customs.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"value-cards\"\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-microscope\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;50-Point QC That Means Something\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We hand-inspect every weft, lace, and bond. Shed test, wash test, color under three lights. If it fails, it never leaves.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-gem\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Branded Kitting, Ready to Sell\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Your order arrives in your packaging, with care cards, accessories, and social-ready photos. You sell confidence, not just hair.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-passport\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;Customs Clearance Support (Optional)\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Paperwork slowing you down? We can guide you or handle clearance on your behalf for selected orders. You stay in control.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-video\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;See Before You Pay\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We'll get on a live call and walk you through your actual batch. You approve quality before any payment is final.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-hand-holding-heart\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;No Factory Games\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;We blind-test workshops monthly. Only the top 5% become part of our network. You get pre-verified quality, always.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"value-card\"\u0026gt;\n \u0026lt;div class=\"value-icon\"\u0026gt;\u0026lt;i class=\"fas fa-truck-fast\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;h3\u0026gt;One Shipment, All Problems Solved\u0026lt;\/h3\u0026gt;\n \u0026lt;p\u0026gt;Hair, tools, glue, and your branding \u2014 in one box. We handle logistics; if you opt in, we smooth customs too.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- 4. \u4ea7\u54c1\u7cbe\u9009\uff1aFOMO+\u9009\u62e9\u67b6\u6784\uff0c\u7126\u70b9\u653e\u5728\u5c16\u5200\u4ea7\u54c1 --\u0026gt;\n \u0026lt;section style=\"background:#fafaf8;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Curated categories for professionals\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-sub\"\u0026gt;Each collection built around real salon demand and backed by our 50\u2011point inspection.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"product-grid\"\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-fire\" style=\"font-size:2rem;color:#c9a74b;\"\u0026gt;\u0026lt;\/i\u0026gt; Fusion\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\u0026lt;span class=\"badge-tag\"\u0026gt;Trending\u0026lt;\/span\u0026gt;\u0026lt;h4\u0026gt;Fusion \/ I\u2011Tip\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Keratin-bonded, pre-tested for durability. Low MOQ.\u0026lt;\/p\u0026gt;\u0026lt;span class=\"highlight-badge\"\u0026gt;Low minimums\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-vector-square\" style=\"font-size:2rem;color:#c9a74b;\"\u0026gt;\u0026lt;\/i\u0026gt; Lace\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\u0026lt;span class=\"badge-tag\"\u0026gt;Bestseller\u0026lt;\/span\u0026gt;\u0026lt;h4\u0026gt;HD Lace Closures\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Pre-bleached knots, invisible lace, skin-melt tested.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-layer-group\" style=\"font-size:2rem;color:#c9a74b;\"\u0026gt;\u0026lt;\/i\u0026gt; Weft\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\u0026lt;h4\u0026gt;Wefts \u0026amp; Bundles\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Double-stitched, shed-tested, consistent color.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card\"\u0026gt;\n \u0026lt;div class=\"product-img\"\u0026gt;\u0026lt;i class=\"fas fa-box-open\" style=\"font-size:2rem;color:#c9a74b;\"\u0026gt;\u0026lt;\/i\u0026gt; Kits\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-info\"\u0026gt;\u0026lt;span class=\"badge-tag\"\u0026gt;New\u0026lt;\/span\u0026gt;\u0026lt;h4\u0026gt;Salon Kits\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Ready-to-retail bundles with free branding \u0026amp; content.\u0026lt;\/p\u0026gt;\u0026lt;span class=\"highlight-badge\"\u0026gt;Free branding\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align:center; margin-top:48px;\"\u0026gt;\u0026lt;a href=\"#\" class=\"btn btn-outline\"\u0026gt;View All Categories \u2192\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- 5. \u6d41\u7a0b\u900f\u660e\uff1a\u900f\u660e\u5ea6+\u627f\u8bfa\u4e00\u81f4\u6027 --\u0026gt;\n \u0026lt;section\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;How our curation engine works\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-sub\"\u0026gt;Three steps from factory floor to your client's chair \u2014 with zero headaches.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"process-steps\"\u0026gt;\n \u0026lt;div class=\"process-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;01\u0026lt;\/div\u0026gt;\u0026lt;h3\u0026gt;We Hunt \u0026amp; Select\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Blind-test 30+ workshops monthly. Only the top 5% make it.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;02\u0026lt;\/div\u0026gt;\u0026lt;h3\u0026gt;50-Point QC\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Your quality firewall. We reject what factories call good enough.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-step\"\u0026gt;\u0026lt;div class=\"step-number\"\u0026gt;03\u0026lt;\/div\u0026gt;\u0026lt;h3\u0026gt;Kit, Brand \u0026amp; Ship\u0026lt;\/h3\u0026gt;\u0026lt;p\u0026gt;Branded kits, content, global shipping. Customs help if you need it.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div style=\"text-align:center; margin-top:40px;\"\u0026gt;\u0026lt;a href=\"#\" class=\"btn btn-primary\"\u0026gt;See Our Full Process \u2192\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- 6. \u793e\u4f1a\u8bc1\u660e\uff1a\u793e\u4f1a\u8ba4\u540c+\u5177\u4f53\u6027\u6548\u5e94 --\u0026gt;\n \u0026lt;section style=\"background:#fafaf8;\"\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Trusted by real professionals, not just promises\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"testimonial-grid\"\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\u0026lt;div class=\"stars\"\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;p\u0026gt;\"I used to dread opening shipment boxes. With Reshyn, the last three orders were exactly what I expected. The video check is a game changer.\"\u0026lt;\/p\u0026gt;\u0026lt;span class=\"author\"\u0026gt;\u2014 Maria, Salon Owner, Austin TX\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\u0026lt;div class=\"stars\"\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;p\u0026gt;\"Reshyn's branded kits saved me hours. The optional customs assistance got me out of a jam with a delayed DHL clearance \u2014 they just stepped in.\"\u0026lt;\/p\u0026gt;\u0026lt;span class=\"author\"\u0026gt;\u2014 James, Online Retailer, London UK\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\u0026lt;div class=\"stars\"\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;p\u0026gt;\"I'm a stylist, not a logistics expert. Reshyn made importing hair feel easy. The fusion extensions had zero bond failures.\"\u0026lt;\/p\u0026gt;\u0026lt;span class=\"author\"\u0026gt;\u2014 Tanya, Hair Stylist, Toronto\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"testimonial\"\u0026gt;\u0026lt;div class=\"stars\"\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;i class=\"fas fa-star\"\u0026gt;\u0026lt;\/i\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;p\u0026gt;\"Reshyn rejected a batch for slight color variation that the factory said was 'within tolerance'. That honesty is rare. We've been working together for almost a year.\"\u0026lt;\/p\u0026gt;\u0026lt;span class=\"author\"\u0026gt;\u2014 David, Distributor, Miami FL\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- 7. \u5bf9\u6bd4\u8868\uff1a\u5bf9\u6bd4\u6548\u5e94+\u635f\u5931\u538c\u6076 --\u0026gt;\n \u0026lt;section\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;The old way vs. The Reshyn way\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"compare-table\"\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\u0026lt;div class=\"compare-cell header\"\u0026gt;Traditional Factory Order\u0026lt;\/div\u0026gt;\u0026lt;div class=\"compare-cell header\"\u0026gt;Reshyn Curation\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; You are your own blind QC\u0026lt;\/div\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; Dedicated QC team inspects every piece\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Hope the batch matches sample\u0026lt;\/div\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; See your actual order on live video before shipping\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Plastic bag delivery, figure out branding yourself\u0026lt;\/div\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; Branded, retail-ready kit with free social content\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Customs paperwork is entirely on you\u0026lt;\/div\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; Optional customs clearance assistance available\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"compare-row\"\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-times icon-cross\"\u0026gt;\u0026lt;\/i\u0026gt; Chase multiple suppliers for accessories\u0026lt;\/div\u0026gt;\u0026lt;div class=\"compare-cell\"\u0026gt;\u0026lt;i class=\"fas fa-check icon-check\"\u0026gt;\u0026lt;\/i\u0026gt; One shipment, complete solution\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;!-- 8. \u96f6\u98ce\u9669CTA\uff1a\u96f6\u98ce\u9669\u627f\u8bfa+\u627f\u8bfa\u4e00\u81f4\u6027+\u559c\u597d --\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"cta-section\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to experience worry\u2011free hair sourcing?\u0026lt;\/h2\u0026gt;\n \u0026lt;p style=\"font-size:1.2rem; opacity:0.9;\"\u0026gt;Request your sample kit. We'll inspect it together live \u2014 you approve before you pay. Customs questions? We'll answer them too.\u0026lt;\/p\u0026gt;\n \u0026lt;a href=\"#\" class=\"btn btn-gold\" style=\"font-size:1.1rem; padding:14px 36px;\"\u0026gt;Start Your QC-Approved Sample\u0026lt;\/a\u0026gt;\n \u0026lt;p style=\"margin-top:16px; font-size:0.9rem; opacity:0.7;\"\u0026gt;\u0026lt;i class=\"fas fa-lock\"\u0026gt;\u0026lt;\/i\u0026gt; Zero risk \u00b7 Video preview \u00b7 PayPal \u0026amp; Wise accepted\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- 9. \u9875\u811a\uff1a\u8ba4\u77e5\u6d41\u7545\u6027+\u6743\u5a01\u6027 --\u0026gt;\n \u0026lt;footer\u0026gt;\n \u0026lt;div class=\"container\"\u0026gt;\n \u0026lt;div class=\"footer-grid\"\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Reshyn\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Your curation \u0026amp; QC partner for premium hair extensions. We protect your reputation, one order at a time.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Categories\u0026lt;\/h4\u0026gt;\u0026lt;a href=\"#\"\u0026gt;Fusion\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;Lace\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;Wefts\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;Kits\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Support\u0026lt;\/h4\u0026gt;\u0026lt;a href=\"#\"\u0026gt;How We Work\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;FAQ\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;Customs Assistance\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Connect\u0026lt;\/h4\u0026gt;\u0026lt;a href=\"#\"\u0026gt;\u0026lt;i class=\"fab fa-instagram\"\u0026gt;\u0026lt;\/i\u0026gt; Instagram\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;\u0026lt;i class=\"fab fa-whatsapp\"\u0026gt;\u0026lt;\/i\u0026gt; WhatsApp\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"copyright\"\u0026gt;\u00a9 2025 Reshyn. All rights reserved. \u00b7 Privacy \u00b7 Terms\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/footer\u0026gt;\n\n \u0026lt;script\u0026gt;\n document.getElementById('hamburger').addEventListener('click', ()=\u0026gt;{\n document.getElementById('navLinks').classList.toggle('active');\n });\n \u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9308265}"}}}],"title":"test - homepage - deepseek","uid":"af0ac1bf-eec9-4a8d-bd41-9272e68f6ce0","path":"\/test-homepage-deepseek","autoPath":true,"authorized":true},{"type":"Page","id":"f_00447925-4650-48f7-b7cd-7bb7b1f83ef8","sections":[{"type":"Slide","id":"f_08d4a5da-5781-4950-9ce6-7a3f8f8dd4ae","defaultValue":true,"template_name":"html","components":{"slideSettings":{"type":"SlideSettings","id":"f_e81df3c7-c08c-446d-ac3c-abe5d4990b8e","defaultValue":true,"show_nav":true,"hidden_section":false,"name":"Embed an App","sync_key":null},"text1":{"type":"RichText","id":"f_eff4f58b-99af-41f1-9b50-0b7cafd6b5ba","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003ch1 class=\" font-size-tag-header-one s-text-font-size-over-40 s-rich-text-wrapper\" style=\"font-size: 48px;\"\u003ehomepage ds\u003c\/h1\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_c18f6345-2026-49fc-858b-5c87295ba467","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"background1":{"type":"Background","id":"f_11a54be2-2b48-4321-8640-e9c089ebecba","defaultValue":true,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":"","videoHtml":""},"html1":{"type":"HtmlComponent","id":27413846,"defaultValue":false,"value":"\u0026lt;!DOCTYPE html\u0026gt;\n\u0026lt;html lang=\"en\"\u0026gt;\n\u0026lt;head\u0026gt;\n \u0026lt;meta charset=\"UTF-8\"\u0026gt;\n \u0026lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u0026gt;\n \u0026lt;meta name=\"description\" content=\"Factory-direct wholesale tape-in hair extensions supplier. 100% Remy human hair, small MOQ, private label. Request a quote today.\"\u0026gt;\n \u0026lt;meta name=\"keywords\" content=\"wholesale tape in hair extensions, tape in hair extensions supplier, remy tape in extensions wholesale, factory direct hair extensions, small MOQ hair extensions, private label hair extensions, bulk human hair extensions\"\u0026gt;\n \u0026lt;meta name=\"author\" content=\"LuxLock Extensions\"\u0026gt;\n \u0026lt;meta name=\"robots\" content=\"index, follow\"\u0026gt;\n \u0026lt;link rel=\"canonical\" href=\"https:\/\/www.luxlockextensions.com\/\"\u0026gt;\n\n \u0026lt;meta property=\"og:type\" content=\"website\"\u0026gt;\n \u0026lt;meta property=\"og:title\" content=\"Premium Tape-in Hair Extensions Wholesale | LuxLock Extensions\"\u0026gt;\n \u0026lt;meta property=\"og:description\" content=\"Your Trusted Factory-Direct Source for 100% Remy Human Hair. Custom Branding \u0026amp; Small Trial Orders Welcomed.\"\u0026gt;\n \u0026lt;meta property=\"og:image\" content=\"https:\/\/www.luxlockextensions.com\/images\/og-image.jpg\"\u0026gt;\n \u0026lt;meta property=\"og:url\" content=\"https:\/\/www.luxlockextensions.com\/\"\u0026gt;\n\n \u0026lt;title\u0026gt;Wholesale Tape-in Hair Extensions | 100% Remy Human Hair Supplier - LuxLock Extensions\u0026lt;\/title\u0026gt;\n\n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u0026gt;\n \u0026lt;link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u0026gt;\n \u0026lt;link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700\u0026amp;family=Playfair+Display:wght@500;600;700\u0026amp;family=Caveat:wght@400;600\u0026amp;display=swap\" rel=\"stylesheet\"\u0026gt;\n\n \u0026lt;style\u0026gt;\n :root {\n --white: #FFFFFF;\n --off-white: #F9F7F6;\n --light-gray: #F4F2F0;\n --mid-gray: #E4E0DC;\n --text-dark: #1A1A1A;\n --text-body: #3A3A3B;\n --text-muted: #6F6F71;\n --rose: #C38D83;\n --rose-dark: #A76E65;\n --rose-light: #F3E4E1;\n --rose-bg: #FDF8F7;\n --dark-bg: #1A1A1A;\n --dark-bg-light: #262627;\n --success-green: #5B8D6E;\n --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);\n --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.07);\n --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);\n --radius-sm: 8px;\n --radius-md: 14px;\n --radius-lg: 20px;\n --radius-xl: 28px;\n --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);\n --transition-smooth: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);\n --max-width: 1200px;\n --nav-height: 76px;\n --trust-bar-height: 38px;\n }\n\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n }\n\n html {\n scroll-behavior: smooth;\n scroll-padding-top: calc(var(--nav-height) + var(--trust-bar-height) + 24px);\n }\n\n body {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;\n background: var(--white);\n color: var(--text-body);\n line-height: 1.7;\n -webkit-font-smoothing: antialiased;\n padding-top: calc(var(--nav-height) + var(--trust-bar-height));\n font-weight: 400;\n }\n\n \/* \u8fd4\u56de\u9876\u90e8 - \u66f4\u67d4\u548c\u7684\u5706\u5f62 *\/\n .back-to-top {\n position: fixed;\n bottom: 32px;\n right: 32px;\n z-index: 999;\n width: 46px;\n height: 46px;\n border-radius: 32px;\n background: #fff;\n border: 1px solid #e0dcd8;\n box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n opacity: 0;\n visibility: hidden;\n transform: translateY(16px);\n transition: all 0.4s ease;\n color: #555;\n }\n .back-to-top.visible {\n opacity: 1;\n visibility: visible;\n transform: translateY(0);\n }\n .back-to-top:hover {\n background: #f9f7f6;\n border-color: #ccc;\n color: #1a1a1a;\n transform: translateY(-3px);\n box-shadow: 0 8px 20px rgba(0,0,0,0.1);\n }\n\n \/* Trust Bar - \u4f7f\u7528\u5185\u8054SVG\u56fe\u6807 *\/\n .trust-bar {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n z-index: 1001;\n background: #111;\n color: #bbb;\n font-size: 0.78rem;\n font-weight: 500;\n letter-spacing: 0.4px;\n height: var(--trust-bar-height);\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 28px;\n flex-wrap: wrap;\n padding: 0 16px;\n }\n .trust-bar span {\n display: flex;\n align-items: center;\n gap: 6px;\n white-space: nowrap;\n }\n .trust-bar svg {\n width: 14px;\n height: 14px;\n opacity: 0.7;\n flex-shrink: 0;\n }\n\n \/* \u5bfc\u822a *\/\n .nav {\n position: fixed;\n top: var(--trust-bar-height);\n left: 0;\n right: 0;\n z-index: 1000;\n background: rgba(255,255,255,0.9);\n backdrop-filter: blur(12px);\n -webkit-backdrop-filter: blur(12px);\n height: var(--nav-height);\n display: flex;\n align-items: center;\n border-bottom: 1px solid transparent;\n transition: border-color 0.3s, box-shadow 0.3s;\n padding: 0 24px;\n }\n .nav.scrolled {\n border-bottom-color: rgba(0,0,0,0.05);\n box-shadow: 0 2px 8px rgba(0,0,0,0.04);\n }\n .nav-inner {\n max-width: var(--max-width);\n width: 100%;\n margin: 0 auto;\n display: flex;\n align-items: center;\n justify-content: space-between;\n }\n .nav-logo {\n font-family: 'Playfair Display', serif;\n font-size: 1.6rem;\n font-weight: 600;\n color: #1a1a1a;\n text-decoration: none;\n display: flex;\n align-items: center;\n gap: 4px;\n }\n .nav-logo .logo-mark {\n width: 10px;\n height: 10px;\n background: var(--rose);\n border-radius: 50%;\n display: inline-block;\n margin-left: 2px;\n transition: transform 0.3s;\n }\n .nav-logo:hover .logo-mark {\n transform: scale(1.3);\n }\n .nav-links {\n display: flex;\n align-items: center;\n gap: 30px;\n list-style: none;\n }\n .nav-links a {\n text-decoration: none;\n color: #444;\n font-weight: 500;\n font-size: 0.88rem;\n transition: color 0.2s;\n position: relative;\n }\n .nav-links a::after {\n content: '';\n position: absolute;\n bottom: -6px;\n left: 0;\n width: 0;\n height: 2px;\n background: var(--rose);\n border-radius: 2px;\n transition: width 0.3s;\n }\n .nav-links a:hover {\n color: #1a1a1a;\n }\n .nav-links a:hover::after {\n width: 100%;\n }\n .btn-nav {\n background: var(--rose);\n color: #fff !important;\n padding: 10px 22px;\n border-radius: 50px;\n font-weight: 600;\n font-size: 0.84rem;\n text-decoration: none;\n transition: all 0.3s;\n box-shadow: 0 4px 12px rgba(195,141,131,0.25);\n }\n .btn-nav:hover {\n background: var(--rose-dark);\n transform: translateY(-1px);\n box-shadow: 0 6px 18px rgba(167,110,101,0.35);\n }\n .btn-nav::after {\n display: none;\n }\n .mobile-menu-btn {\n display: none;\n background: none;\n border: none;\n padding: 10px;\n flex-direction: column;\n gap: 6px;\n cursor: pointer;\n z-index: 1002;\n }\n .mobile-menu-btn span {\n display: block;\n width: 26px;\n height: 2.5px;\n background: #333;\n border-radius: 4px;\n transition: 0.25s;\n }\n .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }\n .mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }\n .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }\n\n \/* \u901a\u7528\u533a\u5757 *\/\n .section { padding: 90px 24px; }\n .section-inner { max-width: var(--max-width); margin: 0 auto; }\n .section-label {\n text-transform: uppercase;\n letter-spacing: 2.5px;\n font-size: 0.72rem;\n font-weight: 600;\n color: var(--rose);\n margin-bottom: 12px;\n display: flex;\n align-items: center;\n gap: 8px;\n }\n .section-label::after {\n content: '';\n flex: 1;\n height: 1px;\n background: #e6ddd8;\n margin-top: 1px;\n }\n .section-title {\n font-family: 'Playfair Display', serif;\n font-size: 2.5rem;\n font-weight: 600;\n color: #1a1a1a;\n letter-spacing: -0.4px;\n line-height: 1.25;\n margin-bottom: 16px;\n }\n .section-subtitle {\n color: #6f6f71;\n max-width: 580px;\n line-height: 1.7;\n }\n\n \/* Hero - \u52a0\u5165\u4e0d\u89c4\u5219\u88c5\u9970 *\/\n .hero {\n background: linear-gradient(170deg, #FDF8F7 0%, #faf6f4 30%, #fff 100%);\n padding: 70px 24px 90px;\n min-height: 92vh;\n display: flex;\n align-items: center;\n position: relative;\n overflow: hidden;\n }\n .hero-decor {\n position: absolute;\n border: 2px dashed #e5d9d6;\n border-radius: 50%;\n opacity: 0.5;\n pointer-events: none;\n }\n .hero-decor-1 { width: 300px; height: 300px; top: -50px; right: -80px; }\n .hero-decor-2 { width: 120px; height: 120px; bottom: 20px; left: 5%; border-style: dotted; }\n .hero-inner {\n max-width: var(--max-width);\n margin: 0 auto;\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 60px;\n align-items: center;\n width: 100%;\n z-index: 1;\n position: relative;\n }\n .hero-content h1 {\n font-family: 'Playfair Display', serif;\n font-size: 3.2rem;\n font-weight: 700;\n color: #1a1a1a;\n line-height: 1.18;\n margin-bottom: 20px;\n }\n .hero-content h1 .highlight {\n color: var(--rose);\n position: relative;\n display: inline-block;\n }\n .hero-content h1 .highlight::after {\n content: '';\n position: absolute;\n bottom: 2px;\n left: 0;\n width: 100%;\n height: 8px;\n background: var(--rose-light);\n z-index: -1;\n border-radius: 4px;\n opacity: 0.7;\n }\n .hero-content p {\n color: #5f5f60;\n margin-bottom: 34px;\n line-height: 1.75;\n max-width: 440px;\n }\n .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }\n .btn {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n padding: 14px 28px;\n border-radius: 50px;\n font-weight: 600;\n font-size: 0.92rem;\n text-decoration: none;\n cursor: pointer;\n transition: all 0.3s;\n border: none;\n font-family: inherit;\n }\n .btn-primary {\n background: #c38d83;\n color: #fff;\n box-shadow: 0 8px 20px rgba(195,141,131,0.3);\n }\n .btn-primary:hover {\n background: #a76e65;\n transform: translateY(-2px);\n box-shadow: 0 12px 28px rgba(167,110,101,0.4);\n }\n .btn-outline {\n background: transparent;\n color: #1a1a1a;\n border: 2px solid #e0dcd8;\n }\n .btn-outline:hover {\n border-color: #1a1a1a;\n background: #1a1a1a;\n color: #fff;\n }\n .hero-visual {\n display: flex;\n justify-content: center;\n align-items: center;\n }\n .hero-image-wrapper {\n position: relative;\n width: 100%;\n max-width: 450px;\n aspect-ratio: 4\/5;\n border-radius: 28px 28px 28px 8px; \/* \u4e0d\u89c4\u5219\u5706\u89d2 *\/\n overflow: hidden;\n box-shadow: 0 24px 48px rgba(0,0,0,0.12);\n background: #e8dfda;\n }\n .hero-image-wrapper img {\n width: 100%;\n height: 100%;\n object-fit: cover;\n }\n .hero-badge {\n position: absolute;\n bottom: 20px;\n left: 20px;\n background: rgba(255,255,255,0.9);\n backdrop-filter: blur(8px);\n padding: 10px 18px;\n border-radius: 50px;\n font-weight: 600;\n font-size: 0.8rem;\n color: #1a1a1a;\n box-shadow: 0 4px 12px rgba(0,0,0,0.08);\n display: flex;\n align-items: center;\n gap: 6px;\n border: 1px solid rgba(255,255,255,0.7);\n }\n .badge-dot {\n width: 8px; height: 8px;\n background: #5B8D6E;\n border-radius: 50%;\n animation: pulse 2s infinite;\n }\n @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }\n\n \/* \u4ea7\u54c1\u5361\u7247 - \u4e0d\u89c4\u5219hover\u4e0e\u6807\u7b7e *\/\n .products { background: #fff; padding: 90px 24px; }\n .products-grid {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 28px;\n margin-top: 48px;\n }\n .product-card {\n background: #fff;\n border-radius: 20px 20px 20px 6px; \/* \u5fae\u8c03\u53f3\u4e0b\u89d2 *\/\n overflow: hidden;\n border: 1px solid #eee;\n transition: all 0.35s;\n text-decoration: none;\n color: inherit;\n display: flex;\n flex-direction: column;\n }\n .product-card:hover {\n transform: translateY(-6px);\n box-shadow: 0 18px 40px rgba(0,0,0,0.08);\n border-color: transparent;\n }\n .product-card-image {\n width: 100%;\n aspect-ratio: 1\/1;\n overflow: hidden;\n background: #f5f2f0;\n }\n .product-card-image img {\n width: 100%; height: 100%; object-fit: cover;\n transition: transform 0.6s;\n }\n .product-card:hover .product-card-image img { transform: scale(1.05); }\n .product-card-body { padding: 20px 20px 18px; flex:1; display: flex; flex-direction: column; }\n .product-card-body h3 {\n font-family: 'Playfair Display', serif;\n font-size: 1.2rem;\n font-weight: 600;\n margin-bottom: 6px;\n color: #1a1a1a;\n }\n .product-tag {\n display: inline-block;\n background: #f8f4f2;\n color: #a76e65;\n font-size: 0.75rem;\n font-weight: 600;\n padding: 4px 12px;\n border-radius: 50px;\n margin-bottom: 14px;\n width: fit-content;\n }\n .product-card-link {\n margin-top: auto;\n font-weight: 600;\n font-size: 0.85rem;\n color: #c38d83;\n display: flex;\n align-items: center;\n gap: 4px;\n transition: gap 0.3s;\n }\n .product-card:hover .product-card-link { gap: 8px; }\n\n \/* \u6d41\u7a0b\u6b65\u9aa4 - \u624b\u5199\u611f\u89c9\u6570\u5b57 *\/\n .process {\n background: #f9f7f6;\n padding: 90px 24px;\n position: relative;\n }\n .process-steps {\n display: grid;\n grid-template-columns: repeat(4, 1fr);\n gap: 24px;\n margin-top: 48px;\n }\n .process-step {\n text-align: center;\n padding: 32px 18px 28px;\n background: #fff;\n border-radius: 22px 22px 22px 4px;\n border: 1px solid #eae5e2;\n transition: all 0.3s;\n box-shadow: 0 2px 8px rgba(0,0,0,0.02);\n }\n .process-step:hover {\n transform: translateY(-4px);\n box-shadow: 0 10px 28px rgba(0,0,0,0.06);\n border-color: #d5cec9;\n }\n .process-step-number {\n font-family: 'Caveat', cursive;\n font-size: 2.2rem;\n color: #c38d83;\n font-weight: 600;\n margin-bottom: 12px;\n line-height: 1;\n }\n .process-step h4 {\n font-weight: 600;\n font-size: 0.95rem;\n margin-bottom: 8px;\n color: #1a1a1a;\n }\n .process-step p {\n font-size: 0.82rem;\n color: #6f6f71;\n line-height: 1.6;\n }\n .process-moq-note {\n text-align: center;\n margin-top: 40px;\n font-weight: 500;\n background: #fff;\n display: inline-block;\n padding: 12px 26px;\n border-radius: 50px;\n border: 2px dashed #d5c4bf;\n position: relative;\n left: 50%;\n transform: translateX(-50%);\n color: #1a1a1a;\n font-size: 0.95rem;\n transition: 0.3s;\n }\n .process-moq-note:hover {\n background: #fdf8f7;\n border-style: solid;\n }\n\n \/* \u4fe1\u4efb\u5361\u7247 - \u591a\u6837\u5316\u56fe\u6807\u80cc\u666f *\/\n .trust { background: #fff; padding: 90px 24px; }\n .trust-grid {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 30px;\n margin-top: 48px;\n }\n .trust-card {\n text-align: left;\n padding: 34px 28px;\n border-radius: 24px;\n background: #faf8f7;\n transition: 0.35s;\n border: 1px solid transparent;\n }\n .trust-card:hover {\n background: #fff;\n box-shadow: 0 12px 32px rgba(0,0,0,0.06);\n border-color: #e6ddd7;\n transform: translateY(-3px);\n }\n .trust-card .icon-circle {\n width: 54px;\n height: 54px;\n border-radius: 18px;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 18px;\n background: #f3e4e1;\n color: #a76e65;\n font-size: 1.6rem;\n transition: 0.3s;\n }\n .trust-card:nth-child(2) .icon-circle { border-radius: 30px 30px 30px 8px; background: #e2dcd7; }\n .trust-card:nth-child(3) .icon-circle { border-radius: 50%; background: #f5edeb; }\n .trust-card h4 { font-weight: 600; margin-bottom: 8px; color: #1a1a1a; }\n .trust-card p { font-size: 0.88rem; color: #6f6f71; line-height: 1.7; }\n\n \/* CTA \u8868\u5355 - \u6dfb\u52a0\u7eb9\u7406\u611f *\/\n .cta {\n background: #1c1c1e;\n padding: 90px 24px;\n position: relative;\n overflow: hidden;\n }\n .cta-texture {\n position: absolute;\n top: 0; left: 0; width: 100%; height: 100%;\n background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 1px, transparent 1px);\n background-size: 30px 30px;\n pointer-events: none;\n }\n .cta-inner {\n max-width: var(--max-width);\n margin: 0 auto;\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 60px;\n align-items: center;\n position: relative;\n z-index: 2;\n }\n .cta-content h2 {\n font-family: 'Playfair Display', serif;\n font-size: 2.3rem;\n font-weight: 700;\n color: #fff;\n line-height: 1.25;\n margin-bottom: 16px;\n }\n .cta-content p { color: #b0b0b5; line-height: 1.8; }\n .cta-form {\n background: #262627;\n padding: 34px 30px;\n border-radius: 28px 28px 28px 8px;\n border: 1px solid #3a3a3c;\n box-shadow: 0 18px 40px rgba(0,0,0,0.3);\n }\n .form-group { margin-bottom: 16px; }\n .form-group label {\n display: block;\n color: #ccc;\n font-size: 0.8rem;\n font-weight: 500;\n margin-bottom: 6px;\n letter-spacing: 0.3px;\n }\n .form-group input,\n .form-group textarea,\n .form-group select {\n width: 100%;\n padding: 12px 16px;\n border-radius: 12px;\n border: 1px solid #3e3e40;\n background: #1e1e20;\n color: #fff;\n font-family: inherit;\n font-size: 0.9rem;\n transition: 0.25s;\n resize: vertical;\n }\n .form-group select {\n appearance: none;\n background-image: url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z' fill='%23999'\/%3E%3C\/svg%3E\");\n background-repeat: no-repeat;\n background-position: right 14px center;\n }\n .form-group input:focus,\n .form-group textarea:focus,\n .form-group select:focus {\n outline: none;\n border-color: #c38d83;\n box-shadow: 0 0 0 3px rgba(195,141,131,0.2);\n }\n .btn-submit {\n width: 100%;\n padding: 14px;\n background: #c38d83;\n color: #fff;\n border: none;\n border-radius: 50px;\n font-weight: 600;\n font-size: 0.95rem;\n cursor: pointer;\n transition: all 0.3s;\n margin-top: 8px;\n box-shadow: 0 8px 20px rgba(195,141,131,0.35);\n }\n .btn-submit:hover {\n background: #a76e65;\n transform: translateY(-2px);\n box-shadow: 0 12px 28px rgba(167,110,101,0.5);\n }\n .form-success-msg {\n display: none;\n text-align: center;\n color: #5B8D6E;\n font-weight: 600;\n padding: 24px;\n line-height: 1.6;\n }\n .cta-form.submitted form { display: none; }\n .cta-form.submitted .form-success-msg { display: block; }\n\n \/* \u9875\u811a *\/\n .footer {\n background: #111;\n padding: 64px 24px 32px;\n color: #999;\n }\n .footer-inner {\n max-width: var(--max-width);\n margin: 0 auto;\n display: grid;\n grid-template-columns: repeat(4, 1fr);\n gap: 36px;\n }\n .footer-col h4 {\n color: #fff;\n font-weight: 600;\n font-size: 0.85rem;\n letter-spacing: 0.8px;\n margin-bottom: 18px;\n }\n .footer-col ul li { margin-bottom: 10px; }\n .footer-col ul li a {\n color: #888;\n text-decoration: none;\n font-size: 0.85rem;\n transition: 0.2s;\n display: inline-block;\n }\n .footer-col ul li a:hover { color: #fff; transform: translateX(3px); }\n .social-icons { display: flex; gap: 12px; margin-top: 6px; }\n .social-icons a {\n width: 40px; height: 40px;\n border-radius: 20px;\n background: #222;\n display: flex;\n align-items: center;\n justify-content: center;\n color: #aaa;\n transition: 0.3s;\n text-decoration: none;\n font-size: 0.85rem;\n font-weight: 600;\n }\n .social-icons a:hover { background: #c38d83; color: #fff; }\n .footer-bottom {\n max-width: var(--max-width);\n margin: 40px auto 0;\n padding-top: 24px;\n border-top: 1px solid #2a2a2b;\n text-align: center;\n font-size: 0.8rem;\n color: #777;\n }\n\n .fade-up {\n opacity: 0;\n transform: translateY(28px);\n transition: opacity 0.7s, transform 0.7s;\n }\n .fade-up.visible { opacity: 1; transform: translateY(0); }\n\n @media (max-width: 1024px) {\n .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }\n .hero-content p { margin-left: auto; margin-right: auto; }\n .hero-buttons { justify-content: center; }\n .hero-visual { order: -1; }\n .hero-image-wrapper { max-width: 340px; }\n .products-grid { grid-template-columns: repeat(2,1fr); }\n .process-steps { grid-template-columns: repeat(2,1fr); }\n .trust-grid { grid-template-columns: repeat(2,1fr); }\n .cta-inner { grid-template-columns: 1fr; gap: 36px; }\n }\n @media (max-width: 768px) {\n .nav-links { position: fixed; top:0; right:-100%; width:280px; height:100vh; background:#fff; flex-direction:column; padding:100px 32px 40px; gap:20px; box-shadow:0 12px 40px rgba(0,0,0,0.15); transition: right 0.35s; z-index:1001; }\n .nav-links.active { right:0; }\n .mobile-menu-btn { display: flex; }\n .hero-content h1 { font-size: 2.4rem; }\n .section-title { font-size: 2rem; }\n .products-grid { grid-template-columns: 1fr 1fr; gap:16px; }\n .process-steps { grid-template-columns: 1fr 1fr; }\n .trust-grid { grid-template-columns: 1fr; }\n .footer-inner { grid-template-columns: 1fr 1fr; }\n }\n @media (max-width: 500px) {\n .products-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }\n .process-steps { grid-template-columns: 1fr; }\n .hero-content h1 { font-size: 2rem; }\n }\n \u0026lt;\/style\u0026gt;\n\n \u0026lt;script type=\"application\/ld+json\"\u0026gt;\n {\n \"@context\": \"https:\/\/schema.org\",\n \"@type\": \"Organization\",\n \"name\": \"LuxLock Extensions\",\n \"url\": \"https:\/\/www.luxlockextensions.com\/\",\n \"description\": \"Factory-direct supplier of premium tape-in hair extensions. 100% Remy human hair, small MOQ, custom branding.\",\n \"contactPoint\": { \"@type\": \"ContactPoint\", \"contactType\": \"Wholesale Inquiry\", \"availableLanguage\": [\"English\"] },\n \"address\": { \"@type\": \"PostalAddress\", \"addressLocality\": \"Xuchang\", \"addressCountry\": \"CN\" }\n }\n \u0026lt;\/script\u0026gt;\n \u0026lt;script type=\"application\/ld+json\"\u0026gt;\n {\n \"@context\": \"https:\/\/schema.org\",\n \"@type\": \"Product\",\n \"name\": \"Tape-in Hair Extensions Wholesale\",\n \"description\": \"100% Remy Human Hair tape-in extensions for wholesale. Double drawn, cuticle aligned, small MOQ available.\",\n \"offers\": { \"@type\": \"AggregateOffer\", \"availability\": \"https:\/\/schema.org\/InStock\", \"priceCurrency\": \"USD\" }\n }\n \u0026lt;\/script\u0026gt;\n\u0026lt;\/head\u0026gt;\n\u0026lt;body\u0026gt;\n\n \u0026lt;div class=\"back-to-top\" id=\"backToTop\" aria-label=\"Back to top\"\u0026gt;\n \u0026lt;svg width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u0026gt;\u0026lt;polyline points=\"18 15 12 9 6 15\"\u0026gt;\u0026lt;\/polyline\u0026gt;\u0026lt;\/svg\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;!-- Trust Bar with SVG icons --\u0026gt;\n \u0026lt;div class=\"trust-bar\"\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u0026gt;\u0026lt;circle cx=\"12\" cy=\"12\" r=\"10\"\/\u0026gt;\u0026lt;path d=\"M2 12h20M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z\"\/\u0026gt;\u0026lt;\/svg\u0026gt; Worldwide Shipping\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u0026gt;\u0026lt;path d=\"M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z\"\/\u0026gt;\u0026lt;polyline points=\"9 22 9 12 15 12 15 22\"\/\u0026gt;\u0026lt;\/svg\u0026gt; Factory Direct\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u0026gt;\u0026lt;rect x=\"1\" y=\"3\" width=\"15\" height=\"13\"\/\u0026gt;\u0026lt;polygon points=\"16 8 20 8 23 11 23 16 16 16 16 8\"\/\u0026gt;\u0026lt;circle cx=\"5.5\" cy=\"18.5\" r=\"2.5\"\/\u0026gt;\u0026lt;circle cx=\"18.5\" cy=\"18.5\" r=\"2.5\"\/\u0026gt;\u0026lt;\/svg\u0026gt; Small MOQ\u0026lt;\/span\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u0026gt;\u0026lt;path d=\"M20 12V8H6a2 2 0 01-2-2c0-1.1.9-2 2-2h12v4\"\/\u0026gt;\u0026lt;path d=\"M4 6v12c0 1.1.9 2 2 2h14v-4\"\/\u0026gt;\u0026lt;path d=\"M18 12a2 2 0 100 4 2 2 0 000-4z\"\/\u0026gt;\u0026lt;\/svg\u0026gt; 100% Remy Hair\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n\n \u0026lt;nav class=\"nav\" id=\"navbar\"\u0026gt;\n \u0026lt;div class=\"nav-inner\"\u0026gt;\n \u0026lt;a href=\"\/\" class=\"nav-logo\"\u0026gt;LuxLock\u0026lt;span class=\"logo-mark\"\u0026gt;\u0026lt;\/span\u0026gt;\u0026lt;\/a\u0026gt;\n \u0026lt;ul class=\"nav-links\" id=\"navLinks\"\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"\/\"\u0026gt;Home\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"\/wholesale\/\"\u0026gt;Wholesale\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"\/private-label\/\"\u0026gt;Private Label\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"\/contact\/\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;li\u0026gt;\u0026lt;a href=\"\/contact\/#quote\" class=\"btn-nav\"\u0026gt;Get Quote\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\n \u0026lt;\/ul\u0026gt;\n \u0026lt;button class=\"mobile-menu-btn\" id=\"mobileMenuBtn\" aria-label=\"Menu\"\u0026gt;\n \u0026lt;span\u0026gt;\u0026lt;\/span\u0026gt;\u0026lt;span\u0026gt;\u0026lt;\/span\u0026gt;\u0026lt;span\u0026gt;\u0026lt;\/span\u0026gt;\n \u0026lt;\/button\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/nav\u0026gt;\n\n \u0026lt;main\u0026gt;\n \u0026lt;section class=\"hero\"\u0026gt;\n \u0026lt;div class=\"hero-decor hero-decor-1\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"hero-decor hero-decor-2\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"hero-inner\"\u0026gt;\n \u0026lt;div class=\"hero-content fade-up\"\u0026gt;\n \u0026lt;h1\u0026gt;Premium \u0026lt;span class=\"highlight\"\u0026gt;Tape-in\u0026lt;\/span\u0026gt; Hair Extensions Wholesale\u0026lt;\/h1\u0026gt;\n \u0026lt;p\u0026gt;Your trusted factory-direct source for 100% Remy human hair. Custom branding \u0026amp; small trial orders welcomed.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"hero-buttons\"\u0026gt;\n \u0026lt;a href=\"\/wholesale\/\" class=\"btn btn-primary\"\u0026gt;Explore Collection\u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"\/contact\/#quote\" class=\"btn btn-outline\"\u0026gt;Request a Sample\u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"hero-visual fade-up\"\u0026gt;\n \u0026lt;div class=\"hero-image-wrapper\"\u0026gt;\n \u0026lt;img src=\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='450' height='562' viewBox='0 0 450 562'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23d5c8c0'\/%3E%3Cstop offset='100%25' stop-color='%23b8a79d'\/%3E%3C\/linearGradient%3E%3C\/defs%3E%3Crect fill='url(%23g)' width='450' height='562'\/%3E%3Ctext x='225' y='270' text-anchor='middle' fill='%23fff' font-size='20' font-family='serif'%3EPremium Remy Hair%3C\/text%3E%3Ctext x='225' y='300' text-anchor='middle' fill='%23f0e8e4' font-size='14' font-family='sans-serif'%3ETape-in Extensions%3C\/text%3E%3C\/svg%3E\"\n alt=\"Premium tape-in hair extensions wholesale - soft shiny remy human hair\" loading=\"eager\"\u0026gt;\n \u0026lt;div class=\"hero-badge\"\u0026gt;\u0026lt;span class=\"badge-dot\"\u0026gt;\u0026lt;\/span\u0026gt; Trusted by 200+ Salons\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section class=\"products\" id=\"products\"\u0026gt;\n \u0026lt;div class=\"section-inner\"\u0026gt;\n \u0026lt;p class=\"section-label\"\u0026gt;Our Core Collection\u0026lt;\/p\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Wholesale Hair Extensions \u0026amp; Supplies\u0026lt;\/h2\u0026gt;\n \u0026lt;p class=\"section-subtitle\"\u0026gt;Premium quality, factory-direct pricing. Everything your salon needs to deliver exceptional results.\u0026lt;\/p\u0026gt;\n \u0026lt;div class=\"products-grid\"\u0026gt;\n \u0026lt;a href=\"\/wholesale\/tape-in-extensions\/\" class=\"product-card fade-up\"\u0026gt;\n \u0026lt;div class=\"product-card-image\"\u0026gt;\u0026lt;img src=\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='400' height='400'%3E%3Crect fill='%23e8dfd8' width='400' height='400'\/%3E%3Ctext x='200' y='200' text-anchor='middle' fill='%2399827a'%3ETape-in%3C\/text%3E%3C\/svg%3E\" alt=\"Tape-in extensions wholesale\" loading=\"lazy\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card-body\"\u0026gt;\n \u0026lt;h3\u0026gt;Tape-in Extensions\u0026lt;\/h3\u0026gt;\n \u0026lt;span class=\"product-tag\"\u0026gt;Best-seller \u00b7 Double Drawn\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"product-card-link\"\u0026gt;View Details \u2192\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"\/wholesale\/hair-wefts\/\" class=\"product-card fade-up\"\u0026gt;\n \u0026lt;div class=\"product-card-image\"\u0026gt;\u0026lt;img src=\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='400' height='400'%3E%3Crect fill='%23e0d9d2' width='400' height='400'\/%3E%3Ctext x='200' y='200' text-anchor='middle' fill='%2399827a'%3EWefts%3C\/text%3E%3C\/svg%3E\" alt=\"Hair wefts bulk\" loading=\"lazy\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card-body\"\u0026gt;\n \u0026lt;h3\u0026gt;Hair Wefts\u0026lt;\/h3\u0026gt;\n \u0026lt;span class=\"product-tag\"\u0026gt;Machine \u0026amp; Hand-tied\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"product-card-link\"\u0026gt;View Details \u2192\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/a\u0026gt;\n \u0026lt;a href=\"\/wholesale\/tools-tapes\/\" class=\"product-card fade-up\"\u0026gt;\n \u0026lt;div class=\"product-card-image\"\u0026gt;\u0026lt;img src=\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='400' height='400'%3E%3Crect fill='%23ddd5cd' width='400' height='400'\/%3E%3Ctext x='200' y='200' text-anchor='middle' fill='%2399827a'%3ETools%3C\/text%3E%3C\/svg%3E\" alt=\"Tools \u0026amp; tapes\" loading=\"lazy\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"product-card-body\"\u0026gt;\n \u0026lt;h3\u0026gt;Tools \u0026amp; Tapes\u0026lt;\/h3\u0026gt;\n \u0026lt;span class=\"product-tag\"\u0026gt;Replacement tapes \u00b7 Removers\u0026lt;\/span\u0026gt;\n \u0026lt;span class=\"product-card-link\"\u0026gt;View Details \u2192\u0026lt;\/span\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/a\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section class=\"process\" id=\"process\"\u0026gt;\n \u0026lt;div class=\"section-inner\"\u0026gt;\n \u0026lt;p class=\"section-label\"\u0026gt;How It Works\u0026lt;\/p\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Your Wholesale Journey\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"process-steps\"\u0026gt;\n \u0026lt;div class=\"process-step fade-up\"\u0026gt;\u0026lt;div class=\"process-step-number\"\u0026gt;1\u0026lt;\/div\u0026gt;\u0026lt;h4\u0026gt;Browse \u0026amp; Select\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Explore our digital catalog and find the right products for your salon.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-step fade-up\"\u0026gt;\u0026lt;div class=\"process-step-number\"\u0026gt;2\u0026lt;\/div\u0026gt;\u0026lt;h4\u0026gt;Request a Quote\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Tell us your requirements and get a personalized wholesale price within 24h.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-step fade-up\"\u0026gt;\u0026lt;div class=\"process-step-number\"\u0026gt;3\u0026lt;\/div\u0026gt;\u0026lt;h4\u0026gt;Confirm Sample\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Receive and approve your sample pack to ensure the quality meets your standards.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"process-step fade-up\"\u0026gt;\u0026lt;div class=\"process-step-number\"\u0026gt;4\u0026lt;\/div\u0026gt;\u0026lt;h4\u0026gt;Start Bulk Order\u0026lt;\/h4\u0026gt;\u0026lt;p\u0026gt;Once satisfied, we'll handle production \u0026amp; shipping worldwide.\u0026lt;\/p\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;p class=\"process-moq-note fade-up\"\u0026gt;\ud83d\udce6 Small MOQ from \u0026lt;strong\u0026gt;20 packs\u0026lt;\/strong\u0026gt; for your first trial order.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section class=\"trust\" id=\"trust\"\u0026gt;\n \u0026lt;div class=\"section-inner\"\u0026gt;\n \u0026lt;p class=\"section-label\"\u0026gt;Why Choose LuxLock\u0026lt;\/p\u0026gt;\n \u0026lt;h2 class=\"section-title\"\u0026gt;Built on Quality \u0026amp; Trust\u0026lt;\/h2\u0026gt;\n \u0026lt;div class=\"trust-grid\"\u0026gt;\n \u0026lt;div class=\"trust-card fade-up\"\u0026gt;\n \u0026lt;div class=\"icon-circle\"\u0026gt;\ud83d\udc8e\u0026lt;\/div\u0026gt;\n \u0026lt;h4\u0026gt;Quality Promise\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;100% cuticle-aligned Remy hair, double drawn. Every batch is quality-checked before shipping.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"trust-card fade-up\"\u0026gt;\n \u0026lt;div class=\"icon-circle\"\u0026gt;\ud83c\udfed\u0026lt;\/div\u0026gt;\n \u0026lt;h4\u0026gt;Factory Direct\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;Own workshop in Xuchang. No middleman, full control over your private label project.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"trust-card fade-up\"\u0026gt;\n \u0026lt;div class=\"icon-circle\"\u0026gt;\ud83e\udd1d\u0026lt;\/div\u0026gt;\n \u0026lt;h4\u0026gt;Trusted Partnership\u0026lt;\/h4\u0026gt;\n \u0026lt;p\u0026gt;From small salons to emerging brands, we help you build a profitable extension line.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n\n \u0026lt;section class=\"cta\" id=\"quote\"\u0026gt;\n \u0026lt;div class=\"cta-texture\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"cta-inner\"\u0026gt;\n \u0026lt;div class=\"cta-content fade-up\"\u0026gt;\n \u0026lt;h2\u0026gt;Ready to elevate your salon's offering?\u0026lt;\/h2\u0026gt;\n \u0026lt;p\u0026gt;Get our latest wholesale catalog and a personalized quote for your first order.\u0026lt;\/p\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"cta-form fade-up\" id=\"ctaFormWrapper\"\u0026gt;\n \u0026lt;form id=\"quoteForm\" novalidate\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;label for=\"name\"\u0026gt;Name *\u0026lt;\/label\u0026gt;\u0026lt;input type=\"text\" id=\"name\" placeholder=\"Your full name\" required\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;label for=\"email\"\u0026gt;Email *\u0026lt;\/label\u0026gt;\u0026lt;input type=\"email\" id=\"email\" placeholder=\"you@example.com\" required\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;label for=\"whatsapp\"\u0026gt;WhatsApp \/ Phone\u0026lt;\/label\u0026gt;\u0026lt;input type=\"tel\" id=\"whatsapp\" placeholder=\"+1 234 567 890\"\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\n \u0026lt;label for=\"role\"\u0026gt;I am a...\u0026lt;\/label\u0026gt;\n \u0026lt;select id=\"role\"\u0026gt;\u0026lt;option value=\"\" disabled selected\u0026gt;Select your role\u0026lt;\/option\u0026gt;\u0026lt;option value=\"salon\"\u0026gt;Salon Owner\u0026lt;\/option\u0026gt;\u0026lt;option value=\"stylist\"\u0026gt;Independent Stylist\u0026lt;\/option\u0026gt;\u0026lt;option value=\"brand\"\u0026gt;Hair Brand\u0026lt;\/option\u0026gt;\u0026lt;option value=\"other\"\u0026gt;Other\u0026lt;\/option\u0026gt;\u0026lt;\/select\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"form-group\"\u0026gt;\u0026lt;label for=\"message\"\u0026gt;Message\u0026lt;\/label\u0026gt;\u0026lt;textarea id=\"message\" rows=\"3\" placeholder=\"I'm interested in tape-in extensions...\"\u0026gt;\u0026lt;\/textarea\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;button type=\"submit\" class=\"btn-submit\"\u0026gt;Send Me the Price List\u0026lt;\/button\u0026gt;\n \u0026lt;\/form\u0026gt;\n \u0026lt;div class=\"form-success-msg\" id=\"formSuccessMsg\"\u0026gt;\u2705 \u0026lt;strong\u0026gt;Thank you!\u0026lt;\/strong\u0026gt;\u0026lt;br\u0026gt;We'll send your wholesale catalog within 24 hours.\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;\/section\u0026gt;\n \u0026lt;\/main\u0026gt;\n\n \u0026lt;footer class=\"footer\"\u0026gt;\n \u0026lt;div class=\"footer-inner\"\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Company\u0026lt;\/h4\u0026gt;\u0026lt;ul\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/about\/\"\u0026gt;About Us\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/factory\/\"\u0026gt;Our Factory\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/blog\/\"\u0026gt;Blog\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/contact\/\"\u0026gt;Contact\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;\/ul\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Wholesale\u0026lt;\/h4\u0026gt;\u0026lt;ul\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/wholesale\/tape-in-extensions\/\"\u0026gt;Tape-in Extensions\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/wholesale\/hair-wefts\/\"\u0026gt;Wefts\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/wholesale\/tools-tapes\/\"\u0026gt;Tools \u0026amp; Tapes\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/private-label\/\"\u0026gt;Private Label\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;\/ul\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Support\u0026lt;\/h4\u0026gt;\u0026lt;ul\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/shipping-policy\/\"\u0026gt;Shipping Policy\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/sample-policy\/\"\u0026gt;Sample Policy\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;li\u0026gt;\u0026lt;a href=\"\/faq\/\"\u0026gt;FAQ\u0026lt;\/a\u0026gt;\u0026lt;\/li\u0026gt;\u0026lt;\/ul\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-col\"\u0026gt;\u0026lt;h4\u0026gt;Connect\u0026lt;\/h4\u0026gt;\u0026lt;div class=\"social-icons\"\u0026gt;\u0026lt;a href=\"#\"\u0026gt;IG\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;in\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;WA\u0026lt;\/a\u0026gt;\u0026lt;a href=\"#\"\u0026gt;FB\u0026lt;\/a\u0026gt;\u0026lt;\/div\u0026gt;\u0026lt;\/div\u0026gt;\n \u0026lt;\/div\u0026gt;\n \u0026lt;div class=\"footer-bottom\"\u0026gt;\u0026amp;copy; 2026 LuxLock Extensions \u2014 Your Premium Hair Extensions Wholesale Partner.\u0026lt;\/div\u0026gt;\n \u0026lt;\/footer\u0026gt;\n\n \u0026lt;script\u0026gt;\n (function() {\n const backToTop = document.getElementById('backToTop');\n window.addEventListener('scroll', () =\u0026gt; backToTop.classList.toggle('visible', window.scrollY \u0026gt; 600));\n backToTop.addEventListener('click', () =\u0026gt; window.scrollTo({ top: 0, behavior: 'smooth' }));\n\n const mobileBtn = document.getElementById('mobileMenuBtn');\n const navLinks = document.getElementById('navLinks');\n if (mobileBtn \u0026amp;\u0026amp; navLinks) {\n mobileBtn.addEventListener('click', () =\u0026gt; {\n const active = navLinks.classList.toggle('active');\n mobileBtn.classList.toggle('active');\n mobileBtn.setAttribute('aria-expanded', active);\n });\n navLinks.querySelectorAll('a').forEach(link =\u0026gt; link.addEventListener('click', () =\u0026gt; {\n navLinks.classList.remove('active');\n mobileBtn.classList.remove('active');\n }));\n document.addEventListener('click', (e) =\u0026gt; {\n if (!navLinks.contains(e.target) \u0026amp;\u0026amp; !mobileBtn.contains(e.target) \u0026amp;\u0026amp; navLinks.classList.contains('active')) {\n navLinks.classList.remove('active');\n mobileBtn.classList.remove('active');\n }\n });\n }\n\n const navbar = document.getElementById('navbar');\n window.addEventListener('scroll', () =\u0026gt; navbar.classList.toggle('scrolled', window.scrollY \u0026gt; 15));\n\n const form = document.getElementById('quoteForm');\n const wrapper = document.getElementById('ctaFormWrapper');\n if (form \u0026amp;\u0026amp; wrapper) {\n form.addEventListener('submit', (e) =\u0026gt; {\n e.preventDefault();\n const name = document.getElementById('name').value.trim();\n const email = document.getElementById('email').value.trim();\n if (!name) { alert('Please enter your name.'); return; }\n if (!email || !\/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$\/.test(email)) { alert('Valid email required.'); return; }\n const btn = form.querySelector('.btn-submit');\n const original = btn.textContent;\n btn.textContent = 'Sending...';\n btn.disabled = true;\n btn.style.opacity = '0.7';\n setTimeout(() =\u0026gt; {\n wrapper.classList.add('submitted');\n btn.textContent = original;\n btn.disabled = false;\n btn.style.opacity = '1';\n console.log('Form data:', { name, email, role: document.getElementById('role').value, message: document.getElementById('message').value });\n }, 1200);\n });\n }\n\n const fadeEls = document.querySelectorAll('.fade-up');\n if ('IntersectionObserver' in window) {\n const obs = new IntersectionObserver((entries) =\u0026gt; {\n entries.forEach(entry =\u0026gt; { if (entry.isIntersecting) { entry.target.classList.add('visible'); obs.unobserve(entry.target); } });\n }, { threshold: 0.15 });\n fadeEls.forEach(el =\u0026gt; obs.observe(el));\n } else {\n fadeEls.forEach(el =\u0026gt; el.classList.add('visible'));\n }\n\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u0026gt; {\n anchor.addEventListener('click', function(e) {\n const href = this.getAttribute('href');\n if (href === '#') return;\n const target = document.querySelector(href);\n if (target) { e.preventDefault(); target.scrollIntoView({ behavior: 'smooth' }); history.pushState(null, null, href); }\n });\n });\n })();\n \u0026lt;\/script\u0026gt;\n\u0026lt;\/body\u0026gt;\n\u0026lt;\/html\u0026gt;","render_as_iframe":true,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9315243}"}}}],"title":"test - homepage-ds","uid":"759f38fe-c593-404e-900d-2380b3e123c9","path":"\/test-homepage-ds","autoPath":true,"authorized":true}],"menu":{"type":"Menu","id":"f_ad7148f2-af96-4dc5-aa3f-46401ccad342","defaultValue":null,"template_name":"navbar","logo":null,"components":{"image1":{"type":"Image","id":"73cbe269-83c0-4e85-88f1-a0239a48052a","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":false,"noCompression":null,"focus":null},"image2":{"type":"Image","id":"f_824b2906-5c2f-437d-bd33-861ecc41caed","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":null,"w":null,"s":null,"new_target":true,"noCompression":null,"cropMode":null,"focus":{}},"text1":{"type":"RichText","id":"f_bd8ffe00-92de-470a-9b1e-cd264bc9be90","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_f34417a6-85c0-4021-97fe-9194e628cd64","defaultValue":true,"value":"\u6dfb\u52a0\u5b57\u5e55","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_58973ba0-f18b-48f9-93fc-a2011d66a593","defaultValue":false,"alignment":"flex-start","text":"","link_type":"Web","page_id":null,"section_id":null,"size":"medium","style":"","color":"","font":"Montserrat","url":"","new_target":false,"version":"2"},"background1":{"type":"Background","id":"f_a66c8c28-6eaf-4f3a-8ea1-635a90bfdcb7","defaultValue":true,"url":"\/assets\/themes\/profile\/bg.jpg","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":null,"linkUrl":null,"linkTarget":null,"videoUrl":null,"videoHtml":null,"storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":null,"noCompression":null,"focus":{}},"image3":{"type":"Image","id":"9abb7ef8-c26f-4243-98ba-b72d2050395f","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"border_radius":null,"aspect_ratio":null,"h":null,"w":null,"s":null,"new_target":true,"noCompression":null,"cropMode":null,"focus":{}}}},"footer":{"type":"Footer","id":"f_e1d67782-58b2-4698-96bb-6b239864ef3e","defaultValue":false,"socialMedia":null,"copyright":null,"components":{"background1":{"type":"Background","id":"f_0bbe0641-59a5-41d5-b6c2-0c8125bc262d","defaultValue":false,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":"s-bg-dark","linkUrl":null,"linkTarget":null,"videoUrl":"","videoHtml":"","storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null,"useImage":null,"noCompression":null,"focus":{},"useSameBg":true,"backgroundApplySettings":{}},"text1":{"type":"RichText","id":"f_38ee0f60-4d1b-430e-b4e7-6c620297948c","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/about-us\" data-type=\"undefined\" target=\"_blank\"\u003eAbout us\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/contact\" data-type=\"undefined\" target=\"_blank\"\u003eContact us\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/wholesale\" data-type=\"undefined\" target=\"_blank\"\u003eWholesale\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_8401dd52-e918-40b1-b55f-df65c826abdf","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.qlocs.com\/shipping-and-delivery\" data-type=\"\" target=\"_blank\"\u003eShipping \u0026amp; Delivery\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/exchanges-and-returns\" data-type=\"undefined\" target=\"_blank\"\u003eExchanges \u0026amp; Returns\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/faqs\" data-type=\"undefined\" target=\"_blank\"\u003eFAQ's\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"},"defaultDataProcessed":true},"text3":{"type":"RichText","id":"f_3553864f-8862-4979-b713-3f414b8bc604","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/privacy-policy\" data-type=\"undefined\" target=\"_blank\"\u003ePrivacy Policy\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/terms-and-conditions\" data-type=\"undefined\" target=\"_blank\"\u003eTerms \u0026amp; Conditions\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 14px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u003ca style=\"color: var(--s-pre-color10);\" href=\"http:\/\/www.dreadlockmachine.com\/reviews\" data-type=\"undefined\" target=\"_blank\"\u003eReviews\u003c\/a\u003e\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"},"defaultDataProcessed":true},"text4":{"type":"RichText","id":"f_a184fd05-ea87-4af8-a0c2-c6e2e27f1587","defaultValue":false,"value":"\u003cp\u003e\u003cstrong\u003e\u8ba2\u9605\u6211\u4eec\u7684\u6700\u65b0\u8d44\u8baf\u003c\/strong\u003e\u003c\/p\u003e","backupValue":null,"version":1},"copyright":{"type":"RichText","id":"f_785655a3-8816-444f-8caa-3049282d544b","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp class=\" normalPara s-rich-text-wrapper font-size-tag-custom s-text-font-size-over-default\" style=\"text-align: left; font-size: 18px;\"\u003e\u003cspan style=\"color: var(--s-pre-color10);\"\u003e\u00a9 2022-2026 DreadlockMachine.com All Rights Reserved.\u003c\/span\u003e\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":"left","lastLineTextAlign":"left"},"defaultDataProcessed":true},"email1":{"type":"EmailForm","id":"f_e30e408c-d416-42d5-9349-8816fcf4cce2","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"\u540d\u5b57","email_label":"\u90ae\u7bb1","phone_number_label":"\u7535\u8bdd","message_label":"\u7559\u8a00","submit_label":"\u8ba2\u9605","thanksMessage":"\u611f\u8c22\u63d0\u4ea4","recipient":"","label":null},"image1":{"type":"Image","id":"f_5bd78454-625b-4798-8097-ab149b1f6ce2","defaultValue":true,"link_url":"","thumb_url":"\/images\/icons\/transparent.png","url":"\/images\/icons\/transparent.png","caption":"","description":"","storageKey":null,"storage":null,"storagePrefix":null,"format":null,"h":null,"w":null,"s":null,"new_target":true,"noCompression":null,"cropMode":null,"focus":{}},"socialMedia":{"type":"SocialMediaList","id":"f_ca94e3fe-967d-42e5-ba23-841d7f3d9387","defaultValue":false,"link_list":[{"type":"SocialMediaItem","id":"c4f09c20-050e-11f1-b224-eb66a61bb6e2","url":"https:\/\/www.youtube.com\/@dreadlockmachine","className":"fab fa-youtube","show_button":true}],"button_list":[{"type":"Facebook","id":"f_5c42cdbd-4398-4ed9-b74d-5f14fe7af572","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":false,"app_id":543870062356274},{"type":"Twitter","id":"f_428d754c-28b2-4bd1-bd26-54917ae15c50","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":false},{"type":"LinkedIn","id":"f_f5bcf098-ed59-4e4a-84c5-1b1840e66303","defaultValue":null,"url":"","link_url":"","share_text":"","show_button":false},{"type":"Pinterest","id":"f_22f4c6bb-0682-4fc5-8fc3-12ce5fe55413","defaultValue":false,"url":"","link_url":null,"share_text":null,"show_button":false}],"contact_list":[{"type":"SocialMediaPhone","id":"62af87fe-e36b-11ed-b943-6b3c98b086cb","defaultValue":"","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"62af87ff-e36b-11ed-b943-6b3c98b086cb","defaultValue":"","className":"fas fa-envelope"}],"list_type":"link"}},"layout_variation":"grid"},"submenu":{"type":"SubMenu","id":"f_adb41d14-3d1d-404d-810f-9ec1f2e8a81b","defaultValue":null,"list":[],"components":{"link":{"type":"Button","id":"f_c764276a-b868-4068-ab67-a960bb3a8cdb","defaultValue":null,"text":"Facebook","link_type":null,"page_id":null,"section_id":null,"url":"http:\/\/www.facebook.com","new_target":true}}},"customColors":{"type":"CustomColors","id":"f_d35970ff-fab0-4cef-a27f-e8b4bf8cae86","defaultValue":null,"active":true,"highlight1":"#161010","highlight2":"#e1b8b8"},"animations":{"type":"Animations","id":"f_1e864d09-1899-4c92-98b3-d7c80ca2377e","defaultValue":null,"page_scroll":"none","background":"none","image_link_hover":"none"},"s5Theme":{"type":"Theme","id":"f_247e5d2c-d437-4993-a487-1c633cb2e339","defaultValue":null,"version":"11","nav":{"type":"NavTheme","id":"f_a7eefaef-c78a-4fe1-925d-f515062961c4","defaultValue":null,"name":"topBar","layout":"a","padding":"small","sidebarWidth":"medium","topContentWidth":"full","horizontalContentAlignment":"left","verticalContentAlignment":"top","fontSize":"medium","backgroundColor1":"","highlightColor":"#8b6565","presetColorName":"transparent","itemColor":"","itemSpacing":"normal","dropShadow":"no","socialMediaListType":"link","isTransparent":true,"isSticky":false,"keptOldLayout":false,"showSocialMedia":false,"hasTransparentFixedNavConfigChanged":true,"highlight":{"blockBackgroundColor":"#8b6565","blockTextColor":"#ffffff","blockBackgroundColorSettings":{"id":"668a6238-27bb-4e2c-9f74-9fec1524a13e","default":"#8b6565","preIndex":null,"type":"default"},"blockTextColorSettings":{"id":"154642dd-f9b7-4b55-ac1d-e0c39cd62af4","default":"#ffffff","preIndex":null,"type":"default"},"blockShape":"pill","textColor":"#8b6565","textColorSettings":{"id":"c37cbf00-ab78-40ef-8805-3bd5caace9a8","default":"#8b6565","preIndex":null,"type":"default"},"type":"underline","id":"f_a237150a-11ad-4df7-918c-5fa4147fce1b"},"border":{"enable":false,"borderColor":"#000","position":"bottom","thickness":"small","borderColorSettings":{"preIndex":null,"type":"custom","default":"#ffffff","id":"f_537d233b-1a8e-4917-a23e-0fbc96d1b61e"}},"layoutsVersionStatus":{"a":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"b":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"g":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"}},"socialMedia":[{"type":"SocialMediaItem","id":"b43c67a0-c788-11ec-8af5-5389b253ed06","url":"facebook.com\/strikingly","className":"fab fa-facebook-f","show_button":true},{"type":"SocialMediaItem","id":"b6a0bd70-c788-11ec-8af5-5389b253ed06","url":"twitter.com\/strikingly","className":"fab fa-twitter","show_button":true},{"type":"SocialMediaItem","id":"b7183760-c788-11ec-8af5-5389b253ed06","url":"instagram.com\/strikingly","className":"fab fa-instagram","show_button":true}],"socialMediaButtonList":[{"type":"Facebook","id":"cba928b7-1ca0-11ee-a9f4-e7eed7b13b40","url":"","link_url":"","share_text":"","show_button":false},{"type":"Twitter","id":"cba928b8-1ca0-11ee-a9f4-e7eed7b13b40","url":"","link_url":"","share_text":"","show_button":false},{"type":"LinkedIn","id":"cba928b9-1ca0-11ee-a9f4-e7eed7b13b40","url":"","link_url":"","share_text":"","show_button":false},{"type":"Pinterest","id":"cba928ba-1ca0-11ee-a9f4-e7eed7b13b40","url":"","link_url":"","share_text":"","show_button":false}],"socialMediaContactList":[{"type":"SocialMediaPhone","id":"cba928bd-1ca0-11ee-a9f4-e7eed7b13b40","defaultValue":"","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"cba928be-1ca0-11ee-a9f4-e7eed7b13b40","defaultValue":"","className":"fas fa-envelope"}],"backgroundColorSettings":{"id":"7625b5f2-cf19-4e78-bd2e-d6bae6b4ae38","default":"","preIndex":null,"type":"default"},"highlightColorSettings":{"id":"5f8bc5f7-008e-461b-a3dc-a9be0341a801","default":"#8b6565","preIndex":null,"type":"default"},"itemColorSettings":{"id":"ce2737f5-c3b8-4848-868f-1eca9232c886","default":"","preIndex":null,"type":"default"}},"section":{"type":"SectionTheme","id":"f_4fc6197e-5182-4a82-a157-ca9ae223252b","defaultValue":null,"padding":"normal","contentWidth":"wide","contentAlignment":"center","baseFontSize":17,"titleFontSize":null,"subtitleFontSize":null,"itemTitleFontSize":null,"itemSubtitleFontSize":null,"textHighlightColor":null,"baseColor":"","titleColor":"","subtitleColor":"#161010","itemTitleColor":"","itemSubtitleColor":"#161010","textHighlightSelection":{"type":"TextHighlightSelection","id":"f_100266f9-faa6-4a20-8290-809532d31c19","defaultValue":null,"title":false,"subtitle":true,"itemTitle":false,"itemSubtitle":true},"base":{"preIndex":null,"type":"default","default":"#50555c","id":"f_abd9f89f-7327-4296-b7d1-ad37faf69dcd"},"title":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_5bcd7ef2-3b2c-497b-8e3c-1481208bd6b1"},"subtitle":{"preIndex":null,"type":"default","default":"#161010","id":"f_b0d08e92-3a51-4022-b694-f9f82c59d995"},"itemTitle":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_f59c75a1-42c4-4eb9-ad53-4bfd3f20c8ef"},"itemSubtitle":{"preIndex":null,"type":"default","default":"#161010","id":"f_9d9e36d7-02b6-4fd1-afb5-07700f447baf"}},"firstSection":{"type":"FirstSectionTheme","id":"f_9f9203be-cabb-4145-b07c-4de2ccc75783","defaultValue":null,"height":"normal","shape":"none"},"button":{"type":"ButtonTheme","id":"f_78383a89-ed4d-4cda-9d68-f5c72825706d","defaultValue":null,"backgroundColor":"#161010","shape":"rounded","fill":"solid","backgroundSettings":{"preIndex":null,"type":"default","default":"#161010","id":"f_47c8641e-503e-42ff-b7a4-2923ba165c18"}}},"navigation":{"items":[{"type":"page","id":"567fe8b4-f5ea-4169-b986-49aae6001ed7","visibility":true},{"id":"af40dd0a-1cba-4040-9a55-59901c0fac39","type":"page","visibility":true},{"id":"d7f83484-cb96-439c-adda-dbcef8c21874","type":"page","visibility":false},{"id":"c562f472-8e2c-4907-b0cf-20dd636e54cc","type":"page","visibility":true},{"id":"e718d55f-8bb5-49b2-a2eb-987c0f41b275","type":"page","visibility":false},{"id":"ff2c8b9b-1162-4057-951a-89f073292121","type":"page","visibility":false},{"id":"2c2b22dc-5c18-4698-b275-7daa834ee10f","type":"page","visibility":false},{"id":"2a2a6e1c-b925-46a8-aad9-e6e7bae491e1","type":"page","visibility":false},{"id":"d18e80c7-634e-45ad-9cb4-e8b7d8b40725","type":"page","visibility":false},{"id":"9f72e775-5546-40ed-8930-c145cfa566b2","type":"page","visibility":false},{"id":"2a4c261c-2196-4e72-ac01-02b469a32bac","type":"page","visibility":false},{"id":"ad7db2cf-374f-49b3-9d44-307f5068dca4","type":"page","visibility":false},{"id":"fbd8682d-8ff6-4dbf-8c0f-fc38bf3280b7","type":"page","visibility":false},{"id":"9ae6150b-60df-4780-a506-19439e49d538","type":"page","visibility":false},{"id":"695937b4-4049-4e0f-ad59-4c71be038168","type":"page","visibility":false},{"id":"c190a218-5c87-4e1d-950c-0a870729b355","type":"page","visibility":false},{"id":"a11953a6-9a2e-491c-9a3f-0fcdff08044e","type":"page","visibility":false},{"id":"e35c5dfc-8b4d-49ee-b56c-835f5de43b43","type":"page","visibility":false},{"id":"e1d85df3-5508-493b-8ba7-057d92dc4718","type":"page","visibility":false},{"id":"c7f48b46-ee63-404f-9e97-259cee2cc103","type":"page","visibility":false},{"id":"3139045a-7994-4996-91b0-dbadf5d07528","type":"page","visibility":false},{"id":"82cece0e-bcc1-46b4-89e9-dc70584dfa1f","type":"page","visibility":false},{"id":"f1bb5b10-db3f-427f-b8be-e359ba9122fa","type":"page","visibility":false},{"id":"f4940005-873f-42c0-a560-c07d0fb719d8","type":"page","visibility":false},{"id":"af0ac1bf-eec9-4a8d-bd41-9272e68f6ce0","type":"page","visibility":false},{"id":"759f38fe-c593-404e-900d-2380b3e123c9","type":"page","visibility":false}],"links":[]},"migrateFeatures":{"migratedRtlFeatureListE":true,"migratedRtlBlogImageAlignment":true,"migratedRtlSlider":true,"migratedS6SectionPadding":false,"migrateS6SectionContentPosition":false}},"pageMeta":{"user":{"membership":"pro","subscription_plan":"pro_yearly","subscription_period":"yearly","is_on_trial":false,"id":1851600,"enable_desktop_notifications":null,"canUseLiveChat":false,"hideNavTextColor":false,"hideNewDashboardTour":false,"hideMobileEditorTour":true,"hideMobileActionsTour":false,"hideNewEditorTour":true,"hideChangeStyleTooltip":false},"guides":{"display_site_new_editor_modal":false},"ecommerceSettings":{"currencyCode":"USD","currencyData":{"code":"USD","symbol":"$","decimal":".","thousand":",","precision":2,"name":"United States Dollar"},"displayTax":true,"registration":"no_registration","postOrderRedirection":{},"enableProductReview":true,"paymentGateways":{"stripe":false,"square":false,"offline":false,"paypal":true,"midtrans":false,"alipay":false,"pingpp_wx_pub":false,"pingpp_wx_pub_qr":false,"pingpp_alipay_qr":false,"pingpp_alipay_wap":false,"wechatpay":false}},"portfolioSetting":true,"portfolioCurrencyCode":"USD","portfolioContactRequired":false,"portfolioRestrictedDetails":null,"portfolioCustomButton":{"buttonType":"no_button","urlType":null,"individualButtonMigrated":true,"buttonSetting":{"individual_button_migrated":true}},"chatSettings":null,"connectedSites":[],"s4_migration":{"is_migrated":false,"is_retired_theme":false,"has_custom_code":true},"page_groups":[],"slide_names":["Dreadlock machine 2026","Buy now","Contact us","FAQ's","Wholesale inquiry","Shop","About us","Shipping \u0026 Delivery","Exchanges \u0026 Returns","Privacy Policy","Terms \u0026 Conditions ","What others say","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App","Embed an App"],"theme":{"name":"s5-theme"},"theme_selection":{"id":199,"theme_id":59,"display_name":"Sarah Worthy","description":"","is_new":true,"priority":1,"thumb_image":"https://static-assets.strikinglycdn.com/templates/sarah-worthy.jpg","demo_page_permalink":"sarah-worthy","data_page_permalink":"sarah-worthy","created_at":"2022-06-06T06:21:53.176-07:00","updated_at":"2026-07-26T02:07:33.016-07:00","name":"Sarah Worthy","is_control":true,"control_name":null,"locale":"en","version":"v4","tags":["all"],"mobile_thumb_image":"","platforms":["tablet","phone",""],"required_membership":[""],"priority_automated":null,"priority_b":1,"one_page_only":true,"rank_automated":86,"rank_score":0.84,"only_asb":true,"theme_name":"s5-theme"},"description":"Our dreadlock machines make the process of creating locs a lot easier. The ultimate tool for the perfect dreadlocks. Now everyone can create their outstanding look.","connected_sites":[],"linkedin_app":false,"is_weitie_page":false,"canonical_locale_supported":true,"forced_locale":"en","china_optimization":false,"mobile_actions":{"phone":null,"sms":null,"location":null,"email":null,"version":"v2","actions":[{"type":"home","icon":"entypo-home","name":"Home"},{"type":"ecommerce","icon":"entypo-bag","name":"Buy Now"}]},"domain_connection":{"domain_id":null,"idn":"www.dreadlockmachine.com","fqdn":"www.dreadlockmachine.com","https_status":"ssl_active","ssl_cert_status":"activated","dns_status":null,"connect_status":"connected"},"public_url":"https:\/\/www.dreadlockmachine.com\/","current_path":"\/test-4-hair-extensions","rollouts":{"custom_code":true,"pro_sections":true,"pro_apps":true,"custom_form":true,"new_settings_dialog_feature":true,"google_analytics":true,"strikingly_analytics":true,"popup":null,"sections_name_sync":true,"membership_feature":false,"custom_ads":true,"multiple_languages":false},"membership_feature_active":false,"site_mode":"show","password_protected":false,"is_section_template":false,"google":{"enable_ga_universal":false,"analytics_tracker":"G-7B61TZW17P","analytics_type":"ga4","site_checker":"1yggr9FPN_Z6odzI3Mi0n58FmmsPasNdA2JDUPsi9hA"},"facebook_pixel_id":"","enable_site_search":false,"enable_card_preset_color":true,"enable_fixed_button_color":true,"enable_fixed_text_color":true,"enable_fixed_text_color_remaining":true,"enable_fixed_text_color_has_bg_color":true,"enable_fixed_gallery_section_rtl_style":true,"enable_fixed_nav_horizontal_align":true,"enable_used_mobile_new_breakpoint":true,"enable_section_smart_binding":true,"enable_fixed_section_content_style_20251020":true,"enable_fixed_s6_transfer_2025112":true,"enable_fixed_section_height_20251209":true,"enable_fixed_mobile_section_style_20251103":true,"enable_fixed_mobile_section_style_20251117":true,"enable_section_padding_adjust":true,"enable_faq_text_color_adjust":true,"enable_new_luma_version":true,"enable_fixed_nav_special_logic_color":true,"enable_match_height_for_feature_list":true,"enable_tweaked_text_alignment":true,"enable_layout_setting_text_alignment":true,"enable_grid_slider_first_section_full_height":true,"enable_tweak_footer_hyperlink_color":true,"enable_slider_layout_c_content_align":true,"enable_form_alignment_fix":true,"enable_fixed_section_fix_20260113":true,"optimizely":{"project_id":null,"experiment_id":null},"splash_screen_color":"#ffffff","id":21357940,"permalink":"locsmachine","created_at":"2022-12-03T09:17:17.827-08:00","logo_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_630,w_1200,f_auto,q_auto\/1851600\/610738_422792.png","icon_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_64,w_64,q_auto\/1851600\/610738_422792.png","name":"The destination for dreadlock machines \u0026 locking devices","url_type":"subdomain_link","icp_filing_number":null,"psb_filing_number":null,"social_media_config":{"url":"https:\/\/www.dreadlockmachine.com\/","title":"The destination for dreadlock machines \u0026 locking devices","image":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_630,w_1200,f_auto,q_auto\/1851600\/610738_422792.png","description":"Our dreadlock machines make the process of creating locs a lot easier. The ultimate tool for the perfect dreadlocks. Now everyone can create their outstanding look.","fb_app_id":"138736959550286"},"keenio_config":{"keenio_project_id":"5317e03605cd66236a000002","keenio_write_key":"efd460f8e282891930ff1957321c12b64a6db50694fd0b4a01d01f347920dfa3ce48e8ca249b5ea9917f98865696cfc39bc6814e4743c39af0a4720bb711627d9cf0fe63d5d52c3866c9c1c3178aaec6cbfc1a9ab62a3c9a827d2846a9be93ecf4ee3d61ebee8baaa6a1d735bff6e37b"},"show_strikingly_logo":false,"show_navigation_buttons":false,"social_media":null,"has_optimizely":false,"optimizely_experiment_id":null,"services":[],"strk_upvt":"RFpCS1VpMlkzWmJ4YzB6SThNeFVmWWljK014amlvamVwN0V3ai9Ra3ZGWnl1OGVUN3BwcXhSSTJZZER5RmdYRnhJM3R1REFtc1UxMXF1d3pya0hLR3dyV0pIWHJmWitRUHJIemZrVXdkK2hJa29uZ2haY21uWDQ4YlM1d2F1VzNycWk4elE1U0YzdjJlTEZqME4zMkhRPT0tLWN6Z1dTMWtTU3VqcHFQLzl0OFAzQnc9PQ==--a287611f33dc9827f5fbe6a4465e5e5e816d360c","strk_ga_tracker":"UA-25124444-6","google_analytics_tracker":"G-7B61TZW17P","google_analytics_type":"ga4","exception_tracking":false,"ecommerce":{"seller_wechat_app_id":null,"has_set_payment_account":true},"customCodes":{"site_footer_code":{"value":"\u003c!-- Google tag (gtag.js) --\u003e\n\u003cscript async src=\"https:\/\/www.googletagmanager.com\/gtag\/js?id=AW-11039066286\"\u003e\u003c\/script\u003e\n\u003cscript\u003e\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n\n gtag('config', 'AW-11039066286');\n\u003c\/script\u003e\n","status":"passed","reviewer":"auto"},"site_header_code":{"value":"","status":"passed","reviewer":"auto"}},"hideDummyData":{"hideEcommerceDummyData":true,"hidePortfolioDummyData":false,"hideBlogDummyData":false,"hideBookingDummyData":false},"redirectUrls":[],"isMainSitePage":false},"blogCollection":{"data":{"blog":{"id":21357940,"blogSettings":{"previewLayout":1,"migrate":true,"mailchimpCode":null},"blogPosts":[],"wechatMpAccountId":null,"pagination":{"blogPosts":{"currentPage":1,"previousPage":null,"nextPage":null,"perPage":20,"totalPages":0,"totalCount":0}}}}},"ecommerceProductCollection":{"data":{"paginationMeta":{"currentPage":1,"previousPage":null,"nextPage":null,"perPage":20,"totalPages":1,"totalCount":3},"products":[{"id":1641035,"name":"Electric Dreadlock Machine (Old Version)","description":"Free Shipping!\n\nAre you ready to make dreadlock creation a fun and enjoyable experience? Say hello to the Friendly Dreadlock Machine, a game-changer designed to transform the way you create and maintain stunning dreadlocks with ease and precision. Our innovative Dreadlock Maker combines cutting-edge technology with a user-friendly interface, making it the perfect companion for dreadlock enthusiasts and professionals alike.\n\nDefault Size:\nComes with 6 types of sizes (6mm\/8mm\/10mm\/12mm\/14mm\/16mm)\nStandard shipping 5-10 business days after it\u0026#39;s been shipped.","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/299167_890737.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/299167_890737.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/300800_264163.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/300800_264163.jpeg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/978106_867264.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/978106_867264.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/140433_128189.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/140433_128189.jpg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/243151_669762.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/243151_669762.jpg","mediaType":"image"}],"detailEnabled":true,"dimensions":{"dimension1":{"name":"Tupe quantities","options":["5 pieces"]},"dimension2":{}},"status":"visible","productType":"physical","enableCustomSlug":true,"customSlug":"dreadlock-machine","enabled":true,"sortWeight":{"all":700,"no":100,"352090":200},"ctaBtn":null,"shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[352090],"categories":["Dreadlock machine"],"slugPath":"\/store\/products\/dreadlock-machine","realSales":3,"originalSales":0,"variations":[{"id":14589366,"name":"default","price":20900,"quantity":-1,"originalPrice":33900,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/299167_890737.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/299167_890737.jpg","mediaType":"image"},"weight":0.0,"sortNumber":0,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":2215339,"name":"New Dreadlock Machine Pro","description":"In Stock\n\nFree shipping.\n\n\u00b7 Tube Available: 6 Sizes (6mm\/8mm\/10mm\/12mm\/14mm\/16mm)\n\n\u00b7 Materials Available: Human Hair, Synthetic Hair\n\n\u00b7 Natural Locs Looks\n\n\u00b7 No Oiling Needed\n\n\u00b7 No Need To Replace Needles\n\n\u00b7 Dreads Protected. Hair Won\u0026#39;t Be Cut Down\n\n\u00b7 Easy Button, Long Work\n\nShipping time 5-10 business days","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/626330_665504.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/626330_665504.jpg","mediaType":"image"},{"url":"https:\/\/cdn.embedly.com\/widgets\/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FBqSW-E58u1Y%3Fwmode%3Dtransparent%26feature%3Doembed\u0026wmode=transparent\u0026display_name=YouTube\u0026url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DBqSW-E58u1Y\u0026image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FBqSW-E58u1Y%2Fhqdefault.jpg\u0026key=9cb34c0390b4469e854e4dba4580a892\u0026type=text%2Fhtml\u0026schema=youtube","thumbnailUrl":"\/\/i.ytimg.com\/vi\/BqSW-E58u1Y\/hqdefault.jpg","mediaType":"video","videoSrc":"https:\/\/youtu.be\/BqSW-E58u1Y"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/106894_539704.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/106894_539704.jpeg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/301190_867023.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/301190_867023.jpeg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/600052_486328.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/600052_486328.jpeg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/903890_317772.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/903890_317772.jpeg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/559260_829565.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/559260_829565.jpeg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/982299_515107.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/982299_515107.jpeg","mediaType":"image"},{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/335243_574153.jpeg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/335243_574153.jpeg","mediaType":"image"}],"detailEnabled":true,"dimensions":{"dimension1":{"name":"Tube quantities","options":["6 Pieces"]},"dimension2":{"name":"Plug","options":["US","UK","CA","EU","AU","Others"]}},"status":"visible","productType":"physical","enableCustomSlug":true,"customSlug":"new-dreadlock-machine-pro","enabled":true,"sortWeight":{"all":600,"no":400,"352090":300},"ctaBtn":null,"shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[352090],"categories":["Dreadlock machine"],"slugPath":"\/store\/products\/new-dreadlock-machine-pro","realSales":0,"originalSales":0,"variations":[{"id":14589468,"name":"6 Pieces_US","price":23900,"quantity":-1,"originalPrice":39900,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/626330_665504.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/626330_665504.jpg"},"weight":0.0,"sortNumber":0,"cost":0},{"id":14589469,"name":"6 Pieces_UK","price":23900,"quantity":-1,"originalPrice":39900,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/626330_665504.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/626330_665504.jpg"},"weight":0.0,"sortNumber":1,"cost":0},{"id":14589470,"name":"6 Pieces_CA","price":23900,"quantity":-1,"originalPrice":39900,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/626330_665504.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/626330_665504.jpg"},"weight":0.0,"sortNumber":2,"cost":0},{"id":14589471,"name":"6 Pieces_EU","price":23900,"quantity":-1,"originalPrice":39900,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/626330_665504.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/626330_665504.jpg"},"weight":0.0,"sortNumber":3,"cost":0},{"id":14589472,"name":"6 Pieces_AU","price":23900,"quantity":-1,"originalPrice":39900,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/626330_665504.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/626330_665504.jpg"},"weight":0.0,"sortNumber":4,"cost":0},{"id":14589473,"name":"6 Pieces_Others","price":23900,"quantity":-1,"originalPrice":39900,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/626330_665504.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/626330_665504.jpg"},"weight":0.0,"sortNumber":5,"cost":0}],"reviewsScore":0,"reviewsCount":0},{"id":1836096,"name":"Dreadlock machine attachment","description":"Attachments for dreadlock machine.\n\nSize available:\nSister locs 6mm\nStandard locs 8mm, 10mm\nWick locs 12mm, 14mm, 16mm\n\nFree shipping over $199 for each order.","picture":[{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/243151_669762.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/243151_669762.jpg","mediaType":"image"}],"detailEnabled":true,"dimensions":null,"status":"visible","productType":"physical","enableCustomSlug":true,"customSlug":"dreadlock-machine-attachment","enabled":true,"sortWeight":{"all":400,"no":300},"ctaBtn":null,"shippingInfo":true,"estimatedDelivery":"","timedShelfDate":null,"posId":null,"isWeightToAll":true,"weightToAll":0,"startDate":null,"endDate":null,"categoryIds":[],"categories":[],"slugPath":"\/store\/products\/dreadlock-machine-attachment","realSales":2,"originalSales":0,"variations":[{"id":3598618,"name":"06mm","price":650,"quantity":-1,"originalPrice":-1,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/605091_202423.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/605091_202423.jpg"},"weight":0.0,"sortNumber":0,"cost":0},{"id":3598619,"name":"08mm","price":650,"quantity":-1,"originalPrice":-1,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/51434_274157.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/51434_274157.jpg"},"weight":0.0,"sortNumber":1,"cost":0},{"id":3598620,"name":"10mm","price":650,"quantity":-1,"originalPrice":-1,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/173812_169975.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/173812_169975.jpg"},"weight":0.0,"sortNumber":2,"cost":0},{"id":3598621,"name":"12mm","price":650,"quantity":-1,"originalPrice":-1,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/190899_313363.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/190899_313363.jpg"},"weight":0.0,"sortNumber":3,"cost":0},{"id":3598622,"name":"14mm","price":650,"quantity":-1,"originalPrice":-1,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/92281_25838.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/92281_25838.jpg"},"weight":0.0,"sortNumber":4,"cost":0},{"id":3598624,"name":"16mm","price":650,"quantity":-1,"originalPrice":-1,"picture":{"url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_3000,w_2000,f_auto,q_auto\/1851600\/175277_386198.jpg","thumbnailUrl":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/175277_386198.jpg"},"weight":0.0,"sortNumber":5,"cost":0}],"reviewsScore":0,"reviewsCount":0}]}},"ecommerceCategoriesProductCollection":null,"portfolioCategoriesProductCollection":null,"portfolioProductCollection":{"data":{"products":[]}},"blogCategoriesPostCollection":null,"ecommerceProductOrderList":{},"ecommerceCategoryCollection":{"data":{"categories":[{"name":"Dreadlock machine","id":352090,"page_title":null,"description":null,"slug":"dreadlock-machine","products_count":2,"children_categories_count":0,"children_category_order":null,"cover_image":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_1000,w_500,f_auto,q_auto\/1851600\/299167_890737.jpg","level":1,"data":{"orderBy":null,"orderList":null,"cover_image":null},"children":[]}]}},"portfolioCategoryCollection":{"data":{"categories":[]}},"blogCategoryCollection":{},"eventTypeCategoryCollection":null};$S.blink={"page":{"logo_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_630,w_1200,f_auto,q_auto\/1851600\/610738_422792.png","weitie_url":"http:\/\/locsmachine.weitie.co","description":"Our dreadlock machines make the process of creating locs a lot easier. The ultimate tool for the perfect dreadlocks. Now everyone can create their outstanding look.","name":"The destination for dreadlock machines \u0026 locking devices"},"conf":{"WECHAT_APP_ID":"wxd009fb01de1ec8b5"}}; //]]>
  • test 4 deepseek

    Reshyn | Premium Hair Extensions for Salons & Brands

    Premium Hair Extensions
    for Salons & Brands

    Wholesale · Custom OEM · Fast Shipping from Guangzhou

    100% Remy Human Hair
    Small MOQ Welcome
    Free Sample Support
    48h Response

    Our premium collection

    Tape-in hair extensions
    Tape‑in Remy Hair
    100% Remy | 14‑24 inch | Natural colours

    Seamless, reusable, salon favourite.

    Clip-in hair extensions
    Clip‑in Remy Hair
    5‑7 clips | 100% Human hair | DIY friendly

    Instant volume & length.

    Custom color blends
    Custom Colour Blends
    Pantone matching | Small batch

    Create your signature shade.

    Why choose Reshyn

    Guangzhou Advantage

    Close to manufacturing & ports, fast turnaround.

    Flexible Customisation

    Logo, packaging, colour blends — no huge MOQ.

    Quality Control

    Every batch sample-checked before shipping.

    Custom solutions for your brand

    Private Label

    Boxes, dust bags with your logo

    Custom Tags

    Sewn-in or hang tags

    Colour Blends

    Match Pantone or sample

    Small MOQ

    As low as 50 boxes

    1. Inquiry
    Share your idea
    2. Sample
    Physical confirmation
    3. Production
    Quality controlled
    4. Shipping
    Fast delivery

    About Reshyn

    Reshyn was founded in Guangzhou to help salons and emerging brands access high‑quality, customisable hair extensions without huge minimum orders. We know big factories often ignore small businesses – we don’t.

    Located close to major production hubs (Xuchang, Qingdao) and the Guangzhou port, we offer fast logistics and responsive service. Your main contact: J. – directly available via WhatsApp or email.

    Request a physical sample before ordering – satisfaction guaranteed.

    Expert insights

    Choosing salon extensions

    Complete guide for pros

    Read →

    Tape‑in vs Clip‑in

    Inventory optimisation

    Read →

    5 care tips for Remy hair

    Extend lifespan

    Read →

    Get in touch

    We reply within 24 hours. Direct contact: J.

    We’ll get back to you within 24h.

    info@reshynhair.com  |  +86 188 8888 8888

    Contact person: J.


    © 2025 Reshyn. All rights reserved. Wholesale hair extensions for salons worldwide.

    Message sent! We'll reply soon.