'); background-size: cover; background-position: center; color: white; padding: 150px 0 100px; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; } .hero p { font-size: 1.4rem; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .btn-secondary { background: transparent; border: 2px solid white; } .btn-secondary:hover { background: white; color: var(--primary); } /* Features Section */ .features { background-color: white; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: var(--light); border-radius: 10px; padding: 40px 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .feature-card:hover { transform: translateY(-10px); } .feature-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark); } /* Products Section */ .products { background-color: #f8f9ff; } .product-categories { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 10px; } .category-btn { padding: 12px 25px; border-radius: 30px; background: white; border: 2px solid #e0e0e0; cursor: pointer; font-weight: 600; transition: all 0.3s ease; } .category-btn.active, .category-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: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); } .product-img { height: 250px; background: linear-gradient(45deg, #f5f7fa, #e4edff); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: bold; font-size: 1.2rem; } .product-content { padding: 25px; } .product-content h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin: 15px 0; font-size: 0.9rem; color: #666; } .product-price { font-size: 1.4rem; color: var(--primary); font-weight: 700; margin: 10px 0; } .spec-list { list-style: none; margin-top: 15px; } .spec-list li { padding: 5px 0; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; } .spec-list li span:first-child { font-weight: 600; } /* About Section */ .about { background: white; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h3 { font-size: 2rem; color: var(--primary); margin-bottom: 25px; } .about-text p { margin-bottom: 20px; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { text-align: center; padding: 20px; background: var(--light); border-radius: 10px; } .stat-box h4 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; } /* Certifications */ .certifications { background: #f8f9ff; } .certs-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .cert-card { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .cert-card h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #eee; } .cert-details { list-style: none; } .cert-details li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; display: flex; } .cert-details li:last-child { border-bottom: none; } .cert-details li strong { min-width: 150px; display: inline-block; color: #555; } /* CTA Section */ .cta { background: linear-gradient(to right, var(--primary), var(--secondary)); color: white; text-align: center; padding: 100px 0; } .cta h2 { font-size: 2.8rem; margin-bottom: 20px; } .cta p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; } /* Footer */ footer { background: #1a1a2e; color: #eee; padding: 70px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; } .footer-col h3 { font-size: 1.4rem; margin-bottom: 25px; color: white; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; width: 50px; height: 2px; background: var(--accent); bottom: 0; left: 0; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #aaa; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: white; } .contact-info { list-style: none; } .contact-info li { display: flex; margin-bottom: 15px; } .contact-icon { margin-right: 15px; color: var(--accent); min-width: 20px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #333; font-size: 0.9rem; color: #888; } /* Responsive Styles */ @media (max-width: 992px) { .about-content { grid-template-columns: 1fr; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } .logo { margin-bottom: 15px; } nav ul { flex-wrap: wrap; justify-content: center; } nav ul li { margin: 8px 15px; } .hero h1 { font-size: 2.3rem; } .hero p { font-size: 1.1rem; } .hero-btns { flex-direction: column; align-items: center; } .section-title h2 { font-size: 2rem; } } @media (max-width: 576px) { section { padding: 60px 0; } .hero { padding: 100px 0 60px; } .product-categories { flex-direction: column; align-items: center; } .category-btn { width: 100%; max-width: 300px; } }
Xuchang Crius Wig Products - Direct premium 100% human hair wigs manufacturer with 16+ years expertise
Premium quality meets exceptional service
No blends, no compromises - only premium quality human hair for natural look and feel
Manufacturer prices without intermediaries for competitive wholesale rates
100% response rate with ≤1 hour response time for all inquiries
Trusted by top resellers in USA, Europe, and Africa for quality and reliability
Manufactured with 16+ years expertise
16+ years of hair manufacturing excellence
Based in Henan, China, we've specialized in premium 100% human hair products since 2007. With over 16 years of manufacturing expertise, we serve global wig boutiques and retailers with factory-direct quality.
Our mission: To empower beauty businesses worldwide by providing premium human hair products that help them grow their brand and boost sales.
Focusing exclusively on 100% human hair with no synthetic blends, we cater especially to black women's diverse styling needs and balding men seeking natural-looking solutions.
Years Experience
Human Hair
Response Time
Custom Branding
Quality Assurance: Rigorous quality control from sourcing to final inspection ensures premium products that meet international standards.
Manufacturing Expertise: 16+ years specialized in human hair products with skilled craftsmanship.
Supply Chain Efficiency: Stable supply and fast delivery capabilities for bulk orders.
Competitive Pricing: Factory-direct model eliminates middlemen, providing true wholesale pricing.
Custom Solutions: OEM services for private labeling and custom specifications to match market preferences.
Meeting international standards
Partner with a trusted manufacturer of premium 100% human hair products. Request a wholesale catalog and pricing today.
Contact Us Now