'); background-size: cover; color: white; padding: 100px 0; text-align: center; } .hero h2 { font-size: 3.5rem; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; } .hero p { font-size: 1.5rem; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; } .cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 15px 40px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.2rem; transition: all 0.3s; border: 2px solid var(--accent); } .cta-button:hover { background-color: transparent; color: var(--accent); } /* Section Styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 60px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--primary); display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 3px; background-color: var(--accent); } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h3 { font-size: 2rem; color: var(--dark); margin-bottom: 20px; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-card { background-color: white; border-radius: 10px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; } .stat-card .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .certifications { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-top: 40px; } .certifications h3 { color: var(--primary); margin-bottom: 20px; text-align: center; } .cert-logos { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; } .cert-item { text-align: center; } /* Strengths Section */ .strengths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .strength-card { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .strength-card:hover { transform: translateY(-10px); } .strength-card h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.5rem; } .strength-card .icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; } /* Products Section */ .products-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 250px; background-color: var(--secondary); display: flex; align-items: center; justify-content: center; color: white; font-size: 5rem; } .product-info { padding: 25px; } .product-info h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.5rem; } .product-specs { margin: 15px 0; } .spec-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #eee; } /* Process Section */ .process-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; } .process-step { background-color: white; border-radius: 10px; padding: 30px 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .step-number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background-color: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; } /* Testimonials */ .testimonials-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; } .testimonial-card { background-color: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .testimonial-card::before { content: '"'; position: absolute; top: 10px; left: 20px; font-size: 5rem; color: rgba(193, 158, 107, 0.2); font-family: Georgia, serif; } .testimonial-card .stars { color: #ffc107; font-size: 1.5rem; margin-bottom: 15px; } .client-info { display: flex; align-items: center; margin-top: 20px; } .client-avatar { width: 50px; height: 50px; border-radius: 50%; background-color: var(--secondary); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; margin-right: 15px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { background-color: var(--primary); color: white; padding: 40px; border-radius: 10px; } .contact-info h3 { margin-bottom: 25px; font-size: 1.8rem; } .contact-item { display: flex; align-items: center; margin-bottom: 20px; } .contact-icon { font-size: 1.5rem; margin-right: 15px; width: 40px; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; margin-top: 30px; } .team-member { text-align: center; } .member-avatar { width: 80px; height: 80px; border-radius: 50%; background-color: var(--secondary); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-logo h2 { color: var(--secondary); font-size: 2rem; margin-bottom: 20px; } .footer-links h3 { color: var(--secondary); margin-bottom: 20px; font-size: 1.3rem; } .footer-links ul { list-style: none; } .footer-links ul li { margin-bottom: 10px; } .footer-links ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; } .footer-links ul li a:hover { color: var(--secondary); } .badges { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 20px; } .badge { background-color: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .contact-container { grid-template-columns: 1fr; } .hero h2 { font-size: 2.8rem; } nav ul { display: none; } } @media (max-width: 768px) { .section-title h2 { font-size: 2rem; } .hero { padding: 70px 0; } .hero h2 { font-size: 2.2rem; } .hero p { font-size: 1.2rem; } .stats-grid { grid-template-columns: 1fr; } }
Custom OEM/ODM Services with Low MOQ from 2-4 Pieces
Request Custom QuoteYiwu KinLing Hair Accessories Co., Ltd is a leading manufacturer specializing in premium acetate hair accessories since 2011. As one of the top 3 hair accessory factories, we focus on creating high-quality, eco-friendly cellulose acetate products.
In partnership with Yiwu Zhaoyi E-Business Firm (established 2016), we've expanded our global reach, serving clients in over 100 countries with a focus on North America, Western Europe, and the Middle East.
HM, ZARA, LOVISA, Primark, BLG, DEFACTO
With nearly 20 contracted designers, we launch 100+ new designs monthly. Our team stays ahead of fashion trends from Y2K aesthetics to light luxury styles.
We specialize in small-batch production with MOQ as low as 2-4 pieces for select items. Perfect for startups and boutique brands testing the market.
24-hour response time with 99.63% quick response rate. New samples produced within 24 hours. Free ready-made samples available.
Eco-friendly cellulose acetate materials. Full quality control from raw materials to finished products through 8 standardized production steps.
Retro, minimalist, and light luxury styles including Y2K solids, rhinestone inlays, tortoiseshell patterns, and creative shapes.
Anti-static, scalp massage combs with tortoiseshell, marble patterns, and portable designs.
Non-slip, decorative headbands featuring hollow hearts, bows, rhinestones, and special occasion designs.
Practical and stylish clips including seamless bangs clips, rhinestone side clips, and French retro wave designs.
Our 8-step standardized manufacturing process ensures consistent quality from raw materials to finished products.
Eco-friendly cellulose acetate with traceability systems
Computer-guided cutting for exact dimensions
Mold-based or handcrafted shaping
Secure bonding of components
First QC at semi-finished stage
Uniform coloring and protective coating
Component integration
Bubble wrap and individual wrapping
Identification and traceability systems
QC at every manufacturing step
Intertek certified inspections
Easy return policy
"Always wonderful!! love working with them! The team provides exceptional support in product selection and customization. Their professional service makes collaboration seamless."
"These hair claw clips are absolutely beautiful. Everything was carefully packaged with bubble wrap and individual wrapping! All arrived in perfect condition. Will definitely reorder!"
"Great quality! Every product I've purchased has exceeded expectations. Cora Xu provides excellent customer service, making the ordering process effortless. This seller has my long-term support."