/* PC 스크롤 시 고정 헤더 스타일 */
@media (min-width: 768px) {
    /* ---- One-line condensed header overrides ---- */
    #hd.fixed {
        height: 70px;
    }
    
    #hd.fixed #hd_wrapper {
        display: none; /* 기존 wrapper 숨김 */
    }
    
    #hd.fixed #hd_menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0 40px;
        background: #fff;
        border: 0;
        display: flex;
        align-items: center;
        gap: 40px;
        height: 70px;
        box-shadow: 0 2px 5px rgba(0,0,0,.08);
        flex-wrap: nowrap; /* 한 줄 정렬 */
    } 
    
    #hd.fixed #hd_menu #category {
        display: none; /* 숨김 (버튼 클릭시 스크립트로 표시) */
    }
    
    #hd.fixed #hd_menu .collapsed-left {
        position: static;
        display: flex;
        align-items: center;
        gap: 18px;
        margin: 0;
        flex: 0 0 auto; /* 고정 크기 */
    } 
    
    #hd.fixed #hd_menu .collapsed-left #logo img {
        height: 42px;
        width: auto;
    } 
    
    #hd.fixed #hd_menu .collapsed-left #hd_define {
        display: flex;
        gap: 14px;
        font-size: 13px;
    } 
    
    #hd.fixed #hd_menu .collapsed-left #hd_define li a {
        padding: 0;
        font-weight: 500;
    } 
    
    #hd.fixed #menu_open {
        margin-left: auto;
        order: 90; /* 필요 시 오른쪽으로 */
        order: 3;
        margin: 0 0 0 40px; /* 필요시 오른쪽 간격 */
    } 
    
    #hd.fixed #hd_menu .hd_menu {
        display: flex;
        gap: 34px;
        margin-left: auto;
        order: 80;
        flex: 1 1 auto;
        order: 2;
        margin: 0 0 0 40px;
        gap: 30px;
    } 
    
    #hd.fixed #hd_menu .hd_menu li a {
        font-size: 15px;
        font-weight: 500;
        padding: 0;
    } 
    
    /* 스크롤 시 상단 정보 숨김 */
    #hd.fixed #tnb, #hd.fixed .hd_top_bar {
        display: none;
    }
    
    /* 스크롤 시 검색창 중앙 정렬 */
    #hd.fixed .hd_sch_wr {
        display: none;
    }
    
    /* 스크롤 시 로그인/장바구니 오른쪽 */
    #hd.fixed .hd_login {
        display: none;
    }
    
    /* 스크롤 후 컨텐츠 상단 여백 조정 */
    body.scroll-fixed #wrapper {
        margin-top: 70px; /* 한줄 높이 반영 */
        transition: margin-top 0.3s ease;
    }
    
    /* scroll logo clone */
    #hd.fixed #hd_menu #scroll_logo {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-right: 40px;
    }
    
    #hd.fixed #hd_menu #scroll_logo img {
        height: 42px;
        width: auto;
    }
    
    #hd.fixed #hd_menu #scroll_logo a {
        display: flex;
        align-items: center;
        font-size: 20px;
        font-weight: 600;
    }
}
