✦ Verified product
Integrated Push-Action Ice Cup
USD 12.95
Qty
Varitino
Verified independent store
→
.product-detail-container { /* Design System */ --primary: #0ea5e9; /* Ocean Ice Blue */ --primary-light: #e0f2fe; --text-main: #0f172a; --text-sub: #475569; --bg-body: #ffffff; --
bg-card: #f8fafc; --bg-placeholder: #f1f5f9; --border-color: #e2e8f0; --radius-md: 16px; --radius-lg: 24px; --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05); /* Typography System (Clamp) */ --fs-h1: clamp(32px, 4vw, 44px); --fs-h2: clamp(24px, 3vw, 32px); --fs-h3: clamp(20px, 2.5vw, 24px); --fs-body: clamp(18px, 2vw, 20px); --fs-small: clamp(16px, 1.5vw, 18px); /* Layout & Spacing */ --spacing-section: clamp(3rem, 6vw, 6rem); --spacing-gap: clamp(2rem, 5vw, 4rem); /* Critical Container Rules */ max-width: 1200px; margin: 0 auto; padding: 0 5%; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-main); background-color: var(--bg-body); overflow-wrap: break-word; word-break: break-word; line-height: 1.6; } .product-detail-container * { box-sizing: border-box; } /* Typography Base */ .pd-h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--text-main); } .pd-h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.3; margin-bottom: 1rem; color: var(--text-main); } .pd-h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.4; margin-bottom: 0.75rem; color: var(--text-main); } .pd-p { font-size: var(--fs-body); line-height: 1.7; color: var(--text-sub); margin-bottom: 1.5rem; } .pd-small { font-size: var(--fs-small); color: var(--text-sub); } /* Visual Badges (Unclickable) */ .pd-badge { display: inline-block; background-color: var(--primary-light); color: var(--primary); padding: 0.5rem 1rem; border-radius: 9999px; font-size: var(--fs-small); font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; } .pd-social-proof { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-small); font-weight: 600; margin-bottom: 2rem; color: var(--text-sub); } .pd-stars { color: #fbbf24; font-size: 1.2em; letter-spacing: 2px;} /* Media & Image Rules (Strict Anti-Deformation) */ .pd-media-wrapper { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: var(--bg-placeholder); border-radius: var(--radius-lg); border: 2px dashed var(--border-color); /* For placeholder visibility */ } .pd-media-wrapper img { width: 100%; height: 100%; object-fit: contain; position: absolute; top: 0; left: 0; } .pd-placeholder-text { font-size: var(--fs-small); color: var(--text-sub); font-weight: bold; text-align: center; padding: 1rem; z-index: 1; } /* Section Spacing */ .pd-section { margin-top: var(--spacing-section); margin-bottom: var(--spacing-section); } /* Hero Section */ .pd-hero { display: flex; flex-direction: column; gap: var(--spacing-gap); align-items: center; text-align: center; } .pd-hero-copy { max-width: 800px; margin: 0 auto; } /* Feature Sections (Mobile Ordering Lock) */ .pd-feature-item { display: flex; flex-direction: column; /* MOBILE FIRST: Media top, Text bottom */ gap: var(--spacing-gap); margin-bottom: var(--spacing-gap); align-items: center; } .pd-feature-media, .pd-feature-copy { width: 100%; } /* Specs Table Section */ .pd-specs-section { background-color: var(--bg-card); padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); } .pd-table { width: 100%; border-collapse: collapse; font-size: var(--fs-body); } .pd-table th, .pd-table td { padding: 1.5rem; text-align: left; border-bottom: 1px solid var(--border-color); } .pd-table th { font-weight: 600; color: var(--text-main); width: 35%; } .pd-table td { color: var(--text-sub); } /* FAQ Section */ .pd-faq-grid { display: flex; flex-direction: column; gap: 1.5rem; } .pd-faq-card { background: var(--bg-card); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--border-color); } .pd-faq-q { font-size: var(--fs-h3); font-weight: 700; color: var(--text-main); margin-bottom: 0.75rem; } .pd-faq-a { font-size: var(--fs-body); color: var(--text-sub); margin: 0; } /* Desktop Enhancements (Z-Pattern & Grid) */ @media (min-width: 768px) { /* Hero */ .pd-hero { flex-direction: row; text-align: left; } .pd-hero-copy, .pd-hero-media { flex: 1; } .pd-social-proof { justify-content: flex-start; } /* Z-Pattern Features */ .pd-feature-item { flex-direction: row; /* Desktop Row */ } .pd-feature-item:nth-child(even) { flex-direction: row-reverse; /* Desktop Reverse Row */ } .pd-feature-media, .pd-feature-copy { flex: 1; } } /* Mobile Specs Table Lock (CRITICAL: Card Layout, No scroll) */ @media (max-width: 767px) { .pd-table, .pd-table tbody, .pd-table tr, .pd-table td { display: block; width: 100%; } .pd-table thead { display: none; /* Hide native headers */ } .pd-table tr { background: #ffffff; border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 1rem; padding: 1rem; box-shadow: var(--shadow-sm); } .pd-table td { border-bottom: none; padding: 0.5rem 0; display: flex; flex-direction: column; /* Label on top, value below */ gap: 0.25rem; } .pd-table td::before { content: attr(data-label); font-weight: 700; font-size: var(--fs-small); color: var(--text-main); text-transform: uppercase; letter-spacing: 0.05em; } .pd-table td:not(:last-child) { border-bottom: 1px solid var(--bg-placeholder); padding-bottom: 1rem; margin-bottom: 0.5rem; } } Innovation Award Winner Chill Anytime, Anywhere. The Ultimate 2-in-1 Ice Maker Cup. Freeze, press, and sip. Experience revolutionary touch-free ice dispensing with our leak-proof silicone bottle. Say goodbye to messy ice trays and hello to pure refreshment on the go. ★★★★★ Loved by 15,000+ Summer Enthusiasts Seamless 2-in-1 Integration We combined a premium ice tray with a durable drinking bottle. Freeze ice directly in the bottle, then simply dispense it into your favorite drink or sip straight through the built-in straw. No extra steps, no messy transfers—just pure convenience whether you are at home, in the office, or out camping. Touch-Free Press-to-Release Keep your hands warm and your ice completely sanitary. Our innovative push-mechanism allows for effortless, touch-free ice dispensing. Just press the top to release perfect ice cubes directly into your beverage. Ideal for daily hydration and group gatherings where hygiene matters. Durable, Detachable & Leak-Proof Toss it in your bag with absolute confidence. Equipped with a heavy-duty sealing lid and silicone band, it prevents liquid spills from every angle. When it's time to clean, the flexible silicone body and straw are fully detachable, making the washing process incredibly simple and straightforward. Technical Specifications Feature Specification Premium Materials Food-Grade Flexible Silicone + BPA-Free PP Plastic Liquid Capacity Approx. 380 ml (12.8 oz) Dimensions (H x W) 12.7 x 9.4 cm (5.0 x 3.7 in) Empty Weight Approx. 350 g (12.3 oz) Best Used For Iced Coffee, Juice, Smoothies, Cocktails, Chilled Water, Picnics, Travel Frequently Asked Questions Is the bottle dishwasher safe? Yes! All components, including the silicone tray, lid, and straw, are fully detachable and top-rack dishwasher safe for a thorough, effortless cleaning. Will the silicone material absorb odors over time? Not at all. We use premium, high-density food-grade silicone that resists odor absorption. Simply wash it regularly, and it will keep your ice tasting completely fresh. Can I put hot beverages in this cup? While the materials are heat-resistant, this product is specifically optimized for freezing ice and serving chilled drinks. For the best experience, we recommend using it exclusively for cold beverages.