'); background-size: cover; background-position: center; color: white; text-align: center; padding: 7rem 0; } .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; animation: fadeInDown 1s ease; } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 2rem; animation: fadeInUp 1s ease; } .btn { display: inline-block; background: var(--accent); color: white; padding: 0.8rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--accent); animation: pulse 2s infinite; } .btn:hover { background: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(232, 67, 147, 0.4); } .btn-outline { background: transparent; margin-left: 1rem; } .btn-outline:hover { background: var(--accent); } /* About Section */ .section { padding: 5rem 0; } .section-title { text-align: center; margin-bottom: 3rem; } .section-title h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 1rem; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); border-radius: 2px; } .about-content { display: flex; align-items: center; gap: 3rem; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--secondary); } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; } .feature { display: flex; gap: 1rem; } .feature-icon { background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .feature-text h4 { margin-bottom: 0.5rem; 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, var(--primary), var(--accent)); height: 400px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; text-align: center; padding: 2rem; } /* Products Section */ .products { background-color: #f9f7fe; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .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, #e0c3fc, #8ec5fc); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; } .product-content { padding: 1.5rem; } .product-content h3 { color: var(--primary); margin-bottom: 0.5rem; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; } .service-card { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); text-align: center; border-bottom: 4px solid var(--primary); } .service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .service-icon { font-size: 3rem; color: var(--primary); margin-bottom: 1.5rem; } .service-card h3 { margin-bottom: 1rem; color: var(--dark); } /* Certifications */ .certifications { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; text-align: center; } .certifications .section-title h2 { color: white; } .certs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; } .cert-item { background: rgba(255,255,255,0.1); padding: 1.5rem; border-radius: 10px; min-width: 200px; transition: var(--transition); } .cert-item:hover { transform: scale(1.05); background: rgba(255,255,255,0.2); } /* CTA Section */ .cta { background: linear-gradient(rgba(142, 68, 173, 0.9), rgba(155, 89, 182, 0.9)), url('data:image/svg+xml;utf8,'); background-size: cover; color: white; text-align: center; padding: 5rem 0; } .cta h2 { font-size: 2.5rem; margin-bottom: 1.5rem; } .cta p { max-width: 700px; margin: 0 auto 2.5rem; font-size: 1.2rem; } /* Footer */ footer { background: var(--dark); color: white; padding: 4rem 0 2rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .footer-col h3 { position: relative; padding-bottom: 1rem; margin-bottom: 1.5rem; font-size: 1.5rem; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 0.8rem; } .footer-col ul li a { color: #ddd; text-decoration: none; transition: var(--transition); } .footer-col ul li a:hover { color: var(--accent); padding-left: 5px; } .contact-info li { display: flex; gap: 1rem; margin-bottom: 1rem; } .copyright { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* Animations */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(232, 67, 147, 0.7); } 70% { box-shadow: 0 0 0 12px rgba(232, 67, 147, 0); } 100% { box-shadow: 0 0 0 0 rgba(232, 67, 147, 0); } } /* Responsive */ @media (max-width: 992px) { .about-content { flex-direction: column; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { nav ul { display: none; } .hero { padding: 5rem 0; } .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1.2rem; } .section { padding: 3rem 0; } .section-title h2 { font-size: 2rem; } }
Leading supplier of high-quality cosmetic brushes, makeup sponges, and beauty tools with OEM/ODM services for global brands
Explore Products Request a QuoteYWWQ Beauty is a professional manufacturer specializing in cosmetic applicators and beauty tools. With over a decade of experience, we've established ourselves as a reliable partner for global beauty brands, retailers, and distributors.
Our state-of-the-art manufacturing facility spans 10,000 square meters and employs advanced production technologies to ensure consistent quality and efficient production capabilities. We combine traditional craftsmanship with modern innovation to deliver products that meet international standards.
Strict quality control at every production stage
Using sustainable and skin-safe materials
Tailored products to meet your brand identity
Exporting to 50+ countries worldwide
Complete range of face and eye brushes including foundation, powder, blush, eyeshadow, and liner brushes. Available in synthetic and natural fibers.
Premium makeup sponges in various shapes and densities. Our revolutionary blend technology ensures seamless application and easy cleaning.
Comprehensive collection including eyelash curlers, tweezers, makeup sharpeners, spatulas, and cosmetic cases designed for professionals.
Sanitary options including cotton swabs, foam applicators, mascara wands, and lip gloss wands perfect for salons and makeup artists.
Custom manufacturing solutions tailored to your specifications. From product design to final production, we bring your vision to life.
Create your own brand with our white-label services. Custom packaging, branding, and labeling options available.
Flexible MOQ options to accommodate startups and established brands. Test the market without large inventory commitments.
Stand out with bespoke packaging solutions. We offer custom boxes, pouches, display units, and eco-friendly options.
Efficient worldwide shipping solutions. We handle customs clearance and documentation for hassle-free delivery.
Comprehensive QC process including material inspection, production monitoring, and pre-shipment checks.
Quality Management System Certified
Compliant with US Food and Drug Administration
Meets European safety standards
Materials verified by global inspection leader
Using sustainable and biodegradable materials
Contact us today for a personalized quote. Our beauty experts will help you select the perfect products for your brand and guide you through our seamless production process.
Get Started Now