'); background-size: cover; background-position: center; color: white; text-align: center; padding: 180px 0 100px; position: relative; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 48px; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 22px; margin-bottom: 40px; opacity: 0.9; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .btn-secondary { background-color: transparent; border: 2px solid white; } .btn-secondary:hover { background-color: rgba(255,255,255,0.1); } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 28px; color: var(--primary); margin-bottom: 20px; } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 40px; } .feature-item { display: flex; align-items: flex-start; gap: 15px; } .feature-icon { width: 60px; height: 60px; background-color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; flex-shrink: 0; } .about-image { flex: 1; background: #eef5ff; border-radius: 10px; height: 450px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .about-image::before { content: "KINWEIRR FACTORY"; position: absolute; font-size: 24px; font-weight: bold; color: var(--primary); opacity: 0.2; transform: rotate(-30deg); z-index: 1; } /* Products Section */ .products { background-color: #f0f7ff; } .product-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { padding: 10px 25px; background-color: white; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; transition: var(--transition); font-weight: 500; } .category-btn.active, .category-btn:hover { background-color: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, 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: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 220px; background-color: #f5f9ff; display: flex; align-items: center; justify-content: center; position: relative; } .product-badge { position: absolute; top: 15px; right: 15px; background-color: var(--secondary); color: white; padding: 5px 15px; border-radius: 30px; font-size: 12px; font-weight: 600; } .product-info { padding: 20px; } .product-info h3 { font-size: 18px; margin-bottom: 10px; color: var(--dark); } .product-info p { color: #666; font-size: 14px; margin-bottom: 15px; } /* Certifications */ .certifications { background: linear-gradient(to right, #0a568c, #1a6ca8); color: white; padding: 60px 0; } .cert-title { text-align: center; margin-bottom: 50px; } .cert-title h2 { color: white; } .cert-title p { color: rgba(255,255,255,0.8); } .cert-title::after { background: var(--secondary); } .certs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; } .cert-item { background-color: rgba(255,255,255,0.1); border-radius: 10px; padding: 30px 15px; text-align: center; transition: var(--transition); border: 1px solid rgba(255,255,255,0.15); } .cert-item:hover { transform: translateY(-5px); background-color: rgba(255,255,255,0.2); } .cert-item h3 { margin-top: 15px; font-size: 18px; } /* OEM Section */ .oem-process { display: flex; gap: 50px; align-items: center; } .oem-image { flex: 1; background: #eef5ff; border-radius: 10px; height: 400px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; } .oem-image::before { content: "OEM/ODM PROCESS"; position: absolute; font-size: 24px; font-weight: bold; color: var(--primary); opacity: 0.2; transform: rotate(-30deg); } .oem-steps { flex: 1; } .step { display: flex; gap: 20px; margin-bottom: 30px; position: relative; } .step:not(:last-child)::after { content: ''; position: absolute; left: 30px; top: 50px; height: calc(100% - 30px); width: 2px; background-color: #ddd; } .step-number { width: 60px; height: 60px; background-color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; font-weight: bold; flex-shrink: 0; z-index: 2; } .step-content h3 { font-size: 20px; margin-bottom: 10px; color: var(--primary); } /* Contact Section */ .contact { background-color: #f0f7ff; } .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 25px; } .contact-item { display: flex; gap: 15px; align-items: flex-start; } .contact-icon { width: 50px; height: 50px; background-color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; flex-shrink: 0; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 16px; } .contact-form textarea { height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: white; margin-bottom: 25px; font-size: 20px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background-color: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { transition: var(--transition); } .footer-links a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; } /* Responsive */ @media (max-width: 991px) { .about-content, .oem-process { flex-direction: column; } .contact-container { grid-template-columns: 1fr; } .hero h1 { font-size: 36px; } } @media (max-width: 768px) { .nav-menu { display: none; } .section { padding: 60px 0; } .section-title h2 { font-size: 28px; } .hero { padding: 150px 0 80px; } }
16+ Years of Expertise in Shower Systems, Faucets & Bathroom Accessories
With over 16 years of manufacturing excellence, KINWEIRR is a leading bathroom fixtures supplier based in Guangdong, China
Founded in 2008, KINWEIRR has evolved into a comprehensive bathroom fixtures manufacturer with integrated facilities including casting, electroplating, and assembly factories. Our 500,000+ monthly production capacity ensures timely delivery for global clients.
We specialize in designing and manufacturing high-quality shower systems, faucets, and bathroom accessories that combine aesthetic appeal with exceptional functionality. Our team of 50+ engineers focuses on innovation while maintaining strict quality control throughout our production process.
Complete vertical integration from raw materials to finished products
100% quality inspection at multiple production stages
Compliance with international quality and safety regulations
Flexible OEM/ODM services tailored to your requirements
Premium bathroom fixtures designed for durability, functionality and style
Advanced temperature control system with pressure balance valve for safety and comfort.
Materials: Brass construction with chrome finish
Complete shower solution with overhead rain shower, hand shower, and body jets.
Features: Adjustable height, anti-scald protection
Single-handle deck-mounted faucet with ceramic cartridge for drip-free performance.
Finish: Brushed nickel, chrome or matte black
Professional kitchen faucet with 360° swivel and dual-function spray head.
Technology: Lead-free brass, ceramic valve
Complete matching set including towel bars, rings, toilet paper holder and more.
Material: 304 stainless steel with chrome finish
All-in-one shower package with shower head, hose, holder and diverter.
Design: Modern square design with water-saving feature
Internationally recognized quality standards guaranteeing product safety and performance
European Conformity
Uniform Plumbing Code
Saudi Standards
Quality Management
Water Regulations
French Standards
Custom manufacturing solutions tailored to your brand requirements
Our engineering team works with you to understand your requirements and develop product concepts.
We create physical samples for your approval, making adjustments based on your feedback.
Once approved, we move to full-scale production with strict quality control at every stage.
Final products undergo rigorous testing before being packaged and shipped worldwide.
With our integrated facilities including casting, electroplating, and assembly factories, we offer comprehensive manufacturing solutions. Our 16+ years of experience, flexible MOQ options, and expertise in international certifications ensure a seamless partnership.
Get in touch with our team for quotations, samples or partnership opportunities
No. 1 Industrial Zone, Foshan City, Guangdong Province, China
+86 123 4567 8910
Monday - Friday: 8:30 AM - 6:00 PM (GMT+8)