.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 Microfibre Cloth 4pcs Product Specification:Material: MicrofibreDimensions: 30cm x 30cm Superior Cleaning Power: Picks up dirt, oil, and germs efficiently, often without chemicals.Absorbent: Can hold several times its weight in water and liquids.Streak-Free: Leaves glass and shiny surfaces sparkling clean.Durable & Reusable: Can be washed and used hundreds of times if cared for properly. Common Uses: Household Cleaning: dusting, wiping counters, cleaning windows. Car Detailing: polishing paint, cleaning interiors, removing spills. Electronics: cleaning screens and devices (use dry or slightly damp). Kitchen: wiping spills and drying dishes. Warranty Policy 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. 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'; }