{#if tagDropdownOpen}
{#if filteredAvailableTags.length > 0 || tagSearchQuery || allBrands.length > 0 || allVariants.length > 0}
{#if allBrands.length > 0} {/if} {#if allVariants.length > 0} {/if}
{#if activeTab === "categories"} {#if filteredAllTags.length > 0}
{#each filteredAllTags as tagObj} {@const isSelected = selectedTags.includes(tagObj.text)} {/each}
{:else}
{tagSearchQuery ? "No categories match your search" : "No available categories"}
{/if} {:else if activeTab === "brands" && allBrands.length > 0} {#if filteredAllBrands.length > 0}
{#each filteredAllBrands as brand} {@const isSelected = selectedBrands.includes(brand)} {/each}
{:else}
{tagSearchQuery ? "No brands match your search" : "No available brands"}
{/if} {:else if activeTab === "variants" && allVariants.length > 0} {#if filteredAllVariants.length > 0}
{#each filteredAllVariants as variant} {@const isSelected = selectedVariants.includes(variant)} {/each}
{:else}
{tagSearchQuery ? "No variants match your search" : "No available variants"}
{/if} {/if}
{/if} {#if selectedTags.length > 0 || selectedBrands.length > 0 || selectedVariants.length > 0 || compactMode}
{/if}
{/if}
{#each selectedTags as tagText} {/each} {#each selectedBrands as brand} {/each} {#each selectedVariants as variant} {/each} {#if compactMode} {/if}