'); background-size: cover; padding: 100px 0 80px; text-align: center; } .hero h1 { font-size: 3.5rem; color: var(--dark); margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 40px; color: var(--accent); } .cta-button { display: inline-block; background: var(--accent); color: white; padding: 15px 40px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 18px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(165, 106, 91, 0.3); } .cta-button:hover { background: var(--dark); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(165, 106, 91, 0.4); } /* Section Styles */ section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 15px; position: relative; display: inline-block; } .section-header h2:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--accent); } .section-header p { max-width: 700px; margin: 25px auto 0; color: var(--text); font-size: 1.1rem; } /* Products Section */ .products-grid { display: grid; grid-template-columns: repeat(auto-fit, 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: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); } .product-image { height: 200px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 3rem; } .product-info { padding: 20px; } .product-info h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.4rem; } .price-range { color: var(--accent); font-weight: 600; font-size: 1.2rem; margin-bottom: 15px; } .product-features { list-style: none; margin-top: 15px; } .product-features li { padding: 5px 0; position: relative; padding-left: 25px; } .product-features li:before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; } /* Features Section */ .features { background: linear-gradient(to bottom, var(--light), #f0e6d8); } .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: all 0.3s ease; } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .feature-icon { width: 70px; height: 70px; background: var(--primary); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--accent); } .feature-card h3 { color: var(--dark); margin-bottom: 15px; font-size: 1.5rem; } /* Certifications */ .certifications { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 30px; } .cert-card { background: white; padding: 25px; border-radius: 10px; width: 280px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; } .cert-card h3 { color: var(--dark); margin-bottom: 15px; } /* Languages */ .languages-container { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); max-width: 800px; margin: 0 auto; } .languages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-top: 20px; } .language { background: var(--light); padding: 15px; border-radius: 8px; text-align: center; font-weight: 500; } /* Contact Section */ .contact { background: linear-gradient(to bottom, #f0e6d8, var(--primary)); } .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); } .contact-info h3 { color: var(--dark); margin-bottom: 20px; font-size: 1.8rem; } .contact-details { list-style: none; margin-top: 20px; } .contact-details li { padding: 10px 0; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #eee; } .contact-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; } /* Key Points */ .key-points { background: var(--dark); color: white; padding: 80px 0; } .key-points .section-header h2 { color: white; } .key-points .section-header p { color: rgba(255,255,255,0.8); } .key-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .key-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 10px; text-align: center; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); } .key-number { font-size: 3rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; line-height: 1; } .key-card h3 { margin-bottom: 15px; font-size: 1.4rem; } /* Footer */ footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 40px 0 20px; text-align: center; } .footer-content { max-width: 800px; margin: 0 auto; } .footer-logo { font-size: 2rem; font-weight: 700; margin-bottom: 20px; color: white; } .copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); } @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .section-header h2 { font-size: 2rem; } nav ul { gap: 15px; } } @media (max-width: 480px) { .header-container { flex-direction: column; gap: 15px; } nav ul { flex-wrap: wrap; justify-content: center; } .hero { padding: 70px 0 50px; } .hero h1 { font-size: 2rem; } .section-header h2 { font-size: 1.8rem; } }
Eco-friendly, customizable hair accessories with 10+ years of manufacturing excellence
Request a Quote TodayManufacturer of premium acetate hair accessories with global reach and exceptional service standards
Based in China, we combine manufacturing expertise with global trading capabilities
96.93% response rate with ≤3 hour average response time to all inquiries
Contact Janey, Panda, Jessie or Stella for personalized assistance
Premium acetate hair accessories with competitive pricing and diverse designs
The superior choice for high-end hair accessories
Superior toughness, gloss, and texture compared to other materials
Made from plant pulp, free from heavy metals and carcinogens
Gentle on hair and scalp without causing damage
Preferred material for high-end jewelry and accessory manufacturers
Tailor every aspect of your hair accessories to match your brand identity
500+ existing designs available or create your own unique style
Imprint your brand logo directly onto products
Tailored packaging solutions to enhance brand presentation
Secure handling of your proprietary designs and information
Specialized in acetate accessory development and production
Own factory ensures better prices without compromising quality
Accessible minimum order quantities for businesses of all sizes
Commitment to ethical manufacturing and sustainable practices
Sedex Members Ethical Trade Audit Report ensuring ethical production standards and social responsibility
Cobal Reytie Standard Version 6.1 compliance for sustainable supply chain management
We communicate effectively in 12 languages to serve our global clients
Reach out to our team for quotes, samples, and partnership opportunities
Our core advantages that make us the preferred acetate accessories manufacturer
Manufacturing excellence since 2013
Industry-leading customer service
Extensive catalog to inspire creativity
Unmatched customization possibilities