/* استایل‌های سرچ ریل‌تایم */

/* افکت hover برای آیتم‌های سرچ */
.suggestions__item--product:hover {
    background-color: #f8f9fa !important;
    transition: background-color 0.2s ease;
}

/* اطمینان از نمایش dropdown ها */
.search__dropdown--suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.box_search_mob {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

/* انیمیشن لودینگ */
.box_load_search .btn-loading {
    position: relative;
    color: transparent;
}

.box_load_search .btn-loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* بهبود نمایش نتایج خالی */
.div_card_empty {
    padding: 20px;
    text-align: center;
    color: #666;
}

.empty_search {
    padding: 20px;
    text-align: center;
    color: #666;
}

/* بهبود نمایش عنوان بخش محصولات */
.suggestions__group-title {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #333;
}

/* اطمینان از responsive بودن */
@media (max-width: 768px) {
    .search__dropdown--suggestions,
    .box_search_mob {
        max-height: 300px;
    }
}

/* بهبود نمایش تصاویر */
.suggestions__item-image img {
    border: 1px solid #eee;
}

/* انیمیشن ظاهر شدن dropdown */
.search__dropdown--suggestions,
.box_search_mob {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.search__dropdown--suggestions[style*="display: block"],
.box_search_mob[style*="display: block"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
} 