/* ====================================
   FILTER BUTTONS
==================================== */

.th-search-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.th-search-filter__btn {
    font-family: var(--e-global-typography-ab28ef0-font-family), Sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #fff !important;
    background: transparent;
	border-bottom: 2px solid #001A19;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.th-search-filter__btn:hover,
.th-search-filter__btn.is-active {
    border-bottom: 2px solid #fff;
}

/* ====================================
   SEARCH CHIPS
==================================== */

.th-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.th-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: #fff;
    border: 1px solid #fff;
    text-decoration: none !important;
    font-family: var(--e-global-typography-ab28ef0-font-family), Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #001A19 !important;
    transition: opacity 0.2s ease;
}

.th-search-chip__remove {
    font-size: 16px;
    line-height: 1;
}