'); background-size: cover; } .hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; } .hero h2 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .hero-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .btn { display: inline-block; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; } .btn-primary { background: white; color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.2); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); } .btn-secondary { background: transparent; color: white; border: 2px solid white; } .btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); } /* Sections */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 60px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--dark); display: inline-block; margin-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--primary); border-radius: 2px; } .section-title p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); } .stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .stat-card h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; } /* Products Section */ .products-filter { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; gap: 15px; } .filter-btn { padding: 8px 20px; background: white; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; transition: var(--transition); } .filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 200px; background: linear-gradient(45deg, #f1f1f1, #e1e1e1); display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: bold; } .product-info { padding: 20px; } .product-category { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; } .product-name { font-size: 1.2rem; margin-bottom: 10px; } .product-price { color: var(--accent); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; } .product-moq { color: var(--gray); font-size: 0.9rem; margin-bottom: 15px; } /* Why Choose Us */ .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); text-align: center; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .feature-icon { width: 70px; height: 70px; background: var(--primary); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; } /* Contact Section */ .contact-container { display: flex; gap: 50px; } .contact-form { flex: 1; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: var(--transition); } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2); } .form-group textarea { min-height: 150px; resize: vertical; } .contact-info { flex: 1; } .info-item { display: flex; margin-bottom: 30px; } .info-icon { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; margin-right: 20px; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-logo { font-size: 1.8rem; color: white; margin-bottom: 20px; display: inline-block; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 25px; position: relative; } .footer-column h3::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 40px; height: 3px; background: var(--primary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #bbb; text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #bbb; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-container { flex-direction: column; } .hero h2 { font-size: 2.8rem; } } @media (max-width: 768px) { nav ul { display: none; } .hero h2 { font-size: 2.2rem; } section { padding: 60px 0; } }
With over 20 years of expertise, Yiwu Xinyou Hair Products specializes in crafting high-quality human hair wigs, extensions, and bundles. Factory-direct pricing, global certifications, and full OEM/ODM capabilities.
Established in China's hair products capital, we've grown to become a trusted global supplier
Founded with a commitment to excellence in human hair products, our Zhejiang-based factory combines traditional craftsmanship with modern manufacturing techniques. With a dedicated team of over 200 professionals and a monthly output value of approximately $1.5 million, we service clients across North America and Western Europe.
Our Alibaba-certified operations maintain a 4.9/5 store rating with 100% on-time delivery. We've specialized in premium hair products for over two decades, despite our official platform registration showing 1 year.
Years Experience
Skilled Employees
On-Time Delivery
Customer Rating
Discover our extensive range of high-quality human hair products
Brazilian afro curly half wig, glueless clip-on design, perfect for African American women.
Vietnamese glueless HD full lace wig with straight/loose body wave styles.
Short bob curly wig, glueless pre-cut design, natural movement.
Indian/Brazilian/Vietnamese raw hair, straight/curly styles, full lace HD design.
Tailor-made solutions for your specific hair product requirements
We manufacture according to your specifications and designs with precision quality control.
Our design team creates unique products for your brand with market-specific insights.
Customize gram weight, hairstyle, color, density, lace type, and any other specifications.
Our commitment to excellence at every production stage
100% traceable human hair with origin verification and quality grading.
Real-time quality checks at each manufacturing stage with advanced equipment.
Comprehensive quality control before packaging and shipment.
Green Product Certified
Quality Assurance
European Standards
Discover the advantages of partnering with our hair manufacturing experts
Eliminate middlemen and get premium quality at competitive prices straight from our manufacturing facility.
We understand regional trends in North America, Western Europe, and beyond to create market-appropriate products.
Streamlined process from raw material to finished product ensures faster turnaround times.
11 languages supported with 24/7 customer service for seamless communication.
Reach out for quotes, samples, or partnership opportunities
Yiwu City, Zhejiang Province, China
Monday - Saturday: 8:00 AM - 6:00 PM (GMT+8)
24/7 Online Support Available
1. Inquiry → 2. Price Quote → 3. Sample Review → 4. Contract Signing → 5. Production → 6. Delivery