.menu-icons .nav-search {
    margin-right: 30px !important;
    /* search ko thoda aage karo */
}

.wishlist {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
}

.wishlist i {
    font-size: 20px;
}

.wishlist span {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #88c244;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Hide wishlist in mobile view */
@media (max-width: 767px) {
    .wishlist {
        display: none !important;
    }
}