#SearchSuggest {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.search-suggestion {
    padding: 8px 12px;
    cursor: pointer;
}

.search-suggestion:hover {
    background-color: #f5f5f5;
}

.suggestion-item {
    display: flex;
    flex-direction: column;
}

.product-name {
    color: #333;
    font-weight: bold;
}

.product-category {
    color: #666;
    font-size: 0.9em;
}

.search-suggestion a {
    text-decoration: none;
    color: inherit;
}
