Multi-Blade Vegetable Slicer
/* Design System (CSS Variables) - Fresh Kitchen Theme */ .product-set-container { --primary: #166534; /* Green 800 - Deep forest green */ --primary-hover: #15803D; /* Green 700 */ --accent: #10B981; /* Emerald 500 - Fresh vegetable green */ --accent-light: #ECFDF5; /* Emerald 50 */ --text-main: #334155; /* Slate 700 */ --text-sub: #64748B; /* Slate 500 */ --bg-body: #F8FAFC; /* Slate 50 */ --bg-card: #FFFFFF; --border-color: #E2E8F0; /* Slate 200 */ --radius-md: 16px; --radius-lg: 24px; --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04); /* Typography & Spacing System */ --spacing-section: clamp(3rem, 6vw, 5rem); --spacing-module: clamp(2rem, 5vw, 4rem); font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); background-color: var(--bg-body); max-width: 1200px; margin: 0 auto; padding: 0 5%; box-sizing: border-box; overflow-wrap: break-word; word-break: break-word; line-height: 1.6; } .product-set-container *, .product-set-container *::before, .product-set-container *::after { box-sizing: inherit; } /* Typography Scale */ .product-set-container h1, .product-set-container h2, .product-set-container h3 { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--primary); margin: 0 0 1rem 0; font-weight: 800; letter-spacing: -0.02em; } .product-set-container h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.2; } .product-set-container .subtitle { font-size: clamp(14px, 2vw, 16px); color: var(--accent); font-weight: 800; margin: 0 0 1rem 0; text-transform: uppercase; letter-spacing: 0.1em; } .product-set-container h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.3; margin: 0 0 1.5rem 0; position: relative; padding-bottom: 0.75rem; } .product-set-container h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 4px; background-color: var(--accent); border-radius: 4px; } .product-set-container h3 { font-size: clamp(20px, 2.5vw, 24px); line-height: 1.4; margin: 0 0 1rem 0; display: flex; align-items: center; gap: 10px; } .product-set-container p { font-size: clamp(16px, 2vw, 18px); color: var(--text-sub); margin: 0 0 1.5rem 0; } /* Badges */ .detail-badge-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; } .detail-badge { display: inline-flex; align-items: center; padding: 8px 16px; background: var(--bg-card); border: 2px solid var(--accent-light); border-radius: 12px; font-size: 14px; font-weight: 700; color: var(--primary); box-shadow: var(--shadow-sm); transition: transform 0.2s ease; } .detail-badge:hover { transform: translateY(-2px); } .detail-badge.accent { background: var(--accent); color: #FFF; border-color: var(--accent); } /* Image Protocol & Placeholders */ .img-placeholder { width: 100%; background-color: var(--bg-card); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; border: 1px solid var(--border-color); position: relative; } .img-placeholder::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); pointer-events: none; } .img-placeholder img { width: 100%; height: auto; display: block; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); } .img-placeholder:hover img { transform: scale(1.03); } /* Modules */ .hero-section { text-align: center; margin-top: 3rem; margin-bottom: var(--spacing-section); background: var(--bg-card); padding: 4rem 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); background-image: radial-gradient(circle at top right, var(--accent-light) 0%, transparent 40%); } .hero-section h2::after { left: 50%; transform: translateX(-50%); } .hero-section .detail-badge-group { justify-content: center; } .hero-description { max-width: 700px; margin: 0 auto 2rem auto; } /* Z-Pattern Features */ .feature-list { display: flex; flex-direction: column; gap: var(--spacing-section); margin-bottom: var(--spacing-section); } .feature-item { display: flex; flex-direction: column; gap: 2rem; align-items: center; } .feature-media, .feature-copy { width: 100%; } /* Specifications Table */ .specs-section { background: var(--bg-card); padding: 3rem 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); margin-bottom: var(--spacing-section); } .specs-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; } .specs-table th, .specs-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border-color); } .specs-table tr:last-child td { border-bottom: none; } .specs-table th { font-weight: 700; color: var(--primary); background-color: var(--accent-light); } .specs-table th:first-child { border-radius: 8px 0 0 0; } .specs-table th:last-child { border-radius: 0 8px 0 0; } .specs-table td { color: var(--text-sub); } /* FAQ Section */ .faq-section { margin-bottom: var(--spacing-section); } .faq-item { background: var(--bg-card); padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--border-color); margin-bottom: 1rem; box-shadow: var(--shadow-sm); } .faq-item strong { display: block; color: var(--primary); font-size: 1.1rem; margin-bottom: 0.5rem; } .faq-item p { margin: 0; font-size: 1rem; } /* Desktop Enhancements */ @media (min-width: 768px) { .feature-item { flex-direction: row; gap: var(--spacing-module); } .feature-item.reverse { flex-direction: row-reverse; } .feature-media, .feature-copy { flex: 1; } .feature-copy { padding: 0 2rem; } .specs-section { padding: 4rem; } } Make Food Preparation Faster, Easier and More Efficient Multifunction Vegetable Chopper This 8-blade kitchen slicer & dicer allows you to chop, dice, slice, shred and grate vegetables and fruits quickly. It is a versatile kitchen gadget designed to make cooking easier and more efficient. πͺ 8 Interchangeable Blades π¦ 1.2L Container π‘οΈ 420 Stainless Steel π§½ Easy to Clean π₯ Premium Multi-Function Vegetable Chopper This multifunctional vegetable chopper allows you to chop, dice, slice, shred and grate vegetables and fruits quickly. It is a versatile kitchen gadget designed to make cooking easier and more efficient. πͺ 8 Interchangeable Stainless Steel Blades Equipped with 8 interchangeable blades made of heavy-duty 420 stainless steel, this chopper provides precise slicing, shredding, and dicing. The blades are rust-resistant and designed for long-lasting sharpness. π¦ Built-In 1.2L Food Container The built-in cutting lid allows food to fall directly into the large 1.2L container, reducing mess and eliminating the need for a cutting board. π§½ Easy Cleaning & Storage The vegetable chopper includes a cleaning fork that helps remove food residue quickly. Its compact design allows easy storage in kitchen cabinets or drawers. π₯ Save Time & Improve Healthy Eating Cutting vegetables such as onions, tomatoes, cabbage, and garlic can be time-consuming. This upgraded vegetable chopper simplifies the preparation process, helping you cook faster and eat healthier. π Product Specifications Product Type Vegetable Chopper & Slicer Blade Material 420 Stainless Steel Number of Blades 8 Interchangeable Blades Container Capacity 1.2L Material Food Grade Plastic + Stainless Steel Application Vegetables, Fruits, Onions, Garlic Accessories Cleaning Fork β Frequently Asked Questions 1. What vegetables can this chopper cut? It can cut onions, tomatoes, cabbage, carrots, potatoes, garlic, and many other vegetables. 2. Are the blades durable? Yes, they are made from rust-resistant 420 stainless steel. 3. Is it easy to clean? Yes, it comes with a cleaning fork and can be cleaned quickly. 4. Does it include a container? Yes, it includes a 1.2L container for collecting chopped food. 5. Is it safe to use? Yes, the design keeps hands away from the blades while cutting.
More you might like
Related
Mandoline Vegetable Slicer 6 Blades Adjustable Vegetable Cut
Related
Multifunctional 3-blade vegetable slicer
Related
Mandoline Slicer Vegetable Slicer Mandolin Multi Blade Potat
Related