/**
 * Mobile Bottom Navigation - Simple & Clean
 */

/* Hide on desktop */
.mobile-bottom-nav { 
  display: none; 
}

/* Show only on mobile */
@media (max-width: 1024px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }
  
  .mobile-bottom-nav-item {
    flex: 1;
    text-align: center;
  }
  
  .mobile-bottom-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 5px;
    height: 50px;
    justify-content: space-between;
  }
  
  .mobile-bottom-nav-item .mas,
  .mobile-bottom-nav-item [class^="mas-icon-"],
  .mobile-bottom-nav-item [class*="icon-"] {
    font-size: 20px;
    color: #6A90A5;
    margin-bottom: 2px;
  }
  
  .mobile-bottom-nav-item .mobile-nav-text {
    font-size: 10px;
    color: #333;
    height: 15px;
    bottom: 0;
  }

    span.mas.icon-search.mobile,
    span.mas.icon-account_circle.mobile,
    span.mas-icon-house.nav-mobile,
    span.mas-icon-mas-chat.mobile {
        color: var(--primary-color);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mas.icon-favorite.mobile,
    .mas.icon-account_circle {
         font-size: 33px;   
    }
    
    span.mas.icon-search.mobile{
    font-size: 30px;    
    }
    
    span.mas-icon-house.nav-mobile,
    span.mas-icon-mas-chat.mobile {
        font-size: 24px;
    }

    span.mas-icon-mas-chat.mobile {
        font-weight: 600;
    }


span.mas-wishlist-count.wishlist-count-bottom.loaded {
    top: 35% !important;
}


}

















