

/* ===== MOBILE SIDEBAR / MOBILE SEARCH ===== */

:root {
    --mob-accent: #09244B;
    --mob-accent2: #1a4a8a;
    --mob-border: rgba(0,0,0,0.08);
    --mob-shadow: 0 20px 50px rgba(0,0,0,0.15);
    --mob-shadow-back: 0 4px 12px rgba(0,0,0,0.05);
}

.mob_sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100dvh;
    background: #f7f7f8;
    z-index: 999999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-shadow: none;
    isolation: isolate;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.mob_sidebar::-webkit-scrollbar { display: none; }
.mob_sidebar.mob_open {
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.mob_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    background: rgba(15,23,42,0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: opacity 0.28s cubic-bezier(0.4,0,1,1), visibility 0.28s;
}

.mob_sidebar.mob_open ~ .mob_overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s;
}

@media (max-width: 1024px) and (orientation: portrait) {
    .mob_sidebar { width: 100%; }
}
@media (max-width: 1024px) and (orientation: landscape) {
    .mob_sidebar { width: 320px; }
}

.mob_topbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    min-height: 40px;
    z-index: 20;
}

.mob_search_layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    background: transparent;
}
.mob_topbar.search-open .mob_search_layer {
    opacity: 1;
    pointer-events: auto;
}

.mob_topbar.search-active .mob_search_layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #f7f7f8;
    padding: 14px 18px 0;
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.mob_search_box {
    width: 38px;
    height: 38px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 999px;
    background: #ffffff !important;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transform: none !important;
    transition: width .22s ease, opacity .18s ease, border-radius .18s ease;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.mob_topbar.search-open .mob_search_box {
    width: 100%;
    opacity: 1;
    border-radius: 14px;
}
.mob_topbar.search-active .mob_search_box {
    width: 100%;
    height: 38px;
    background: #ffffff !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 14px;
    opacity: 1;
    transform: none !important;
    box-shadow: none !important;
}
.mob_topbar.search-open .mob_logo,
.mob_topbar.search-open .mob_search_btn {
    opacity: 0;
    pointer-events: none;
}

.mob_search_btn {
    position: relative;
    z-index: 60;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 12px;
    background: #ffffff;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.mob_search_btn svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.mob_search_input {
    flex: 1;
    min-width: 0;
    height: 38px;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 12px 0 0;
    margin-left: -15px;
    font-size: 14px;
    color: #111827;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0 !important;
}
.mob_search_input::placeholder { color: #9ca3af; }

.mob_search_submit,
.mob_search_close {
    width: 44px;
    height: 44px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    color: #6b7280;
    padding: 0;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.mob_search_submit svg,
.mob_search_close svg {
    width: 18px;
    height: 18px;
    display: block;
}
.mob_search_submit { color: #4b5563; }
.mob_search_close { display: none; }
.mob_topbar.search-active .mob_search_close { display: flex; }

.mob_profile {
    padding: 8px 18px 20px;
    position: relative;
    flex-shrink: 0;
    background: #f7f7f8;
}

.mob_logo {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none !important;
    line-height: 1;
}
.mob_logo img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 180px;
}

.mob_userbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
	padding-top: 10px;
}

.mob_avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #ffffff;
    border: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    box-sizing: border-box;
    letter-spacing: 0;
    margin-bottom: 0;
}

.mob_profile_info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.mob_profile_info strong {
    display: block;
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    color: #111827;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.mob_profile_info span {
    display: block;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #6b7280;
    letter-spacing: -0.01em;
}

.mob_profile_btns {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 0px;
}
.mob_profile_btns button {
    flex: 1 1 0;
    min-width: 0;
    height: 39px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}
.mob_profile_btns button:hover { background: #f1f3f5; }

.mob_divider {
    margin: 6px 18px 4px;
    height: 1px;
    background: rgba(0,0,0,0.04);
    flex-shrink: 0;
}

.mob_tab_wrap {
    display: flex;
    gap: 0;
    padding: 0 18px;
    background: #f7f7f8;
    flex-shrink: 0;
    margin-top: 6px;
    margin-bottom: 0;
}

.mob_tab_btn {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 20px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.mob_tab_btn:hover { color: #374151; }
.mob_tab_btn.is_active {
    color: #111827;
    font-family: 'font-B', sans-serif;
}

.mob_menu_wrap {
    flex: none;
    padding: 0 0 0;
    background: #f7f7f8;
}

.mob_item {
    position: relative;
    margin-bottom: 0;
    padding: 0 8px;
}
.mob_item + .mob_item { margin-top: 2px; }

.mob_btn {
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-align: left;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25,1,0.5,1);
    box-sizing: border-box;
    box-shadow: none;
}


.mob_btn_txt {
    flex: 1;
    color: #111827;
    text-align: left;
}

.mob_chv {
    color: #9ca3af;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform 0.25s, color 0.25s;
    transform: rotate(0deg);
}

.mob_item.mob_active > .mob_btn {
    color: #111827;
    background: transparent;
    border-color: transparent;
}
.mob_item.mob_active > .mob_btn .mob_chv {
    transform: rotate(90deg);
    color: #9ca3af;
}



.mob_layer {
    position: absolute;
    top: 0;
    left: 8px;
    width: calc(100% - 16px);
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 4px 0 12px;
    margin: 6px 0 4px;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    z-index: 1000000;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.mob_layer > .mob_item {
    position: relative;
    padding: 0 8px;
}

.mob_item.mob_active > .mob_layer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 1000001;
}
.mob_layer:has(.mob_item.mob_active) {
    transform: scale(0.97) translateY(-5px) !important;
    box-shadow: var(--mob-shadow-back) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mob_layer_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 22px 8px;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 4px;
    cursor: pointer;
    transition: opacity 0.15s;
}
.mob_layer_head:hover { opacity: 0.7; }
.mob_layer_head span {
    flex: 1;
    text-align: left;
}
.mob_layer_head svg {
    color: #9ca3af;
    flex-shrink: 0;
    transform: rotate(90deg);
    margin-right: 0;
}

.mob_layer > .mob_item > .mob_btn {
    position: relative;
    background: transparent;
    padding: 11px 24px 11px 14px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-size: 14px;
    color: #1f2937;
    border: 0;
    box-shadow: none;
}

.mob_layer > .mob_item > .mob_btn .mob_chv {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.mob_layer > .mob_item.mob_active > .mob_btn .mob_chv {
    transform: translateY(-50%) rotate(90deg);
}

.mob_layer > .mob_item > .mob_btn,
.mob_layer > .mob_item > .mob_btn * { text-align: left; }



.mob_leaf {
    display: block;
    padding: 11px 6px;
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 10px;
    margin: 2px 8px;
    transition: background 0.15s, color 0.15s;
}

.mob_layer .mob_layer .mob_leaf {
    padding-left: 12px !important;
}

.mob_layer > .mob_item > .mob_layer {
    top: -50px;
    left: -8px;
    width: calc(100% + 16px);
}

.mob_foot {
    padding: 12px 18px 16px;
    border-top: 0;
    background: #f7f7f8;
}
.mob_foot a {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
}
.mob_foot a + a { margin-left: 14px; }

@media (min-width: 1025px) {
    .mob_sidebar,
    .mob_overlay { display: none !important; }
}

@media all and (max-width:1024px) {
    #mob_sidebar { background: #f7f7f8 !important; color: #1f2937 !important; }
    .mob_profile { background: #f7f7f8 !important; }
    .mob_menu_wrap { background: #f7f7f8 !important; }
    .mob_foot { background: #f7f7f8 !important; }
}

.mob_instant_result {
    display: none;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.mob_instant_section {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mob_instant_section:last-of-type {
    border-bottom: 0;
}

.mob_instant_label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    padding: 8px 16px 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mob_instant_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 16px;
    text-decoration: none;
    transition: background 0.15s;
}
.mob_instant_item:hover {
    background: #f5f6f8;
}

.mob_instant_item_main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.mob_instant_board {
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mob_instant_title {
    font-size: 14px;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mob_instant_title mark {
    background: transparent;
    color: #25282B;
    font-family: 'font-B', sans-serif;
}

.mob_instant_date {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
    flex-shrink: 0;
}

.mob_instant_price {
    font-size: 13px;
    color: #111827;
    font-family: 'font-B', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.mob_instant_empty {
    padding: 20px 16px;
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
}

.mob_instant_more {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    transition: background 0.15s, color 0.15s;
}
.mob_instant_more:hover {
    background: #f5f6f8;
    color: #111827;
}

.mob_instant_skeleton {
    padding: 6px 0;
}

.mob_instant_sk_label {
    height: 10px;
    width: 40px;
    border-radius: 4px;
    margin: 10px 16px 10px;
}

.mob_instant_sk_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 10px;
}

.mob_instant_sk_text {
    height: 13px;
    flex: 1;
    border-radius: 4px;
}

.mob_instant_sk_short {
    max-width: 60%;
}

.mob_instant_sk_date {
    height: 11px;
    width: 55px;
    flex-shrink: 0;
    border-radius: 4px;
}

.mob_instant_sk_label,
.mob_instant_sk_text,
.mob_instant_sk_date {
    background: linear-gradient(90deg, #f7f7f8 25%, #efefef 50%, #f7f7f8 75%);
    background-size: 200% 100%;
    animation: mob_sk_shimmer 1.2s infinite;
}

@keyframes mob_sk_shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

#mob_search_screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7f7f8;
    z-index: 99999999;
    padding: 14px 18px 0;
    box-sizing: border-box;
    overflow-y: auto;
}
#mob_search_screen.is_open {
    display: block;
}
.mob_search_screen_box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    height: 38px;
    overflow: hidden;
    margin-bottom: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.mob_search_screen_box input,
.mob_search_screen_box input:focus,
.mob_search_screen_box input:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    background: transparent !important;
}

#mob_search_screen .mob_search_close {
    display: none;
}
#mob_search_screen.has_text .mob_search_close {
    display: flex;
}



/* 모바일 사이드바 상품검색 결과 */
.mob_product_item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 14px;
    padding: 6px 18px;
    text-decoration: none;
    border-bottom: 0 !important;
}

.mob_product_thumb {
    width: 42px;
    height: 40px;
    flex: 0 0 40px;
    margin-left: auto;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f3;
}

.mob_product_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mob_product_info {
    min-width: 0;
    flex: 1;
}

.mob_product_name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mob_product_meta {
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.mob_product_discount {
    color: #e03131;
    font-weight: 700;
}

.mob_product_price {
    color: #111;
    font-weight: 600;
}


.hvw-sidebar-menu-btn {
    width: 22px;
    height: 18px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.hvw-sidebar-menu-btn svg {
    display: block;
    width: 22px;
    height: 18px;
}






/* PC 프레임 전용: 검색팝업 + 사이드바 하단/접힘 정리 */
@media (min-width: 1025px) {

    /* 검색 팝업 */
    .hvw-frame-sidebar #mob_search_screen {
        position: fixed;
        top: 24px;
        left: 50%;
        right: auto;
        z-index: 999999;
        width: min(520px, calc(100vw - 48px));
        height: auto;
        max-height: calc(100vh - 48px);
        transform: translateX(-50%);
        padding: 14px;
        border-radius: 18px;
        background: #f7f7f8;
        box-shadow: 0 20px 60px rgba(0,0,0,0.16);
        overflow-y: auto;
    }

    .hvw-frame-sidebar #mob_search_screen.is_open {
        display: block;
    }

    .hvw-frame-sidebar .mob_search_screen_box {
        margin-bottom: 12px;
    }

    .hvw-frame-sidebar #mob_screen_back {
        display: none !important;
    }

    .hvw-frame-sidebar #mob_search_screen .mob_screen_input,
    .hvw-frame-sidebar #mob_search_screen input#mob_screen_input {
        padding-left: 30px !important;
        text-indent: 0 !important;
        box-sizing: border-box;
    }

    #hvw_search_click_cover {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 999990;
        background: transparent;
    }

    #hvw_search_click_cover.is_active {
        display: block;
    }


    /* PC 프레임 사이드바 기본 */
    .hvw-frame-left {
        overflow: hidden;
    }

.hvw-frame-sidebar .mob_sidebar {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

    .hvw-frame-sidebar .mob_profile,
    .hvw-frame-sidebar .mob_tab_wrap,
    .hvw-frame-sidebar .mob_foot {
        flex: 0 0 auto !important;
    }

    .hvw-frame-sidebar .mob_menu_wrap {
        flex: 0 0 auto !important;
        min-height: 0 !important;
        overflow-y: visible !important;
        padding-bottom: 12px;
    }

    .hvw-frame-sidebar .mob_foot {
        margin-top: auto !important;
        padding: 14px 18px 18px !important;
        background: #f7f7f8 !important;
        border-top: 1px solid rgba(0,0,0,0.05);
    }


    /* PC 프레임 사이드바 접힘 */
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_sidebar {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        transform: translateX(0) !important;
    }

    .hvw-frame-shell.hvw-sidebar-collapsed .mob_profile {
        width: 64px !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .hvw-frame-shell.hvw-sidebar-collapsed .mob_topbar {
        display: flex !important;
        width: 64px !important;
        min-width: 64px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px;
        padding: 14px 0 0 !important;
    }

    .hvw-frame-shell.hvw-sidebar-collapsed .hvw-sidebar-menu-btn {
        display: inline-flex !important;
   
        flex: 0 0 38px !important;
    }

.hvw-frame-shell.hvw-sidebar-collapsed .mob_search_btn {
    display: inline-flex !important;
    position: relative !important;
    overflow: hidden !important;
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    border-radius: 12px !important;
}

    .hvw-frame-shell.hvw-sidebar-collapsed .mob_userbox,
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_profile_btns,
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_divider,
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_tab_wrap,
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_menu_wrap,
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_search_layer,
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_search_screen,
    .hvw-frame-shell.hvw-sidebar-collapsed .mob_foot {
        display: none !important;
    }
}


@media (min-width: 1025px) {
    .hvw-frame-sidebar .hvw-sidebar-menu-btn {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
        margin: -5px !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .hvw-frame-sidebar .mob_topbar {
        min-height: 38px !important;
        align-items: center !important;
    }

    .hvw-frame-shell.hvw-sidebar-collapsed .hvw-sidebar-menu-btn {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
	
    .hvw-frame-sidebar .mob_scroll_area {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .hvw-frame-sidebar .mob_sidebar {
        overflow: hidden !important;
    }

    .hvw-frame-sidebar .mob_menu_wrap {
        flex: 0 0 auto !important;
        overflow: visible !important;
    }

    .hvw-frame-sidebar .mob_foot {
        flex: 0 0 auto !important;
        margin-top: 0 !important;
    }
	
}


@media (min-width: 1025px) {
    .hvw-frame-sidebar .mob_profile {
        padding-top: 10px !important;
    }
	
	.hvw-frame-shell.hvw-sidebar-collapsed .mob_topbar {
        padding-top: 10px !important;
    }

    .hvw-frame-shell.hvw-sidebar-collapsed .hvw-sidebar-menu-btn {
        margin-top: 0 !important;
    }
}


/* PC 프레임 사이드바 스크롤바 얇고 연하게 */
@media (min-width: 1025px) {

    /* Firefox */
    .hvw-frame-sidebar .mob_sidebar,
    .hvw-frame-sidebar .mob_scroll_area {
        scrollbar-width: thin;
        scrollbar-color: rgba(0,0,0,0.14) transparent;
    }

    /* Chrome / Edge / Safari */
    .hvw-frame-sidebar .mob_sidebar::-webkit-scrollbar,
    .hvw-frame-sidebar .mob_scroll_area::-webkit-scrollbar {
        width: 6px;
    }

    .hvw-frame-sidebar .mob_sidebar::-webkit-scrollbar-track,
    .hvw-frame-sidebar .mob_scroll_area::-webkit-scrollbar-track {
        background: transparent;
    }

    .hvw-frame-sidebar .mob_sidebar::-webkit-scrollbar-thumb,
    .hvw-frame-sidebar .mob_scroll_area::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.12);
        border-radius: 999px;
    }

    .hvw-frame-sidebar .mob_sidebar::-webkit-scrollbar-thumb:hover,
    .hvw-frame-sidebar .mob_scroll_area::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0,0.18);
    }
}


.mob_btn,
.mob_leaf {
    position: relative;
    overflow: hidden;
}


.mob_foot {
    display: flex;
    gap: 8px;
    padding: 12px 18px 16px;
}

.mob_foot a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    overflow: hidden;
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
}

.mob_foot a + a {
    margin-left: 0;
}

.mob_foot a > span:not(.ripple-clip-area) {
    position: relative;
    z-index: 2;
}


.hvw-sidebar-menu-btn,
.mob_search_btn,
.mob_search_submit,
.mob_search_close,
.mob_tab_btn,
.mob_layer_head,
.mob_profile_btns button,
.mob_admin_child_btn,
.mob_foot a {
    position: relative;
    overflow: hidden;
}

.hvw-sidebar-menu-btn > svg,
.mob_search_btn > svg,
.mob_search_submit > svg,
.mob_search_close > svg,
.mob_tab_btn > span:not(.ripple-clip-area),
.mob_layer_head > span:not(.ripple-clip-area),
.mob_layer_head > svg,
.mob_profile_btns button > span:not(.ripple-clip-area),
.mob_admin_child_btn > span:not(.ripple-clip-area),
.mob_foot a > span:not(.ripple-clip-area) {
    position: relative;
    z-index: 2;
}


.hvw-sidebar-menu-btn.hvw-core-hover-menu {
    position: relative;
    overflow: hidden;
    border-radius: 12px !important;
}

.hvw-sidebar-menu-btn.hvw-core-hover-menu:hover {
    background: #eceef2 !important;
}

.hvw-sidebar-menu-btn.hvw-core-hover-menu > svg {
    position: relative;
    z-index: 2;
}


.hvw-sidebar-menu-btn.hvw-core-hover-menu {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    border-radius: 12px !important;
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.hvw-sidebar-menu-btn.hvw-core-hover-menu:hover {
    background: #eceef2 !important;
}

.hvw-sidebar-menu-btn.hvw-core-hover-menu > svg {
    position: relative;
    z-index: 2;
}