Quick Prep Kitchen Shears
/* 0) Typography & Spacing System */ .product-detail-container { /* 1) Design System (CSS Variables) */ --primary: #2e7d32; --primary-hover: #1b5e20; --primary-light: #e8f5e9; --te xt-main: #1c1c1c; --text-sub: #4a4a4a; --bg-body: #ffffff; --bg-card: #f4f6f8; --radius-md: 10px; --radius-lg: 18px; --shadow-sm: 0 4px 12px rgba(0,0,0,0.05); --shadow-lg: 0 12px 24px rgba(0,0,0,0.08); --border-color: #e2e8f0; /* Layout Variables */ --section-gap: clamp(2rem, 5vw, 4rem); /* Critical Anti-overflow & Layout Rules */ max-width: 1200px; margin: 0 auto; padding: 0 5%; box-sizing: border-box; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text-main); background-color: var(--bg-body); overflow-wrap: break-word; word-break: break-word; -webkit-font-smoothing: antialiased; } .product-detail-container *, .product-detail-container *::before, .product-detail-container *::after { box-sizing: inherit; } /* Typography Scales */ .product-detail-container h1 { font-size: clamp(32px, 4vw, 44px); line-height: 1.2; margin: 0 0 1.5rem 0; font-weight: 800; color: var(--text-main); } .product-detail-container h2 { font-size: clamp(24px, 3.5vw, 32px); line-height: 1.3; margin: 0 0 1.2rem 0; font-weight: 700; color: var(--text-main); } .product-detail-container h3 { font-size: clamp(20px, 2.5vw, 24px); line-height: 1.4; margin: 0 0 1rem 0; font-weight: 600; color: var(--text-main); } .product-detail-container p { font-size: clamp(18px, 2vw, 20px); line-height: 1.7; margin: 0 0 1.5rem 0; color: var(--text-sub); } .product-detail-container .aux-text { font-size: clamp(16px, 1.8vw, 18px); color: var(--text-sub); line-height: 1.6; } /* Image & Media Protocol (CRITICAL) - Option A natural flow */ .product-detail-container img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); } /* Placeholder Styling matching rules exactly */ .pd-placeholder { width: 100%; aspect-ratio: 4 / 3; background-color: var(--bg-card); border: 2px dashed var(--border-color); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: clamp(16px, 2vw, 20px); color: #666; font-weight: bold; text-align: center; padding: 1rem; box-shadow: var(--shadow-sm); } /* Non-clickable Badges */ .pd-badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; } .pd-badge { background-color: var(--primary-light); color: var(--primary); padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 600; font-size: clamp(16px, 1.8vw, 18px); display: inline-flex; align-items: center; justify-content: center; } /* Module Spacing */ .pd-section { margin-bottom: var(--section-gap); } /* Hero Section */ .pd-hero { text-align: center; padding-top: 2rem; } .pd-hero-content { max-width: 900px; margin: 0 auto 2rem auto; } .pd-social-proof { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; font-weight: 600; } /* Feature Mobile Ordering Lock (CRITICAL) */ .pd-feature-item { display: flex; flex-direction: column; /* Mobile Default: Image top, Text bottom */ gap: 2rem; margin-bottom: var(--section-gap); } .pd-feature-media, .pd-feature-copy { flex: 1; display: flex; flex-direction: column; justify-content: center; } /* Desktop Enhancement (Z-Pattern) */ @media (min-width: 768px) { .pd-feature-item { flex-direction: row; align-items: center; gap: clamp(3rem, 6vw, 5rem); } .pd-feature-item:nth-child(even) { flex-direction: row-reverse; } } /* Specs Table (CRITICAL: Mobile Card-based) */ .pd-specs-container { background-color: var(--bg-card); padding: clamp(2rem, 4vw, 3rem); border-radius: var(--radius-lg); } .pd-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; } .pd-table th, .pd-table td { padding: 1.2rem; text-align: left; border-bottom: 1px solid var(--border-color); font-size: clamp(16px, 1.8vw, 18px); color: var(--text-main); } .pd-table th { font-weight: 700; color: var(--text-sub); background-color: rgba(0,0,0,0.02); } @media (max-width: 767px) { .pd-table, .pd-table thead, .pd-table tbody, .pd-table tr, .pd-table th, .pd-table td { display: block; width: 100%; } .pd-table thead { display: none; } .pd-table tr { background-color: var(--bg-body); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm); } .pd-table td { display: flex; justify-content: space-between; align-items: center; text-align: right; padding: 1rem 1.2rem; border-bottom: 1px solid var(--border-color); gap: 1rem; } .pd-table td:last-child { border-bottom: none; } .pd-table td::before { content: attr(data-label); font-weight: 700; color: var(--text-sub); text-align: left; flex-shrink: 0; } } /* FAQ Section */ .pd-faq-wrapper { background-color: var(--bg-body); border: 2px solid var(--bg-card); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem); } .pd-faq-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); } .pd-faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; } .pd-faq-q { font-size: clamp(20px, 2.5vw, 24px); font-weight: 700; color: var(--text-main); margin: 0 0 0.8rem 0; } .pd-faq-a { margin: 0; color: var(--text-sub); } ★★★★★ Trusted by 10,000+ Home Cooks Chop Smarter, Not Harder: The Ultimate 2-in-1 Kitchen Scissors Replace your bulky knives and chopping boards with one brilliant, ultra-sharp tool. Dishwasher Safe Ergonomic Grip Family Friendly Seamless Cutting & Chopping Combine the razor-sharp precision of professional blades with the convenience of a built-in cutting board. Rapidly slice vegetables, meat, and fish directly into your pan or bowl. Benefit: Skip the messy countertops and eliminate the need to switch tools. Prep your family meals up to 10x faster with zero hassle. Tough on Bones, Gentle on Hands Forged from premium stainless steel, these shears power through tough chicken bones and root vegetables without bending. The non-slip, ergonomic handle is purposefully engineered to absorb pressure. Benefit: Dramatically reduces hand fatigue. Perfect for prolonged cooking sessions and highly recommended for elderly users or those with weaker grips. Engineered for Family Safety Safety is not an afterthought. These scissors feature a robust locking mechanism that securely holds the blades together when not in use, complemented by rounded blade tips. Benefit: Store them safely in any drawer without the fear of accidental cuts. 100% peace of mind for busy households with children. Cleans Instantly, Stores Anywhere The blades and mini cutting board are fully detachable for a deep clean, and completely dishwasher safe (ensure the lock is engaged). Folding down to the thickness of a smartphone (just 3cm), it’s incredibly portable. Benefit: Saves 70% of your washing time compared to traditional boards and knives. Includes a waterproof bag, making it your ultimate companion for camping, picnics, and tiny kitchens. Technical Specifications Everything you need to know about your new favorite kitchen tool. Feature Detail Material Premium Stainless Steel & Food-Grade POM Total Length 24.5 cm (9.6 in) Thickness (Folded) 3.0 cm (1.2 in) Weight 200 g (7.1 oz) Care Instructions Dishwasher Safe (Lock must be engaged) In the Box 1x 2-in-1 Kitchen Scissors, 1x Waterproof Storage Bag Frequently Asked Questions Are they completely dishwasher safe? Yes! The detachable design allows for thorough cleaning, and the materials are fully dishwasher safe. Just remember to engage the safety lock before placing them in your dishwasher. Can it really cut through chicken bones? Absolutely. The premium stainless steel blades are ultra-sharp and exceptionally durable, designed specifically to cut through raw meat, cartilage, and chicken bones without dulling quickly. Is this tool safe to keep in family kitchens? Yes, safety is a priority. It features rounded blade tips to prevent pokes and a secure locking mechanism that keeps the sharp edges completely closed when stored away in your drawer or on the counter.
More you might like
Related
Quick Prep Kitchen Shears
Related
Quick Prep Kitchen Shears
Related
5" Fast Prep Kitchen Shears
Related