/*--------------------------------------------------------------
>>> MENU SEARCH
----------------------------------------------------------------
Quick search functionality in mobile menu
--------------------------------------------------------------*/

.mobile-menu-search {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-search input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-menu-search input::placeholder {
    color: #9ca3af;
}

.mobile-menu-search input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.mobile-menu-search {
    position: relative;
}

.mobile-menu-search::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    pointer-events: none;
}

/* No Results Message */
.menu-no-results {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.menu-no-results i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
    display: block;
}

.menu-no-results p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}
/* Hide on Desktop */
@media (min-width: 992px) {
    .mobile-menu-search {
        display: none;
    }
}
