Deesu Store

Deesu Digital Store

Official WooCommerce Store. Add products in your WordPress Admin panel to publish instantly.

Product Catalog

Ready for Product Uploads

No demo products are hardcoded. As soon as you add products in your WordPress Admin panel under WooCommerce → Products → Add New, they will automatically appear here!

Admin URL: https://deesu.org/wp-admin/
Menu: Products → Add New

function initTheme() {
const htmlEl = document.documentElement;
const toggleBtn = document.getElementById(‘themeToggleBtn’);
const themeIcon = document.getElementById(‘themeIcon’);
const savedTheme = localStorage.getItem(‘deesu_theme’) || (window.matchMedia(‘(prefers-color-scheme: dark)’).matches ? ‘dark’ : ‘light’);
applyTheme(savedTheme);

function applyTheme(theme) {
htmlEl.setAttribute(‘data-theme’, theme);
localStorage.setItem(‘deesu_theme’, theme);
if (themeIcon) themeIcon.className = theme === ‘dark’ ? ‘fas fa-sun’ : ‘fas fa-moon’;
}

if (toggleBtn) {
toggleBtn.addEventListener(‘click’, () => {
const current = htmlEl.getAttribute(‘data-theme’) || ‘dark’;
applyTheme(current === ‘dark’ ? ‘light’ : ‘dark’);
});
}
}

function toggleMobileNav() {
const nav = document.getElementById(‘mainNavLinks’);
if (nav) nav.classList.toggle(‘active’);
}

document.addEventListener(‘DOMContentLoaded’, initTheme);