#apsf-search-filter {
    width: 100%;
    max-width: 300px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#apsf-search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#apsf-suggestions {
    border: 1px solid #ccc;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-radius: 5px;
}

#apsf-suggestions div {
    padding: 7px 10px;
    cursor: pointer;
    font-size: 14px;
}

#apsf-suggestions div:hover {
    background-color: #f7f7f7;
}

#apsf-categories h4 {
    margin: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

#apsf-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#apsf-categories li {
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: background 0.2s;
}

#apsf-categories li:hover {
    background: #fafafa;
}

#apsf-categories li img {
    width: 20px;
    height: 20px;
    margin-left: 6px;
}

#apsf-results {
    margin-top: 20px;
}

.apsf-product-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.apsf-product-item img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    object-fit: cover;
    border-radius: 4px;
}
