'); background-size: cover; background-position: center; height: 100vh; display: flex; align-items: center; color: white; text-align: center; padding-top: 80px; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.5rem; margin-bottom: 30px; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } /* === FEATURES SECTION === */ .features { background-color: var(--light); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .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-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { border: 1px solid #eee; border-radius: 10px; overflow: hidden; transition: var(--transition); background: white; } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); } .product-img { height: 250px; background-color: #f9f9f9; display: flex; align-items: center; justify-content: center; color: var(--gray); } .product-info { padding: 20px; } .product-category { color: var(--accent); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; } .product-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); } .product-price { font-size: 1.4rem; color: var(--primary); font-weight: 700; margin-bottom: 15px; } .product-specs { list-style: none; margin: 15px 0; } .product-specs li { padding: 5px 0; border-bottom: 1px dashed #eee; display: flex; justify-content: space-between; } .product-specs li:last-child { border-bottom: none; } .spec-name { color: var(--gray); } .spec-value { font-weight: 600; } /* === ABOUT SECTION === */ .about { background-color: var(--primary); color: white; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h2 { font-size: 2.5rem; margin-bottom: 25px; } .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; } .stat-item { text-align: center; } .stat-value { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; } .stat-label { text-transform: uppercase; font-size: 0.9rem; opacity: 0.8; } /* === OEM SECTION === */ .oem-process { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .process-step { text-align: center; padding: 30px 20px; border-radius: 10px; background: rgba(67, 97, 238, 0.05); } .step-number { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: var(--primary); color: white; border-radius: 50%; font-weight: 700; font-size: 1.5rem; margin-bottom: 20px; } /* === PROMOTION SECTION === */ .promotion { background: linear-gradient(to right, #f72585, #3a0ca3); color: white; text-align: center; padding: 60px 0; } .discount-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .discount-card { background: rgba(255,255,255,0.15); padding: 30px; border-radius: 10px; backdrop-filter: blur(10px); } .discount-amount { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; } .min-purchase { margin-bottom: 20px; opacity: 0.9; } /* === CONTACT SECTION === */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info { margin-bottom: 30px; } .contact-method { display: flex; align-items: flex-start; margin-bottom: 25px; } .contact-icon { font-size: 1.5rem; color: var(--primary); margin-right: 15px; min-width: 30px; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; } .contact-form textarea { height: 150px; resize: vertical; } /* === PAYMENT SECTION === */ .payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; } .payment-method { background: white; border: 1px solid #eee; border-radius: 8px; padding: 10px 20px; display: flex; align-items: center; font-weight: 600; } /* === FOOTER === */ footer { background-color: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ccc; text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #999; } /* === RESPONSIVE DESIGN === */ @media (max-width: 992px) { .hero h1 { font-size: 2.8rem; } .about-content { grid-template-columns: 1fr; } } @media (max-width: 768px) { .header-container { flex-direction: column; } .nav-menu { margin-top: 20px; flex-wrap: wrap; justify-content: center; } .nav-menu li { margin: 10px 15px; } .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1.2rem; } .section-title h2 { font-size: 2rem; } .hero-btns { flex-direction: column; align-items: center; gap: 10px; } }
100% Virgin Human Hair Extensions, Wigs & Hairpieces with Custom OEM/ODM Services
15 Years Experience in Human Hair Production with Global Quality Standards
100% healthy virgin human hair, Remy hair with cuticle aligned. Double drawn process ensures no shedding & no tangling.
Full customization of hair products, packaging, and branding for 500+ satisfied brands worldwide.
50,000+ hair products in stock for immediate dispatch. Fast delivery with DHL/FedEx logistics support.
Rigorous 6-step quality control process. All products support easy return policy.
High-Quality Virgin Human Hair at Wholesale Prices
Established in 2024 with 15+ years of hair industry expertise, Mira Hair specializes in premium human hair products manufacturing and global export. Based in Henan, China, our 800m² factory employs 150+ skilled workers dedicated to quality craftsmanship.
Core Philosophy: "Quality First, Reputation First" - We build lasting partnerships through reliable products and services.
Custom Hair Solutions for Your Brand
Discuss hair specifications, texture, length, color requirements
Create samples based on your specifications
Custom boxes, labels, and branding elements
Bulk manufacturing with quality control checks
Door-to-door logistics with documentation
Limited Time Discounts on First Order
Get in Touch for Wholesale Inquiries & Custom Orders
Henan Province, China Established: 2024 Factory Size: 800m² Employees: 150+
Response Time: ≤4 Hours Response Rate: 100%
Monday-Saturday: 8:00 AM - 6:00 PM (GMT+8)