'); background-size: cover; color: white; padding: 100px 0; text-align: center; } .hero h2 { font-size: 2.5rem; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } .cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: all 0.3s ease; border: 2px solid var(--accent); } .cta-button:hover { background-color: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Stats Section */ .stats { background-color: white; padding: 50px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; } .stat-item { padding: 20px; } .stat-value { font-size: 2.5rem; font-weight: bold; color: var(--secondary); margin-bottom: 10px; } .stat-label { font-size: 1.1rem; color: var(--dark); } /* About Section */ .about { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--primary); 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-color: var(--accent); border-radius: 2px; } .about-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; } .about-text { padding: 20px; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .certifications { background-color: var(--light); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .cert-title { font-size: 1.4rem; margin-bottom: 20px; color: var(--primary); } .cert-list { list-style-type: none; } .cert-list li { padding: 10px 0; border-bottom: 1px solid #ddd; display: flex; align-items: center; } .cert-list li:last-child { border-bottom: none; } .cert-list li::before { content: '✓'; color: var(--success); font-weight: bold; margin-right: 10px; } /* Products Section */ .products { background-color: #f5f7fa; padding: 80px 0; } .product-categories { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .category-btn { padding: 10px 20px; margin: 0 10px 10px; background-color: white; border: 2px solid var(--secondary); color: var(--secondary); border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; } .category-btn.active, .category-btn:hover { background-color: var(--secondary); color: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #eee; display: flex; align-items: center; justify-content: center; color: #777; font-weight: bold; } .product-info { padding: 20px; } .product-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--primary); } .product-price { font-weight: bold; color: var(--accent); font-size: 1.2rem; margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; font-size: 0.9rem; } .moq, .delivery { display: flex; align-items: center; } .moq::before, .delivery::before { content: '•'; margin-right: 5px; color: var(--secondary); } /* Advantages Section */ .advantages { padding: 80px 0; background-color: white; } .advantage-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; border-top: 4px solid var(--secondary); } .advantage-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .advantage-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; } .advantage-title { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary); } /* Contact Section */ .contact { padding: 80px 0; background: linear-gradient(to right, var(--primary), #1a2530); color: white; } .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; } .contact-details { margin-top: 20px; } .contact-item { display: flex; margin-bottom: 15px; } .contact-icon { margin-right: 15px; color: var(--secondary); } .contact-form { background-color: white; padding: 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); } .contact-form h3 { color: var(--primary); margin-bottom: 20px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: var(--dark); font-weight: 500; } .form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .form-control:focus { outline: none; border-color: var(--secondary); } textarea.form-control { min-height: 120px; resize: vertical; } .submit-btn { background-color: var(--accent); color: white; border: none; padding: 12px 30px; border-radius: 4px; cursor: pointer; font-size: 1rem; font-weight: bold; transition: all 0.3s ease; } .submit-btn:hover { background-color: #c0392b; } /* Footer */ footer { background-color: #1a2530; color: #ddd; padding: 50px 0 20px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-col h4 { color: white; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ddd; text-decoration: none; transition: all 0.3s ease; } .footer-links a:hover { color: var(--secondary); padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #2c3e50; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px; } .hero h2 { font-size: 2rem; } .section-title h2 { font-size: 1.8rem; } }
With over 10 years of expertise, Yiwu Chanlian Garment specializes in high-quality scarves, hijabs, abayas, and kaftan dresses. Verified supplier with international certifications.
Request a QuoteYiwu Chanlian Garment Co., Ltd. is a trusted manufacturer and supplier based in Zhejiang, China. With over 10 years of experience in the garment industry, we specialize in producing premium scarves, hijabs, Muslim abayas, and kaftan dresses.
As a verified supplier, we serve clients across North America, Southeast Asia, and Western Europe. Our commitment to quality, timely delivery, and excellent customer service has earned us a 4.6/5 rating from our global customers.
We combine traditional craftsmanship with modern production techniques to deliver products that meet international standards while respecting cultural traditions.
Premium silk scarves with exquisite floral designs, perfect for summer wear.
Best-selling silk scarf with intricate embroidery, ideal for women's fashion.
Small square satin scarf perfect as a neck wrap or head accessory.
High-quality jacquard hijab featuring elegant tassel details.
Large size ethnic jacquard hijab with beautiful gradient colors.
Trendy 2025 kaftan dress featuring brand prints and African style.
Premium silk kaftan with designer prints, perfect for high-end markets.
Dubai-style maxi robe with beautiful prints, compliant with Muslim standards.
With 10+ years of experience and verified production lines, we ensure consistent quality and reliability in every order.
We offer minor customization options including logo placement, pattern adjustments, and color variations.
Our products meet the specific requirements of North American, Southeast Asian, and Western European markets.
Transparent pricing with no hidden costs. Products range from $2 to $7, accommodating different budgets.
Flexible minimum order quantities starting from just 2 pieces on select items for small businesses.
Dedicated QA/QC personnel conduct thorough finished product inspections before shipment.
Interested in our products? Contact us today for quotes, customization options, and wholesale inquiries.