/* BASIC css start */
/* Pretendard */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");


/* ==================================================
   공통
================================================== */

html,
body {
    margin: 0;
    padding: 0;
}

#hdWrap *,
.allMenu * {
    box-sizing: border-box;
}

#hdWrap ul,
#hdWrap ol,
.allMenu ul,
.allMenu ol,
.allMenu dl,
.allMenu dt,
.allMenu dd {
    margin: 0;
    padding: 0;
}

#hdWrap li,
.allMenu li {
    list-style: none;
}

#hdWrap a,
.allMenu a {
    text-decoration: none;
}

#headerUtil {
    display: none !important;
}


/* ==================================================
   헤더 전체
   배너 40px + 메뉴 120px = 160px
================================================== */

#hdWrap {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    width: 100%;
    height: 160px;

    background: #fff;
    border-bottom: 1px solid #eee;

    z-index: 1000;

    transform: none !important;
    transition: box-shadow 0.2s ease;
}

#hdWrap.fix {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    transform: none !important;
}

#hdWrap.headroom.fix {
    transform: none !important;
}


/* ==================================================
   상단 혜택 배너
================================================== */

#hdWrap .topBenefitBanner {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 40px;

    margin: 0;
    padding: 0;

    background: #000;
    color: #fff;

    font-family: "Pretendard", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}


/* ==================================================
   메인 헤더
================================================== */

#hdWrap .hdArea {
    position: relative;

    width: 100%;
    height: 120px;
}

#hdWrap .hdArea .clear {
    position: relative;

    display: flex;
    align-items: center;

    width: 1430px;
    min-width: 1280px;
    height: 120px;

    margin: 0 auto;
}

#hdWrap .hdCate {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-width: 0;
    height: 120px;
}
/* ==================================================
   햄버거
================================================== */

#hdWrap .allBtn,
#hdWrap.fix .allBtn {
    position: static !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    margin: 0 22px 0 0;
    padding: 0;
}

#hdWrap .allBtn .menuAllBtn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    padding: 0;

    background: #fff;
    border: 0;

    cursor: pointer;
}

#hdWrap .allBtn .menuAllBtn:hover {
    background: transparent;
}

#hdWrap .allBtn .menuAllBtn img,
#hdWrap .allBtn .menuAllBtn .hamburgerIcon {
    display: block;

    width: 40px;
    height: 40px;

    object-fit: contain;
}


/* ==================================================
   로고
================================================== */

#hdWrap .hdLeft,
#hdWrap.fix .hdLeft {
    position: static !important;

    display: flex;
    align-items: center;

    flex: 0 0 auto;

    height: 120px;
    margin-right: 46px;
}

#hdWrap .hdLeft .hd_logo {
    display: flex;
    align-items: center;

    height: 120px;

    font-family: "Pretendard", sans-serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;

    color: #111;

    white-space: nowrap;
}

#hdWrap .hdLeft .hd_logo img {
    display: none !important;
}


/* ==================================================
   카테고리
================================================== */

#hdWrap .hdCate .cateWrap,
#hdWrap.fix .hdCate .cateWrap {
    position: static !important;

    display: flex;
    align-items: center;

    flex: 1 1 auto;

    min-width: 0;
    height: 120px;

    margin: 0 !important;

    gap: 12px;

    white-space: nowrap;
}

#hdWrap .hdCate .cateWrap .tmenu {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    height: 120px;
    padding: 0 10px;
}

#hdWrap .hdCate .cateWrap .tmenu > a {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 120px;

    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;

    color: #111;

    white-space: nowrap;

    transition: color 0.15s ease;
}

#hdWrap .hdCate .cateWrap .tmenu > a:hover {
    color: #888;
}


/* ==================================================
   NEW up
================================================== */

#hdWrap .hdCate .cateWrap .newMenu {
    padding-right: 18px;
}

#hdWrap .hdCate .cateWrap .newMenu .txt_deco {
    position: absolute;
    top: 41px;
    right: 5px;

    display: block !important;

    font-family: "Pretendard", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;

   color: #cc0000;

    pointer-events: none;
}


/* ==================================================
   2차 메뉴
================================================== */

#hdWrap .hdCate .cateWrap .tmenu .depth2 {
    position: absolute;
    top: 100px;
    left: 50%;

    display: none;

    width: 140px;
    padding: 10px 0;

    background: #fff;
    border: 1px solid #ededed;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

    transform: translateX(-50%);

    text-align: center;

    z-index: 1100;
}

#hdWrap .hdCate .cateWrap .tmenu:hover > .depth2 {
    display: block;
}

#hdWrap .hdCate .cateWrap .tmenu .depth2 li {
    display: block;
}

#hdWrap .hdCate .cateWrap .tmenu .depth2 li a {
    display: block;

    width: 100%;

    padding: 7px 12px;

    font-family: "Pretendard", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;

    color: #555;
}

#hdWrap .hdCate .cateWrap .tmenu .depth2 li a:hover {
    color: #111;
    background: #f7f7f7;
}


/* ==================================================
   우측 아이콘
================================================== */

#hdWrap .topRight {
    position: static !important;

    display: flex;
    align-items: center;

    flex: 0 0 auto;

    height: 120px;

    margin-left: auto;
    padding: 0;
}

#hdWrap .topRight > li {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 120px;

    margin-left: 17px;
}

#hdWrap .topRight > li:first-child {
    margin-left: 0;
}

#hdWrap .topRight > li > a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 120px;

    color: #555;
}

#hdWrap .topRight > li > a:hover {
    color: #111;
}

#hdWrap .topRight .headerIcon {
    display: block;

    width: 34px;
    height: 34px;

    object-fit: contain;
}


/* ==================================================
   검색
================================================== */

#hdWrap .searchArea,
#hdWrap .searchArea .search {
    position: relative;

    display: flex;
    align-items: center;

    height: 120px;
}

#hdWrap .searchArea .search fieldset {
    position: relative;

    display: flex;
    align-items: center;

    height: 120px;

    margin: 0;
    padding: 0;

    border: 0;
}

#hdWrap .searchArea .search input,
#hdWrap .searchArea .searchWrap .dummy {
    display: none !important;
}

#hdWrap .searchArea .search .searhBtn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 120px;
}


/* ==================================================
   마이페이지 하위 메뉴
================================================== */

#hdWrap .topRight li .dep {
    position: absolute;
    top: 100px;
    left: 50%;

    display: none;

    width: 90px;
    padding: 8px 0;

    background: #fff;
    border: 1px solid #ededed;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);

    transform: translateX(-50%);

    text-align: center;

    z-index: 1100;
}

#hdWrap .topRight li:hover > .dep {
    display: block;
}

#hdWrap .topRight li .dep li a {
    display: block;

    width: 100%;

    padding: 6px 10px;

    font-family: "Pretendard", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;

    color: #555;
}

#hdWrap .topRight li .dep li a:hover {
    color: #111;
    background: #f7f7f7;
}


/* ==================================================
   장바구니 숫자
================================================== */

#hdWrap .topRight li.cartArea .bsCount {
    position: absolute;
    top: 41px;
    right: -7px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 14px;
    height: 14px;

    padding: 0 3px;

    border-radius: 7px;

    background: #111;
    color: #fff;

    font-family: "Pretendard", sans-serif;
    font-size: 9px;
    font-weight: 600;
    line-height: 14px;

    z-index: 2;
}


/* ==================================================
   전체 메뉴
================================================== */

.allMenu {
    position: fixed;
    top: 160px;
    left: 50%;

    display: none;

    width: 1280px;
    max-height: calc(100vh - 160px);

    background: #fff;
    border: 1px solid #ededed;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

    transform: translateX(-50%);

    overflow-x: hidden;
    overflow-y: auto;

    z-index: 1200;
}

.allMenu.is-open {
    display: block;
}

.allMenu .allMenuWrap {
    position: relative;

    width: 100%;
    min-height: 420px;

    padding: 50px;

    overflow: hidden;
}


/* 닫기 */
.allMenu .allMenuTop .closeBtn {
    position: absolute;
    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    color: #111;

    font-size: 23px;

    cursor: pointer;

    z-index: 20;
}

.allMenu .allMenuTop .closeBtn:hover {
    color: #888;
}


/* 전체 메뉴 왼쪽 */
.allMenu .allMenuLeft {
    float: left;

    width: 14%;
    padding-right: 30px;
}

.allMenu .allMenuLeft ul li {
    margin-bottom: 26px;
}

.allMenu .allMenuLeft ul li:last-child {
    margin-bottom: 0;
}

.allMenu .allMenuLeft ul li a {
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.03em;

    color: #111;
}

.allMenu .allMenuLeft ul li a:hover {
    color: #888;
}


/* 전체 메뉴 오른쪽 */
.allMenu .allMenuRight {
    float: right;

    width: 86%;
}

.allMenu .allMenuList {
    display: flex;
    align-items: flex-start;

    width: 100%;

    margin-bottom: 55px;
}

.allMenu .allMenuList:last-child {
    margin-bottom: 0;
}

.allMenu .allMenuList dl {
    flex: 1 1 0;

    min-width: 0;
    margin-right: 22px;
}

.allMenu .allMenuList dl:last-child {
    margin-right: 0;
}

.allMenu .allMenuList dl dt {
    min-height: 31px;

    margin-bottom: 12px;
    padding-bottom: 9px;

    border-bottom: 1px solid #cecece;

    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;

    color: #111;
}

.allMenu .allMenuList dl dt a {
    color: inherit;
    font: inherit;
}

.allMenu .allMenuList dl dd {
    padding: 3px 0;

    font-family: "Pretendard", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;

    color: #8b8b8b;
}

.allMenu .allMenuList dl dd a {
    display: block;

    font: inherit;

    color: #8b8b8b;
}

.allMenu .allMenuList dl dd a:hover {
    color: #111;
}

.allMenu .allMenuList dl dd b {
    display: block;

    margin-bottom: 10px;

    font-family: "Pretendard", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;

    color: #111;
}

.allMenu .allMenuList dl dd p {
    margin: 0;

    font-family: "Pretendard", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;

    color: #8b8b8b;
}

.allMenu .allMenuList dl.cscenter_list {
    flex: 1.25 1 0;
}

.allMenu .allMenuList dl.addr {
    flex: 1.6 1 0;
}

.allMenu .allMenuList dl.addr dd {
    font-size: 11px;
}

/* ==================================================
   본문
================================================== */

#contentWrapper {
    margin-top: 160px !important;
    padding-top: 0 !important;
}

#contentWrapper > #content,
#contentWrapper > .content,
#contentWrapper > .main,
#contentWrapper > .mainWrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* ==================================================
   화면 폭 조정
================================================== */

@media screen and (max-width: 1320px) {

    #hdWrap .hdArea .clear {
        width: calc(100% - 40px);
        min-width: 1200px;
    }

    #hdWrap .hdLeft,
    #hdWrap.fix .hdLeft {
        margin-right: 32px;
    }

    #hdWrap .hdCate .cateWrap {
        gap: 8px;
    }

    #hdWrap .hdCate .cateWrap .tmenu {
        padding-right: 8px;
        padding-left: 8px;
    }

    #hdWrap .hdCate .cateWrap .tmenu > a {
        font-size: 15px;
    }

    .allMenu {
        width: calc(100% - 40px);
        min-width: 1200px;
    }
}


/* BASIC css end */

