'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 20px; margin-bottom: 60px; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.2rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .btn { display: inline-block; background-color: var(--primary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--primary); } .btn:hover { background-color: transparent; color: var(--primary); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .btn-outline { background-color: transparent; border: 2px solid white; margin-left: 15px; } .btn-outline:hover { background-color: white; color: var(--primary); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 60px; } .section-title h2 { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; width: 70%; height: 3px; background-color: var(--primary); bottom: -10px; left: 15%; } .section-title p { max-width: 700px; margin: 20px auto 0; color: #666; } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 2rem; color: var(--accent); margin-bottom: 20px; } .about-text p { margin-bottom: 20px; } .features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature-item { display: flex; align-items: flex-start; gap: 15px; } .feature-icon { background-color: var(--secondary); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .feature-text h4 { margin-bottom: 5px; color: var(--dark); } .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .about-image-placeholder { width: 100%; height: 400px; background: linear-gradient(45deg, var(--secondary), var(--primary)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 500; } /* Products Section */ .products { background-color: #f9f7f5; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: 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, #e9dccd, #d4b996); display: flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 500; } .product-info { padding: 25px; } .product-info h3 { font-size: 1.4rem; color: var(--accent); margin-bottom: 10px; } .product-info p { color: #666; margin-bottom: 15px; } /* Advantages Section */ .advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background-color: white; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .advantage-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--accent); } /* Certifications */ .certifications { background-color: var(--dark); color: white; text-align: center; padding: 60px 0; } .certifications .container { max-width: 800px; } .cert-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 40px; } .cert-item { background-color: rgba(255,255,255,0.1); padding: 20px; border-radius: 10px; min-width: 180px; } /* Contact Section */ .contact { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-info h3 { font-size: 1.8rem; color: var(--accent); margin-bottom: 25px; } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { margin-right: 15px; color: var(--primary); font-size: 1.2rem; } .contact-form { flex: 1; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; } .form-group textarea { height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.4rem; margin-bottom: 25px; position: relative; display: inline-block; } .footer-column h3::after { content: ''; position: absolute; width: 50%; height: 2px; background-color: var(--primary); bottom: -8px; left: 0; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ddd; text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: var(--secondary); padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; } /* Responsive */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact { flex-direction: column; } .hero h1 { font-size: 2.5rem; } } @media (max-width: 768px) { .nav-links { display: none; } .hero { padding: 80px 20px; } .hero h1 { font-size: 2rem; } .btn { display: block; margin: 10px auto; max-width: 250px; } .section { padding: 60px 0; } }
Manufacturers of high-quality human hair extensions, wigs, and hair products with over 15 years of industry expertise. Trusted by salons and retailers worldwide.
Explore Products Contact UsWith a legacy of excellence in hair manufacturing, we bring the finest quality products to the global market
Established in 2008, FH Hair Factory specializes in the production of premium human hair extensions, wigs, and hair accessories. Our state-of-the-art manufacturing facility combines traditional craftsmanship with modern technology to deliver exceptional products.
We source only the finest raw materials and employ rigorous quality control processes to ensure every product meets international standards. Our team of hair experts and stylists continuously innovates to bring you the latest trends and highest quality hair solutions.
7-step quality control process
Exporting to 40+ countries
Responsible and traceable supply chain
Custom manufacturing available
Discover our range of high-quality hair solutions designed for professionals
100% unprocessed human hair with intact cuticles for maximum longevity and natural movement. Available in various textures and lengths.
Request SamplesHand-tied, undetectable hairline with premium lace. Customizable density and hairline options for a natural look.
Request SamplesPerfect for protective styling with natural parting space. Available in silk base and lace options.
Request SamplesHigh-quality hair bundles in various textures: Brazilian, Peruvian, Malaysian, and more. Multiple lengths and weights available.
Request SamplesOur commitment to excellence sets us apart in the hair manufacturing industry
We use only 100% human hair with cuticles aligned in the same direction for minimal tangling and maximum longevity.
Tailor-made solutions for your specific requirements - texture, color, length, density, and packaging.
Direct factory prices without middlemen, offering exceptional value for premium quality hair products.
Efficient shipping solutions with door-to-door service to all major markets worldwide.
Rigorous 7-step quality control process ensuring every product meets our high standards.
Dedicated account managers and technical support team to assist with all your needs.
Committed to quality, safety, and ethical manufacturing standards
Quality Management
Environmental Management
Product Safety
Responsible Supply Chain
Get in touch for quotes, samples, or partnership opportunities
No. 88 Hair Industrial Park, Xuchang, Henan, China
+86 371 8888 6666
Monday-Friday: 9:00 AM - 6:00 PM (GMT+8)