'); background-size: cover; background-position: center; color: white; padding: 180px 0 100px; text-align: center; } .hero-content h2 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; } .hero-content p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } .btn { display: inline-block; background: var(--secondary); color: white; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--secondary); } .btn:hover { background: transparent; color: var(--secondary); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3); } .btn-outline { background: transparent; border: 2px solid white; margin-left: 15px; } .btn-outline:hover { background: white; color: var(--primary); } /* About Section */ .section { padding: 100px 0; } .section-title { text-align: center; margin-bottom: 60px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--secondary); } .section-title p { max-width: 700px; margin: 15px auto 0; color: #7f8c8d; } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .about-text p { margin-bottom: 15px; } .features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature { display: flex; align-items: flex-start; } .feature-icon { background: var(--light); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--secondary); font-size: 1.2rem; flex-shrink: 0; } .feature-content h4 { margin-bottom: 5px; color: var(--primary); } .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: linear-gradient(45deg, #f1c40f, #e67e22); height: 400px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; font-weight: bold; } /* Products Section */ .products { background-color: var(--light); } .product-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { background: white; border: 1px solid #ddd; padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: var(--transition); } .category-btn.active, .category-btn:hover { background: var(--secondary); color: white; border-color: var(--secondary); } .product-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: 250px; background: linear-gradient(45deg, #9b59b6, #3498db); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; } .product-info { padding: 20px; } .product-info h3 { margin-bottom: 10px; color: var(--primary); } .product-info p { color: #7f8c8d; margin-bottom: 15px; } /* Certifications */ .certifications { background: white; } .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; } .cert-item { padding: 30px 20px; background: var(--light); border-radius: 10px; transition: var(--transition); } .cert-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .cert-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; } /* Process Section */ .process-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 50px; } .step { flex: 1; min-width: 250px; max-width: 350px; text-align: center; padding: 30px; position: relative; } .step-number { width: 50px; height: 50px; background: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 20px; } .step h4 { margin-bottom: 15px; color: var(--primary); } /* CTA Section */ .cta { background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.95)), url('data:image/svg+xml;utf8,'); background-size: cover; color: white; text-align: center; padding: 100px 0; } .cta h2 { font-size: 2.8rem; margin-bottom: 20px; } .cta p { max-width: 700px; margin: 0 auto 40px; font-size: 1.1rem; } /* Footer */ footer { background: var(--dark); color: white; padding: 70px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-column h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--secondary); } .footer-column p, .footer-column a { color: #bdc3c7; margin-bottom: 15px; display: block; text-decoration: none; transition: var(--transition); } .footer-column a:hover { color: var(--secondary); padding-left: 5px; } .contact-info { display: flex; align-items: flex-start; margin-bottom: 15px; } .contact-icon { margin-right: 15px; color: var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #bdc3c7; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .hero-content h2 { font-size: 2.8rem; } } @media (max-width: 768px) { nav ul { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; box-shadow: 0 5px 10px rgba(0,0,0,0.1); } nav ul.active { display: flex; } nav li { margin: 0; text-align: center; } nav a { display: block; padding: 15px 0; border-bottom: 1px solid #eee; } .mobile-menu { display: block; } .hero { padding: 150px 0 80px; } .hero-content h2 { font-size: 2.2rem; } .section { padding: 70px 0; } .section-title h2 { font-size: 2rem; } .btn { display: block; width: 100%; margin-bottom: 15px; } .btn-outline { margin-left: 0; } }
Manufacturer of 100% virgin human hair products with over 15 years of expertise. Offering OEM/ODM services with global certifications.
Quality and craftsmanship since 2008
Founded in 2008, Guangdong Yiwu Hair Products Co., Ltd. specializes in premium human hair extensions, wigs, and hairpieces. With our vertically integrated manufacturing facility, we control every step of the production process to ensure exceptional quality.
Our commitment to ethical sourcing and sustainable practices has made us a preferred supplier for beauty brands and salons worldwide. We pride ourselves on our R&D capabilities that allow us to innovate while maintaining traditional craftsmanship.
Stringent quality control at every production stage
100% ethically sourced virgin human hair
OEM/ODM services with custom specifications
Reliable worldwide distribution network
Handcrafted quality for every hair type and style
100% virgin human hair with natural body wave pattern. Available in various lengths and densities.
DetailsCreate versatile styles with full perimeter coverage. Available in various textures.
DetailsQuality assurance and industry compliance
Quality Management System
European Conformity
Quality Inspection Services
Good Manufacturing Practices
Meticulous craftsmanship at every stage
We carefully select and procure 100% virgin human hair from ethical sources with full traceability.
Hair undergoes thorough sterilization and cleaning processes to ensure hygiene and remove impurities.
Expert artisans sort hair by length, texture, and quality grade to maintain consistency.
Skilled technicians handcraft each product using traditional techniques combined with modern technology.
Each product undergoes rigorous 12-point quality inspection before packaging.
Get in touch with our team for wholesale pricing, custom solutions, and product inquiries. We're ready to partner with you!
Request a QuoteGet in touch with our team
Factory Address: Hair Industrial Park, Xuchang, Henan, China
Email: [email protected]
Phone: +86 123 4567 8910
Business Hours: Mon-Sat 8:30AM - 6:00PM (GMT+8)