/* --- Searchable Select (Tag Filter) --- */
.searchable-select-trigger {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    border: 1.5px solid rgba(115, 4, 36, 0.42);
    background: #f9f8f8;
    color: #3a3a3a;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 48px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.searchable-select-trigger .fa-chevron-down {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #8d3550;
    font-size: 0.95rem;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.searchable-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(115, 4, 36, 0.2);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.searchable-select-dropdown.show {
    display: block;
}

.searchable-select-search {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.tag-search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.95rem;
    padding: 8px 0;
    background: transparent;
}

.searchable-select-options {
    max-height: 260px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

.searchable-select-options li {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: #3a3a3a;
    cursor: pointer;
    transition: background 0.2s ease;
}

.searchable-select-options li:hover {
    background: #f5e9ed;
    color: #5c0120;
}

.searchable-select-options li.selected {
    background: #5c0120;
    color: #fff;
}

.searchable-select-options li.hidden {
    display: none;
}

.clear-option {
    border-bottom: 1px solid #eee;
    color: #d9534f !important;
    font-weight: 600;
}

.clear-option:hover {
    background: #f8d7da !important;
    color: #c9302c !important;
}
