@import './font.css';
@import './reset.css';
@import './common.css';

.header{
    z-index: 2;
    background: #000;
    color: rgba(255, 255, 255, .8);
    letter-spacing: 0em;
    position: sticky;
    top: -44px;
    transition: 0.3s;
    --height : 0;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--height);
    z-index: 1;
    background: #161617;
    transition: 0.3s;
}
.header.on{
    background: rgba(251,251,253,0.8);
    color: #000;
    backdrop-filter: saturate(180%) blur(20px);
}
.header .nav-curtain.on{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(20px);
}
.header .header-inner{
    padding: 0 22px;
    max-width: 1024px;
    margin: 0 auto;
}
.header .header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}
.header .header-top .logo{
    z-index: 4;
    width: 30px;
    margin: 0 8px 0 0;
}
.header .header-top .logo a{
    display: flex;
    justify-content: start;
    align-items: center;
}
.header .header-top nav{
    flex: 1;
    height: 100%;
}
.header .header-top .gnb{
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    height: 100%;
}
.header .header-top .gnb .item{
    height: 100%;
    padding: 0 16px;
}
.header .header-top .gnb .item .gnb-2dept .gnb-2dept-wrapper{
    opacity: 0;
    visibility: hidden;
}
.header .header-top .gnb .item:hover .gnb-2dept .gnb-2dept-wrapper{
    opacity: 1;
    visibility: visible;
    transition: 0.6s;
}
.header .header-top .gnb .item > a{
    display: block;
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8px;
}
.header .header-top .gnb .gnb-2dept, 
.header .header-top .util-wrap .search-area ,
.header .header-top .util-wrap .shopping-area {
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transform: translateY(-100%);
    position: absolute;
    top: 0; left: 0;
    padding-top: 44px;
    width: 100%;
}
.header .header-top .gnb .gnb-2dept.on,
.header .header-top .util-wrap .search-area.on,
.header .header-top .util-wrap .shopping-area.on
{
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition: visibility 0.3s 0.2s, opacity 0.3s 0.2s;
}
.header .header-top .gnb .gnb-2dept .gnb-2dept-wrapper{
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 22px 84px 22px;
    display: flex;
}
.header .header-top .gnb .gnb-2dept .title{
    font-size: 12px;
    line-height: 1.3333733333;
    color: rgb(134, 134, 139);
    transform: translateY(-4px);
}
.header .header-top .gnb .gnb-2dept ul li{
    padding: 7px 11px 7px 0;
    color: #E8E8ED;
}
.header .header-top .gnb .gnb-2dept .list1{
    padding: 0 88px 0 0;
}
.header .header-top .gnb .gnb-2dept .list1 ul li{
    font-size: 24px;
    line-height: 1.1666666667;
    font-weight: 600;
}
.header .header-top .gnb .gnb-2dept .list1 ul li.last{
    font-size: 12px;
}
.header .header-top .gnb .gnb-2dept .list2{
    padding: 0 44px 0 0;
}
.header .header-top .gnb .gnb-2dept .list2 ul li{
    font-size: 12px;
    line-height: 1.3333733333;
    font-weight: 600;
}
.header .header-top .gnb .gnb-2dept .list3{
    padding: 0 44px 0 0;
}
.header .header-top .gnb .gnb-2dept .list3 ul li{
    font-size: 12px;
    line-height: 1.3333733333;
    font-weight: 600;
}
.header .header-top .util-wrap{
    z-index: 4;
    display: flex;
    gap: 24px;
}
.header .header-top .util-wrap .search-wrap .btn-search{
    z-index: 10;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    margin: 0 0 0 14px;
}
.header .header-top .util-wrap .search-wrap .btn-search svg{
    z-index: -1;
}
.header .header-top .util-wrap .shopping-wrap .btn-shopping{
    z-index: 10;
    width: 30px;
    display: flex;
    justify-content: end;
    align-items: center;
    
}
.header .header-top .util-wrap .shopping-wrap .btn-shopping svg{
    z-index: -1;
}

.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper,
.header .header-top .util-wrap .shopping-wrap .shopping-area .shopping-area-wrapper{
    padding-top: 32px;
    padding-bottom: 80px;
    padding-left: 22px;
    padding-right: 22px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 22px 84px 22px;
}
.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper form .input-wrapper{
    display: flex;
    align-items: center;
}
.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper .input-wrapper input[type=search]{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .009em;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #E8E8ED;
    line-height: 1;
}
.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper .link-area{
    margin-top: 32px;
}
.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper .link-area .title{
    font-size: 12px;
    line-height: 1.3333733333;
    font-weight: 400;

}
.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper .link-area .link-list li{
    margin-top: 8px;
    display: flex;
}
.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper .link-area .link-list li a{
    width: 100%;
    border-radius: 5px;
    padding-inline-start: 8px;
    padding-inline-end: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 11px;
}
.header .header-top .util-wrap .search-wrap .search-area .search-area-wrapper .link-area .link-list li a:hover{
    background: rgb(29, 29, 3);
}
.header .header-top .util-wrap .shopping-wrap .shopping-area .desc{
    font-size: 24px;
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: .009em;
    color: #e8e8ed;
    margin-bottom: 24px;
}
.header .header-top .util-wrap .shopping-wrap .shopping-area .login-desc{
    color: #86868b;
    line-height: 1.4;
    letter-spacing: 0em;
    font-size: 12px;
    font-weight: 400;
}
.header .header-top .util-wrap .shopping-wrap .shopping-area .login-desc a{
    color: #2997ff;
    text-decoration: underline;
}
.header .header-top .util-wrap .shopping-wrap .shopping-area  .profile-area{
    margin-top: 36px;
}
.header .header-top .util-wrap .shopping-wrap .shopping-area  .profile-area .title{
    color: #86868b;
    line-height: 1.4;
    font-size: 12px;
}
.header .header-top .util-wrap .shopping-wrap .shopping-area  .profile-area  .profile-list{
    color: #e8e8ed;
    font-size: 12px;
    margin-top: 10px;
}
.header .header-top .util-wrap .shopping-wrap .shopping-area  .profile-area  .profile-list  li{
    display: flex;
    align-items: center;
}
.header .header-top .util-wrap .shopping-wrap .shopping-area  .profile-area  .profile-list  li a{
    padding-left: 14px;
    padding-right: 1px;
}
.header .m-header-top{
    display: none;
}
.header .m-header-top .logo a{
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .m-header-top .logo svg{
    opacity: 0.8;
}
.header .m-header-top .logo:hover svg{
    opacity: 1;
}
.header .m-header-top .m-header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .m-header-top .m-header-wrapper .util-area{
    display: flex;
    align-items: center;
}
.header .m-header-top .m-header-wrapper .util-area .search-wrapper .btn-search,
.header .m-header-top .m-header-wrapper .util-area .cart-wrapper .btn-cart,
.header .m-header-top .m-header-wrapper .util-area .menu-wrapper .btn-menu{
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area{
    position: absolute;
    z-index: 20;
    top: 0;left: 0;
    width: 100%;
    height: 100vh;
    background: #161616;
    padding: 54px 48px 0 48px;
    transform: translateY(-100%);
    transition: 0.6s;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area.on{
    transform: translateY(0);
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area form{
    display: flex;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area form svg{
    margin-top: -5px;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area input[type=search]{
    font-size: 28px;
    line-height: 1.1428571429;
    font-weight: 600;
    letter-spacing: .007em;
    background-color: transparent;
    border: none;
    width: 100%;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area .link-area{
    margin-top: 50px;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area .link-area .title{
    font-size: 17px;
    line-height: 1.2;
    font-weight: 400;
    color:rgb(134, 134, 139);
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area .link-area .link-list{
    margin-top: 13px;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area .link-area .link-item{
    border-radius: 6px;
    padding: 5px 12px 5px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area .link-area .link-item:hover{
    background: rgb(29, 29, 31);
}
.header .m-header-top .m-header-wrapper .search-wrapper .search-area .link-area .link-item svg{
    margin-right: 12px;
}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area{
    z-index: 20;
    position: absolute;
    top: 0;left: 0;
    width: 100%;
    height: 100vh;
    background: #161616;
    padding: 54px 48px 0 48px;
    transform: translateY(-100%);
    transition: 0.6s;
}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area .cart-desc{
    margin-bottom: 30px;
    color: #e8e8ed;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .008em;
}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area .login-desc{
    color: #86868b;
    font-size: 17px;
    margin-top: 0.8em;
}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area .login-desc a{
    color: #2997ff;
    text-decoration: underline;
}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area .profile-area .title{
    color: #86868b;
    font-size: 17px;
    margin-top: 56px;
    padding-bottom: 7px;
}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area .profile-area .profile-item{
    display: flex;
    margin-top: 15px;
}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area .profile-area .profile-item svg
{margin-right: 15px;}
.header .m-header-top .m-header-wrapper .cart-wrapper .cart-area.on{
    transform: translateY(0);
}
.header .m-header-top .m-header-wrapper .menu-wrapper{
    z-index: 20;
}
.header .m-header-top .m-header-wrapper .menu-wrapper .menu-area{
    position: absolute;
    top: 0;left: 0;
    transform: translateY(-100%);
    width: 100%;
    height: 100vh;
    background: #161616;
    padding: 54px 48px 0 48px;
    transition: 0.6s;
}
.header .m-header-top .m-header-wrapper .menu-wrapper .menu-area.on{
   transform: translateY(0);
}
.header .m-header-top .m-header-wrapper .menu-wrapper .btn-menu{
    z-index: 30;
    position: relative;
}
.header .m-header-top .m-header-wrapper .menu-wrapper .menu-area .menu-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    padding-bottom: 6px;
}
.header .m-header-top .m-header-wrapper .menu-wrapper .menu-area .menu-item .text{
    font-size: 28px;
    line-height: 1.1428571429;
    font-weight: 600;
}
.header .m-header-top .m-header-wrapper .menu-wrapper .menu-area .menu-item .icon-more svg{
    opacity: 0;
    transform: rotate(-90deg);
    transition: 0.3s;
}
.header .m-header-top .m-header-wrapper .menu-wrapper .menu-area .menu-item:hover .icon-more svg{
    opacity: 1;
}

.header .header-bottom{
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -52px;
}
.header .header-bottom .headline{
    opacity: 0.92;
    color: #fff;
    font-size: 21px;
    line-height: 1.14286;
    font-weight: 600;
    letter-spacing: .011em;
}

.header.on .header-bottom .headline {
    color:#000;
}
.header .header-bottom .menu-area{
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 12px;
    color: #fff;
    letter-spacing: normal;
}
.header .header-bottom .menu-area .menu-area-wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header .header-bottom .menu-area .btn-view-more{
    display: none;
}
.header .header-bottom .menu-area .btn-view-more .line1{
    display: block;
    width: 11px;
    height: 1px;
    z-index: 1;
    background: #fff;
    transform-origin: 100% 100%;
    transform: rotate(40deg) scaleY(1.1);
}
.header .header-bottom .menu-area .btn-view-more .line2{
    display: block;
    width: 11px;
    height: 1px;
    z-index: 1;
    background: #fff;
    transform-origin: 0% 100%;
    transform: rotate(-40deg) scaleY(1.1);
}
.header.on .header-bottom .menu-area{
    color: #000;
}

.header .header-bottom .menu-area p{
    opacity: .56;
}
.header .header-bottom .menu-area .link-reason{
    opacity: .92;
}
.header .header-bottom .menu-area .link-reason:hover{
    color: #2997ff;
}
.header .header-bottom .menu-area .btn-purchase{
    background: #147ce5;
    border-radius: 980px;
    min-width: 25px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    color: #fff;
}
@media (max-width:1023px){
    .header .header-top .gnb .item{
    height: 100%;
    padding: 0 10px;
}
}
@media (max-width: 850px) {
    .header .header-bottom .headline{
        font-size: 1em;
    }
    .header .header-bottom .menu-area{
        gap: 15px;
    }
    .header .header-inner{
        padding: 0;
    }
    .header .header-top{
        display: none;
    }
    .header .header-bottom{
        padding: 0 16px;
    }
    .header .m-header-top{
        display: block;
    }
    .header .header-bottom .menu-area .menu-area-wrapper{
        display: none;
    }
    .header .header-bottom .menu-area .btn-view-more{
        display: flex;
    }
    
}

.footer{
    background: #f5f5f7;
}
.footer .sc-info{
    padding: 56px 0;
    border-bottom: 1px solid #d2d2d7;
}
.footer .sc-info .info-list{
    display: flex;
}
.footer .sc-info .info-list li{
    flex: 1;
} 
.footer .sc-info .info-list li a{
    text-align: center;
}
.footer .sc-info .info-list li a .icon-delivery{
    display: block;
    width: 100%;
    height: 56px;
    background-size: 100% 56px;
    background-repeat: no-repeat;
    background-image: url(../images/icon/icon-delivery.svg);
}
.footer .sc-info .info-list li a .icon-installment{
    display: block;
    width: 100%;
    height: 56px;
    background-size: 100% 56px;
    background-repeat: no-repeat;
    background-image: url(../images/icon/icon-installment.svg);
}
.footer .sc-info .info-list li a .icon-help{
    display: block;
    width: 100%;
    height: 56px;
    background-size: 100% 56px;
    background-repeat: no-repeat;
    background-image: url(../images/icon/icon-help.svg);
}
.footer .sc-info .info-list li a .title{
    line-height: 1.31579;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .012em;
    margin-top: 0.525em;
}
.footer .sc-info .info-list li a .desc{
    margin-top: 0.4em;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -.016em;
}
.footer .sc-info .info-list li a .view-more{
    color: #06c;
    font-size: 14px;
    line-height: 1.42859;
    font-weight: 400;
    letter-spacing: -.016em;
    margin-top: 0.8em;
}
.footer .sc-info .info-list li a .view-more:hover .text{
    text-decoration: underline;
}
.footer .sc-info .info-list li a .view-more .icon-more{
    font-family: "SF Pro Icons";
    top: -0.08em;
    padding-left: 0.3em;
}
.footer .sc-footnote{
    list-style-position: inside;
    border-bottom: 1px solid #d2d2d7;
    padding: 17px 0 11px;
}
.footer .sc-footnote ol li,.footer  .sc-footnote ul li{
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    padding-bottom: 0.8em;
    color: #6e6e73;
}
.footer .sc-footnote ol li a{
    color: #424245;
    text-decoration: underline;
}
.footer .sc-navigation .breadcrumbs{
    padding: 17px 0;
    position: relative;
}
.footer .sc-navigation .breadcrumbs ul{
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer .sc-navigation .breadcrumbs ul li{
    color: #424245;
    font-size: 12px;
    position: relative;
}
.footer .sc-navigation .breadcrumbs ul li:after{
    position: absolute;
    top: 0;
    right: -20px;
    content: '';
    display: block;
    width: 8px;
    height: 18px;
    background: url(../images/icon/icon-breadcrumbs_arrow.svg) no-repeat center center /100%;
    background-position: 0 0;
}
.footer .sc-navigation .breadcrumbs ul li:last-child:after{
    display: none;
}
.footer .sc-navigation .breadcrumbs ul li .footer-logo{
    width: 14px;
    height: 18px;
    overflow: hidden;
    position: relative;
}
.footer .sc-navigation .breadcrumbs ul li .footer-logo img{
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;left: 0;
}
.footer .sc-navigation .breadcrumbs ul li .footer-logo:hover img{
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: -18px;left: 0;
}
.footer .sc-navigation .nav{
    display: flex;
}
.footer .sc-navigation .nav .column{
    flex: 1;
    font-size: 12px;
}
.footer .sc-navigation .nav .column .title{
    color: #1d1d1f;
    margin-right: 20px;
    margin-bottom: 0.8em;
    font-weight: 600;
}
.footer .sc-navigation .nav .column ul{
    margin-bottom: 1.6em;
}
.footer .sc-navigation .nav .column ul li{
    color: #424245;
    margin-bottom: 0.8em;
}
.footer .sc-navigation .nav .column .title ul li:hover{
    text-decoration: underline;
}
.footer .sc-navigation .method{
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -.01em;
    color: #6e6e73;
    margin-bottom: 7px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d2d2d7;
}
.footer .sc-navigation .method a{
    color: #06c;
    text-decoration: underline;
}
.footer .footer-bottom{
    display: flex;
    justify-content: space-between;
    padding-bottom: 21px;
    align-items: center;
}
.footer .footer-bottom .left-wrapper{
    display: flex;
    align-items: center;
}
.footer .footer-bottom .copyright{
    margin-right: 30px;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -.01em;
    color: #6e6e73;
}
.footer .footer-bottom .info{
    display: flex;
    gap: 20px;
    margin-right: 30px;
    margin-top: 5px;
}
.footer .footer-bottom .info li{
    position: relative;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -.01em;
    color: #424245;
}
.footer .footer-bottom .info li:hover{
    text-decoration: underline;
}
.footer .footer-bottom .info li:after{
    position: absolute;
    top: 0;
    right: -10px;
    content: '';
    width: 1px;
    height: 16px;
    background: #86868b;
}
.footer .footer-bottom .country{
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -.01em;
    color: #424245;
}
.footer .footer-bottom .country:hover{
    text-decoration: underline;
}
.footer .m-nav {
    display: none;
}
.footer .m-nav .nav-item{
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #1d1d1f;
    font-size: 12px;
    border-bottom: 1px solid #d2d2d7;
}
.footer .m-nav .nav-item:after{
    content: '+';
    font-size: 14px;
    display: block;
    position: absolute;
    top: 8px;
    right: 6px;
}
.footer .m-nav .nav-item:first-child{
    border-top: 1px solid #d2d2d7;
}
@media (max-width:735px) {

    .header{
        width: 100%;
    }
    .header .m-header-top .m-header-wrapper .search-wrapper .search-area{
        width: 100%;
        overflow-x: hidden;
    }
    .footer .inner{
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
    }
    .footer .sc-info .info-list{
        flex-wrap: wrap;
    }
    .footer .sc-info .info-list li{
        width: 50%;
        flex: none;
    }
    .footer .sc-info .info-list li:last-child{
        margin: 30px auto 0;
    }
    .footer .footer-bottom{
        position: relative;
    }
    .footer .sc-navigation .method{
        border-bottom: none;
        margin: 15px 0 0 0;
        padding: 0;
    }
    .footer .footer-bottom .left-wrapper{
        display: block;
        margin-top: 50px;
    }
    .footer .footer-bottom .country{
        position: absolute;
        left: 0;
        bottom: 120px;
    }
    .footer .sc-navigation .nav-wrapper{
        display: none;
    }
    .footer .m-nav {
        display: block;
    }
}
