'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.3rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .btn { display: inline-block; background-color: var(--secondary); color: var(--dark); padding: 12px 30px; text-decoration: none; font-weight: 600; border-radius: 30px; text-transform: uppercase; letter-spacing: 1px; margin: 10px; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); } .btn:hover { background-color: #c19d1c; transform: translateY(-3px); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--secondary); } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--dark); } .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: linear-gradient(45deg, #f1e8f5, #e2d0e9); height: 350px; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--primary); } /* Products Section */ .products { background-color: var(--light); } .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 250px; background: linear-gradient(45deg, #f1e8f5, #e2d0e9); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--primary); } .product-info { padding: 25px; } .product-info h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--dark); } .product-info p { color: #666; margin-bottom: 15px; } /* Features Section */ .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .feature-card { text-align: center; padding: 30px; background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .feature-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; } .feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--dark); } /* Process Section */ .process { background-color: var(--light); } .steps { display: flex; justify-content: space-between; position: relative; margin-top: 50px; } .steps:before { content: ''; position: absolute; top: 40px; left: 50px; right: 50px; height: 3px; background-color: var(--secondary); z-index: 1; } .step { text-align: center; position: relative; z-index: 2; flex: 1; max-width: 200px; } .step-number { width: 80px; height: 80px; background-color: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; margin: 0 auto 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .step h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); } /* Testimonials */ .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; } .testimonial-card { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .testimonial-card:before { content: '"'; position: absolute; top: 15px; left: 20px; font-size: 4rem; color: rgba(93,45,122,0.1); font-family: Georgia, serif; } .testimonial-text { margin-bottom: 20px; font-style: italic; color: #555; } .testimonial-author { display: flex; align-items: center; } .author-avatar { width: 50px; height: 50px; border-radius: 50%; background-color: #e0d6e9; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: bold; margin-right: 15px; } .author-info h4 { font-size: 1.1rem; margin-bottom: 5px; } /* Contact Section */ .contact { background: linear-gradient(rgba(93,45,122,0.9), rgba(93,45,122,0.9)), url('data:image/svg+xml;utf8,'); background-size: cover; color: white; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; margin-bottom: 15px; align-items: flex-start; } .contact-icon { font-size: 1.5rem; margin-right: 15px; color: var(--secondary); } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: none; border-radius: 5px; background-color: rgba(255,255,255,0.9); } .contact-form textarea { min-height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 50px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #ccc; text-decoration: none; transition: all 0.3s; } .footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #999; font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .header-content { flex-direction: column; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px; } .hero h2 { font-size: 2.2rem; } .about-content { flex-direction: column; } .steps { flex-direction: column; align-items: center; } .steps:before { display: none; } .step { margin-bottom: 40px; } }
Experience the perfect blend of luxury and natural beauty with our handcrafted 100% human hair wigs. Designed for elegance, comfort, and confidence.
Diva Dream Lace Wigs is a premier manufacturer specializing in high-quality human hair wigs and extensions. With over 12 years of expertise in the hair industry, we've perfected the art of creating natural-looking, comfortable, and durable hair solutions.
Our commitment to excellence begins with sourcing the finest 100% Remy human hair, ensuring each strand is cuticle-aligned for maximum longevity and natural movement. Every wig is meticulously hand-tied by our skilled artisans, creating undetectable hairlines and realistic parts.
We pride ourselves on offering fully customizable wigs tailored to your specific preferences for density, length, texture, and color. Our dedication to quality and customer satisfaction has made us a trusted name worldwide.
100% hand-tied lace base for maximum versatility. Style your hair in any direction with an undetectable hairline.
Materials: 100% Remy Human Hair
Density: 130%-180%
Cap Size: Small to Large
Natural-looking front hairline with a more durable monofilament or wefted back. Perfect for everyday wear.
Materials: 100% Remy Human Hair
Density: 150%-200%
Cap Size: Average to Large
Lace all around the perimeter allows for high ponytails and up-dos while maintaining a natural appearance.
Materials: 100% Remy Human Hair
Density: 150%-180%
Cap Size: Customizable
Perfect for protecting your natural hair while creating versatile styles with realistic parts and hairlines.
Materials: 100% Remy Human Hair
Sizes: 4x4, 5x5, 13x4, 13x6
Texture: Straight, Body Wave, Curly
We use only 100% Remy human hair with intact cuticles for natural movement and longevity.
Each wig is meticulously crafted by skilled artisans with attention to every detail.
Choose density, length, texture, color, and cap size to create your perfect wig.
We ship globally with reliable carriers and offer doorstep delivery.
We source the finest Remy human hair from trusted suppliers.
Your specifications for density, length, and texture are carefully noted.
Skilled artisans hand-tie each hair strand to the lace base.
Each wig undergoes rigorous inspection before shipping.
+86 138 8888 1234
Hair Products Industrial Park, Xuchang, Henan, China 461000
We're available Monday to Saturday, 9:00 AM to 6:00 PM (GMT+8).