#vic-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border: 1px solid #e0d8cc;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-height: 480px;
    overflow-y: auto;
    display: none;
}
.vic-search-results { list-style: none; margin: 0; padding: 6px 0; }
.vic-search-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.vic-search-item a:hover { background: #faf7f2; }
.vic-search-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}
.vic-search-info { display: flex; flex-direction: column; gap: 2px; }
.vic-search-name { font-size: 13px; font-weight: 600; color: #333; line-height: 1.3; }
.vic-search-price { font-size: 12px; color: #8b6f47; font-weight: 500; }
.vic-search-loading, .vic-search-empty {
    padding: 14px 16px;
    font-size: 13px;
    color: #999;
    text-align: center;
}
.vic-search-footer {
    padding: 8px 14px;
    border-top: 1px solid #f0ebe3;
    text-align: center;
}
.vic-search-footer a { font-size: 12px; color: #8b6f47; text-decoration: none; font-weight: 600; }
.vic-search-footer a:hover { text-decoration: underline; }
