// Show holiday notice only twice per visit
(function() {
const notice = document.getElementById('holiday-notice');
const closeBtn = document.getElementById('holiday-close');
let count = parseInt(sessionStorage.getItem('holidayNoticeCount')) || 0;
if (count < 2) {
not