.WaGadgetOnly{
        background-repeat: no-repeat !important;
    background-position: center !important;
}
.gadgetStyleNone .gadgetStyleBody p strong font span{
    white-space:inherit !important;
}
/* Desktop only fixed menu */
@media (min-width: 768px) {
  .sticky-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff; /* match your site */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  /* Push page content down so menu doesn't cover it */
  body {
    margin-top: 80px; /* adjust based on menu height */
  }
}

/* Mobile devices (less than 768px) keep normal flow */
@media (max-width: 767px) {
  .sticky-menu {
    position: relative !important;
    box-shadow: none;
  }

  body {
    margin-top: 0;
  }
