/**
 * Jet Smart Filters Autocomplete with JetEngine Relations
 */

/* Select2 container styling */
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 40px;
    padding: 6px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    color: #333;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

/* Dropdown styling */
.select2-container--default .select2-results__option {
    padding: 8px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0073aa;
    color: white;
}

/* Term result container */
.jsf-term-result {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jsf-term-name {
    font-weight: 500;
    color: #333;
    flex: 1;
}

/* Count badges container */
.jsf-term-counts {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

/* Base count badge styling */
.jsf-term-count {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.85em;
    font-weight: normal;
    line-height: 1.2;
}

/* Direct count (from taxonomy itself) */
.jsf-direct-count {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #1976d2;
}

/* Related count (from JetEngine relations) */
.jsf-related-count {
    background-color: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #7b1fa2;
}

/* Highlighted state */
.select2-container--default .select2-results__option--highlighted .jsf-direct-count {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1976d2;
}

.select2-container--default .select2-results__option--highlighted .jsf-related-count {
    background-color: rgba(255, 255, 255, 0.9);
    color: #7b1fa2;
}

.select2-container--default .select2-results__option--highlighted .jsf-term-name {
    color: white;
}

/* Loading state */
.select2-container--default .select2-results__option.loading-results {
    text-align: center;
    color: #999;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        height: 44px;
        font-size: 16px;
    }

    .select2-dropdown {
        font-size: 16px;
    }

    .jsf-term-count {
        font-size: 0.8em;
        padding: 1px 4px;
    }
}

/* Integration with Jet Smart Filters */
.jet-filter-select select[data-jsf-autocomplete="true"] {
    width: 100%;
}

/* Clear button */
.select2-container--default .select2-selection__clear {
    margin-right: 8px;
    font-size: 18px;
}

/* Tooltip for counts */
.jsf-term-count[title]:hover {
    cursor: help;
    opacity: 0.8;
}