{
dlog(
'[DEBUG] [SearchPanel] TInputSimple에서 마우스 클릭 감지 → SearchInputOverlay 오픈'
);
setIsSearchOverlayVisible(true);
}}
spotlightId={SPOTLIGHT_IDS.SEARCH_INPUT_BOX}
// 🎯 [포커스 중첩 해결] SearchResultsContainer로 포커스 전달
// SearchResultsContainer가 Spotlight 컨테이너이므로, 포커스가 들어오면
// enterTo: 'last-focused' 설정에 의해 자동으로 HowAboutThese.small의 SEE MORE로 이동
data-spotlight-down={
currentMode === SEARCH_PANEL_MODES.VOICE_RESULT
? 'search-results-container'
: undefined
}
// 🎯 HowAboutThese 포커스 관리 - 포커스가 검색 입력 영역으로 올 때 감지
onSpotlightUp={handleSearchInputFocus}
onSpotlightLeft={handleSearchInputFocus}
forcedSpotlight="recent-keyword-0"
tabIndex={0}
spotlightBoxDisabled
onFocus={_onFocus}
onBlur={_onBlur}
placeholder="Search products or brands"
/>
{/*
*/}