'); background-size: cover; background-position: center; color: white; padding: 120px 0; text-align: center; } .hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 30px; animation: fadeInUp 1s ease; } .trust-badge { background: var(--accent); padding: 20px; border-radius: 10px; max-width: 800px; margin: 40px auto 0; animation: fadeIn 1.5s ease; } /* About section */ .about { background: white; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { background: var(--light); padding: 20px; border-radius: 8px; text-align: center; border-left: 4px solid var(--primary); } .stat-value { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; } /* Products section */ .products { background: var(--light); } .categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-bottom: 50px; } .category-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .category-card:hover { transform: translateY(-10px); } .category-content { padding: 25px; } .category-content h3 { color: var(--primary); font-size: 1.4rem; } .product-table { width: 100%; border-collapse: collapse; margin-top: 30px; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; } .product-table th, .product-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--secondary); } .product-table th { background: var(--primary); color: white; font-weight: 600; } .product-table tr:last-child td { border-bottom: none; } .product-table tr:hover { background: var(--light); } /* Testimonials */ .testimonials { background: white; position: relative; } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .testimonial-card { background: var(--light); padding: 30px; border-radius: 8px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .testimonial-card:before { content: """; position: absolute; top: 15px; left: 15px; font-size: 4rem; color: var(--secondary); font-family: Georgia, serif; line-height: 1; } .testimonial-content { margin-top: 20px; font-style: italic; position: relative; z-index: 1; } .client-info { display: flex; align-items: center; margin-top: 20px; } .flag { width: 30px; height: 20px; border-radius: 2px; margin-right: 10px; } .flag.france { background: linear-gradient(to right, #0055A4 33%, white 33%, white 66%, #EF4135 66%); } .flag.canada { background: linear-gradient(to right, #D80621 25%, white 25%, white 75%, #D80621 75%); position: relative; } .flag.canada:after { content: "❋"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #D80621; font-size: 8px; } /* Promotion section */ .promotion { background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); color: white; text-align: center; padding: 80px 0; } .promotion h2 { color: white; } .promotion h2:after { background: var(--secondary); left: 50%; transform: translateX(-50%); } .countdown { display: flex; justify-content: center; gap: 15px; margin: 30px 0; flex-wrap: wrap; } .countdown-box { background: rgba(255,255,255,0.15); padding: 15px; border-radius: 8px; min-width: 80px; backdrop-filter: blur(5px); } .countdown-value { font-size: 2rem; font-weight: 700; } /* Why choose us */ .advantages { background: var(--light); } .advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 40px; } .advantage-card { background: white; padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); } /* Contact section */ .contact { background: white; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info { background: var(--light); padding: 30px; border-radius: 8px; } .contact-item { display: flex; margin-bottom: 25px; } .contact-icon { font-size: 1.5rem; color: var(--primary); margin-right: 15px; min-width: 30px; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-logo { font-size: 1.8rem; font-weight: 700; color: var(--secondary); margin-bottom: 20px; } .social-links { display: flex; gap: 15px; margin-top: 20px; } .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; transition: all 0.3s ease; } .social-icon:hover { background: var(--primary); transform: translateY(-5px); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: rgba(255,255,255,0.7); } /* Animations */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; padding: 20px 0; } .nav-links { margin-top: 20px; flex-wrap: wrap; justify-content: center; } .nav-links li { margin: 5px 10px; } .hero h1 { font-size: 2.5rem; } .about-content { grid-template-columns: 1fr; } section { padding: 40px 0; } }
Experience the luxury of 100% Vietnamese virgin human hair with GUGU HAIR - Vietnam's top hair vendor since 2018
Explore CollectionQuality is the backbone of GUGU HAIR. We provide superior hair products that are silky, no tangle, no shedding, and long-lasting.
Established in 2018, GUGU HAIR COMPANY LIMITED has over 10 years of industry experience providing premium 100% Vietnamese virgin human hair. Our products are renowned for their exceptional quality and durability.
We specialize in raw Vietnamese hair that is cuticle aligned, ensuring maximum longevity and a natural look. Our hair bundles, wigs, closures, and extensions are trusted by customers worldwide.
Our premium Vietnamese hair products are distributed globally with customers across Europe, America, and Africa. We supply hair resellers and beauty professionals worldwide.
Phu Luu, Trung Nghia, Yen Phong, Bac Ninh, Vietnam
To Huu Street, Nam Tu Liem District, Ha Noi, Vietnam
100% Vietnamese Virgin Human Hair - Silky, No Tangle, No Shedding, Long-Lasting
100% Vietnamese virgin human hair in various textures: Straight, Body Wave, Loose Wave, Deep Wave, Kinky Curly, Burmese Curly. Available in 10-40 inches with cuticle aligned for superior quality.
Available in 2X2, 4X4, 5X5, 2X6 closures and 13X4, 13X6, 360 lace frontals. Made with 100% human hair and HD lace for a natural hairline.
Full HD lace wigs, glueless wigs, pixie cut, bob cut, V part wigs, and lace closure wigs. Specially designed for Black women with natural-looking hairlines.
Clip-ins, tape-ins, I-tip, U-tip, flap tip, and hand-tied weft extensions. Seamless clip-in hair extensions in natural black and brown shades.
Product Name | Price | Min. Order | Key Features |
---|---|---|---|
Raw Vietnamese Hair Bob Cut with Frontal HD Lace Closure Wigs | $59 | 1 piece | Glueless design, natural color, perfect for Black women |
22-24" Burmese Curly Raw Hair Bundles (12A Grade) | $13-$100 | 100g | Cuticle aligned, no tangle, premium quality |
24" Burgundy Bone Straight Virgin Human Hair Extensions | $69-$299 | 3 pieces | Double drawn, long-lasting, flattering color |
12" Glueless Full HD Lace Wigs (Highlighted Brown) | $69 | 10 pieces | HD lace base, highlighted brown, super double drawn |
10-40" Vietnamese Raw Hair Wholesale Bundles | $25 | 300g | Large stock, 100% remy hair |
Enjoy special discounts on our premium Halloween hair extensions perfect for your party night look!
Sale ends midnight on October 31st
Shop NowWhat our global customers say about GUGU HAIR
No middlemen means you get the best wholesale prices directly from our Vietnamese factory.
100% Vietnamese virgin human hair that's silky, no tangle, and no shedding guaranteed.
10+ years of industry experience with strict quality control and high customer retention.
Fast worldwide delivery to Europe, America, Africa and beyond. Reliable shipping partners.
Retail (1 piece) and wholesale (from 100g) options available. MOQ tailored to your needs.
+84 385 637 191
Phu Luu, Trung Nghia, Yen Phong, Bac Ninh, Vietnam
To Huu Street, Nam Tu Liem District, Ha Noi, Vietnam
Stay updated with our latest products, hairstyles, and promotions: