const nameInput = document.getElementById('child_name');
const preview = document.getElementById('personalisation-preview');
if (nameInput && preview) {
nameInput.addEventListener('input', function() {
preview.textContent = this.value || "Your child's name will appear here";
});
}