Interactive Phonics Flip Books
:root { /* Color Palette */ --primary: #F68B1F; /* Vibrant Orange */ --primary-hover: #E07A15; --accent: #2589D0; /* Educational Blue */ --text-main: #2C3E50; /* Dark Slate */ --te xt-sub: #546E7A; /* Soft Gray */ --bg-body: #FFFFFF; --bg-card: #F4F7F9; /* Very light blue-gray for soft contrast */ --bg-highlight: #FFF3E0; /* Light orange background */ /* Borders & Shadows */ --border-color: #E2E8F0; --radius-md: 16px; --radius-lg: 24px; --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04); --shadow-lg: 0 12px 32px rgba(37, 137, 208, 0.08); /* Spacing System */ --space-section: clamp(3rem, 6vw, 5rem); --space-element: clamp(1.5rem, 4vw, 3rem); } /* Global Resets within Container */ .product-detail-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); background-color: var(--bg-body); box-sizing: border-box; overflow-wrap: break-word; word-break: break-word; line-height: 1.6; -webkit-font-smoothing: antialiased; } .product-detail-container * { box-sizing: border-box; } /* Typography System (Large Types) */ .product-detail-container h1 { font-size: clamp(32px, 4vw, 44px); line-height: 1.2; font-weight: 800; margin: 0 0 1rem 0; color: var(--text-main); letter-spacing: -0.02em; } .product-detail-container h2 { font-size: clamp(26px, 3vw, 34px); line-height: 1.3; font-weight: 700; margin: 0 0 1rem 0; color: var(--text-main); } .product-detail-container h3 { font-size: clamp(22px, 2.5vw, 26px); line-height: 1.4; font-weight: 700; margin: 0 0 0.8rem 0; color: var(--text-main); } .product-detail-container p { font-size: clamp(18px, 2vw, 20px); line-height: 1.7; color: var(--text-sub); margin: 0 0 1rem 0; } .product-detail-container p:last-child { margin-bottom: 0; } /* Image Protocol (Scheme A: Natural Flow) */ .media-wrapper { width: 100%; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background-color: var(--bg-card); } .media-wrapper img { width: 100%; height: auto; display: block; object-fit: contain; } .img-placeholder { width: 100%; aspect-ratio: 4 / 3; /* Common aspect ratio for product images */ background: #f1f5f9; border: 2px dashed #cbd5e1; display: flex; align-items: center; justify-content: center; color: #64748b; font-size: 1.2rem; border-radius: var(--radius-md); font-weight: bold; } /* Badges (Non-Clickable) */ .badge-container { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; } .static-badge { display: inline-flex; align-items: center; padding: 0.5rem 1rem; background-color: var(--bg-highlight); color: var(--primary); border-radius: 50px; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; } .static-badge.blue { background-color: #E3F2FD; color: var(--accent); } /* Hero Section */ .hero-section { text-align: center; margin-bottom: var(--space-section); padding-top: 2rem; } .hero-content { max-width: 800px; margin: 0 auto var(--space-element) auto; } /* Feature Section (Mobile Order Lock & Z-Pattern) */ .feature-item { display: flex; flex-direction: column; /* MOBILE FIRST: Force Stack */ gap: var(--space-element); margin-bottom: var(--space-section); } .feature-media { order: 1; /* Force Image Top on Mobile */ } .feature-copy { order: 2; /* Force Text Bottom on Mobile */ display: flex; flex-direction: column; justify-content: center; } .feature-list { list-style: none; padding: 0; margin: 1rem 0 0 0; } .feature-list li { position: relative; padding-left: 2rem; font-size: clamp(18px, 2vw, 20px); color: var(--text-sub); margin-bottom: 0.8rem; line-height: 1.6; } .feature-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: bold; font-size: 1.2em; } @media (min-width: 768px) { .feature-item { flex-direction: row; /* DESKTOP: Side by Side */ align-items: center; } .feature-item:nth-child(even) { flex-direction: row-reverse; /* Z-Pattern */ } .feature-media, .feature-copy { flex: 1; order: unset; /* Remove order lock on desktop */ } } /* Specs Section & Card Table */ .specs-section { background-color: var(--bg-card); border-radius: var(--radius-lg); padding: var(--space-element); margin-bottom: var(--space-section); } .specs-section h2 { text-align: center; margin-bottom: 2rem; } .specs-table { width: 100%; border-collapse: collapse; font-size: 18px; } .specs-table th, .specs-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border-color); } .specs-table th { font-weight: 700; color: var(--text-main); width: 40%; } .specs-table td { color: var(--text-sub); } /* MOBILE SPECS TABLE (CARD-BASED) */ @media (max-width: 767px) { .specs-table, .specs-table thead, .specs-table tbody, .specs-table tr, .specs-table th, .specs-table td { display: block; width: 100%; } .specs-table thead { display: none; } .specs-table tr { margin-bottom: 1rem; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 0.5rem; box-shadow: var(--shadow-sm); } .specs-table td { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--border-color); padding: 1rem; text-align: right; } .specs-table td:last-child { border-bottom: none; } .specs-table td::before { content: attr(data-label); font-weight: 700; color: var(--text-main); margin-right: 1rem; text-align: left; flex-shrink: 0; } } /* FAQ Section */ .faq-section { margin-bottom: var(--space-section); } .faq-section h2 { text-align: center; margin-bottom: 2rem; } .faq-item { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm); } .faq-question { font-size: clamp(20px, 2.2vw, 22px); font-weight: 700; color: var(--text-main); margin-bottom: 0.8rem; } Ages 5+ 30 Books Included Unlock Reading Success with Every Flip! The ultimate word family build book set designed to introduce essential phonics patterns, build visual vocabulary, and master sight words in a fun, interactive way. Build Sound Awareness & Phonics Skills These engaging flip books systematically introduce children to vital phonics patterns. By physically flipping the pages, young learners discover how changing a single letter creates a completely new word, making it easier to recognize word structures. Develops core phonemic awareness Interactive flipping keeps hands and minds engaged Builds foundation for confident reading Visual Vocabulary Builder We know kids learn best when they can see what a word means. Featuring vibrant, easily recognizable illustrations paired with each word family, these rhyming games create a dynamic learning experience. Direct visual connection between word and meaning Promotes faster vocabulary development Enhances overall language comprehension Master Sight Words & Reading Fluency More than just rhyming practice! These flip books double as highly effective sight word flashcards. They help children quickly decode words and improve their ability to recognize common words on sight. Acts as a powerful sight word trainer Crucial for achieving smooth reading fluency Perfect multi-skill tool for home or classroom Product Specifications Feature Detail Target Age 5+ Years Old Set Includes 30 Individual Word Family Books Material Premium, Durable Coated Cardstock Package Dimensions Approx. 25 x 15 x 6 cm (9.8 x 5.9 x 2.4 in) Total Weight Approx. 650 g (22.9 oz) Frequently Asked Questions Are these books suitable for kids just starting to read? Absolutely! They are designed specifically for early learners (Ages 5+). The combination of clear text, visual cues, and the tactile experience of flipping the pages makes it an ideal tool for beginners grasping foundational phonics. Is the material durable enough for daily classroom use? Yes. The flip books are printed on premium, thickened cardstock with a smooth coating. They are built to withstand the enthusiastic daily flipping by little hands, whether at home or in a bustling classroom environment. How exactly do these improve spelling skills? By repeatedly seeing how word families work (e.g., matching 'c' with '-at', then 'h' with '-at'), children naturally absorb spelling patterns. This repetition and discovery method cements spelling rules in their memory without tedious memorization.
More you might like
Related
Interactive Phonics Flip Books
Related
Interactive Phonics Flip Books
Related
Interactive Phonics Flip Books
Related