query.length >= 2 && (showResults = true)} onblur={handleBlur} placeholder={placeholder ?? translations.search.noResults} class="w-full rounded-lg border border-gray-300 bg-white py-2.5 pl-10 pr-4 text-sm text-gray-900 placeholder-gray-500 transition-colors focus:border-primary-500 focus:outline-none focus:ring-1 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-800 dark:text-gray-100 dark:placeholder-gray-400" aria-label={placeholder ?? translations.search.noResults} role="combobox" aria-expanded={showResults} aria-haspopup="listbox" />
{#if isSearching} {:else} {/if}
{#if showResults}
{#if results.length === 0}
{translations.search.noResults.replace('{query}', query)}
{:else}
{translations.search.resultsCount.replace('{count}', String(results.length))}
{/if}
{/if}