.adv-search-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

#advanced-search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

#advanced-search-input:focus {
    border-color: #4a90d9;
}

#advanced-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.adv-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    gap: 12px;
}

.adv-item:last-child {
    border-bottom: none;
}

.adv-item:hover {
    background: #f8f9fa;
}

.adv-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.adv-item-info {
    flex: 1;
    min-width: 0;
}

.adv-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adv-item-price {
    font-size: 13px;
    color: #27ae60;
}

.adv-loading,
.adv-no-result {
    padding: 16px;
    text-align: center;
    color: #888;
    font-size: 14px;
}
