﻿/* ===================================================== */
/* فایل: global-search.css                               */
/* توضیح:                                                */
/* استایل مربوط به جستجوی سراسری (Global Search)        */
/* ===================================================== */

/* باکس اصلی نتایج جستجو */
.search-result-box {
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid #ddd;
    z-index: 9999;
}

/* ----------------------------------------------------- */
/* هر آیتم نتیجه جستجو                                   */
/* ----------------------------------------------------- */
.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

    /* Hover روی هر نتیجه */
    .search-item:hover {
        background-color: #f5f5f5;
    }

/* ----------------------------------------------------- */
/* آیکن نوع نتیجه                                        */
/* ----------------------------------------------------- */
.search-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* ----------------------------------------------------- */
/* تصویر محصول                                           */
/* ----------------------------------------------------- */
.search-image {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* ----------------------------------------------------- */
/* بخش متنی نتیجه                                        */
/* ----------------------------------------------------- */
.search-texts {
    display: flex;
    flex-direction: column;
}

/* عنوان نتیجه */
.search-title {
    font-weight: bold;
    font-size: 14px;
}

/* زیرعنوان نتیجه */
.search-subtitle {
    font-size: 12px;
    color: #777;
}

/* ----------------------------------------------------- */
/* هایلایت متن جستجو                                     */
/* ----------------------------------------------------- */
mark {
    background-color: #ffe58f;
    padding: 0 2px;
    border-radius: 2px;
}
.search-group {
    background: #f1f3f5;
    padding: 6px 10px;
    font-weight: bold;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #ddd;
}
