'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 30px; font-weight: 300; } .hero-tagline { font-style: italic; font-size: 1.6rem; margin: 20px 0; color: #f1c40f; } .stats { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 50px; gap: 30px; } .stat-item { background: rgba(255,255,255,0.1); padding: 25px; border-radius: 8px; min-width: 200px; backdrop-filter: blur(5px); } .stat-item .number { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; color: #f1c40f; } /* Section styles */ section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 50px; } .section-header h2 { font-size: 2.2rem; 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: 4px; background: var(--accent); } .section-header p { max-width: 700px; margin: 20px auto 0; color: #7f8c8d; font-size: 1.1rem; } /* About section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .about-stat { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .about-stat h4 { color: var(--primary); margin-bottom: 10px; } /* Services section */ .services { background-color: var(--light); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .service-card:hover { transform: translateY(-10px); } .service-icon { height: 80px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: white; font-size: 2.5rem; } .service-content { padding: 25px; } .service-content h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--dark); } /* Products section */ .product-categories { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; gap: 10px; } .category-btn { background: white; border: 2px solid var(--border); padding: 12px 25px; border-radius: 30px; font-weight: 600; cursor: pointer; transition: all 0.3s; } .category-btn.active, .category-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: transform 0.3s; } .product-card:hover { transform: translateY(-5px); } .product-image { height: 200px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 3rem; } .product-info { padding: 20px; } .product-category { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 5px; } .product-name { font-size: 1.2rem; margin-bottom: 10px; height: 60px; overflow: hidden; } .product-price { color: var(--accent); font-weight: 700; font-size: 1.2rem; margin-bottom: 5px; } .product-moq { color: #7f8c8d; font-size: 0.9rem; } /* Global section */ .global-map { position: relative; height: 400px; background: #e0f7fa; border-radius: 10px; overflow: hidden; margin: 40px 0; } .map-markers { position: absolute; width: 100%; height: 100%; } .map-marker { position: absolute; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 8px rgba(230, 126, 34, 0.3); } .map-regions { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 30px; } .region-tag { background: rgba(142, 68, 173, 0.1); color: var(--primary); padding: 8px 20px; border-radius: 30px; font-weight: 600; } /* Cooperation section */ .cooperation { background: var(--light); } .payment-methods { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin: 30px 0; } .payment-method { background: white; padding: 15px 25px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); font-weight: 600; color: var(--dark); } .contact-team { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; } .team-member { text-align: center; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); width: 180px; } .team-member .avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; } /* Values section */ .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .value-card { text-align: center; padding: 40px 30px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .value-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .value-card h3 { margin-bottom: 15px; color: var(--dark); } /* CTA section */ .cta { background: linear-gradient(to right, var(--primary), #9b59b6); color: white; text-align: center; padding: 80px 0; } .cta h2 { font-size: 2.5rem; margin-bottom: 20px; } .cta p { max-width: 700px; margin: 0 auto 30px; font-size: 1.2rem; } .cta .btn { background: var(--accent); color: white; border: none; padding: 15px 40px; border-radius: 30px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background 0.3s; } .cta .btn:hover { background: #d35400; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--accent); } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 12px; } .footer-column ul li a { color: #ecf0f1; text-decoration: none; transition: color 0.3s; } .footer-column ul li a:hover { color: var(--accent); } .contact-info { margin-bottom: 15px; display: flex; align-items: flex-start; } .contact-info i { margin-right: 10px; color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #bdc3c7; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin: 20px 0; justify-content: center; } nav ul li { margin: 0 10px; } .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1.1rem; } .about-content { grid-template-columns: 1fr; } .stats { gap: 15px; } .stat-item { min-width: 150px; padding: 15px; } }
"REAL NATURAL BEYOND DEFINITION. LOVING YOURSELF STARTS WITH YOUR HAIR"
Changsha Furina Trade Co., Ltd. - Your Fashion Elite Consultant in Hair Solutions
Established in 2019 with deep roots in the hair industry spanning over 32 years
Changsha Furina Trade Co., Ltd. combines decades of manufacturing excellence with innovative hair solutions to empower women worldwide. As both manufacturer and trading company, we provide factory-direct prices with unparalleled customization options.
Our mission is to add a "magic wand" to women's lives, helping them live without boundaries, unencumbered, treated with respect, and at ease.
2019
Hunan, China
US$5M - US$10M
Onsite Check
Why global clients choose Furina as their hair solutions partner
2 seconds response to inquiries with 24/7 online service. Our industry-leading response rate of 99.26% ensures you're never kept waiting.
Expert consultation in 11+ languages including German, Portuguese, French, Spanish, Italian, Russian, Japanese, and more.
Daily production capacity of 150+ orders with 2000+ styles in stock. Enjoy factory-direct pricing and fast shipping.
One-stop total solution covering wholesale, customization, logistics, and after-sales support.
Extensive range of synthetic and human hair products for diverse needs
Serving customers across 80+ countries worldwide
With 15 offline stores across China and a robust online presence, we've created an integrated sales network that ensures seamless customer experience.
Building trustworthy partnerships worldwide
24-hour online consultation for cooperation:
Sales Director
Account Manager
Customs Specialist
Logistics Manager
We hold multiple industry certifications and welcome clients to visit our manufacturing facilities in Hunan, China.
Principles that drive our business and creations
"HIGH-QUALITY" and "REAL NATURAL" are more than slogans - they're our manufacturing standards. We meticulously source materials and control production to ensure premium texture and user experience.
"GOOD SERVICE" defines every interaction. From initial consultation to after-sales support, we provide comprehensive solutions tailored to your specific market needs and customer preferences.
We continuously evolve with fashion trends, introducing innovative products like our 2025 collection featuring functional wigs, trending colors, and specialized solutions for diverse ethnic hair types.
Join hundreds of satisfied retailers and distributors worldwide who trust Furina for premium hair products