'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 0; margin-bottom: 50px; } .hero h2 { font-size: 3.2rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 30px; } .cta-button { display: inline-block; background: #ff6b6b; color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; border: none; cursor: pointer; } .cta-button:hover { background: #ff5252; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(255,107,107,0.4); } /* Section Styles */ section { padding: 70px 0; } section:nth-child(odd) { background-color: white; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.5rem; color: #2575fc; display: inline-block; padding-bottom: 15px; } .section-title h2:after { content: ''; position: absolute; width: 80px; height: 4px; background: #ff6b6b; bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 2px; } /* About Section */ .about-content { display: flex; flex-wrap: wrap; gap: 30px; } .about-text { flex: 1; min-width: 300px; } .about-stats { flex: 1; min-width: 300px; background: #f0f7ff; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .stat-item { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px dashed #ddd; } .stat-item:last-child { border-bottom: none; } .stat-item h3 { font-size: 1.1rem; color: #2575fc; margin-bottom: 5px; } .stat-value { font-size: 2rem; font-weight: 700; color: #ff6b6b; } /* Products Section */ .product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 60px; } .category-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .category-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .category-header { background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%); color: white; padding: 20px; text-align: center; } .category-body { padding: 25px; } .category-body ul { list-style-type: none; } .category-body li { padding: 8px 0; border-bottom: 1px solid #eee; position: relative; padding-left: 25px; } .category-body li:before { content: '✓'; color: #2575fc; position: absolute; left: 0; font-weight: bold; } /* Featured Products */ .featured-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .product-card { background: 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: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-image { height: 200px; background: linear-gradient(135deg, #f0f7ff 0%, #e2edff 100%); display: flex; align-items: center; justify-content: center; color: #2575fc; font-weight: bold; font-size: 1.1rem; } .product-info { padding: 20px; } .product-title { font-size: 1.2rem; color: #333; margin-bottom: 10px; font-weight: 600; } .product-price { color: #ff6b6b; font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; } .product-features { margin-bottom: 15px; color: #555; } /* Certifications Section */ .certifications { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 30px; } .certification-item { text-align: center; max-width: 200px; } .cert-badge { width: 100px; height: 100px; background: #f0f7ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.8rem; color: #2575fc; font-weight: bold; } /* Advantages Section */ .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .advantage-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s ease; } .advantage-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .advantage-icon { font-size: 2.5rem; color: #2575fc; margin-bottom: 20px; } /* Contact Section */ .contact-container { display: flex; flex-wrap: wrap; gap: 40px; } .contact-info { flex: 1; min-width: 300px; } .contact-form { flex: 1; min-width: 300px; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .info-item { display: flex; margin-bottom: 25px; } .info-icon { font-size: 1.5rem; color: #2575fc; margin-right: 15px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; } .form-group textarea { min-height: 120px; } /* Footer */ footer { background: #1a1a2e; color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; width: 40px; height: 3px; background: #ff6b6b; bottom: 0; left: 0; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { color: #bbb; text-decoration: none; transition: all 0.3s ease; } .footer-col ul li a:hover { color: #ff6b6b; padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #333; color: #777; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { nav ul { display: none; } .hero h2 { font-size: 2.5rem; } .section-title h2 { font-size: 2rem; } .header-container { flex-direction: column; text-align: center; } .logo { margin-bottom: 15px; } }
Professional manufacturer of high-quality salon furniture with innovative designs, OEM customization, and global distribution since 2021
Explore Our ProductsEstablished in 2021, Maoming Beaty Trading Co., LTD is a leading manufacturer and supplier of premium salon furniture and equipment. Based in Guangdong, China, we specialize in the research, development, and production of high-quality products for the beauty and wellness industry.
As a factory-integrated trading company, we combine innovative design with efficient manufacturing to deliver salon chairs, shampoo beds, beauty beds, pedicure chairs, and specialized equipment that meets the highest industry standards.
Our mission is to provide salon owners and beauty professionals worldwide with functional, durable, and aesthetically pleasing furniture solutions that enhance client experience and salon operations.
12 R&D Experts | 160 Production Staff | 20 Sales Professionals
State-of-the-art manufacturing facility
≤1 hour response time | 100% response rate
Reclining design, professional backwash unit, stainless steel basin
For eyelash extensions & body care, portable foldable design
3-4 motor control, optional PU leather, multi-scenario use
Pink color scheme, professional nail station, compact design
Independent foot basin, automatic water supply and drainage
MOQ: 2 units
Thai massage functions, electric adjustment, shampoo & pedicure integrated
MOQ: 2 units
360° rotation, reclining function, height adjustment, synthetic leather
MOQ: 2 units
Electric water tank, water circulation system, Japanese design
MOQ: 2 units
Our commitment to quality and safety is demonstrated through international certifications that guarantee compliance with the highest industry standards.
Meets EU health, safety, and environmental standards for market access
Compliance with restrictions on hazardous substances in electrical equipment
Adherence to fundamental industry regulations and quality benchmarks
We offer extensive customization options including colors, designs, and features to meet your specific requirements and branding.
Our R&D team continuously develops cutting-edge products with features like water circulation systems and multifunctional designs.
Factory-direct pricing ensures you receive premium salon furniture at competitive wholesale rates.
Rigorous quality control processes at every manufacturing stage ensure durable, reliable products.
24/7 customer support with ≤1 hour response time and 100% response rate for all inquiries.
Products designed with international standards and distributed to salons worldwide.
Have questions about our salon furniture products? Our team is ready to assist you 24 hours a day.
+86 XXX XXXX XXXX
Industrial Zone, Maoming City, Guangdong Province, China
T/T, L/C, MoneyGram, Credit Card, PayPal, Western Union