'); background-size: cover; background-position: center; color: white; padding: 120px 0; text-align: center; } .hero h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 700; } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } .btn { display: inline-block; background-color: var(--secondary); color: var(--primary); padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid var(--secondary); } .btn:hover { background-color: transparent; color: var(--secondary); } .btn-outline { background-color: transparent; color: var(--secondary); margin-left: 15px; border: 2px solid var(--secondary); } .btn-outline:hover { background-color: var(--secondary); color: var(--primary); } /* Section Styling */ section { padding: 80px 0; } section:nth-child(even) { background-color: white; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-header h2:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--secondary); } .section-header p { max-width: 700px; margin: 20px auto 0; color: #666; } /* About Section */ .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .stat-card { background: white; border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .stat-card:hover { transform: translateY(-10px); } .stat-card h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; } .stat-card p { color: #777; } .certifications { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px; } .cert-badge { background: white; padding: 15px 25px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 10px; } .cert-badge span { font-weight: 600; color: var(--secondary); } /* Products Section */ .product-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { padding: 10px 25px; background: var(--gray); border: none; border-radius: 30px; cursor: pointer; font-weight: 500; transition: all 0.3s ease; } .tab-btn.active { background: var(--secondary); color: var(--primary); } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin-bottom: 10px; color: #777; } .features { margin-top: 15px; } .features li { margin-bottom: 8px; display: flex; align-items: flex-start; } .features li:before { content: '✓'; color: var(--secondary); margin-right: 10px; font-weight: bold; } /* Production Section */ .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; counter-reset: step-counter; } .step-card { position: relative; background: white; padding: 30px 20px 20px 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); counter-increment: step-counter; } .step-card:before { content: counter(step-counter); position: absolute; top: -15px; left: 20px; width: 30px; height: 30px; background: var(--secondary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; } .step-card h3 { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--gray); } .quality-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .quality-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; text-align: center; } .quality-card h3 { margin: 15px 0; color: var(--secondary); } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; overflow: hidden; } .service-card:before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--secondary); } .service-card h3 { margin-bottom: 15px; color: var(--secondary); } .payment-card { background: white; border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-top: 40px; max-width: 600px; margin-left: auto; margin-right: auto; } .payment-card h3 { text-align: center; margin-bottom: 20px; color: var(--secondary); } .payment-features { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; } .payment-feature { display: flex; align-items: center; gap: 10px; background: var(--light); padding: 10px 20px; border-radius: 30px; } /* Footer */ footer { background: var(--primary); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; 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 ul { list-style: none; } .footer-column li { margin-bottom: 12px; } .footer-column a { color: #ccc; text-decoration: none; transition: color 0.3s ease; } .footer-column a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #333; color: #999; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav li { margin: 5px 10px; } .hero h2 { font-size: 2.2rem; } .section-header h2 { font-size: 2rem; } .btn { display: block; margin: 10px auto; text-align: center; width: 80%; } .btn-outline { margin-left: 0; } }
Luxefame Hair offers premium quality 100% human hair extensions, wigs, closures, and frontals. TÜV Rheinland certified with 9+ years of expertise supplying over 300 beauty stores globally.
Explore Products Contact UsGuangzhou Luxefame Hair Trading Co., Ltd. is a leading manufacturer of premium 100% human hair products with over 9 years of industry experience.
Years in Business
Countries Served
Beauty Supply Stores
Supplier Rating
100% Human Hair Products with RoHS Certification - Min. Order: 1 Unit
Our 10-step manufacturing process ensures premium quality human hair products
Careful selection of premium 100% human hair from traceable sources
Organizing hair by length, texture and quality grade
Precision weighing and initial quality inspection
Enhanced durability weaving technique
Ensuring exact weight specifications
Additional strength for long-lasting wear
Creating straight, curly or wavy textures
Preparing hair bundles for final processing
Preserving hair integrity without heat damage
Premium packaging for protection and presentation
Two dedicated QA/QC specialists inspect every product for length, density, and craftsmanship before shipping
We source only virgin, traceable human hair - no synthetic blends or mixed hair
All core products are RoHS certified and meet global environmental standards
Personalized solutions from pre-sale to after-sale support
OEM Services: Free logo customization, packaging design, and professional product photography
ODM Solutions: Custom product development tailored to your needs with personalized colors, sizes, and styles
Drop Shipping: Seamless e-commerce integration support
Fast Shipping: 12-hour dispatch for in-stock items (4x4/13x4 closures, Bob wigs)
Flexible MOQ: Minimum order quantity of just 1 unit for sampling
1V1 Consultation: Dedicated expert guidance on selection, purchasing, and maintenance
VIP Program: Priority production, custom quotes, and dedicated after-sales for major clients
Credit Terms: OA 90 days payment terms with available credit: $283,948/$300,000
Our commitment to excellence has been recognized throughout the industry
Consistently maintaining "Top Supplier" status on Alibaba platform
Recipient of Alibaba Guangzhou "Newcomer Program Best Team Award"
Regular participation in global beauty exhibitions with live product demonstrations