Skip to content
document.addEventListener('click', function(e) {
var toggle = e.target.closest('.review-toggle');
if (!toggle) return;
var body = toggle.previousElementSibling;
if (!body) return;
body.classList.toggle('expanded');
var p = toggle.querySelector('p');
if (p) p.textContent = body.classList.contains('expanded') ? 'Read less ↑' : 'Read more ↓';
});