'); background-size: cover; background-position: center; color: white; text-align: center; padding: 5rem 1rem; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 1rem; line-height: 1.2; } .hero p { font-size: 1.3rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; } .tagline { display: inline-block; background: var(--accent); color: var(--dark); padding: 5px 15px; border-radius: 30px; font-weight: bold; margin-bottom: 1.5rem; } .cta-button { display: inline-block; background: var(--accent); color: var(--dark); padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: all 0.3s ease; margin-top: 1rem; } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Section Styling */ section { padding: 5rem 0; } .section-title { text-align: center; margin-bottom: 3rem; } .section-title h2 { font-size: 2.3rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 10px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); border-radius: 2px; } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .about-text h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 1.5rem; } .highlight-box { background: var(--light); border-left: 4px solid var(--accent); padding: 1.5rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; } .quality-list { list-style: none; margin-top: 1.5rem; } .quality-list li { padding: 10px 0; padding-left: 30px; position: relative; } .quality-list li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--success); font-weight: bold; } /* Why Choose Us */ .features { background: var(--light); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .feature-card { background: white; border-radius: 10px; padding: 2rem; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .feature-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 1rem; } .feature-card h3 { color: var(--primary); margin-bottom: 1rem; } /* Products Section */ .categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 4rem; } .category-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .category-header { background: var(--secondary); color: white; padding: 1.2rem; text-align: center; } .category-body { padding: 1.5rem; } .category-features { list-style: none; margin-top: 1rem; } .category-features li { padding: 8px 0; position: relative; padding-left: 25px; } .category-features li::before { content: '•'; position: absolute; left: 10px; color: var(--secondary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .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(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-img { height: 200px; background: linear-gradient(45deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; } .product-info { padding: 1.5rem; } .product-info h3 { color: var(--primary); margin-bottom: 0.5rem; } .product-price { color: var(--accent); font-weight: bold; font-size: 1.2rem; margin: 0.8rem 0; } .product-features { list-style: none; margin-top: 0.8rem; } .product-features li { padding: 5px 0; position: relative; padding-left: 25px; } .product-features li::before { content: '✓'; position: absolute; left: 5px; color: var(--success); } /* Languages */ .languages { background: var(--light); text-align: center; } .language-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 800px; margin: 0 auto; } .language-item { background: white; border-radius: 8px; padding: 1.2rem 1.5rem; min-width: 140px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; } .language-item:hover { transform: scale(1.05); background: var(--secondary); color: white; } /* Contact Section */ .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; } .contact-info { display: flex; flex-direction: column; } .contact-item { display: flex; margin-bottom: 1.5rem; } .contact-icon { background: var(--light); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; margin-right: 15px; flex-shrink: 0; } .contact-text h4 { color: var(--primary); margin-bottom: 5px; } .contact-form { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 5px; font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; } .form-group textarea { height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 3rem 0 1.5rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-col h3 { color: var(--accent); margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ccc; text-decoration: none; transition: all 0.3s ease; } .footer-links a:hover { color: var(--accent); padding-left: 5px; } .footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid #444; } /* Responsive Design */ @media (max-width: 768px) { .header-content { flex-direction: column; text-align: center; } .logo { margin-bottom: 1rem; } nav ul { justify-content: center; } nav ul li { margin: 0 10px; } .hero h2 { font-size: 2.2rem; } .about-content { grid-template-columns: 1fr; } section { padding: 3rem 0; } } @media (max-width: 480px) { .hero { padding: 3rem 1rem; } .hero h2 { font-size: 1.8rem; } .section-title h2 { font-size: 1.8rem; } nav ul { flex-wrap: wrap; } nav ul li { margin: 5px; } }
Trusted by global distributors for 5+ years, ShinHair offers the finest quality wigs, extensions, and bulk hair at competitive prices
Request a QuoteShinHair Limited Company is a premier hair factory located in Vietnam's Bac Ninh Province, specializing in premium human hair products. With over 5 years of experience, we've established ourselves as a reliable supplier for global distributors across the US, EU, and Africa.
Company Principle: "Trust Us - Trust Quality"
Core Philosophy: "The quality is the backbone of Shinhair"
We believe that raw materials are the foundation of exceptional hair products. Our dedicated QC department ensures:
We never compromise quality for profit - every product meets our stringent standards.
Name: Shin Hair Limited Company
Location: Dong Xuat Village, Yen Phong District, Bac Ninh Province, Vietnam
Experience: 5+ Years
Response Time: ≤9 Hours
Response Rate: 78.55%
Markets Served: USA, EU, Africa
✓ Alibaba Trustpass Verified Supplier
✓ International Export Standards
✓ Ethical Sourcing Practices
Our strict quality control ensures products free from tangles, shedding, with aligned cuticles throughout production. Each product meets our "perfection in every detail" standard.
We offer attractive pricing across all ranges - from bulk hair ($12-15/piece) to premium wigs ($75-120/piece) - giving you the best value without compromising quality.
With a ≤9 hour response time and 78.55% response rate, we efficiently handle inquiries and custom orders like "custom order silky and shiny hair" requests.
Most products have a minimum order of just 1 piece/set, making us accessible to both large distributors and small businesses.
Unprocessed raw hair in various materials:
Super Double Drawn hair extensions:
Premium lace solutions:
Variety of premium wigs:
Min. Order: 1 piece
Min. Order: 1 piece
Min. Order: 1 piece
Min. Order: 1 piece
Dong Xuat Village, Yen Phong District, Bac Ninh Province, Vietnam
WhatsApp/Telegram: +84 399 344 683 / +84 943 309 286
Website: https://shinhairs.com
Alibaba: https://shinhair.trustpass.alibaba.com