@media (min-width: 950px){
    .desktop-navbar{
        display: flex !important;
    }
    .mobile-navbar{
        display: none !important;
    }
}

@media (max-width: 950px){
    .desktop-navbar{
        display: none !important;
    }
    .mobile-navbar{
        display: flex !important;
    }
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

.sticky-products {
    position: sticky;
    top: 85px;
    padding-top: 10px;
    padding-bottom: 5px;
    z-index: 1000;
    background-color: white;
  }

.sticky-products2 {
    position: sticky;
    top: 140px;
    padding-top: 0px;
    z-index: 1000;
    margin-bottom: 10px;
    background-color: white;
  }
