.aim-search {
    position: relative;
}

.aim-live-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(232, 197, 71, .15);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
    z-index: 99999;
    max-height: 420px;
    overflow-y: auto;
}

.aim-live-results.show {
    display: block;
}

.aim-live-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--text, #1a1a1a);
    transition: background .15s;
    border-bottom: 1px solid rgba(0, 0, 0, .02);
}

.aim-live-item:hover,
.aim-live-item.active {
    background: rgba(232, 197, 71, .08);
    color: var(--text, #1a1a1a);
}

.aim-live-item:last-child {
    border-bottom: none;
}

.aim-live-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(0, 0, 0, .03);
    flex-shrink: 0;
}

.aim-live-info {
    flex: 1;
    min-width: 0;
}

.aim-live-title {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aim-live-title mark {
    background: rgba(232, 197, 71, .25);
    color: inherit;
    border-radius: 2px;
    padding: 0 2px;
}

.aim-live-cat {
    font-size: 11px;
    color: var(--text-soft, #8899aa);
    margin-top: 2px;
}

.aim-live-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--aim-cyan-1, #E8C547);
    white-space: nowrap;
    flex-shrink: 0;
}

.aim-live-price .aim-live-old {
    text-decoration: line-through;
    color: var(--text-soft, #8899aa);
    font-weight: 600;
    font-size: 11px;
    margin-right: 4px;
}

.aim-live-all {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 800;
    color: var(--aim-cyan-1, #E8C547);
    text-decoration: none;
    background: rgba(232, 197, 71, .05);
    border-radius: 0 0 12px 12px;
    transition: background .2s;
}

.aim-live-all:hover {
    background: rgba(232, 197, 71, .12);
    color: var(--aim-cyan-1, #E8C547);
}

.aim-live-loading {
    text-align: center;
    padding: 16px;
    color: var(--text-soft, #8899aa);
    font-size: 13px;
}

.aim-live-empty {
    text-align: center;
    padding: 20px;
    color: var(--text-soft, #8899aa);
    font-size: 13px;
}
