/* Wrapper جستجو */
#live-search-wrap {
    position: relative;
    max-width: 600px;
    font-family: 'IRANSans', 'Arial', sans-serif;
    border: 1px solid #cdcdcd;
    /* background-color: #F5F5F5; */
    background-color: var(--input-bg);
    border-radius: 9px;
    overflow: hidden;
    width: 100%;
    z-index: 1;
}
/* Input جستجو */
#live-search-input {
    width: 100%;
    padding: 10px 45px 10px 18px; /* فضای سمت راست برای آیکون */
    /* border: 2px solid #0098FD;
    border-radius: 30px; */
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 400;
    /* background: #fff; */
    transition: all 0.3s ease;
}

#live-search-input:focus {
    /* background-color: #fff; */
    /* border-color: #0097FF; */
    outline: none;
}

/* SVG آیکون ذره‌بین */
.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
}

.search-icon svg {
    width: 20px;
    height: 20px;
    /* fill: #888; */
    fill: var(--svg-color);
    stroke: var(--svg-color);
    transition: fill 0.3s ease;
}

/* تغییر رنگ آیکون هنگام فوکوس */
#live-search-input:focus + .search-icon svg {
    fill: #0097FF;
}

/* لودر چرخان */
.loader-liveSerach {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: none;
    pointer-events: none;
}

.loader-liveSerach svg {
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* نتایج */
#live-search-results {
    display: none; /* اول پنهان */
    /* position: absolute; */
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-re-live);
    border-top: 1px solid #ddd;
    margin-top: 0px;
    z-index: 999;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    /* max-height: 320px; */
    overflow-y: auto;
    /* animation: fadeIn 0.2s ease-in-out; */
}

/* انیمیشن ظاهر شدن */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* لیست نتایج */
#live-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#live-search-results li {
    border-bottom: 1px solid #eee;
}

#live-search-results li:last-child {
    border-bottom: none;
}

/* لینک نتایج */
#live-search-results li a {
    display: flex;
    align-items: center;
    padding: 5px 0px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s ease, color 0.2s ease;
    column-gap: 10px;
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 400;
}

#live-search-results li a:hover {
    background: var(--bg-hover);
    color: #0097FF;
}
#live-search-results p {
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 400;
}
/* تصویر شاخص */
#live-search-results img {
    border-radius: 6px;
    margin-right: 12px;
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: block;
}

/* لینک نمایش بیشتر */
#live-search-results p a {
    display: block;
    text-align: center;
    padding: 6px 10px;
    background: #0097FF;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    margin: 3px 3px;
    font-weight: bold;
    transition: background 0.2s ease;
    font-size: 13px;
}

#live-search-results p a:hover {
    background: #007ccf;
}

/* موبایل */
@media (max-width: 480px) {
    #live-search-wrap {
        max-width: 100%;
        padding: 0 12px;
    }

    #live-search-input {
        font-size: 14px;
        padding: 10px 40px 10px 14px;
    }

    .search-icon svg, .loader-liveSerach svg {
        width: 18px;
        height: 18px;
    }
}
