'); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; } .hero::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(122,74,145,0.1) 0%, rgba(255,255,255,0) 70%); z-index: -1; } .hero h2 { font-size: 2.8rem; margin-bottom: 1rem; color: var(--primary); } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; color: var(--dark); } .cta-button { display: inline-block; background-color: var(--accent); color: var(--dark); padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } .cta-button:hover { background-color: #e0b140; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.15); } /* Stats Section */ .stats { background-color: white; padding: 3rem 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; } .stat-item { padding: 1.5rem; border-radius: 8px; background-color: var(--light); transition: transform 0.3s ease; } .stat-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; } .stat-label { font-size: 1rem; color: var(--text); font-weight: 500; } /* Section Titles */ .section-title { text-align: center; margin: 4rem 0 2rem; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--primary); display: inline-block; padding-bottom: 10px; position: relative; } .section-title h2::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--accent); border-radius: 2px; } /* Advantages Section */ .advantages { padding: 2rem 0; } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .advantage-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 12px 20px rgba(0,0,0,0.1); } .card-header { background-color: var(--primary); color: white; padding: 1.5rem; text-align: center; } .card-icon { font-size: 2.5rem; margin-bottom: 1rem; } .card-body { padding: 1.5rem; } .card-body h3 { color: var(--primary); margin-bottom: 1rem; } /* Products Section */ .products { background-color: var(--light); padding: 3rem 0; } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; } .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 ease; } .product-card:hover { transform: scale(1.03); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #f0e6f3; display: flex; align-items: center; justify-content: center; position: relative; } .product-tag { position: absolute; top: 15px; right: 15px; background-color: var(--accent); color: var(--dark); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; } .product-content { padding: 1.5rem; } .product-content h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.3rem; } .product-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 1rem 0; } .product-features { list-style: none; margin: 1rem 0; } .product-features li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; } .product-features li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary); font-weight: bold; } /* Categories Section */ .categories { padding: 3rem 0; background: linear-gradient(135deg, rgba(122,74,145,0.05) 0%, rgba(255,255,255,1) 100%); } .categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; } .category-item { background-color: white; border-radius: 8px; padding: 1.5rem 1rem; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; cursor: pointer; } .category-item:hover { background-color: var(--primary); color: white; transform: translateY(-5px); } .category-name { font-weight: 600; margin-top: 0.5rem; font-size: 1.1rem; } /* EEAT Section */ .eeat { padding: 3rem 0; background-color: white; } .eeat-content { max-width: 900px; margin: 0 auto; text-align: center; } .eeat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; } .eeat-item { padding: 1.5rem; border: 2px solid var(--light); border-radius: 10px; transition: all 0.3s ease; } .eeat-item:hover { border-color: var(--secondary); background-color: rgba(212, 165, 195, 0.05); } .eeat-title { font-size: 1.3rem; color: var(--primary); margin-bottom: 1rem; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 3rem 0 1.5rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--accent); position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background-color: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.8rem; } .footer-links a { color: #d0d0d0; text-decoration: none; transition: all 0.3s ease; } .footer-links a:hover { color: var(--accent); padding-left: 5px; } .contact-info { list-style: none; } .contact-info li { margin-bottom: 1rem; display: flex; align-items: flex-start; } .contact-icon { margin-right: 10px; color: var(--secondary); min-width: 20px; } .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: #999; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .header-content { flex-direction: column; text-align: center; } nav ul { margin-top: 1rem; justify-content: center; } nav li { margin: 0 0.5rem; } .hero h2 { font-size: 2.2rem; } .section-title h2 { font-size: 1.8rem; } } @media (max-width: 480px) { .hero { padding: 3rem 0; } .hero h2 { font-size: 1.8rem; } .product-grid { grid-template-columns: 1fr; } }
GlowStone Imports LLC is a professional manufacturer with over 10 years of experience in beauty instrument manufacturing. We specialize in high-quality, customizable wigs and smart beauty solutions.
Explore Our ProductsWith more than 10 years of specialized experience in beauty instrument manufacturing, we combine craftsmanship with cutting-edge technology to deliver superior products.
We offer extensive customization capabilities including color, logo, function, and menu options to meet your specific requirements and brand identity.
Our inventory management ensures quick delivery with ready-to-ship products available for immediate purchase, meeting urgent business needs.
With a ≤4 hour response time and 94.35% response rate, we prioritize communication and partnership to ensure your satisfaction.
Short Curly Human Hair Wig with Bleached Knots & Baby Hair
Min. Order: 1 piece
Pre-Plucked Short Bob with Bleached Knots, Bone Straight Remy Hair
Min. Order: 1 pack
Customizable Professional Beauty Equipment
Min. Order: Discuss with Sales
Our commitment to excellence is built on the EEAT principles - Experience, Expertise, Authoritativeness, and Trustworthiness:
Over 10 years of specialized experience in beauty instrument manufacturing and wig production
Deep technical knowledge in hair products, material science, and beauty technology
Industry-recognized manufacturer with verified transaction history and client testimonials
Proven track record with 200+ successful transactions and 94.35% response rate