.awffs-search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 20px auto;
}

.awffs-search-container {
    position: relative;
    flex: 1;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.awffs-search-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #666;
}

#awffs-search-input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 8px;
    font-size: 16px;
    outline: none;
    margin-right: 10px;
}

.awffs-close-icon {
    color: #333;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}

.awffs-close-icon:hover {
    color: #000;
}

.awffs-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
    padding: 15px;
    width: 100%;
}

.awffs-result-section {
    margin-bottom: 20px;
}

.awffs-section-title {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.awffs-category-item {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.awffs-products .awffs-product-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.awffs-product-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 10px;
}

.awffs-product-link {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.awffs-product-link:hover {
    text-decoration: underline;
}

.awffs-see-all {
    text-align: right;
    margin-top: 10px;
}

.awffs-see-all-link {
    font-size: 14px;
    color: #777;
    text-decoration: none;
}

.awffs-see-all-link:hover {
    text-decoration: underline;
}

.awffs-no-results {
    margin: 0;
    padding: 10px 0;
    text-align: center;
    color: #999;
    font-style: italic;
}
