<style>
.detached-submenu {
  display: none !important;            /* default hidden, beats theme rules */
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  min-width: 220px;
  z-index: 999999;
  border-top: 3px solid #ef6c1a;
  position: fixed;
}
.detached-submenu.is-open { display: block !important; }   /* only open when JS says so */

.detached-submenu li { list-style: none; margin: 0; }
.detached-submenu li a {
  display: block;
  padding: 10px 18px;
  color: #ef6c1a;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.3;
}
.detached-submenu li a:hover { background: #f5f5f5; color: #1f4e8c; }
</style>

<script>
document.addEventListener('DOMContentLoaded', function () {
  var triggers = document.querySelectorAll(
    '#menu-main-menu .menu-item-has-children, #menu-main-menu-1 .menu-item-has-children'
  );

  triggers.forEach(function (li) {
    var sub = li.querySelector('.sub-menu');
    if (!sub) return;

    sub.classList.remove('sub-menu');
    sub.classList.add('detached-submenu');
    sub.removeAttribute('style');
    document.body.appendChild(sub);

    var hideTimer = null;

    function show() {
      clearTimeout(hideTimer);
      var r = li.getBoundingClientRect();
      sub.style.left = r.left + 'px';
      sub.style.top  = r.bottom + 'px';
      sub.classList.add('is-open');
    }
    function scheduleHide() {
      clearTimeout(hideTimer);
      hideTimer = setTimeout(function () { sub.classList.remove('is-open'); }, 200);
    }

    li.addEventListener('mouseenter', show);
    li.addEventListener('mouseleave', scheduleHide);
    sub.addEventListener('mouseenter', show);
    sub.addEventListener('mouseleave', scheduleHide);

    window.addEventListener('resize', function () {
      if (sub.classList.contains('is-open')) show();
    });
    window.addEventListener('scroll', function () {
      if (sub.classList.contains('is-open')) show();
    }, { passive: true });
  });
});
</script>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//valuebiz.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://valuebiz.com/post-sitemap.xml</loc>
		<lastmod>2026-03-18T14:33:47+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://valuebiz.com/page-sitemap.xml</loc>
		<lastmod>2026-05-01T16:55:24+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://valuebiz.com/product-sitemap.xml</loc>
		<lastmod>2026-01-19T20:55:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://valuebiz.com/product_cat-sitemap.xml</loc>
		<lastmod>2026-01-19T20:55:08+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->