'); background-size: cover; background-position: center; color: white; padding: 5rem 0; text-align: center; } .hero h2 { font-size: 2.8rem; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; text-shadow: 0 1px 3px rgba(0,0,0,0.3); } .cta-button { display: inline-block; background: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid var(--accent); } .cta-button:hover { background: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4); } /* Section Styles */ section { padding: 4rem 0; } .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2.2rem; color: var(--primary); position: relative; display: inline-block; margin-bottom: 1rem; } .section-header h2:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); border-radius: 2px; } .section-header p { max-width: 700px; margin: 0 auto; color: #666; } /* Core Info Section */ .core-info { background-color: #f9f9ff; } .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .info-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .info-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .card-header { background: var(--primary); color: white; padding: 1.2rem; font-weight: 600; font-size: 1.2rem; } .card-body { padding: 1.5rem; } .info-item { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #eee; } .info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .info-item h4 { color: var(--primary); margin-bottom: 0.5rem; } /* Advantages Section */ .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; } .advantage-card { text-align: center; padding: 2rem 1.5rem; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .icon { display: inline-flex; justify-content: center; align-items: center; width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-radius: 50%; font-size: 1.8rem; margin-bottom: 1.5rem; } .advantage-card h3 { color: var(--primary); margin-bottom: 1rem; } /* Products Section */ .products { background-color: #f9f9ff; } .products-tabs { display: flex; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; } .tab-btn { background: white; border: none; padding: 0.8rem 1.8rem; margin: 0 0.5rem 1rem; border-radius: 30px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; } .tab-content { display: none; } .tab-content.active { display: block; } .product-table { width: 100%; border-collapse: collapse; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .product-table th { background: var(--primary); color: white; padding: 1rem; text-align: left; } .product-table td { padding: 1rem; border-bottom: 1px solid #eee; } .product-table tr:last-child td { border-bottom: none; } .product-table tr:nth-child(even) { background-color: #f8f9ff; } .product-table tr:hover { background-color: #edf0ff; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .service-content { padding: 2rem; } .service-content h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.4rem; } .service-list { list-style: none; } .service-list li { padding: 0.5rem 0; position: relative; padding-left: 1.5rem; } .service-list li:before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: bold; } /* Contact Section */ .contact { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; } .contact .section-header h2 { color: white; } .contact .section-header p { color: rgba(255,255,255,0.8); } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .contact-info { display: flex; flex-direction: column; justify-content: center; } .contact-item { display: flex; align-items: center; margin-bottom: 1.5rem; } .contact-icon { display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; margin-right: 1rem; font-size: 1.2rem; } .contact-text h4 { margin-bottom: 0.3rem; } .contact-text a { color: white; text-decoration: none; transition: all 0.3s ease; } .contact-text a:hover { color: var(--accent); text-decoration: underline; } .platforms { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; } .platform { background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; } /* Footer */ footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 3rem 0 1.5rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-col h3 { color: white; margin-bottom: 1.5rem; position: relative; font-size: 1.2rem; } .footer-col h3:after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.8rem; } .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.3s ease; } .footer-links a:hover { color: var(--accent); padding-left: 5px; } .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 1rem; flex-wrap: wrap; justify-content: center; } nav li { margin: 0.3rem 0.5rem; } .hero h2 { font-size: 2rem; } .section-header h2 { font-size: 1.8rem; } }
25+ years experience in hair manufacturing • Strict quality control • Factory direct prices • Global shipping
Request a Quote TodayReliable Manufacturer & Supplier of Quality Virgin Hair Products
Reliable Manufacturer, Quality Virgin Hair
25+ years as factory supplier • 30+ years manufacturing expertise
Xuchang, Henan, China - the global core base of hair products
4.9/5 satisfaction score • 5 years platform presence
3,000+ m² factory • 200+ m² office • 2,000+ ft² warehouse
100+ experienced employees • Professional sales team
300,000 pieces monthly output • Large stock availability
10,000+ hair samples for selection and trial
Email: [email protected] WhatsApp: +86 175 2716 6065
Alibaba • Amazon • AliExpress • Made-in-China
Global hair product wholesalers • Entrepreneurs • Cross-border e-commerce sellers
"We see your business as our own, try everything to help"
Why Global Businesses Choose AMZHAIR as Their Hair Products Partner
Three comprehensive quality control programs ensuring premium virgin hair products that meet international standards.
300,000 pieces monthly output capability - one of the highest capacities in the hair products industry.
Manufacturer-direct prices with no middleman markup, offering exceptional value for wholesale buyers.
End-to-end management from R&D, raw material processing, production, to storage and logistics.
Comprehensive customization options for textures, colors, density, branding, and packaging.
Partnerships with FedEx, DHL, UPS, TNT for fast worldwide delivery with optimized shipping solutions.
High-Quality Virgin Hair Solutions for Diverse Needs
Product Name | Price Range | MOQ |
---|---|---|
Vietnamese Natural Curly Hair Wig | 1,247.01 - 2,323.56 ₽ | 100 pieces |
HD Human Hair Lace Frontal Wig (Brazilian Virgin 13x6, Glueless, Full HD) | 502.39 - 2,413.27 ₽ | 1 piece |
Basic Natural Human Hair Wig | 798.45 - 1,749.40 ₽ | 10 pieces |
Brazilian Hair 360 HD Lace Short Curly Wig (Glueless) | 798.45 - 2,144.13 ₽ | 100 pieces |
Peruvian Short Curly Human Hair Full Lace Frontal Wig (Wholesale) | 1,605.86 - 1,785.28 ₽ | 1 piece |
Product Name | Price Range | MOQ |
---|---|---|
360 HD Lace Frontal Human Hair Wig (Brazilian Curly) | 897.13 - 3,498.79 ₽ | 1 piece |
30/40 Inch Long Natural Hair Wig | 798.45 - 2,144.13 ₽ | 10 pieces |
Peruvian Natural Curly 360 HD Lace Full Lace Wig | 1,964.71 - 2,144.13 ₽ | 1 piece |
Swiss Transparent Lace 13x6 HD Frontal Wig (Brazilian Virgin Hair) | 2,242.81 - 4,037.06 ₽ | 1 piece |
38/40 Inch Extra Long Natural Hair Wig | 1,211.12 - 2,135.16 ₽ | 1 piece |
Product Name | Price Range | MOQ |
---|---|---|
Basic Natural Hair Extensions | 888.16 - 2,682.41 ₽ | 1 piece |
Vietnamese Virgin Hair Weft (Cuticle Aligned, Wholesale) | 520.34 - 1,964.71 ₽ | 1 piece |
Indian Hair 13x6 HD Frontal Extension (With Hair Wefts) | 493.42 - 3,310.39 ₽ | 1 piece |
Indian Virgin Hair HD Lace Closure/Frontal (Pre-cut) | 1,255.98 - 1,435.40 ₽ | 5 pieces |
Comprehensive Support for Global Business Success
Get in Touch for Quotes, Samples, and Business Partnership Opportunities
Xuchang City, Henan Province, ChinaGlobal Hair Products Manufacturing Hub