'); background-size: cover; background-position: center; color: white; padding: 160px 0 100px; text-align: center; } .hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 30px; color: var(--light); } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } /* Highlights Section */ .highlights { background: var(--light); } .highlight-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .highlight-card { background: white; border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .highlight-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .highlight-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .highlight-card h3 { font-size: 1.4rem; margin-bottom: 15px; } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-info h2 { margin-bottom: 30px; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat { background: var(--light); padding: 20px; border-radius: 8px; text-align: center; } .stat h3 { font-size: 2rem; color: var(--primary); margin-bottom: 5px; } .about-image { background: linear-gradient(45deg, var(--primary), var(--secondary)); height: 400px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; font-weight: bold; } /* Products Section */ .products { background: var(--light); } .category-tabs { display: flex; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; } .tab-btn { padding: 10px 20px; background: white; border: none; margin: 0 5px 10px; border-radius: 4px; cursor: pointer; transition: var(--transition); font-weight: 500; } .tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; } .products-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: var(--transition); } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 250px; background: linear-gradient(45deg, #8e44ad, #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 { font-size: 1.3rem; margin-bottom: 10px; } .product-price { color: var(--accent); font-weight: bold; font-size: 1.2rem; margin: 10px 0; } .product-features { list-style: none; margin: 15px 0; } .product-features li { padding: 5px 0; display: flex; align-items: flex-start; } .product-features li:before { content: '✓'; color: var(--primary); margin-right: 10px; font-weight: bold; } /* Promotions Section */ .promo-content { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; } .promo-card { background: linear-gradient(45deg, var(--primary), #9b59b6); border-radius: 10px; padding: 40px; color: white; } .promo-card h3 { color: white; font-size: 1.8rem; margin-bottom: 20px; } .promo-card.secondary { background: linear-gradient(45deg, var(--secondary), #3498db); } .promo-features { list-style: none; margin: 20px 0; } .promo-features li { padding: 8px 0; display: flex; align-items: flex-start; } .promo-features li:before { content: '✓'; margin-right: 10px; font-weight: bold; } /* Quality Section */ .quality-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .quality-image { background: linear-gradient(45deg, var(--secondary), var(--primary)); height: 400px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; font-weight: bold; } .quality-features { list-style: none; } .quality-features li { padding: 15px 0; border-bottom: 1px solid #eee; display: flex; align-items: flex-start; } .quality-features li:last-child { border-bottom: none; } .quality-features .icon { width: 50px; height: 50px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--primary); font-size: 1.5rem; flex-shrink: 0; } /* Payment Section */ .payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 40px 0; } .method { background: white; border-radius: 8px; padding: 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); min-width: 150px; } .method-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; } /* Contact Section */ .contact { background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('data:image/svg+xml;utf8,'); background-size: cover; color: white; } .contact h2, .contact h3 { color: white; } .contact h2:after { background: white; } .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 20px; } .contact-item { display: flex; align-items: flex-start; } .contact-icon { font-size: 1.5rem; margin-right: 15px; color: var(--primary); } .contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: none; border-radius: 4px; background: rgba(255,255,255,0.1); color: white; } .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.7); } /* Footer */ footer { background: 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 { color: white; margin-bottom: 20px; font-size: 1.3rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #bdc3c7; text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #bdc3c7; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .promo-content, .quality-content, .contact-content { grid-template-columns: 1fr; } .about-image, .quality-image { height: 300px; order: -1; } nav ul { display: none; } .mobile-menu-btn { display: block; } } @media (max-width: 768px) { section { padding: 60px 0; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } }
Since 2003 | Serving Global Clients with 100% Virgin Brazilian, Peruvian, Vietnamese & Indian Hair
Specializing in OEM & ODM services with 28 years of manufacturing excellence
Products exported to North America, South America, Western Europe & Africa
100% Virgin Human Hair with Cuticle Aligned for reduced tangling
100% response rate with ≤1 hour response time, free samples available
Yuzhou Xiuya Handicraft Co., Ltd. is a leading manufacturer and trading company specializing in premium virgin human hair products. Established in 2003 and located in Henan, China, we've been serving the global market for over two decades.
With a 50,000-100,000 sqm factory and 101-200 skilled employees, we combine traditional craftsmanship with modern manufacturing techniques. Our products are verified through onsite checks and trusted by clients worldwide.
Years on Alibaba
Export Ratio
Production Lines
Transactions
100% Virgin Human Hair for Black Women - Customizable & Ready to Wear
Limited Time Discounts for Bulk Orders & New Customers
On Selected Hair Extension & Closure Categories
"WE CARE WHAT YOU CARE" - Our Commitment to Quality & Value
Exclusive Bulk Purchase Benefits
New Customers: Inquire about special first-order discounts!
We take pride in delivering premium products that meet the highest standards:
Cuticle aligned for reduced tangling and extended lifespan
Swiss Lace, HD Lace, and Transparent Swiss Lace for seamless blend
Pre-plucked hairlines with baby hair for realistic appearance
Glueless, ready-to-wear designs for hassle-free application
Flexible Solutions for Global Clients
✓ 1 Piece Minimum Order ✓ OEM/ODM Services ✓ Custom Packaging ✓ Priority Shipping ✓ Exclusive Discounts
Start PartnershipGet in Touch for Quotes, Samples, or Partnership Opportunities
Manufacturer & Trading Company
Henan Province, China
+86 XXX XXXX XXXX
≤1 Hour | 100% Response Rate