.search-suggestions {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    max-height: 420px;
    overflow-y: auto;
    display: none;
    direction: rtl;
}

.search-suggestions.active {
    display: block;
}

.search-suggestions__loading,
.search-suggestions__empty {
    padding: 15px 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.search-suggestions__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-suggestions__item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s ease;
    text-decoration: none;
    color: #333;
}

.search-suggestions__item:hover {
    background: #f9f9f9;
    text-decoration: none;
    color: #333;
}

.search-suggestions__item:last-child {
    border-bottom: none;
}

.search-suggestions__image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    object-fit: contain;
    border-radius: 4px;
    margin-left: 12px;
    background: #f8f8f8;
    border: 1px solid #eee;
}

.search-suggestions__info {
    flex: 1;
    min-width: 0;
}

.search-suggestions__title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.search-suggestions__subtitle {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.search-suggestions__subtitle span {
    color: #fcbe00;
}
