@media (max-width: 1280px) {
  body {
    padding-bottom: 56px;
  }

  .mobile-sticky-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 56px;
    min-height: 56px;

    background: var(--bg-sidebar);
    display: flex;
    justify-content: space-around;
    align-items: center;

    border-top: 1px solid var(--divider);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
    z-index: 10000;

    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
  }

  .mobile-sticky-nav a {
    flex: 1 1 0;
    height: 56px;
    min-width: 0;

    text-align: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.65rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: color 0.2s, background 0.2s;
  }

  .mobile-sticky-nav i {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2px;
  }

  .mobile-sticky-nav span {
    line-height: 1.1;
    white-space: nowrap;
  }

  .mobile-sticky-nav a:hover,
  .mobile-sticky-nav a.active {
    color: var(--text-highlight);
    background: rgba(255, 209, 0, 0.1);
  }
}

@media (min-width: 1281px) {
  .mobile-sticky-nav {
    display: none;
  }
}

.currency-mobile-dropdown {
  position: relative;
}

.currency-mobile-dropdown .btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  color:white;
  border: 1px solid white;
  border-radius: 6px;
  font-size: 0.65rem;
}

.currency-label {
  display: inline-block;
}

/* tighten dropdown menu for mobile */
.dropdown-menu {
  min-width: 140px;
  padding: 4px 0;
   background:var(--bg-sidebar);
}
.dropdown-item img {
  margin-right: 6px;
}
@media (min-width: 1280px) {
  .mobile-sticky-nav {
    display: none;
  }
}
@media (max-width: 1280px) {
  .site-wrapper {    /* or body, or .main-content, whatever wraps your pages */
    padding-bottom: 56px; 
  }
}

@media (max-width: 1280px) {
    /* targets the LiveChat bubble container */
    div[role="main"][data-lc-id="0"] {
      display: none !important;
    }
  }


