'); background-size: cover; background-position: center; color: white; padding: 80px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero-tagline { font-size: 1.4rem; margin-bottom: 30px; font-weight: 300; } .hero-highlight { background: rgba(255,255,255,0.2); padding: 25px; border-radius: 10px; margin: 30px 0; border-left: 3px solid #ffd700; } .cta-button { display: inline-block; background: linear-gradient(to right, var(--accent), var(--primary)); color: white; padding: 15px 35px; border-radius: 30px; text-decoration: none; font-weight: 600; margin-top: 20px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); } /* Section Styling */ section { padding: 70px 0; } .section-title { text-align: center; margin-bottom: 50px; color: var(--dark); } .section-title h2 { font-size: 2.2rem; margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2:after { content: ''; position: absolute; width: 70%; height: 3px; background: linear-gradient(to right, var(--primary), var(--secondary)); bottom: -10px; left: 15%; } .section-title p { max-width: 700px; margin: 20px auto 0; color: #666; } /* Company Info */ .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .stat-card { background: white; border-radius: 10px; 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-value { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin: 10px 0; } .stat-label { font-size: 1.1rem; color: var(--dark); } /* Products */ .product-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .filter-btn { padding: 10px 20px; background: white; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; } .filter-btn.active, .filter-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: all 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-badge { position: absolute; top: 15px; left: 15px; background: var(--secondary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; z-index: 2; } .product-img { height: 220px; background: linear-gradient(135deg, #f5f7fa, #e4e7f0); display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: 500; } .product-info { padding: 20px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-price { display: flex; align-items: center; gap: 10px; margin: 10px 0; } .price-original { text-decoration: line-through; color: #999; } .price-discounted { font-size: 1.3rem; font-weight: 700; color: var(--primary); } .product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; } .product-tag { background: #eef2f7; color: var(--dark); padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; } .product-moq { color: #666; font-size: 0.95rem; margin-top: 10px; } /* Offers */ .offers-container { background: linear-gradient(135deg, #f8f9ff, #eef2ff); border-radius: 15px; padding: 40px; margin-top: 40px; } .offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 30px; } .offer-card { background: white; border-radius: 10px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--primary); position: relative; } .offer-card.highlight { border-top: 4px solid var(--secondary); transform: scale(1.05); z-index: 2; } .offer-value { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 10px 0; } .offer-details { margin: 15px 0; padding: 0; list-style: none; } .offer-details li { margin-bottom: 8px; display: flex; } .offer-details li:before { content: "•"; color: var(--primary); font-weight: bold; margin-right: 10px; } .time-left { background: var(--warning); color: white; padding: 8px 15px; border-radius: 20px; display: inline-block; font-size: 0.9rem; margin-top: 15px; } /* Features */ .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: white; border-radius: 10px; padding: 35px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .feature-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; } /* Live Show */ .live-show { background: linear-gradient(135deg, var(--dark), #34495e); color: white; border-radius: 15px; padding: 50px; margin: 70px 0; position: relative; overflow: hidden; } .live-show:before { content: "LIVE"; position: absolute; top: -20px; right: -20px; background: var(--secondary); color: white; font-weight: 700; padding: 20px 40px; transform: rotate(45deg); font-size: 1.2rem; } .live-content { max-width: 700px; } .live-title { font-size: 2rem; margin-bottom: 20px; } .live-schedule { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 10px; margin: 25px 0; } /* Contact & Footer */ .contact-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; } .contact-person { text-align: center; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } footer { background: var(--dark); color: white; padding: 40px 0 20px; margin-top: 70px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 30px; } .footer-section h3 { margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-section h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--primary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ddd; text-decoration: none; transition: all 0.3s ease; } .footer-links a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* Responsive Design */ @media (max-width: 768px) { .header-top { flex-direction: column; gap: 15px; } .nav-links { flex-wrap: wrap; } .hero h1 { font-size: 2.2rem; } .live-show { padding: 30px 20px; } .live-show:before { top: -15px; right: -15px; padding: 15px 30px; } }
Premium 100% Human Hair Solutions Since 2019
Make you much more Attractive with our Top Quality Products and Best Service
GET THE CROWNING GLORY - 100% Human Hair, WE DO ONLY HUMAN HAIR
With over 6 years of expertise, Bmeiyi Technology has established itself as a leader in premium human hair products
Discover our collection of 100% human hair products tailored for natural look and comfort
Special discounts available until October 31, 2025
Premium quality and innovative solutions for all hair needs
All our products are made exclusively from 100% human hair - no synthetic materials.
Our advanced manufacturing process ensures minimal shedding and no tangling.
Customize size, shape, color, density and more to match your personal style.
Curling, dyeing, and bleaching safe - just like your natural hair.
Cuticle aligned hair with thick, full ends for the most natural appearance.
Products designed for thinning hair, receding hairlines, and chemo patients.
Join us every Wednesday & Friday to discover the latest innovations in hair solutions
Every Wednesday & Friday at 2:00 PM (GMT+8)
Discover our most undetectable and innovative hairpieces through our live demonstrations. See why our products are:
Contact our specialists for personalized hair solutions
Product Specialist
Customer Relations
Sales Manager
Technical Support
Order Management
Style Consultant
International Sales