.systhetics-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #0000000f;
    border-radius: 3px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 350px;
    overflow-y: auto;
    margin-top: 10px;
}

.systhetics-search-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #0000000f;
    transition: background-color 0.2s ease;
}

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

.systhetics-search-item:hover {
    background: #f3f3f3;
    color: #1a202c;
}

.systhetics-search-item .title {
    font-weight: 500;
    font-size: 0.95em;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.systhetics-search-item .price {
    font-size: 0.9em;
    color: #4a5568;
    white-space: nowrap;
}