.afr-search-results {
    display: none;
    max-width: 550px;
    margin: 10px auto 0;
    background: #fff;
    border-radius: 8px;
    max-height: 335px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.afr-search-results.afr-search-results--open {
    display: block;
}

.afr-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

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

.afr-search-item:hover {
    background: #f7f7f7;
    color: #222;
}

.afr-search-item img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.afr-search-item__info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.afr-search-item__name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.afr-search-item__price {
    font-size: 13px;
    color: #6fbf73;
    font-weight: 600;
    margin-top: 2px;
}

.afr-search-empty,
.afr-search-loading {
    padding: 15px;
    font-size: 14px;
    color: #888;
    text-align: center;
}