'); background-size: cover; background-position: center; color: var(--light); padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 48px; margin-bottom: 20px; font-weight: 700; } .hero p { font-size: 20px; margin-bottom: 30px; } .btn { display: inline-block; background-color: var(--primary); color: var(--light); padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--primary); } .btn:hover { background-color: transparent; color: var(--light); } .btn-outline { background-color: transparent; border: 2px solid var(--light); margin-left: 15px; } .btn-outline:hover { background-color: var(--light); color: var(--primary); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 36px; color: var(--dark); 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: 3px; background-color: var(--primary); } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 28px; margin-bottom: 20px; color: var(--primary); } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature { display: flex; gap: 15px; } .feature-icon { background-color: var(--primary); color: var(--light); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .feature-text h4 { margin-bottom: 5px; } .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: #e0e0e0; height: 400px; display: flex; align-items: center; justify-content: center; } /* Products Section */ .products { background-color: var(--secondary); } .categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { background-color: var(--light); color: var(--dark); border: 1px solid #ddd; padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: var(--transition); } .category-btn.active, .category-btn:hover { background-color: var(--primary); color: var(--light); border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: var(--light); border-radius: 8px; 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: 200px; background: #e9e9e9; display: flex; align-items: center; justify-content: center; } .product-info { padding: 20px; } .product-info h3 { margin-bottom: 10px; color: var(--dark); } .product-info p { color: var(--gray); margin-bottom: 15px; } /* Why Choose Us */ .advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background-color: var(--light); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: var(--transition); } .advantage-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .advantage-icon { background-color: rgba(211, 47, 47, 0.1); color: var(--primary); width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; } /* Certificates */ .certificates { background-color: var(--secondary); } .certificates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; } .certificate { background-color: var(--light); padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .certificate-icon { color: var(--primary); font-size: 50px; margin-bottom: 15px; } /* Contact Section */ .contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info h3 { margin-bottom: 20px; color: var(--primary); } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; gap: 15px; margin-bottom: 15px; } .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-size: 16px; } .contact-form textarea { height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: var(--light); padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; } .footer-logo { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--light); } .footer-logo span { color: var(--primary); } .footer-links h4 { margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-links h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--primary); } .footer-links ul { list-style: none; } .footer-links ul li { margin-bottom: 10px; } .footer-links ul li a { color: #aaa; text-decoration: none; transition: var(--transition); } .footer-links ul li a:hover { color: var(--light); padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #444; color: #aaa; } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .hero h2 { font-size: 36px; } } @media (max-width: 768px) { .header-top { flex-direction: column; gap: 15px; text-align: center; } nav ul { justify-content: center; flex-wrap: wrap; } .hero { padding: 60px 0; } .hero h2 { font-size: 28px; } .hero p { font-size: 18px; } .section { padding: 60px 0; } } @media (max-width: 576px) { .contact-info { flex-direction: column; gap: 10px; } .categories { gap: 10px; } .btn { display: block; width: 100%; margin-bottom: 10px; } .btn-outline { margin-left: 0; } }
Manufacturers of high-quality kitchenware, home products, and custom solutions with 15+ years of industry expertise.
Founded in 2008, Familyoung Home & Kitchen has established itself as a leading manufacturer of premium kitchenware and home products. With our state-of-the-art manufacturing facility spanning over 20,000 square meters, we combine traditional craftsmanship with modern technology to deliver exceptional quality products.
Our commitment to innovation and customer satisfaction has enabled us to build lasting relationships with clients across North America, Europe, and Asia. We specialize in both OEM and ODM services, ensuring that each product meets the specific requirements of our diverse clientele.
20,000m² manufacturing space
200+ skilled professionals
Exporting to 50+ countries
5 million+ units produced
Premium aluminum body with PFOA-free non-stick coating
Material: Aluminum | Coating: Granite/Stone
18/10 stainless steel with encapsulated base
Material: 304 Stainless Steel
Carbon steel baking sheets, muffin pans and cake molds
Material: Carbon Steel | Non-stick coating
Heat-resistant silicone heads with stainless steel handles
Material: Silicone + Stainless Steel
BPA-free plastic containers with airtight lids
Material: PP Plastic | Stackable design
Bamboo and plastic cutting boards with juice grooves
Material: Bamboo / PP Plastic
All products undergo rigorous quality control with 10-point inspection system ensuring durability and safety.
We offer OEM/ODM services with custom design, packaging, and branding options tailored to your needs.
Streamlined supply chain management ensures timely delivery worldwide with multiple shipping options.
Our R&D team continuously develops new products with enhanced functionality and modern designs.
Commitment to sustainable manufacturing with eco-friendly materials and production processes.
Long-term relationships built on trust, transparency, and exceptional customer support.
Quality Management System
Food Contact Materials
European Food Safety Standards
Social Compliance Certification
Environmental Standards
No. 168 Industrial Zone, Yongkang City, Zhejiang Province, China 321300
+86 123 4567 8910
Monday - Friday: 8:00 AM - 5:30 PM (GMT+8)