'); background-size: cover; background-position: center; color: var(--light); padding: 100px 0; text-align: center; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); } .hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 30px; text-shadow: 0 1px 2px rgba(0,0,0,0.5); } .btn { display: inline-block; background-color: var(--primary); color: var(--light); padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--primary); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; } .btn:hover { background-color: transparent; color: var(--primary); } /* Section Styling */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--secondary); display: inline-block; padding-bottom: 15px; position: relative; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--primary); } .section-subtitle { text-align: center; max-width: 800px; margin: 0 auto 60px; font-size: 1.1rem; color: #555; } /* About Section */ .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .about-card { background-color: var(--light); border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); border-top: 4px solid var(--primary); } .about-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .about-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--secondary); } /* Products Section */ .product-tabs { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { padding: 12px 25px; background: var(--gray); border: none; border-radius: 4px; margin: 5px; cursor: pointer; font-weight: 600; transition: var(--transition); } .tab-btn.active, .tab-btn:hover { background: var(--primary); color: var(--light); } .product-content { display: none; } .product-content.active { display: block; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; } .product-card { background: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--secondary); } .product-meta { display: flex; justify-content: space-between; margin: 15px 0; font-weight: 600; } .price { color: var(--primary); } .features { list-style: none; margin-top: 15px; } .features li { margin-bottom: 8px; position: relative; padding-left: 20px; } .features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; } /* Advantages Section */ .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { text-align: center; padding: 40px 25px; background: var(--light); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .advantage-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } .advantage-card h3 { font-size: 1.5rem; margin-bottom: 15px; } /* Testimonials */ .testimonials { background-color: var(--gray); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: var(--light); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 20px; font-size: 4rem; color: var(--primary); opacity: 0.2; font-family: Georgia, serif; } .testimonial-text { margin: 20px 0 25px; font-style: italic; position: relative; z-index: 1; } .testimonial-author { font-weight: 600; color: var(--primary); } /* Contact & Support */ .support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .support-card { padding: 30px; background: var(--light); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .support-card h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--secondary); border-bottom: 2px solid var(--primary); padding-bottom: 10px; } .payment-methods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; } .payment-method { background: var(--gray); padding: 8px 15px; border-radius: 4px; font-size: 0.9rem; } /* Footer */ footer { background-color: var(--secondary); color: var(--light); padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { font-size: 1.4rem; margin-bottom: 20px; color: var(--primary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #ddd; text-decoration: none; transition: var(--transition); } .footer-col ul li a:hover { color: var(--primary); padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #444; font-size: 0.9rem; color: #aaa; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; justify-content: center; } nav ul li { margin: 0 10px; } .hero h2 { font-size: 2rem; } .hero p { font-size: 1.1rem; } section { padding: 60px 0; } } @media (max-width: 480px) { .tab-btn { padding: 10px 15px; font-size: 0.9rem; } .product-grid { grid-template-columns: 1fr; } }
Guangzhou Goldway Trading Co., Ltd. - Your Trusted Partner for High-Quality Virgin Hair Wigs, Extensions, and OEM Solutions Since 2009
Explore Our ProductsWith over 15 years of experience in the hair industry, we specialize in manufacturing and supplying premium 100% virgin human hair products to global customers.
Established: 2009
Business Type: Manufacturer (Own Factory) + Trading Company
Experience: 10+ Years in Hair Industry, 15+ Years in International Trade
Team Size: 11-50 Professionals
Factory Area: 1000-3000 Square Meters
Annual Revenue: $250K - $500K USD
Cooperation Period: 4 Years
Response Time: ≤7 Hours
Response Rate: 90.91%
Service Commitment:
All our products are crafted from 100% unprocessed virgin human hair with cuticle aligned for maximum quality and longevity.
Full control over production to ensure consistent quality and timely delivery from raw materials to finished products.
Factory-direct pricing offering exceptional value, perfect for retailers, distributors, and salon professionals.
Global logistics partnerships with FedEx, DHL, TNT, and UPS ensure efficient worldwide shipping.
Inspection Report: GFHZJZ-BG-340
Issued By: Quality Supervision and Inspection Center
Results: "Undetected" & "Qualified" - No Quality Risks
We maintain rigorous quality control processes at every stage of production to ensure all products meet our high standards.
We offer comprehensive OEM solutions:
Supporting small trial orders for new business ventures.
Shipping Partners: FedEx, DHL, TNT, UPS
Estimated Delivery Times:
"My hair is fabulous! The quality exceeded my expectations and my customers are asking where I source my products."
"Received the hair - it's amazing! I'll be ordering again soonest. The texture and quality are perfect for my salon."
"No problems, we believe you. Just started my hair business and I can see myself working with Goldway long-term."
20,000+ Hair Distributors Served Worldwide
10,000+ Clients Successfully Started Hair Businesses
Service Hours: 24/7 Online Support
Dedicated Representatives: Hebe & Philip
Our team provides comprehensive support throughout your purchasing journey, from product selection to after-sales service.
We serve clients across major beauty markets worldwide:
Specializing in products designed for Black women's hair needs.