/* 아이템마켓 검색 진입점: 시네마틱 검색 흐름 + 스크롤 연동 좌측 검색 */
.recent_trend.recent_trend_search_mode {
    z-index: 8;
    min-height: 254px;
    padding: 0;
    overflow: visible;
}
.recent_trend_search_mode::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: .76;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 43%, color-mix(in srgb, var(--primary) 8%, transparent), transparent 34%),
        linear-gradient(115deg, color-mix(in srgb, var(--primary) 3%, transparent), transparent 32%, transparent 68%, color-mix(in srgb, var(--primary) 3%, transparent));
    pointer-events: none;
}

.itemmarket_search_entry {
    --pointer-x: 50%;
    --pointer-y: 42%;
    --scene-x: 0px;
    --scene-y: 0px;
    --scene-inverse-x: 0px;
    --scene-inverse-y: 0px;
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-height: 252px;
    padding: 18px clamp(110px, 16vw, 160px);
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: inherit;
    isolation: isolate;
}
.itemmarket_search_entry_pointer {
    position: absolute;
    z-index: 2;
    inset: 0;
    overflow: hidden;
    opacity: .34;
    border-radius: inherit;
    background: radial-gradient(300px circle at var(--pointer-x) var(--pointer-y), color-mix(in srgb, var(--primary) 13%, transparent), color-mix(in srgb, var(--primary) 3%, transparent) 48%, transparent 74%);
    transition: opacity .35s ease;
    pointer-events: none;
}
.itemmarket_search_entry.is-pointer-active .itemmarket_search_entry_pointer {
    opacity: .9;
}

/* 선택 시안의 좌우 검색 흐름 장식 */
.itemmarket_search_entry_scene {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}
.itemmarket_search_entry_orb {
    position: absolute;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 11%, transparent);
    transition: opacity .35s ease, filter .35s ease;
}
.scene_orb_left_back {
    top: 28px;
    left: 2.5%;
    width: 182px;
    height: 182px;
    opacity: .3;
    background: radial-gradient(circle at 55% 45%, color-mix(in srgb, #fff 70%, transparent), color-mix(in srgb, var(--primary) 8%, transparent) 68%, transparent 72%);
}
.scene_orb_left_front {
    bottom: -56px;
    left: 1.2%;
    width: 164px;
    height: 164px;
    opacity: .5;
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 8%, transparent), color-mix(in srgb, var(--primary) 25%, transparent));
}
.scene_orb_left_edge {
    bottom: -21px;
    left: -72px;
    width: 146px;
    height: 146px;
    opacity: .22;
}
.scene_orb_right_back {
    top: 20px;
    right: 1.5%;
    width: 176px;
    height: 176px;
    opacity: .35;
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 9%, transparent), color-mix(in srgb, var(--primary) 16%, transparent));
}
.scene_orb_right_front {
    right: -30px;
    bottom: -72px;
    width: 176px;
    height: 176px;
    opacity: .58;
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 9%, transparent), color-mix(in srgb, var(--primary) 40%, transparent));
}
.scene_orb_right_ring {
    right: 13%;
    bottom: -106px;
    width: 205px;
    height: 205px;
    border: 1px solid color-mix(in srgb, var(--primary) 11%, transparent);
    opacity: .5;
    background: transparent;
}
.itemmarket_search_entry_flow {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: color-mix(in srgb, var(--primary) 72%, transparent);
    stroke-width: 1;
    stroke-linecap: round;
}
.itemmarket_search_entry_flow path {
    stroke-dasharray: 5 8;
    animation: itemmarketScenePath 9s linear infinite;
}
.itemmarket_search_entry_flow .scene_flow_right {
    animation-direction: reverse;
}
.itemmarket_search_entry_flow circle {
    fill: var(--primary);
    stroke: none;
    filter: drop-shadow(0 0 5px color-mix(in srgb, var(--primary) 55%, transparent));
}
.itemmarket_search_entry_spark {
    position: absolute;
    z-index: 3;
    color: color-mix(in srgb, var(--primary) 82%, #ffd19f);
    font-size: 12px;
    line-height: 1;
    animation: itemmarketSceneSpark 2.8s ease-in-out infinite;
}
.scene_spark_1 { top: 18px; left: 16%; font-size: 16px; }
.scene_spark_2 { top: 70px; left: 31%; animation-delay: -.7s; }
.scene_spark_3 { top: 56px; left: 68%; font-size: 9px; animation-delay: -1.6s; }
.scene_spark_4 { top: 104px; right: 33%; animation-delay: -2.1s; }
.scene_spark_5 { top: 108px; right: 19%; font-size: 15px; animation-delay: -.9s; }

.itemmarket_search_entry_mini_card {
    position: absolute;
    z-index: 4;
    display: flex;
    width: 104px;
    height: 62px;
    padding: 10px;
    align-items: center;
    gap: 8px;
    border: 1px solid color-mix(in srgb, #fff 78%, var(--primary));
    border-radius: 10px;
    background: color-mix(in srgb, #fff 91%, var(--primary-bg-light));
    box-shadow: 0 12px 24px rgba(79, 47, 20, .12), 0 0 0 1px rgba(255, 255, 255, .55) inset;
    transition: filter .35s ease, box-shadow .35s ease;
    will-change: transform;
}
.scene_card_favorite {
    top: 36px;
    left: 7.2%;
    width: 116px;
    height: 66px;
    transform: translate3d(var(--scene-x), var(--scene-y), 0) rotate(-11deg);
    animation: itemmarketSceneFavorite 6.2s ease-in-out infinite;
}
.scene_card_chart {
    bottom: 31px;
    left: 4.4%;
    width: 98px;
    height: 65px;
    justify-content: center;
    transform: translate3d(var(--scene-x), var(--scene-y), 0) rotate(-12deg);
    animation: itemmarketSceneChart 7.1s -1.8s ease-in-out infinite;
}
.scene_card_market {
    top: 98px;
    right: 7.5%;
    width: 105px;
    height: 61px;
    transform: translate3d(var(--scene-inverse-x), var(--scene-inverse-y), 0) rotate(-11deg);
    animation: itemmarketSceneMarket 6.7s -2.5s ease-in-out infinite;
}
.scene_card_thumb {
    position: relative;
    display: grid;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 58%, #ffd1a1), var(--primary));
    box-shadow: 0 7px 14px color-mix(in srgb, var(--primary) 25%, transparent);
}
.scene_card_thumb_favorite i {
    width: 17px;
    height: 17px;
    background: #fff;
    -webkit-mask: url('/images/icon/like_fill.svg') no-repeat center / contain;
    mask: url('/images/icon/like_fill.svg') no-repeat center / contain;
}
.scene_card_thumb_market i {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .92);
    border-radius: 50%;
}
.scene_card_thumb_market i::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 2px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .92);
    transform: rotate(-20deg);
}
.scene_card_lines {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 6px;
}
.scene_card_lines i {
    display: block;
    width: 100%;
    height: 6px;
    border-radius: 99px;
    background: color-mix(in srgb, var(--gray-200) 74%, transparent);
}
.scene_card_lines i:last-child {
    width: 72%;
}
.scene_chart_bars {
    display: flex;
    height: 40px;
    align-items: flex-end;
    gap: 5px;
}
.scene_chart_bars i {
    display: block;
    width: 9px;
    height: 16px;
    border-radius: 3px 3px 1px 1px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 68%, #ffc981), var(--primary));
    box-shadow: 0 4px 8px color-mix(in srgb, var(--primary) 15%, transparent);
}
.scene_chart_bars i:nth-child(2) { height: 24px; }
.scene_chart_bars i:nth-child(3) { height: 34px; }
.scene_chart_bars i:nth-child(4) { height: 40px; }
.scene_chart_bars i:nth-child(5) { height: 29px; opacity: .35; }
.itemmarket_search_entry:focus-within .itemmarket_search_entry_mini_card,
.itemmarket_search_entry.is-pointer-active .itemmarket_search_entry_mini_card {
    filter: saturate(1.08) brightness(1.02);
    box-shadow: 0 15px 31px rgba(79, 47, 20, .16), 0 0 0 1px rgba(255, 255, 255, .64) inset;
}

.itemmarket_search_entry_content {
    position: relative;
    z-index: 8;
    display: flex;
    width: min(100%, 700px);
    min-width: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
    animation: itemmarketSearchContentIn .62s cubic-bezier(.2, .76, .2, 1) both;
}
.itemmarket_search_entry_title {
    width: 100%;
    margin-top: 0;
    color: var(--gray-800);
    font-size: clamp(30px, 2.5vw, 38px);
    font-weight: var(--bold);
    line-height: 1.08;
    letter-spacing: -.052em;
}
.itemmarket_search_entry_title span,
.itemmarket_search_entry_title strong {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.itemmarket_search_entry_title span {
    transform: translateX(-8px);
}
.itemmarket_search_entry_title strong {
    color: var(--primary);
    font-weight: inherit;
    white-space: nowrap;
    transform: translateX(9px);
}
.itemmarket_search_entry_desc {
    margin-top: 12px;
    max-width: 630px;
    color: var(--gray-500);
    font-size: var(--ft13);
    line-height: 1.55;
}

.itemmarket_search_entry_search.search_box {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(100%, 620px);
    height: 64px;
    min-height: 64px;
    margin-top: 17px;
    padding: 7px 8px 7px 20px;
    align-items: center;
    gap: 12px;
    overflow: visible;
    border: 1px solid color-mix(in srgb, var(--primary) 34%, var(--dark-line));
    border-radius: 18px;
    background: var(--bg);
    box-shadow: 0 14px 34px rgba(60, 42, 26, .12), 0 0 0 4px color-mix(in srgb, var(--primary) 3%, transparent);
    transition: border-color .28s ease, box-shadow .28s ease, background .28s ease, transform .28s ease;
}
.itemmarket_search_entry_search.search_box::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: -32%;
    width: 26%;
    height: 100%;
    opacity: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 13%, transparent), transparent);
    transform: skewX(-18deg);
    transition: left .72s cubic-bezier(.2, .78, .2, 1), opacity .2s ease;
    pointer-events: none;
}
.itemmarket_search_entry_search.search_box:focus-within {
    border-color: color-mix(in srgb, var(--primary) 68%, var(--dark-line));
    background: color-mix(in srgb, var(--primary-bg-light) 18%, var(--bg));
    box-shadow: 0 17px 42px color-mix(in srgb, var(--primary) 17%, transparent), 0 0 0 5px color-mix(in srgb, var(--primary) 8%, transparent);
    transform: translateY(-1px);
}
.itemmarket_search_entry_search.search_box:focus-within::before {
    left: 108%;
    opacity: 1;
}
.itemmarket_search_entry_search_icon {
    position: relative;
    z-index: 1;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    background: var(--primary);
    -webkit-mask: url('/images/icon/search.svg') no-repeat center / contain;
    mask: url('/images/icon/search.svg') no-repeat center / contain;
}
.itemmarket_search_entry_search.search_box .itemmarket_search_entry_input {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 48px;
    padding: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--gray-700);
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    text-align: left;
}
.itemmarket_search_entry_search.search_box .itemmarket_search_entry_input::placeholder {
    color: var(--gray-500);
    opacity: 1;
}
.itemmarket_search_entry.has-keyword-typing .itemmarket_search_entry_search_icon {
    animation: itemmarketSearchIconBreath 1.8s ease-in-out infinite;
}
.itemmarket_search_entry_button_action {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 90px;
    min-height: 50px;
    padding: 11px 12px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: 0 9px 21px color-mix(in srgb, var(--primary) 28%, transparent);
    font-size: var(--ft13);
    font-weight: var(--bold);
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: box-shadow .42s ease;
}
.itemmarket_search_entry_button_action:hover {
    box-shadow: 0 12px 27px color-mix(in srgb, var(--primary) 34%, transparent);
}
.itemmarket_search_entry_button_action:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--primary) 27%, transparent);
    outline-offset: 3px;
}
.itemmarket_search_entry_action_content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    backface-visibility: hidden;
    will-change: opacity, filter, transform, clip-path;
    transition: opacity .3s ease,
                filter .42s ease,
                transform .48s cubic-bezier(.2, .82, .24, 1),
                clip-path .48s cubic-bezier(.2, .82, .24, 1),
                background-color .24s ease,
                border-color .24s ease,
                color .24s ease;
}
.action_content_search {
    z-index: 1;
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 14px);
    transform: translate3d(0, 0, 0) scale(1);
}
.action_content_clear {
    z-index: 2;
    border-color: color-mix(in srgb, var(--gray-400) 22%, transparent);
    background: color-mix(in srgb, var(--gray-100) 78%, var(--bg));
    color: var(--gray-600);
    opacity: 0;
    filter: blur(1.5px);
    clip-path: inset(0 0 0 100% round 14px);
    transform: translate3d(24px, 0, 0) rotate(2.5deg) scale(.94);
}
.itemmarket_search_entry_button_action.is-clear-mode {
    box-shadow: none;
}
.itemmarket_search_entry_button_action.is-clear-mode .action_content_search {
    opacity: 0;
    filter: blur(1.5px);
    clip-path: inset(0 100% 0 0 round 14px);
    transform: translate3d(-24px, 0, 0) rotate(-2.5deg) scale(.94);
}
.itemmarket_search_entry_button_action.is-clear-mode .action_content_clear {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 14px);
    transform: translate3d(0, 0, 0) scale(1);
}
.itemmarket_search_entry_button_action:not(.is-clear-mode):hover .action_content_search {
    border-color: color-mix(in srgb, var(--primary) 88%, #d85a00);
    background: color-mix(in srgb, var(--primary) 88%, #d85a00);
}
.itemmarket_search_entry_button_action.is-clear-mode:hover .action_content_clear {
    border-color: color-mix(in srgb, var(--primary) 28%, var(--gray-300));
    background: color-mix(in srgb, var(--primary) 8%, var(--gray-100));
    color: var(--gray-800);
}
.itemmarket_search_entry_action_content i {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    border: 0;
    transform: none;
}
.itemmarket_search_entry_action_content i::before,
.itemmarket_search_entry_action_content i::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 1.5px;
    border-radius: 99px;
    background: currentColor;
}
.itemmarket_search_entry_action_content i::before {
    transform: rotate(45deg);
}
.itemmarket_search_entry_action_content i::after {
    transform: rotate(-45deg);
}
.itemmarket_search_entry_results.item_search_list {
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    width: 100%;
    max-height: min(280px, 42vh);
    overflow-y: auto;
    border: 1px solid color-mix(in srgb, var(--primary) 14%, var(--dark-line));
    background: var(--bg);
    box-shadow: 0 18px 45px rgba(46, 33, 22, .16);
    text-align: left;
}

html.dark .itemmarket_search_entry_mini_card,
body.dark .itemmarket_search_entry_mini_card {
    border-color: rgba(249, 150, 52, .18);
    background: #39312a;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .025) inset;
}
html.dark .scene_card_lines i,
body.dark .scene_card_lines i {
    background: #64574c;
}
html.dark .scene_orb_left_back,
body.dark .scene_orb_left_back {
    background: radial-gradient(circle at 55% 45%, rgba(255, 255, 255, .03), color-mix(in srgb, var(--primary) 8%, transparent) 68%, transparent 72%);
}
html.dark .itemmarket_search_entry_search.search_box,
body.dark .itemmarket_search_entry_search.search_box {
    background: #302a25;
    box-shadow: 0 14px 31px rgba(0, 0, 0, .3), 0 0 0 1px color-mix(in srgb, #fff 7%, transparent) inset;
}
html.dark .itemmarket_search_entry_search.search_box:focus-within,
body.dark .itemmarket_search_entry_search.search_box:focus-within {
    background: color-mix(in srgb, var(--primary) 8%, #302a25);
}
html.dark .itemmarket_search_entry_button_action .action_content_clear,
body.dark .itemmarket_search_entry_button_action .action_content_clear {
    border-color: color-mix(in srgb, #fff 10%, transparent);
    background: #403832;
    color: #d7d0ca;
}
html.dark .itemmarket_search_entry_button_action.is-clear-mode:hover .action_content_clear,
body.dark .itemmarket_search_entry_button_action.is-clear-mode:hover .action_content_clear {
    border-color: color-mix(in srgb, var(--primary) 30%, #65584e);
    background: color-mix(in srgb, var(--primary) 10%, #403832);
    color: #fff;
}
html.dark .itemmarket_search_entry_results.item_search_list,
body.dark .itemmarket_search_entry_results.item_search_list {
    background: #302a25;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

@keyframes itemmarketSearchContentIn {
    from { opacity: 0; transform: translate3d(0, 12px, 0) scale(.985); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes itemmarketSearchIconBreath {
    0%, 100% { opacity: .76; transform: scale(.92); }
    50% { opacity: 1; transform: scale(1.06); }
}
@keyframes itemmarketSceneFavorite {
    0%, 100% { transform: translate3d(var(--scene-x), var(--scene-y), 0) rotate(-11deg); }
    50% { transform: translate3d(calc(var(--scene-x) + 4px), calc(var(--scene-y) - 7px), 0) rotate(-8deg); }
}
@keyframes itemmarketSceneChart {
    0%, 100% { transform: translate3d(var(--scene-x), var(--scene-y), 0) rotate(-12deg); }
    50% { transform: translate3d(calc(var(--scene-x) - 3px), calc(var(--scene-y) + 6px), 0) rotate(-9deg); }
}
@keyframes itemmarketSceneMarket {
    0%, 100% { transform: translate3d(var(--scene-inverse-x), var(--scene-inverse-y), 0) rotate(-11deg); }
    50% { transform: translate3d(calc(var(--scene-inverse-x) - 4px), calc(var(--scene-inverse-y) - 6px), 0) rotate(-14deg); }
}
@keyframes itemmarketScenePath {
    to { stroke-dashoffset: -104; }
}
@keyframes itemmarketSceneSpark {
    0%, 100% { opacity: .38; transform: scale(.72) rotate(-8deg); }
    50% { opacity: 1; transform: scale(1.08) rotate(6deg); }
}
@keyframes itemmarketSearchFieldCue {
    0% { opacity: 0; transform: translate3d(-13px, 0, 0) scale(.96); box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 0%, transparent); }
    42% { opacity: 1; transform: translate3d(4px, 0, 0) scale(1.015); box-shadow: 0 0 0 7px color-mix(in srgb, var(--primary) 14%, transparent), 0 10px 28px color-mix(in srgb, var(--primary) 15%, transparent); }
    100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 0%, transparent); }
}

@media all and (min-width: 1025px) {
    .itemmarket_page .filter_head .item_search_box {
        max-height: 50px;
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0) scale(1);
        transform-origin: left center;
        transition:
            max-height .34s ease,
            opacity .24s ease,
            visibility .24s ease,
            transform .42s cubic-bezier(.2, .75, .2, 1),
            padding .34s ease,
            border-width .34s ease;
    }
    .itemmarket_page.is-itemmarket-search-entry-visible .filter_head .item_search_box {
        height: 0;
        min-height: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        border-top-width: 0;
        border-bottom-width: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(-12px, -5px, 0) scale(.94);
    }
    .itemmarket_page.is-itemmarket-sidebar-search-arriving .filter_head .item_search_box.is-search-cued {
        animation: itemmarketSearchFieldCue .82s cubic-bezier(.2, .75, .2, 1) both;
    }
}

@media all and (max-width: 1260px) {
    .itemmarket_search_entry {
        padding-right: 120px;
        padding-left: 120px;
    }
    .scene_card_favorite { left: 4%; transform-origin: left center; }
    .scene_card_chart { left: 2.5%; transform-origin: left center; }
    .scene_card_market { right: 4%; transform-origin: right center; }
    .itemmarket_search_entry_mini_card { scale: .88; }
}

@media all and (max-width: 960px) {
    .itemmarket_search_entry {
        padding-right: 32px;
        padding-left: 32px;
    }
    .itemmarket_search_entry_scene {
        opacity: .45;
    }
    .itemmarket_search_entry_mini_card {
        display: none;
    }
    .itemmarket_search_entry_flow {
        opacity: .4;
    }
}

@media all and (max-width: 768px) {
    .recent_trend.recent_trend_search_mode {
        min-height: 300px;
    }
    .itemmarket_search_entry {
        min-height: 298px;
        padding: 24px 15px;
    }
    .itemmarket_search_entry_scene,
    .itemmarket_search_entry_pointer {
        display: none;
    }
    .itemmarket_search_entry_content {
        width: min(100%, 520px);
    }
    .itemmarket_search_entry_title {
        font-size: 25px;
        line-height: 1.16;
    }
    .itemmarket_search_entry_title span,
    .itemmarket_search_entry_title strong {
        transform: none;
    }
    .itemmarket_search_entry_desc {
        max-width: 340px;
        margin-top: 9px;
        font-size: var(--ft12);
    }
    .itemmarket_search_entry_search.search_box {
        width: min(100%, 420px);
        height: 58px;
        min-height: 58px;
        margin-top: 18px;
        padding: 6px 7px 6px 15px;
    }
    .itemmarket_search_entry_search_icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }
    .itemmarket_search_entry_search.search_box .itemmarket_search_entry_input {
        height: 44px;
        font-size: 12px;
    }
    .itemmarket_search_entry_button_action {
        min-height: 44px;
        padding: 9px 12px;
        font-size: 11px;
    }
}

@media all and (max-width: 450px) {
    .recent_trend.recent_trend_search_mode {
        min-height: 286px;
    }
    .itemmarket_search_entry {
        min-height: 284px;
    }
    .itemmarket_search_entry_title {
        font-size: 23px;
    }
    .itemmarket_search_entry_search.search_box {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .itemmarket_search_entry_content,
    .itemmarket_search_entry_mini_card,
    .itemmarket_search_entry_flow path,
    .itemmarket_search_entry_spark,
    .itemmarket_search_entry.has-keyword-typing .itemmarket_search_entry_search_icon,
    .itemmarket_page.is-itemmarket-sidebar-search-arriving .filter_head .item_search_box.is-search-cued {
        animation: none !important;
    }
    .itemmarket_search_entry_pointer {
        display: none;
    }
    .itemmarket_search_entry *,
    .itemmarket_page .filter_head .item_search_box {
        transition-duration: .01ms !important;
    }
    .itemmarket_search_entry_button_action .itemmarket_search_entry_action_content {
        filter: none !important;
        clip-path: inset(0 0 0 0 round 14px) !important;
        transform: none !important;
        transition-property: opacity !important;
        transition-duration: .22s !important;
        transition-timing-function: ease !important;
    }
}
