/* Enhanced Search Styles */

.abegeppme-search-form {
    position: relative;
    margin: 20px 0;
}

.abegeppme-search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    transition: border-color 0.3s;
}

.abegeppme-search-wrapper:focus-within {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.abegeppme-search-field,
.abegeppme-search-form input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 16px;
    background: transparent;
}

.abegeppme-search-submit {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.abegeppme-search-submit:hover {
    background: #005a87;
}

.abegeppme-search-icon {
    font-size: 18px;
}

.abegeppme-search-text {
    display: inline-block;
}

/* Search Suggestions */
.abegeppme-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.abegeppme-suggestions-section {
    padding: 10px 0;
}

.abegeppme-suggestions-section:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.abegeppme-suggestions-title {
    padding: 8px 15px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

.abegeppme-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.abegeppme-suggestion-item:hover {
    background: #f5f5f5;
}

.suggestion-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.suggestion-text {
    flex: 1;
    font-size: 14px;
}

.suggestion-count {
    color: #999;
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .abegeppme-search-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .abegeppme-search-submit {
        width: 100%;
        justify-content: center;
    }
    
    .abegeppme-search-suggestions {
        max-height: 300px;
    }
}

/* Integration with theme search forms */
.search-form.abegeppme-search-form,
.widget_search .abegeppme-search-form {
    width: 100%;
}

/* Hide default search text on focus */
.abegeppme-search-field::placeholder {
    color: #999;
}

.abegeppme-search-field:focus::placeholder {
    opacity: 0.5;
}

/* Search Results Display */
.abegeppme-search-results {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #e0e0e0;
}

.abegeppme-search-section {
    margin-bottom: 40px;
}

.abegeppme-search-section:last-child {
    margin-bottom: 0;
}

.abegeppme-search-section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
}

.abegeppme-vendors-list,
.abegeppme-categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.abegeppme-vendor-result,
.abegeppme-category-result {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.abegeppme-vendor-result:hover,
.abegeppme-category-result:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.abegeppme-vendor-link,
.abegeppme-category-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.abegeppme-vendor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.abegeppme-vendor-info {
    flex: 1;
}

.abegeppme-vendor-name,
.abegeppme-category-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #0073aa;
}

.abegeppme-vendor-address {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.abegeppme-category-count {
    display: inline-block;
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

.abegeppme-category-description {
    font-size: 14px;
    color: #666;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

/* Mobile Responsive for Search Results */
@media (max-width: 768px) {
    .abegeppme-vendors-list,
    .abegeppme-categories-list {
        grid-template-columns: 1fr;
    }
    
    .abegeppme-search-section-title {
        font-size: 20px;
    }
}

