@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-style: normal;
    src: url('../font/Pretendard-Light.woff') format('woff'),
    url('../font/Pretendard-Light.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-style: normal;
    src: url('../font/Pretendard-Regular.woff') format('woff'),
    url('../font/Pretendard-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-style: normal;
    src: url('../font/Pretendard-Medium.woff') format('woff'),
    url('../font/Pretendard-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-style: normal;
    src: url('../font/Pretendard-SemiBold.woff') format('woff'),
    url('../font/Pretendard-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-style: normal;
    src: url('../font/Pretendard-Bold.woff') format('woff'),
    url('../font/Pretendard-Bold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-style: normal;
    src: url('../font/Pretendard-ExtraBold.woff') format('woff'),
    url('../font/Pretendard-ExtraBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-style: normal;
    src: url('../font/Pretendard-Black.woff') format('woff'),
    url('../font/Pretendard-Black.woff2') format('woff2');
    font-display: swap;
}

:root {
    --gray-bg1: #F5F5F5;
    --gray-bg2: #eee;
    --gray-btn: #E5E5E5;

    --gray-300: #f8f8f8;
    --gray-400: #eee;
    --gray-500: #ccc;

    --gray-t500: #999;
    --gray-t600: #878787;
    --gray-t700: #666;
    --gray-t800: #444;
    --gray-t900: #222;
    --bk: #000;
    --primary: #F246AC;
    --p-color: #6A2986;
    --p-color2: #B55EFE;
    --p-color3: #C7EE49;

    --red: #EF4444;
    --success: #12B76A;
    /* �고듃 �ъ씠利� */
    --font-m-size: 1.125rem;
    --head-icft-size: 0.75rem;
}


* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    letter-spacing: calc(-2 * 16px / 100); /* -0.32px */;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 140%;
    font-feature-settings: 'tnum';
}

body {
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

ul, li {
    list-style: none;
}

a {
    color: inherit;
    display: block;
    white-space: nowrap;
}

table {
    border-collapse: collapse;
    width: 100%;
}

button {
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

span, strong {
    display: inline-block;
}

legend {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

/* footer */
#footer {
    background: var(--gray-bg1);
    padding: 40px 0 64px;
    position: relative;
}

.foot-con1 {
    display: flex;
    justify-content: space-between;
    padding: 0 24px 32px;
    max-width: 1610px;
    margin: 0 auto;
    gap: 16px;
}

.ft-link {
    display: flex;
    align-items: center;
    width: 100%;
}

.ft-link a {
    position: relative;
    display: block;
    padding: 0 20px;
    font-size: var(--font-m-size);
}

.ft-link a::after {
    content: "";
    display: block;
    height: 12px;
    width: 1px;
    background: var(--gray-t700);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.ft-link a:first-child {
    padding-left: 0;
}

.ft-link a:first-child::after {
    display: none;
}

.ft-link a > strong {
    font-size: var(--font-m-size);
}

.nw-btn-wrap {
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: flex-end;
}

.foot-btn {
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--gray-btn);
    display: flex;
    justify-content: space-between;
    max-width: 204px;
    width: 100%;
    cursor: pointer;
}

.foot-btn > .nw-icon {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bk);
    position: relative;
    transition: transform .2s;
}

.foot-btn:hover .nw-icon {
    transform: translate(3px, -3px);
}

.foot-con2 {
    border-top: 1px solid var(--gray-500);
}

.foot-con2 > .fc2-inr {
    padding: 36px 24px 0;
    max-width: 1610px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ftb-left {
    display: flex;
    column-gap: 64px;
}

.ftb-left > p {
    font-size: var(--font-m-size);
    color: var(--gray-t700);
}

.foot-info .copyright {
    display: inline-block;
    margin-top: 24px;
    font-size: 1.125rem;
    color: var(--gray-t600);
    font-weight: 400;
}

.foot-info > p {
    font-weight: 400;
    word-break: keep-all;
}

.foot-info > p > span.m-none {
    margin: 0 16px 0 16px;
}

.foot-info > p > span {
    font-weight: 400 !important;
}

.ftb-right {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    justify-content: flex-end;
    flex-direction: column;
}

.ft-cs-t {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ft-cs-t > strong {
    font-size: 1.375rem;
    font-weight: 700;
}

.ft-cs-t > strong.p-color {
    font-size: 1.5rem;
}

.ft-iconbox {
    display: flex;
    gap: 8px;
}

.ft-iconbox .fi-item {
    width: 40px;
    height: 40px;
    background: var(--gray-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .2s ease;
    cursor: pointer;
    overflow: hidden;
}

.fi-item::after {
    content: "";
    background: var(--bk);
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 0%;
    transition: all .2s;
    transform-origin: center;
    border-radius: 50%;
}

.fi-item:hover::after {
    height: 100%;
}

.ft-iconbox .fi-item > img {
    position: relative;
    z-index: 1;
}

/* footer �� */

/* header */
#header {
    z-index: 1002;
    position: relative;
    height: 150px;
    top: 0;
    padding-bottom: 16px;
    box-shadow: 0 4px 10px rgba(200, 200, 200, 0.1);
    background: #fff;
    transition: height .3s, padding .3s;
}

.head {
    max-width: 1610px;
    padding: 0 24px;
    margin: 0 auto;
    transition: all .3s;
    height: 100%;
}

.head-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 28px;
}

.head-tpl {
    display: flex;
}

.store-lc {
    padding-left: 22px;
    margin-left: 22px;
    position: relative;
    display: flex;
    align-items: center;
}

.store-lc::before {
    content: "";
    position: absolute;
    display: block;
    height: 16px;
    width: 1px;
    background: var(--gray-500);
    left: 0;
}

.hd-sel-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hd-sel-btn svg {
    transition: all .2s;
}

.hd-sel-btn.on svg {
    transform: rotate(-180deg);
}

.hd-sel-btn.on svg circle,
.hd-sel-btn.on svg path {
    stroke: var(--p-color);
}

.head-select {
    display: block;
    position: absolute;
    top: 36px;
    left: 16px;
    background: #fff;
    border: 1px solid var(--gray-500);
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    padding: 8px 0;
    z-index: 10;
    display: none;
}

.head-select.on {
    display: block;
}

.head-select > li {
    min-width: 70px;
    text-align: center;
}

.head-select > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2px 0;
    font-size: 14px;
    color: var(--gray-t500);
}

.head-select > li > a.on {
    color: #000;
    background: var(--gray-300);
}

.head-select > li > a:hover {
    color: #000;
}

.head-ico-wrap {
    display: flex;
    column-gap: 40px;
    align-items: center;
}

.search-ico {
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--gray-400);
    border-radius: 50px;
    transition: width .3s ease;
}

.search-ico.open {
    width: 360px;
}

.search-ico #sh-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sh-btn > img {
    position: relative;
    top: -1px;
}

.search-ico.open input[type="text"] {
    display: block;
}

.search-ico input[type="text"] {
    background: transparent;
    border: none;
    display: none;
    padding: 0;
    height: 40px;
    border-radius: 50px;
    width: calc(100% - 20px);
}

.search-ico input[type="text"]:focus {
    outline: none;
}

.input-sh {
    position: relative;
    padding: 0 32px 0 24px;
}

.btn-clear-text {
    width: 14px;
    height: 14px;
    background: url(../images/icon/Close-gray.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
}

.fut-ico-list {
    display: flex;
    gap: 24px;
}

.fut-ico-list > li {
    position: relative;
}

.hd-ico-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hd-ico-item span {
    font-size: var(--head-icft-size);
}

.lang-pack > button > div {
    display: flex;
    gap: 4px;
}

.lang-pack .lang-sel {
    top: 50px;
    left: -10px;
}

#cart {
    position: relative;
}

.cart-total {
    position: absolute;
    top: -4px;
    right: 2px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--bk);
}

.cart-total > span {
    color: #fff;
    text-align: center;
    display: block;
    font-size: 0.875rem;
}

.gnb {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.gnb .category {
    display: flex;
    column-gap: 40px;
}

.ctg-item {
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.ctg-item.on {
    color: var(--p-color);
}

.ctg-item.on::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--p-color);
    bottom: -20px;
    left: 0;
}

.nav-icon {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.nav-icon > span {
    position: absolute;
    height: 2px;
    background: var(--bk);
    left: 0;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
}

.nav-icon > span:nth-child(1) {
    top: 5px;
    width: 18px;
}

.nav-icon > span:nth-child(2) {
    width: 14px;
    top: 12px;
}

.nav-icon > span:nth-child(3) {
    top: 19px;
    width: 18px;
}

.nav-icon.on > span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.nav-icon.on > span:nth-child(2) {
    opacity: 0;
}

.nav-icon.on > span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

.head-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.my-event {
    border: 1px solid var(--gray-500);
    border-radius: 50px;
    padding: 4px 16px;

}

.my-event > span {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-t800);
}

#sub {
    display: none;
    position: absolute;
    top: 32px;
    left: 0;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--p-color);
    border-radius: 24px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
}

#sub.on {
    display: block;
}

#sub .nav-items {
    min-height: 428px;
    padding: 0 32px;
    border-left: 1px solid #F8F8F8;
}

#sub .dep1-items {
    position: relative;
    padding: 0;
    border-left: 0;
    width: 100%;
}

#sub .dep1-items .nav-item.on {
    padding-right: 255px;
}

#sub .dep2-items {
    left: 222px;
}

#sub .nav-item .nav-items {
    display: none;
    position: absolute;
    top: 0;
}

#sub .nav-item.on .nav-items {
    display: block;
}

#sub .nav-item > a {
    display: block;
    padding: 10px 20px;
    width: 190px;
    border-radius: 50px;
    position: relative;
}

#sub .dep1-item > a:after {
    content: "";
    background: url(../images/main/gray-aw.svg) no-repeat;
    width: 16px;
    height: 16px;
    background-size: contain;
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .1s ease, right .2s ease;
}

#sub .nav-item.on > a {
    background: #FDF9FF;
    color: var(--p-color);
}

#sub .dep1-item.on > a::after {
    opacity: 1;
    right: 20px;
}

#header.fixed {
    position: fixed;
    width: 100%;
    height: 80px;
    padding-bottom: 0;
}

#header.fixed .head {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

#header.fixed .head-top {
    padding-top: 0;
}

#header.fixed .head-bottom {
    margin-top: 0;
}

#header.fixed .head-tpl,
#header.fixed .my-event,
#header.fixed .hd-ico-item > span,
#header.fixed .lang-pack,
#header.fixed .fut-ico-list > li:nth-child(4) {
    display: none;
}

#header.fixed .ctg-item.on::after {
    bottom: -27px;
}

#mobile-sh {
    background: var(--gray-400);
    padding: 0 12px;
    height: 70px;
    position: absolute;
    width: 100%;
    top: -200px;
    transition: top .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

#mobile-sh .mob-sh-close {
    width: 32px;
    height: 32px;
    padding: 4px;
}

#mobile-sh .mob-sh-close > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#mobile-sh input[type="text"] {
    border-radius: 100px;
    border: none;
    padding: 12px 68px 12px 24px;
}

#mobile-sh > .mob-sh-box {
    position: relative;
    width: 100%;
}

#mobile-sh > .mob-sh-box:after {
    content: "";
    background: url(../images/header/Search.svg) no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

#mobile-sh .mob-sh-box > .btn-clear-text {
    right: 48px;
}

/* header �� */

/* �ㅽ겕濡ㅻ쾭�� */
#floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.recently-view {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
}

.recently-view > span {
    font-size: 13px;
}

.recently-view > .rv-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: url(../images/icon/recently-view.svg) no-repeat;
    background-size: 20px;
    background-position: center;
    background-color: var(--p-color);
    margin-bottom: 4px;

}

.scroll-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: url(../images/icon/white-aw.svg) no-repeat;
    background-size: 24px;
    background-position: center;
    background-color: var(--gray-t500);
    transform: rotate(-90deg);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.scroll-top.open {
    opacity: 1;
    visibility: inherit;
}

/*#floating.stop {*/
/*    position: absolute;*/
/*    top: -132px;*/
/*    bottom: 0;*/
/*}*/

/* 濡쒓렇�� */
.log-container {
    background: #fcfcfc;
    padding: 80px 0 120px;
}

.log-contant {
    max-width: 760px;
    margin: auto;
}

.log-contant > .tit {
    font-size: 2.125rem;
    font-weight: bold;
    text-align: center;
}

.tab-con {
    display: none;
}

.tab-con.on {
    display: block;
}

.log-box {
    background: #fff;
    border: 1px solid var(--gray-500);
    padding: 40px;
    margin-top: 32px;
}

.log-tab-list {
    background: var(--gray-400);
    display: flex;
    justify-content: space-between;
    padding: 6px;
    border-radius: 6px;
}

.log-tab-list > li {
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
}

.log-tab-list > li.on {
    background: #fff;
}

.log-tab-list > li.on .box-tab-btn {
    color: #000;
}

.log-tab-list .box-tab-btn {
    padding: 16px 0;
    width: 100%;
    height: 100%;
    display: block;
    font-size: var(--font-m-size);
    color: var(--gray-t600);

}

.info-input {
    margin-bottom: 40px;
}

.info-label-wrap {
    margin-bottom: 20px;
}

.log-btn-wrap > button {
    width: 100%;
    margin-bottom: 20px;
}

.log-btn-wrap > button:last-child {
    margin: 0;
}

.log-sh-wrap {
    display: flex;
    justify-content: center;
    padding: 48px 0;
}

.log-sh-wrap > a {
    position: relative;
    padding: 0 20px;
}

.dd-line::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background: var(--gray-t600);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.esey-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.esey-list .el-icon {
    width: 52px;
    height: 52px;
}

.esey-list .el-icon > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 怨좉컼�쇳꽣 */
.container {
    max-width: 1610px;
    margin: 0 auto;
    padding: 80px 24px 148px;
}

.cst-container {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

#left-menu {
    padding: 28px 0;
    border: 1px solid var(--gray-500);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    width: 316px;
    border-radius: 12px;
}

#left-menu > h1 {
    font-size: 1.75rem;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-500);
    padding: 0 28px 24px;
}

#left-menu .lm-nav {
    padding: 16px 28px 0;
}

.lm-item {
    padding: 8px 0;
}

.lm-item > .ac-btn {
    width: 100%;
    height: 100%;
    font-size: 1.125rem;
}

.lm-item > .ac-btn.on {
    color: var(--p-color2);
}

.cst-contents {
    width: calc(100% - 348px);
}

.cst-contents > .cst-tit {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 怨좉컼�쇳꽣 �� */


/* �λ컮援щ땲 */
.cart-tt {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.cart-tt > h1 {
    font-size: 2.125rem;
    font-weight: 700;
    white-space: nowrap;
}

.cart-tt .step-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-wrap > li {
    display: flex;
    align-items: center;
    gap: 4px;
}

.step-wrap .step-item > p {
    color: var(--gray-t500);
}

.step-wrap .step-item > p:nth-child(1) {
    font-size: 0.875rem;
}

.step-wrap .step-item.on > p:nth-child(1) {
    color: var(--p-color);
}

.step-wrap .step-item.on > p:nth-child(2) {
    color: var(--bk);
}

.cart-con {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.cart-items {
    width: 100%;
}

.floating-box {
    min-width: 380px;
    position: relative;
    min-height: 400px;
    z-index: 10;
}

.payment-info {
    position: sticky;
    top: 40px;
    left: 0;
}

.pay-ifbox {
    background: var(--gray-300);
    padding: 24px;
}

.pay-ifbox > .pay-txt {
    color: var(--gray-t800);
    font-size: 1.5rem;
}

.pay-if-wrap {
    margin-top: 20px;
    padding-bottom: 16px;
}

.pay-if-wrap > .pay-if-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pay-if-wrap > .pay-if-item:last-child {
    margin-bottom: 0;
}

.pay-if-item span {
    font-size: 1.125rem;
    color: var(--gray-t700);
}

.pay-if-item .prd-amount {
    display: flex;
}

.floating-btn {
    margin-top: 20px;
}

.floating-btn > button {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 16px;
}

.floating-btn > button:last-child {
    margin-bottom: 0;
}

.floating-btn > button > span {
    font-size: 1.125rem;
}

.floating-btn > .order-btn {
    display: flex;
    justify-content: center;
}

.floating-btn > .bk-btn > span {
    color: #fff;

}

.qt-prc .qt-inner {
    display: flex;

}

.qt-prc .qt-inner > span {
    color: var(--gray-t700);
}

.qt-prc .total-amt {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
    margin-top: 4px;
}

.cart-items .group .gp-head {
    background: #f9f9f9;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    row-gap: 4px;
    border-bottom: 1px solid var(--gray-400);
    flex-wrap: wrap;
}

.group .gp-head-inr {
    display: flex;
    column-gap: 8px;
    flex-wrap: wrap;
}

.cart-items .group .gp-head span {
    font-size: 0.875rem;
    color: var(--gray-t600);
}

.gds-item {
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.gds-item .prod-img {
    max-width: 108px;
    width: 100%;
    height: 108px;
}

.prod-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-items .group {
    border: 1px solid var(--gray-400);
    margin-top: 32px;
}

.cart-items .group:first-child {
    margin-top: 0;
}

.pi-under {
    /*border-top: 1px dashed var(--gray-500);*/
    padding-top: 16px;
}

.pi-under > .final-amount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.final-amount > span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--bk);
}

/* �λ컮援щ땲 �� */


/* 留덉씠�섏씠吏� */
.mypage-contents {
    width: calc(100% - 348px);
}

.mypage-contents > .tit {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lm-sub {
    margin-left: 12px;
    margin-top: 8px;
}

.lm-sub .lm-sub-item > a {
    color: var(--gray-t600);
    padding: 4px 0;
}

.lm-sub .lm-sub-item > a.on {
    color: var(--p-color2);
}

.list-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-total-wrap span {
    display: inline-block;
    font-weight: 700;
}

.list-total-wrap > p {
    font-weight: 400;
    color: var(--gray-t700);
}

.list-top .sib-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    width: 50%;
}

.list-top .sib-wrap > select {
    padding: 10px 16px;
    background-position: right 10px center;
}

.list-top .sib-wrap > input {
    padding: 10px 16px;
}

.list-top .sib-wrap .sh-btn {
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
}


.se-date {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* 紐⑤컮�� 硫붾돱 */
#mobile-menu {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.mobile-gnb {
    display: flex;
    justify-content: space-between;
    background: #fff;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 20px;
}

.mobile-gnb > li {
    position: relative;
}

.mobile-gnb .icon-btn {
    text-align: center;
}

.mobile-gnb .icon-btn > span {
    display: block;
    font-size: 0.9rem;
}

.mobile-gnb .icon-btn > img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mobile-gnb .cart-total {
    right: 8px;
}

#mobile-site {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    transition: right .5s ease;
}

#mobile-site.active {
    right: 0;
}

#mobile-site .m-head {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--gray-400);
}

#mobile-site .m-head .mobs-close {
    width: 20px;
    height: 22px;
    margin-left: 10px;
}

#mobile-site .m-head > div {
    display: flex;
    gap: 8px;
    align-items: center;
}

#mobile-site .mh-lt > a {
    padding: 4px 12px;
    border-radius: 50px;
}

.mh-lt > .log-on-btn {
    display: none;
}

#mobile-site .blank {
    width: 100%;
    background: var(--gray-400);
    height: 16px;
    border-top: 1px solid var(--gray-500);
    border-bottom: 1px solid var(--gray-500);
}

.mob-main-tab {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-400);
}

.mob-main-tab > .mob-tab {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 0;
    position: relative;
}

.mob-main-tab > .mob-tab.on {
    color: var(--p-color);
}

.mob-main-tab > .mob-tab.on::after {
    content: "";
    background: var(--p-color);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ms-con-sort {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 95px);
}

.ms-top {
    height: 100%;
}

.mob-tm-wrap {
    height: calc(100% - 46px);
}

.mob-tm-wrap > .mob-tm-con {
    display: none;
    height: 100%;
}

.mob-tm-wrap > .mob-tm-con.open {
    display: flex;
}

.mob-tm-con > .coex-pd-list {
    background: #F4F5F8;
    height: 100%;
    padding: 16px 0;
    position: relative;
}

.coex-pd-list > .sub-tab-item {
    padding: 12px 40px;
    font-size: 1.1rem;
    position: relative;
}

.coex-pd-list > .sub-tab-item > span {
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.coex-pd-list > .sub-tab-item.on > span {
    color: #fff;
}

.coex-pd-list > .horiz {
    background: var(--p-color);
    position: absolute;
    width: 95%;
    top: 4px;
    height: 40px;
    left: 24px;
    border-radius: 100px;
    box-shadow: 0 7px 10px rgba(0, 0, 0, .1);
    transition: all .3s;
    top: 18px;
}

.coex-st-wrap {
    width: 100%;
}

.other-tm-list {
    max-height: calc(100vh - 264px);
    padding: 24px;
    width: 100%;
}

.coex-sub-tab-con {
    display: none;
    padding: 24px 24px 24px 28px;
    max-height: calc(100vh - 264px);
    overflow-y: auto;
    width: 100%;
}

.coex-sub-tab-con.open {
    display: block;
}

.acco-item {
    border-bottom: 1px solid var(--gray-400);
    width: 100%;
}

.acco-item > .acco-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    min-height: 48px;
}

.acco-item > .acco-head.on h3 {
    color: var(--p-color);
}

.up-down {
    position: relative;
    width: 24px;
    height: 24px;
}

.up-down > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 1px;
    background: var(--bk);
    transition: all .2s;
}

.up-down > span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.acco-head.on .up-down > span:nth-child(1) {
    transform: translate(-50%, -50%);
    background: var(--p-color);
}

.acco-item > .acco-body {
    padding: 12px;
    background: var(--gray-300);
    display: none;
    border-top: 1px solid var(--bk)
}

.acco-item > .acco-body > a {
    padding: 6px;
    color: var(--gray-t700);
}

.mobs-foot {
    padding: 24px 0;
    background: #fff;
    border-top: 1px solid var(--gray-400);
}

.mobs-foot .foot-btn {
    width: 100%;
    cursor: pointer;
    background: transparent;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
    position: relative;
}

.mobs-foot .nw-btn-wrap > a::after {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 40px;
    background-color: var(--gray-400);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mobs-foot .nw-btn-wrap > a:last-child::after {
    display: none;
}

.mobs-foot .foot-btn > .icon-cc {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-400);
    position: relative;
    transition: transform .2s;
}

.mobs-foot .foot-btn > span {
    font-weight: 700;
}

.mobs-foot .foot-btn > .icon-cc > img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 紐⑤컮�� ���댄� */
.mob-subtit-wrap {
    position: relative;
    width: 100%;
    justify-content: center;
    display: none;
    margin: 24px 0;
}

.mob-subtit-wrap > a {
    position: absolute;
    width: 36px;
    height: 36px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px;
}

.mob-subtit-wrap > a > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mob-subtit-wrap > .mob-tit {
    font-size: 1.28rem;
    font-weight: 700;
}

.mp-sh-box {
    background: var(--gray-300);
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.date-sel-form {
    display: flex;
    gap: 8px;
}

.date-sel-form .date-lookup {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-sel-form .se-date {
    display: flex;
    gap: 8px;
    align-items: center;
}

.date-sel-form .se-date .flatpickr-input {
    height: 44px;
    padding: 0 16px;
}

.mp-sh-box .date-term {
    max-width: 68px;
    padding: 0 16px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--gray-500);
    color: var(--gray-t700);
    border-radius: 8px;
}

/*.mp-sh-box > div {*/
/*    padding-right: 24%;*/
/*}*/

.mp-sh-box .date-term.on {
    background: var(--bk);
    border: transparent;
    color: #fff;
}

.mp-sh-box .box-2line {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.mp-sh-box .box-2line select {
    height: 44px;
    padding: 0 16px;
    max-width: 376px;
}

.mp-sh-box .box-2line > .mut-item {
    display: flex;
    width: 100%;
    gap: 8px;
}

.mp-sh-box .box-2line button {
    height: 44px;
    border-radius: 8px;
    min-width: 88px;
}

/* 諛섏쓳�� */
@media (max-width: 1280px) {
    * {
        font-size: 14px;
    }

    .foot-btn {
        min-width: auto;
    }

    .ctg-item {
        font-size: 1.125rem;
    }

    #header {
        padding-bottom: 0;
        position: fixed;
        width: 100%;
    }

    #header,
    #header.fixed {
        height: 68px;
    }

    #header.fixed .head-tpl {
        display: flex;
    }

    #header.fixed .head {
        display: block;
    }

    .head-top {
        padding-top: 0;
        height: 100%;
        align-items: center;
    }

    .head-bottom,
    .fut-ico-list {
        display: none;
    }

    #mobile-menu {
        display: block;
    }

    .head-tpl > a {
        width: 140px;
    }

    .head-tpl > a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: relative;
        top: -2px;
    }

    .store-lc {
        padding-left: 16px;
        margin-left: 16px;
    }

    #mobile-site {
        display: block;
    }

    #footer {
        padding: 40px 0 120px;
    }

    .foot-info .copyright {
        font-size: 1rem;
        margin-top: 10px;
    }

    #floating {
        bottom: 108px;
    }

    .container {
        padding: 68px 24px 120px;
    }

    .log-container {
        padding: 40px 0 80px;
        margin-top: 68px;
    }

    #left-menu {
        display: none;
    }

    .cst-contents,
    .mypage-contents {
        width: 100%;
    }

    .mob-subtit-wrap {
        display: flex;
    }

    .cst-tit,
    .mypage-contents > .tit,
    .cart-tt {
        display: none !important;
    }

    .cart-con {
        flex-direction: column;
    }

    .floating-btn {
        position: fixed;
        z-index: 9995;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
    }

    .floating-btn > button {
        margin-bottom: 0;
    }

    .floating-box {
        min-width: auto;
        min-height: auto;
    }

    .payment-info {
        position: relative;
        top: 0;
    }
}

@media (max-width: 1024px) {
    .foot-con1 {
        flex-direction: column-reverse;
    }

    #footer .nw-btn-wrap {
        margin-bottom: 12px;
    }

    .nw-btn-wrap,
    .ft-link {
        justify-content: center;
    }

    .foot-con2 > .fc2-inr {
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 24px;
    }

    .gnb .category {
        gap: 32px;
    }

    .ftb-right {
        align-items: center;
    }

    .ftb-left .foot-logo {
        display: none;
    }

    .foot-info {
        text-align: center;
    }

    /* �쒕툕 */
    .mp-sh-box > div {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .ft-link a,
    .ft-link a > strong {
        font-size: 1rem;
    }

    #mobile-sh.open {
        top: 0;
    }

    .search-ico.open {
        width: 40px;
    }

    .search-ico.open input[type="text"] {
        display: none;
    }

    /* 濡쒓렇�� */
    .log-contant {
        padding: 16px;
    }

    .log-box {
        padding: 24px;
    }

    .log-sh-wrap {
        padding: 32px 0;
    }

    /* �쒕툕 */
    .gds-item {
        padding: 20px 16px;
        gap: 16px;
        flex-direction: column;
    }

    .cart-items .group .gp-head {
        padding: 12px 16px;
    }

    .pay-ifbox {
        padding: 24px 20px;
    }

    .mp-sh-box {
        padding: 16px;
    }

    .date-sel-form {
        flex-direction: column;
        gap: 12px;
    }

    .date-sel-form .date-lookup {
        gap: 4px;
    }

    .date-sel-form .date-lookup > li,
    .date-sel-form .se-date {
        width: 100%;
    }

    .mp-sh-box .date-term {
        max-width: 100%;
        width: 100%;
        padding: 0 8px;
    }

    .gp-head .dt-view-btn {
        min-width: 44px !important;
    }

    .gp-head .dt-view-btn > span {
        display: none;
    }

    .date-sel-form .se-date .flatpickr-input {
        padding: 0 10px;
    }

    .scroll-top,
    .recently-view > .rv-btn {
        width: 40px;
        height: 40px;
    }

    .recently-view > span {
        display: none;
    }

    /*#floating.stop {*/
    /*    top: -110px;*/
    /*}*/
}

@media (max-width: 480px) {
    #footer .nw-btn-wrap {
        flex-wrap: wrap;
    }

    .foot-btn {
        max-width: 100%;
    }

    .ft-link {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .ft-link a {
        width: 50%;
        padding: 0;
    }

    .ft-link a::after {
        display: none;
    }
}