Automatic Bird Toothpick Dispenser
/* Design System (CSS Variables) - Home & Kitchen Theme */ .product-set-container { --primary: #0F766E; /* Teal 700 - Clean, kitchen-friendly */ --primary-hover: #115E59; /* Teal 8 00 */ --accent: #14B8A6; /* Teal 500 - Playful, vibrant */ --accent-light: #CCFBF1; /* Teal 50 */ --text-main: #334155; /* Slate 700 */ --text-sub: #475569; /* Slate 600 */ --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(15, 118, 110, 0.08), 0 2px 4px -1px rgba(15, 118, 110, 0.04); --shadow-lg: 0 10px 15px -3px rgba(15, 118, 110, 0.08), 0 4px 6px -2px rgba(15, 118, 110, 0.04); /* Typography & Spacing System */ --spacing-section: clamp(3rem, 6vw, 5rem); --spacing-module: clamp(2rem, 5vw, 4rem); font-family: -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 { font-size: clamp(32px, 4vw, 48px); line-height: 1.2; color: var(--primary); margin: 0 0 1rem 0; font-weight: 900; letter-spacing: -0.02em; } .product-set-container .subtitle { font-size: clamp(18px, 2.5vw, 24px); color: var(--accent); font-weight: 700; margin: 0 0 1.5rem 0; } .product-set-container h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.3; color: var(--primary); margin: 0 0 1.5rem 0; font-weight: 800; border-bottom: 3px solid var(--accent); display: inline-block; padding-bottom: 0.5rem; } .product-set-container h3 { font-size: clamp(20px, 2.5vw, 26px); line-height: 1.4; color: var(--primary); margin: 0 0 1rem 0; font-weight: 700; } .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: 12px; margin-bottom: 2rem; } .detail-badge { display: inline-flex; align-items: center; padding: 8px 16px; background: var(--primary); border-radius: 30px; font-size: 14px; font-weight: 700; color: #FFFFFF; letter-spacing: 0.03em; box-shadow: var(--shadow-sm); } .detail-badge.accent { background: var(--accent); } /* Image Protocol & Placeholders */ .img-placeholder { width: 100%; background-color: var(--bg-card); border-radius: var(--radius-md); 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); } .img-placeholder img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); transition: transform 0.4s ease; } .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); } .hero-section .detail-badge-group { justify-content: center; } /* 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%; } /* Specs Table */ .specs-section { margin-bottom: var(--spacing-section); } .specs-table-wrapper { background: var(--bg-card); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 3rem); box-shadow: var(--shadow-sm); margin-bottom: 2rem; border: 1px solid var(--border-color); } .specs-table { width: 100%; border-collapse: collapse; } /* FAQ Section */ .faq-section { margin-bottom: var(--spacing-section); } .faq-item { background: var(--bg-card); border-radius: var(--radius-md); padding: 1.5rem 2rem; margin-bottom: 1rem; border: 1px solid var(--border-color); border-left: 4px solid var(--accent); transition: all 0.2s ease; } .faq-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); } .faq-question { font-size: clamp(18px, 2.5vw, 20px); font-weight: 800; color: var(--primary); margin-bottom: 0.75rem; } .faq-answer { font-size: clamp(16px, 2vw, 17px); color: var(--text-sub); margin: 0; } /* 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-table th, .specs-table td { padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border-color); font-size: 17px; } .specs-table th { font-weight: 800; color: var(--primary); width: 35%; background-color: var(--bg-body); text-transform: uppercase; letter-spacing: 0.05em; } .specs-table tr:last-child td, .specs-table tr:last-child th { border-bottom: none; } } /* Mobile Specs Table Lock */ @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 { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 1rem; padding: 1.25rem; } .specs-table td { display: flex; flex-direction: column; padding: 0.75rem 0; border-bottom: 1px solid var(--border-color); font-size: 15px; text-align: left; } .specs-table td:last-child { border-bottom: none; padding-bottom: 0; } .specs-table td::before { content: attr(data-label); font-weight: 800; color: var(--primary); text-transform: uppercase; margin-bottom: 0.25rem; font-size: 13px; letter-spacing: 0.05em; } } Cute Bird Automatic Toothpick Holder Hygienic Toothpick Dispenser for Kitchen & Dining Table π¦ Adorable Design πͺ Automatic Pop-up π‘ Dustproof π¦ Large Capacity π Perfect Gift Fun & Convenient Toothpick Dispenser for Everyday Use. Add a touch of charm to your dining table while keeping your toothpicks clean, hygienic, and ready to use at the push of a button. Adorable Bird Design This cute bird-shaped toothpick holder adds charm and personality to your dining table. Its creative design makes it both a practical kitchen accessory and a lovely decoration for your home. Automatic Toothpick Dispenser Simply press the top button and a toothpick pops up instantly. The smart automatic mechanism allows you to take toothpicks easily without touching the rest, keeping them clean and hygienic. Dustproof & Hygienic Storage The closed storage design protects toothpicks from dust and moisture. It keeps your toothpicks clean and ready to use at all times. Large Capacity in Compact Size Although small in size, this toothpick holder can store plenty of toothpicks. Its compact design saves space while keeping your table neat and organized. Perfect Gift for Family & Friends The cute design makes it a fun and practical gift for birthdays, housewarmings, Mother's Day, and other special occasions. Kids and adults will both enjoy using this adorable toothpick dispenser. Product Specifications Specification Details Product Type Automatic Toothpick Holder Material High Quality Plastic Design Cute Bird Shape Size 3.15 Γ 3.15 Γ 3.54 inches (8 Γ 8 Γ 9 cm) Function Automatic Toothpick Dispenser Usage Kitchen, Dining Table, Restaurant, Home Decor FAQ 1. How does the automatic toothpick holder work? Simply press the top button and one toothpick will pop out automatically. 2. Is the toothpick holder easy to clean? Yes. It is made of smooth plastic and can be easily cleaned with water. 3. How many toothpicks can it hold? The holder can store a large number of standard toothpicks depending on their size. 4. Is it safe for children to use? Yes. The dispenser allows hygienic toothpick access without touching others. 5. Can it be used as table decoration? Absolutely. The cute bird design makes it a lovely decoration for dining tables and kitchens.
More you might like
Related
Automatic Bird Hummingbird Toothpick Dispenser Box Multi Too
Related
Bird Automatic Toothpick Dispenser
Related
Automatic Bird Toothpick Dispenser
Related