.search-select__trigger{border:1px solid var(--border);border-radius:var(--radius-sm);background:var(--surface);min-width:140px;min-height:34px;color:var(--ink);font:400 12px/1.25 var(--sans);cursor:pointer;align-items:center;gap:8px;padding:4px 10px;transition:border-color .12s,background .12s,box-shadow .12s;display:inline-flex}.search-select__trigger:hover:not(:disabled){border-color:var(--mute-2)}.search-select__trigger.has-value{color:var(--ink)}.search-select__trigger:focus-visible,.search-select__trigger.is-open{border-color:var(--brand-text);box-shadow:0 0 0 3px var(--brand-soft);outline:none}.search-select__trigger:disabled{cursor:not-allowed;opacity:.55}.search-select__value{text-align:left;flex-direction:column;flex:1;min-width:0;display:flex}.search-select__value>span,.search-select__value small{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.search-select__value small{color:var(--ink-3);font-size:var(--fs-xs);margin-top:2px;font-weight:400}.search-select__count{background:var(--brand-soft-2);color:var(--brand-text);font-size:var(--fs-xs);font-variant-numeric:tabular-nums;border-radius:99px;flex:none;padding:1px 6px;font-weight:600}.search-select__chevron{color:currentColor;flex:none;width:12px;height:12px;transition:transform .12s}.search-select__trigger.is-open .search-select__chevron{transform:rotate(180deg)}.search-select__popup{z-index:var(--z-portal);border:1px solid var(--border);border-radius:var(--radius);background:var(--surface);max-height:320px;box-shadow:var(--shadow-md);color:var(--ink);font-family:var(--sans);flex-direction:column;display:flex;overflow:hidden}.search-select__searchbar{z-index:1;border-bottom:1px solid var(--border);background:var(--surface);align-items:center;gap:8px;padding:8px 10px;display:flex;position:sticky;top:0}.search-select__search-wrap{flex:1;min-width:0;position:relative}.search-select__search-wrap>svg{width:14px;height:14px;color:var(--ink-3);pointer-events:none;position:absolute;top:50%;left:10px;transform:translateY(-50%)}.search-select__search-wrap input{border:1px solid var(--border);border-radius:var(--radius-sm);background:var(--surface-2);width:100%;height:34px;color:var(--ink);font:400 12px/1 var(--sans);outline:none;padding:0 34px 0 32px}.search-select__search-wrap input:focus{border-color:var(--brand-text);box-shadow:0 0 0 3px var(--brand-soft)}.search-select__search-wrap input::placeholder{color:var(--mute)}.search-select__search-wrap button,.search-select__close{width:28px;height:28px;color:var(--ink-3);cursor:pointer;background:0 0;border:0;border-radius:6px;place-items:center;display:grid}.search-select__search-wrap button{position:absolute;top:3px;right:3px}.search-select__search-wrap button:hover,.search-select__close:hover{background:var(--surface-hover);color:var(--ink)}.search-select__search-wrap button:focus-visible,.search-select__close:focus-visible{outline:2px solid var(--brand);outline-offset:1px}.search-select__search-wrap button svg,.search-select__close svg{width:14px;height:14px}.search-select__sheet-title{min-width:0;color:var(--ink-2);text-overflow:ellipsis;white-space:nowrap;flex:1;font-size:12.5px;font-weight:600;overflow:hidden}.search-select__list{overscroll-behavior:contain;scrollbar-gutter:stable;flex:1;min-height:0;overflow-y:auto}.search-select__group{color:var(--ink-3);font-size:var(--fs-xs);letter-spacing:.04em;text-transform:uppercase;padding:9px 12px 5px;font-weight:600}.search-select__option{width:100%;min-height:40px;color:var(--ink-2);font:400 12.5px/1.25 var(--sans);text-align:left;cursor:pointer;background:0 0;border:0;align-items:center;gap:8px;padding:6px 12px;display:flex}.search-select__option:hover{background:var(--surface-hover);color:var(--ink)}.search-select__option.is-active{background:var(--brand-soft);color:var(--ink)}.search-select__option.is-selected{color:var(--brand-text);font-weight:500}.search-select__option:focus-visible{outline:2px solid var(--brand);outline-offset:-2px}.search-select__option-copy{flex-direction:column;flex:1;min-width:0;display:flex}.search-select__option-copy>span,.search-select__option-copy small{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.search-select__option-copy small{color:var(--ink-3);font-size:var(--fs-xs);margin-top:2px;font-weight:400}.search-select__dot{background:var(--search-select-option-color);border-radius:99px;flex:none;width:8px;height:8px}.search-select__check{width:14px;height:14px;color:var(--brand-text);flex:none}.search-select__checkbox{border:1px solid var(--border);background:var(--surface);border-radius:4px;flex:none;place-items:center;width:16px;height:16px;display:grid}.search-select__checkbox svg{width:12px;height:12px;color:var(--brand-text)}.search-select__empty{min-height:112px;color:var(--ink-3);text-align:center;flex-direction:column;justify-content:center;align-items:center;gap:5px;padding:18px;display:flex}.search-select__empty strong{color:var(--ink-2);font-size:12.5px;font-weight:600}.search-select__empty span{text-overflow:ellipsis;white-space:nowrap;max-width:260px;font-size:11px;overflow:hidden}.search-select__empty .btn{margin-top:5px}.search-select__footer{border-top:1px solid var(--border);background:var(--surface-2);justify-content:space-between;align-items:center;gap:8px;padding:7px 10px;display:flex}@media (width<=768px){.search-select__popup--mobile{width:100%;max-height:60dvh;padding-bottom:env(safe-area-inset-bottom);border-radius:14px 14px 0 0;animation:.18s ease-out search-select-enter;position:fixed;inset:auto 0 0}.search-select__popup--mobile .search-select__option{min-height:44px}.search-select__popup--mobile .search-select__search-wrap input{height:44px;padding-right:48px}.search-select__popup--mobile .search-select__search-wrap button,.search-select__popup--mobile .search-select__close,.search-select__popup--mobile .search-select__footer .btn{min-width:44px;min-height:44px}.search-select__popup--mobile .search-select__search-wrap button{width:44px;height:44px;top:0;right:0}}@keyframes search-select-enter{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}@media (prefers-reduced-motion:reduce){.search-select__trigger,.search-select__chevron,.search-select__popup--mobile{transition:none;animation:none}}
