Fine Motor Cutting Set
/* Design System */ .product-detail-container { --primary: #34d399; /* Soft Mint Green */ --primary-light: #ecfdf5; /* Very Light Mint */ --accent: #fbbf24; /* Playful Yellow */ -- text-main: #1f2937; /* Dark Navy/Slate */ --text-sub: #4b5563; /* Medium Slate */ --bg-body: #fdfbf7; /* Warm Paper White */ --bg-card: #ffffff; --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 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02); --border-color: #e5e7eb; /* Container Safeties */ max-width: 1200px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) 5%; box-sizing: border-box; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); background-color: var(--bg-body); overflow-wrap: break-word; word-break: break-word; } .product-detail-container *, .product-detail-container *::before, .product-detail-container *::after { box-sizing: border-box; } /* Typography System */ .pd-h1 { font-size: clamp(34px, 5vw, 44px); line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 1.5rem 0; color: var(--text-main); } .pd-h2 { font-size: clamp(28px, 4vw, 32px); line-height: 1.3; font-weight: 700; margin: 0 0 1rem 0; } .pd-h3 { font-size: clamp(22px, 3vw, 26px); line-height: 1.4; font-weight: 700; margin: 0 0 1rem 0; } .pd-p { font-size: clamp(18px, 2vw, 20px); line-height: 1.7; color: var(--text-sub); margin: 0 0 1.5rem 0; } /* Layout Spacing */ .pd-section { margin-bottom: clamp(4rem, 8vw, 6rem); } /* Media & Images */ .pd-media-wrapper { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-card); } .pd-media-wrapper img { width: 100%; height: auto; display: block; } /* Placeholder Styling */ .pd-placeholder { width: 100%; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; background-color: #f3f4f6; border: 2px dashed #cbd5e1; color: #64748b; font-size: clamp(16px, 2vw, 18px); font-weight: 600; text-align: center; padding: 2rem; } /* Badges (Non-clickable) */ .pd-social-proof { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: var(--primary-light); border-radius: 99px; font-size: clamp(16px, 1.8vw, 18px); font-weight: 700; color: #065f46; margin-bottom: 2rem; } .pd-tag-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; } .pd-tag { padding: 0.75rem 1.25rem; background: var(--bg-card); border: 2px solid var(--primary-light); border-radius: var(--radius-md); font-size: 16px; font-weight: 600; color: var(--text-main); } /* Features - Strict Mobile Ordering Lock */ .pd-feature-item { display: flex; flex-direction: column; /* MOBILE FIRST: Force Stack */ gap: clamp(2rem, 5vw, 4rem); margin-bottom: clamp(4rem, 8vw, 6rem); } /* Enforce Image Top, Text Bottom on Mobile */ .pd-feature-media { order: 1; width: 100%; } .pd-feature-copy { order: 2; width: 100%; } @media (min-width: 768px) { /* Desktop Z-Pattern */ .pd-feature-item { flex-direction: row; align-items: center; } .pd-feature-item:nth-child(even) { flex-direction: row-reverse; } .pd-feature-media, .pd-feature-copy { flex: 1; min-width: 0; /* Prevent flex overflow */ order: unset; /* Remove forced ordering for desktop */ } } /* Specifications Table (Card-based on Mobile) */ .pd-specs-container { background: var(--bg-card); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 4rem); box-shadow: var(--shadow-lg); } .pd-table { width: 100%; border-collapse: collapse; } .pd-table th, .pd-table td { padding: 1.5rem; text-align: left; font-size: clamp(16px, 1.8vw, 18px); border-bottom: 1px solid var(--border-color); } .pd-table th { font-weight: 700; color: var(--text-main); width: 35%; background-color: var(--bg-body); } .pd-table td { color: var(--text-sub); } .pd-table tr:last-child th, .pd-table tr:last-child td { border-bottom: none; } @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; /* Hide headers visually */ } .pd-table tr { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 1.5rem; padding: 1rem; box-shadow: var(--shadow-sm); } .pd-table td { border-bottom: none; padding: 0.75rem 0; display: flex; flex-direction: column; gap: 0.5rem; } .pd-table td:not(:last-child) { border-bottom: 1px dashed var(--border-color); } /* Inject labels for mobile cards */ .pd-table td::before { content: attr(data-label); font-weight: 700; font-size: 16px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; } } /* FAQ Section */ .pd-faq-list { display: flex; flex-direction: column; gap: 1.5rem; } .pd-faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: clamp(1.5rem, 3vw, 2rem); } .pd-faq-q { font-size: clamp(20px, 2.5vw, 22px); font-weight: 700; margin: 0 0 1rem 0; display: flex; align-items: flex-start; gap: 0.75rem; } .pd-faq-q::before { content: "Q."; color: var(--primary); } .pd-faq-a { font-size: clamp(18px, 2vw, 20px); line-height: 1.7; color: var(--text-sub); margin: 0; padding-left: 2rem; } β Trusted by 10,000+ Parents & Preschools Master Scissor Skills Safely & Joyfully A 60-piece interactive cutting practice kit designed to develop fine motor skills, boost hand-eye coordination, and spark early creativity in toddlers aged 2+. Why Toddlers Love Our Learning Cards Early Scissor Skills Development Specially designed for toddlers, these cutting practice cards serve as the perfect introduction to scissor control. As your child carefully navigates the patterns, they are actively building critical hand-eye coordination and fine motor skills essential for handwriting later on. β Fine Motor Skills π― Hand-Eye Coordination 60 Fun & Educational Themes Boredom is not an option! The kit includes 60 vibrantly colored cutting sheets featuring adorable animals, tasty fruits, and everyday objects. By following the progressive printed cutting lines step-by-step, children experience a rewarding sense of accomplishment with every successful cut. π¨ 60 Unique Designs π Progressive Difficulty Safe & Easy Learning Activity Safety comes first. The cards feature clear, beginner-friendly guides perfect for use with toddler-safe training scissors. Whether used for home learning, preschool activities, or Montessori-style education, this kit provides a worry-free environment for independent exploration. π‘οΈ Beginner-Friendly π§© Montessori Inspired Product Specifications Feature Details Age Recommendation 2 Years and Up (Adult supervision recommended for beginners) Package Contents 60 x Themed Cutting Practice Cards Card Dimensions 14.0 x 14.0 cm (5.5 x 5.5 in) per card Item Weight Approx. 150 g (5.3 oz) Material Quality Premium thick paper printed with non-toxic, eco-friendly soy-based inks Frequently Asked Questions Are safety scissors included in the package? This set specifically includes the 60 high-quality cutting practice cards. Safety scissors are not included, allowing you to pair these cards with the training scissors your child is already comfortable using. Is the paper safe and easy to cut for toddlers? Yes! We carefully selected a paper thickness that provides enough rigidity to prevent tearing easily when held by small hands, yet is effortless to cut through with standard plastic or blunt-tip safety scissors. How do the cutting guides work? The cards feature progressive difficulty. They start with simple, short straight lines and gradually progress to waves, zigzags, and eventually complex shapes. This ensures your child learns at a comfortable pace without frustration.
More you might like
Related
Fine Motor Cutting Set
Related
Print and Go Fine Motor Practice for Tracing and Cutting | F
Related
Kids Scissor Skills Activity Book β Preschool Paper Cutting
Related