@media (max-width: 768px) {
    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 48px;
        background-color: var(--header-menu-bg-default);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 999;
    }

  .mobile-bottom-bar .mobile-btn img {
    width: 24px;
    height: 24px;
  }

  .mobile-btn.menu-btn {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
  }

  .mobile-btn.menu-btn a {
    width: 24px;
    height: 15px;
    display: block;
    background: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }


  .mobile-btn.truck img {
    width: 31px;
    height: 24px;
  }

  /* Menu vertical */
    .footer-mobile-menu {
        position: fixed;
        bottom: 48px;
        left: 0;
        width: 100%;
        max-height: 50vh;
        background-color: var(--header-menu-bg-default);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 998;
        overflow-y: auto;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        padding: 16px 0;
    }

  .footer-mobile-menu.menu-open {
    transform: translateY(0);
  }

    .footer-mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
        max-height: 50vh;
        overflow-y: auto;
    }

  .footer-mobile-menu li {
    margin: 10px 0;
  }

  .footer-mobile-menu a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .footer-mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }
}