'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .cta-button { display: inline-block; background-color: var(--secondary); color: white; text-decoration: none; padding: 12px 30px; border-radius: 30px; font-weight: 600; font-size: 1.1rem; transition: var(--transition); border: 2px solid var(--secondary); } .cta-button:hover { background-color: transparent; color: var(--secondary); transform: translateY(-3px); } /* Section Common Styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--primary); display: inline-block; padding-bottom: 15px; position: relative; } .section-title h2:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--secondary); } .section-title p { color: var(--gray); max-width: 700px; margin: 15px auto 0; } /* About Section */ .about-content { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; } .about-text { flex: 1; min-width: 300px; } .about-text h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.8rem; } .about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; } .stat-box { background-color: var(--light); padding: 25px 20px; border-radius: 8px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .stat-box:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .stat-box h4 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; } /* Products Section */ .products-tabs { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { padding: 12px 25px; background-color: var(--light); border: none; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: var(--transition); margin: 5px; border-radius: 30px; } .tab-btn.active, .tab-btn:hover { background-color: 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: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .product-img { height: 200px; background-color: #e9ecef; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 600; } .product-info { padding: 20px; } .product-info h3 { color: var(--primary); margin-bottom: 10px; } .product-price { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; } .price { font-weight: 700; color: var(--accent); font-size: 1.2rem; } .min-order { font-size: 0.9rem; color: var(--gray); } /* Advantages Section */ .advantages { background-color: var(--light); } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .advantage-card { padding: 30px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { width: 80px; height: 80px; background-color: rgba(197, 164, 109, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--secondary); } .advantage-card h3 { color: var(--primary); margin-bottom: 15px; } /* Testimonials Section */ .testimonials-container { max-width: 800px; margin: 0 auto; position: relative; } .testimonial-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); margin: 20px 0; position: relative; } .testimonial-card:before { content: '"'; font-size: 5rem; position: absolute; top: -20px; left: 20px; color: rgba(197, 164, 109, 0.2); font-family: serif; } .testimonial-text { font-style: italic; margin-bottom: 20px; } .testimonial-author { font-weight: 600; color: var(--primary); } /* Contact Section */ .contact { background: linear-gradient(to bottom, rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 1)), url('data:image/svg+xml;utf8,'); color: white; } .contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; } .contact-detail { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { margin-right: 15px; font-size: 1.2rem; color: var(--secondary); } .payment-methods { margin-top: 30px; } .payment-methods h4 { margin-bottom: 15px; } .payment-icons { display: flex; flex-wrap: wrap; gap: 10px; } .payment-icon { background: white; color: var(--primary); padding: 8px 15px; border-radius: 5px; font-size: 0.9rem; font-weight: 600; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: none; border-radius: 5px; background-color: rgba(255,255,255,0.1); color: white; font-family: inherit; } .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.7); } .contact-form textarea { min-height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: rgba(255,255,255,0.7); padding: 40px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-section h3 { color: white; margin-bottom: 20px; font-size: 1.3rem; } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 10px; } .footer-section ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); } .footer-section ul li a:hover { color: var(--secondary); padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero h2 { font-size: 2rem; } section { padding: 60px 0; } .section-title h2 { font-size: 1.8rem; } }
Henan Umiss Hair Products Co., Ltd. - Your trusted partner for 100% premium virgin human hair wigs, bundles, and extensions since 2009.
Henan Umiss Hair Products Co., Ltd. is a professional manufacturer specializing in premium quality human hair products
Founded in 2016 and with our factory established in 2009, Umiss Hair is located in Xuchang, China - the global hub for hair product manufacturing. With over 13 years of expertise in human hair production, we've mastered the art of creating premium quality hair products.
Our mission is to help our customers build bigger businesses by providing 100% virgin hair products with strict quality control, competitive pricing, and exceptional customer service.
We look forward to forming successful business relationships with new clients around the world.
Years Experience
Global Transactions
Quality Inspectors
Customer Support
All our products are made from 100% premium virgin human hair with strict quality control
Our commitment to excellence ensures you receive the best products and services
With over 13 years of manufacturing experience and a team of 20+ trained professionals, we provide expert solutions and 24/7 support.
30+ quality inspectors perform 3+ checks on every product before shipping to ensure premium quality and consistency.
Our S.P.Q.R strategy offers the best quality with reasonable pricing, helping you maximize profits.
Full after-sales service including returns, exchanges, confidentiality protection, and consolidation for small orders.
Hear what our satisfied customers have to say about our products and services
Reach out to us for inquiries, quotes, or to place an order
Xuchang City, Henan Province, ChinaGlobal Hair Products Manufacturing Hub
2016 (Factory established 2009)
≤ 18 hours response time24/7 professional support