Ultimate Cleaner Crew Mega Pack (24 Cleaners - Otocinclus, Nerite & Shrimp)
:root { --primary-color: #006d77; --secondary-color: #83c5be; --accent-color: #e29578; --bg-color: #edf6f9; --text-color: #2d3436; --white: #ffffff; --success: #2ecc71; } body { fo nt-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text-color); background-color: var(--bg-color); margin: 0; padding: 0; } .container { max-width: 900px; margin: 40px auto; background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } /* Typography */ h1 { color: var(--primary-color); text-align: center; font-size: 2.2rem; margin-bottom: 10px; } h2 { color: var(--primary-color); border-bottom: 2px solid var(--secondary-color); padding-bottom: 10px; margin-top: 40px; } h3 { color: var(--primary-color); margin-top: 25px; } .subtitle { text-align: center; font-size: 1.2rem; color: #555; margin-bottom: 30px; font-style: italic; } /* Product Box */ .product-highlight { background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%); border: 2px solid var(--secondary-color); border-radius: 12px; padding: 25px; margin-bottom: 30px; } .product-highlight strong { color: var(--primary-color); } .specs { background: var(--primary-color); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; display: inline-block; margin-bottom: 15px; } /* COMBO BLOCK STYLES - Updated for Symmetry (2x2 Grid) */ .item-list { list-style: none; padding: 0; display: grid; /* Thay đổi logic grid: Sử dụng minmax lớn hơn để ép về 2 cột trên desktop (900px container) */ grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; /* Tăng khoảng cách một chút */ margin-top: 20px; } .item-list li { background-color: rgba(255, 255, 255, 0.9); border: 1px solid #b2dfdb; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; /* Chuyển sang dọc để căn giữa */ align-items: center; /* Căn giữa theo chiều ngang */ text-align: center; /* Căn giữa chữ */ transition: transform 0.2s, box-shadow 0.2s; height: 100%; /* Đảm bảo các thẻ cao bằng nhau */ } .item-list li:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,109,119, 0.15); background-color: #fff; border-color: var(--primary-color); } .item-list li::before { content: "🦐"; margin-right: 0; /* Xóa margin phải vì đã xuống dòng */ margin-bottom: 10px; /* Thêm khoảng cách dưới icon */ font-size: 2.5rem; /* Icon to hơn chút */ line-height: 1; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1)); } .item-list li span { display: flex; flex-direction: column; width: 100%; } .item-list li strong { color: var(--primary-color); font-size: 1.15rem; margin-bottom: 8px; display: block; } .item-list li small { color: #555; line-height: 1.5; font-size: 0.95rem; } .item-list li:nth-child(2)::before { content: "🐟"; } /* Otocinclus */ .item-list li:nth-child(4)::before { content: "🐌"; } /* Snail */ /* Benefits Grid */ .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin: 20px 0; } .benefit-card { background-color: #f0fff4; border-left: 5px solid var(--success); padding: 15px; border-radius: 5px; font-weight: bold; color: #27ae60; text-align: center; } /* Image */ .image-container { text-align: center; margin: 30px 0; } .image-container img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.15); } /* Key Takeaways Box */ .key-takeaways { background-color: #fff3cd; border: 1px solid #ffeeba; padding: 20px; border-radius: 8px; } .key-takeaways ul { margin: 0; padding-left: 20px; } /* Water Parameters Grid */ .params-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-top: 20px; } .param-box { background: var(--primary-color); color: white; padding: 15px; border-radius: 8px; text-align: center; } .param-value { font-size: 1.4rem; font-weight: bold; display: block; margin-top: 5px; } /* Table */ .table-responsive { overflow-x: auto; } table { width: 100%; border-collapse: collapse; margin: 20px 0; background-color: white; } th, td { padding: 12px 15px; border: 1px solid #ddd; text-align: left; } thead { background-color: var(--primary-color); color: white; } tr:nth-child(even) { background-color: #f2f2f2; } tr:hover { background-color: #ddd; } /* Responsive */ @media (max-width: 600px) { .container { padding: 20px; margin: 10px; } h1 { font-size: 1.8rem; } /* COMBO LIST MOBILE FIX */ .item-list { grid-template-columns: 1fr; gap: 15px; } .item-list li { /* Switch back to row layout for mobile list */ flex-direction: row; align-items: center; /* Center align the icon vertically with the text block */ text-align: left; padding: 15px; } /* The icon */ .item-list li::before { margin-right: 15px; margin-bottom: 0; font-size: 2rem; } /* The text container (span) */ .item-list li span { width: 100%; /* Take remaining width */ /* Ensure the text inside the span is always left-aligned */ align-items: flex-start; } /* Ensure text elements are left-aligned (overriding desktop center) */ .item-list li strong, .item-list li small { text-align: left; } .item-list li strong { font-size: 1.1rem; } .item-list li small { font-size: 0.9rem; } /* PARAMETERS GRID FIX: 2 columns max */ .params-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); } /* BENEFITS GRID FIX: 1 column */ .benefits-grid { grid-template-columns: 1fr; } /* Table optimization: Convert table to card format */ table, thead, tbody, th, td, tr { display: block; } thead tr { position: absolute; top: -9999px; left: -9999px; } td { border: none; border-bottom: 1px solid #eee; position: relative; padding-left: 50%; text-align: right; } td::before { content: attr(data-label); position: absolute; left: 6px; width: 45%; padding-right: 10px; white-space: nowrap; font-weight: bold; text-align: left; color: var(--primary-color); } .table-responsive { overflow-x: hidden; } } Algae Eating Shrimp and Snail Effective Algae Control for Aquariums – A natural, low-maintenance cleaning crew! Sizes: Shrimp 1cm | Snail 0.5cm | Fish 2cm 📦 What's Included: 10 x Ghost ShrimpTransparent helpers that love grazing on algae. 2 x OtocinclusHardy and peaceful, perfect for planted tanks. 10 x North Queensland ShrimpActive algae grazers from Aussie waters. 2 x Nerite SnailA powerful algae eater that won’t breed in freshwater. ✅ Safe for most tanks ✅ Natural cleaning ✅ No chemicals needed Perfect for keeping your aquarium clean, naturally! The Algae Eating Shrimp, with a translucent body and distinctive red markings, swims among green plants. We know how hard it is to fight algae in aquariums. Keeping the water clear seems like a never-ending job. But, we've found a natural way to help – the Algae Eating Package. These small creatures are changing the game for a clean, algae-free tank. At Micro Aquatic Shop, we're excited to share these shrimp with you. They come from northern Queensland and are great at eating many types of algae. You won't need harsh chemicals or spend hours cleaning your tank. 💡 Key Takeaways Algae Eating Shrimp are a natural and effective solution for controlling algae. These shrimp are adept at consuming a wide range of algae types, including stubborn varieties. Helps maintain crystal-clear water without chemicals. Micro Aquatic Shop is a leading supplier of these remarkable cleaners. Low-maintenance and community-friendly addition to any aquarium. Understanding the Role of Algae Eaters We love our aquariums and work hard to keep them balanced. Algae Eating Shrimp are key to this balance. They help keep our tanks looking great and healthy. Natural Ecosystem Balance Algae are good for our tanks, giving food and oxygen. But too much can be bad. Our shrimp friends eat the extra algae, keeping things right. Types of Problematic Algae Targeted Green Algae: Spreads fast and covers everything. Brown Algae: Looks like a slimy, brown film. Red Algae: Brush-like strands that can take over. Optimal Water Parameters Shrimp are very sensitive to water quality. Keep the water just right: Temperature 20-26°C pH Level 6.5-8.0 Hardness 4-8 dGH Ammonia/Nitrite 0 ppm Care & Maintenance Diet & Feeding Give them high-quality algae wafers or sinking pellets. Offer boiled/blanched veggies like zucchini, spinach, or lettuce. Adding a shrimp-safe liquid supplement can also help. Tank Setup Use lots of plants like Java moss or Anubias. Add rocks and driftwood for natural feel. Ensure gentle water flow and oxygen. Keep lighting moderate; shrimp prefer dim spots. Compatibility Setting up a thriving aquarium means choosing the right tank mates. These invertebrates are peaceful and great for community tanks. Beneficial Tank Mates Compatibility Advantages Peaceful Community Fish (Tetras < 2cm, Corydoras) High Coexist harmoniously, enhance natural aquascaping Freshwater Invertebrates High Contribute to a balanced ecosystem, complement natural algae control Bottom-Dwelling Fish (Loaches, Plecos) Moderate Occupy different niches, maintain overall tank cleanliness