'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero h1 { font-size: 48px; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 22px; 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: 600; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s, transform 0.3s; } .cta-button:hover { background-color: #b58d5a; transform: translateY(-3px); } /* Section Styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; color: var(--primary); } .section-title h2 { font-size: 36px; position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2:after { content: ''; position: absolute; width: 70px; height: 3px; background-color: var(--accent); bottom: 0; left: 50%; transform: translateX(-50%); } /* About Section */ .about-content { display: flex; gap: 40px; align-items: center; } .about-text { flex: 1; } .about-image { flex: 1; background-color: var(--secondary); height: 400px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: bold; } .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; } .feature-card { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; text-align: center; } .feature-card:hover { transform: translateY(-10px); } .feature-icon { font-size: 40px; color: var(--accent); margin-bottom: 20px; } .feature-card h3 { margin-bottom: 15px; color: var(--primary); } /* Products Section */ .products-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 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(-10px); } .product-image { height: 200px; background-color: var(--secondary); display: flex; align-items: center; justify-content: center; color: var(--primary); } .product-info { padding: 20px; } .product-info h3 { margin-bottom: 10px; color: var(--primary); } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; } .price { color: var(--accent); font-weight: bold; font-size: 18px; } .product-categories { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 50px; justify-content: center; } .category { background: var(--accent); color: white; padding: 8px 20px; border-radius: 20px; font-size: 14px; } /* Testimonials Section */ .testimonials { background-color: var(--secondary); } .testimonial-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; } .testimonial-card { background: 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; font-size: 80px; color: var(--accent); opacity: 0.2; top: 10px; left: 20px; font-family: serif; } .rating { color: #ffc107; font-size: 20px; margin-bottom: 15px; } .client { margin-top: 20px; font-style: italic; color: var(--primary); } /* Hair Care Section */ .care-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; } .care-image { background-color: var(--secondary); height: 400px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: bold; } .care-tips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .tip-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .tip-card h4 { display: flex; align-items: center; margin-bottom: 15px; color: var(--primary); } .tip-icon { margin-right: 10px; color: var(--accent); } /* Contact Section */ .contact-section { background-color: var(--dark); color: white; } .contact-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; } .contact-info h3 { font-size: 24px; margin-bottom: 20px; color: var(--secondary); } .contact-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .method { background: rgba(255,255,255,0.1); padding: 15px; border-radius: 8px; } .markets { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; } .market-tag { background: var(--accent); padding: 8px 15px; border-radius: 20px; font-size: 14px; } /* Footer */ footer { background-color: #333; color: #ccc; padding: 40px 0 20px; } .footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 30px; } .footer-column { flex: 1; min-width: 200px; } .footer-column h4 { color: white; margin-bottom: 20px; font-size: 18px; } .footer-column ul { list-style: none; } .footer-column li { margin-bottom: 10px; } .footer-column a { color: #ccc; text-decoration: none; transition: color 0.3s; } .footer-column a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; font-size: 14px; } /* Responsive Design */ @media (max-width: 992px) { .features, .care-tips, .contact-methods { grid-template-columns: repeat(2, 1fr); } .about-content, .care-container, .contact-container { grid-template-columns: 1fr; } .about-image, .care-image { height: 300px; } } @media (max-width: 768px) { .features, .care-tips, .contact-methods { grid-template-columns: 1fr; } .header-container { flex-direction: column; padding: 20px 0; } nav ul { margin-top: 20px; } nav li { margin: 0 10px; } .hero h1 { font-size: 36px; } .hero p { font-size: 18px; } }
Manufacturer of 100% Cuticle Intact, Double Drawn Hair Since 2015
Explore Our CollectionDoris Beauty is a leading manufacturer specializing in premium 100% human hair extensions and wigs. With our affiliated companies Lynne Industry and Surblond Beauty, we bring over 20 years of expertise to the hair industry.
Based in Qingdao, China, our state-of-the-art facility spans 101-500 square meters where our skilled team of 5-10 professionals crafts exceptional hair products using ethically sourced hair from around the world.
All hair undergoes strict quality control with 100% cuticle intact and double drawn processing
100% response rate with ≤2 hour response time for all inquiries and orders
Full customization of length, color, curl pattern, and packaging to your specifications
100% human hair, double drawn, cuticle intact - 2025 new release
High volume, no tangle or shedding, premium remy hair
Seamless blend, undetectable beauty, Canadian craftsmanship
Individual strands, high natural look, easy maintenance
"The white blonde double drawn Russian/Brazilian hair extensions have beautiful color. I can't wait to try more colors!"
"Genius Weft is perfect! Soft with accurate color. Seller kept promises and included gifts. Will definitely repurchase!"
"12A grade Russian hair extensions - excellent quality! The curl pattern matched exactly what I expected. Great shopping experience!"
"I've been searching long-term for a reliable supplier when customizing wigs for clients. Although priced higher than others, the quality and craftsmanship are impeccable. Fast shipping, very satisfied!"
Never sleep with wet hair to prevent tangling. Braid loosely and use a satin pillowcase to extend lifespan.
Use only a Wet Brush, starting from ends and working upward gently.
Avoid bleach on hair extensions as it damages the hair cuticles permanently.
Visit your stylist every 6-10 weeks for professional maintenance to prevent tangling.
Always apply thermal protector before using hot tools like blow dryers or flat irons.
Use dry shampoo between washes - hair extensions don't benefit from natural scalp oils.
As a professional hair extensions manufacturer, we provide premium wholesale solutions for salons, retailers, and distributors worldwide.