.truncated-text { max-height: 120px; overflow: hidden; transition: max-height 0.4s ease; line-height: 1.6; color: #002D57; } @media (min-width: 768px) { .truncated-text { max-height: 250px; padding: 0px 100px; } } @media (max-width: 767px) { .truncated-text { max-height: 200px; padding: 0px 10px; } } .truncated-text.expanded { max-height: 3000px; } .toggle-btn { display: inline-block; padding: 10px 32px; margin-top: 20px; border: 2px solid #002D57; border-radius: 50px; background-color: transparent; color: #002D57; font-weight: bold; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.5s ease; } .toggle-btn:hover { background-color: #002D57; color: #fff; } .btn-wrapper { text-align: center; margin: 10px 0; } .product-desc h1{ font-size: 28px; font-weight: heavy; margin: 24px 0 12px; padding-bottom: 6px; } .product-desc h3 { font-size: 18px; font-weight: bold; margin: 24px 0 12px; padding-bottom: 6px; } .product-desc .promo-title { font-weight: bold; margin: 16px 0 8px; } .product-desc ul { margin: 8px 0 16px 20px; padding: 0; } .product-desc li { margin: 6px 0; line-height: 1.6; } Description BBELL Multipurpose Kitchen Scissors More than just scissors. Your kitchen's secret weapon. From snipping herbs to splitting soft bones, our kitchen scissors are the versatile, precision tool you'll reach for a dozen times a day. Engineered for power, designed for comfort. ✨ Snip herbs, trim meat, cut pizza & dough Open packages & bottles Chicken feet & prawn Dishwasher Safe & Easy-Clean Design Ergonomic Comfort Grip “Drawer chaos, be gone! The secret to an efficient kitchen isn't just a great tool—it's a tool you can actually find. BBELL Kitchen Scissor with their magnetic holder stick to your fridge, so they're always ready for action. · Convenience:"The 10-second herb chop. No board, no knife, no mess."· Precision:"Create the perfect garnish or trim the exact amount of fat."· Durability:"Forged, not stamped. Built for a lifetime of snips, cuts, and open bottle."· Safety:"Tackle tough tasks with control, keeping your fingers safe and secure." NOT SUITABLE FOR HARD BONES Warranty Policy 1. Buyers must check all the items within 7 days from the date they receive the parcel. All damaged items can be sent back to company for proper professional checking. We will refund on product that proves defective because of improper material or workmanship before they use it. 📌 1 Year Warranty Provided GOODS SOLD ARE NON REFUNDABLE & RETURNABLE See More function toggleDesc() { const content = document.getElementById('descContent'); const btn = document.getElementById('toggleBtn'); content.classList.toggle('expanded'); btn.innerText = content.classList.contains('expanded') ? 'See Less' : 'See More'; }