.sr_only {
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    position: absolute;
}

/*----------------------- header -----------------------*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    pointer-events: none;
}
/*-- h_top --*/
.h_top {
    width: 100%;
    height: 34px;
    background-color: var(--primary);
    position: relative;
    pointer-events: all;
    z-index: 3;
}
.h_top * {
    font-size: 13px;
    color: var(--white);
}
.h_top_inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*h_notice*/
.h_notice {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.h_notice > span {
    width: 1px;
    height: 12px;
    background-color: var(--white);
}
.notice_bold a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.notice_bold img {
    width: 12px;
    height: 12px;
}
.notice_bold p {
    font-weight: var(--semi-bold);
}

.notice_btn_box {
    display: flex;
    align-items: center;
    gap: 6px;
}
.notice_btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .7);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.notice_btn.btn_next {
    transform: rotate(180deg);
}
.notice_btn img {
    width: 14px;
    height: 14px;
}
.notice_swiper {
    height: 100%;
    overflow: hidden;
}
.notice_slide {
    height: 100%;
}
.h_notice_title {
    display: flex;
    align-items: center;
    font-weight: var(--medium);
}

/*h_top_menu*/
.h_top_menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.h_top_menu li {
    font-weight: var(--medium);
}


.h_inner {
    width: 100%;
    background-color: #EEF4F1;
    border-radius: 0 0 40px 40px;
    pointer-events: all;
    position: relative;
    z-index: 2;
    transition: transform .4s ease;
}
.h_inner.bg {
    background-color: #EEF4F1;
}

/*-- h_mid_inner --*/
.h_mid_inner {
    padding-top: 30px;
    padding-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: end;
}
.h_logo {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.h_logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.h_mypage {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 28px;
}
.h_mypage li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.h_mypage figure {
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
}
.h_mypage p {
    font-size: 13px;
    font-weight: var(--medium);
    color: var(--gray-500);
}

.basket_box {
    position: relative;
}
.basket_num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: var(--medium);
    color: var(--white);
    position: absolute;
    right: -6px;
    top: 6px;
}


/*-- h_btm_inner --*/
.h_btm_inner {
    height: 63px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}



/*h_menu*/
.h_menu {
    display: flex;
    align-items: center;
    transform: translateX(-60px);
    transition: transform .4s ease;
}
.h_btm_logo {
    width: 60px;
    height: 40px;
    padding-right: 20px;
}

.h_scroll .h_menu {
    transform: translateX(0px);
}
.h_menu ul {
    display: flex;
    align-items: center;
    gap: 50px;
}
.main_menu {
    font-size: var(--ft17);
    font-weight: var(--semi-bold);
    color: var(--gray-600);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: color .2s ease, border .2s ease;
}
.main_menu.active {
    color: var(--primary);
    border-color: var(--primary);
}

.header .search_box {
    width: 320px;
    border-color: var(--gray-200);
}

/*category*/
.category_meenu_btn {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.category_meenu_btn .ham {
    width: 20px;
}
.category_meenu_btn .ham {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.category_meenu_btn .ham span,
.category_meenu_btn .ham::before,
.category_meenu_btn .ham::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--primary);
}
.category_meenu_btn p {
    font-size: var(--ft17);
    font-weight: var(--semi-bold);
    color: var(--primary);
}

/*-- category_popup --*/
.category_p_h,
.p_top_scroll {
    display: none;
}

.category_wrap {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 30px;
    background-color: var(--white);
    transform: translateY(-40px);
    pointer-events: all;
    position: relative;
    z-index: 1;
    transition: transform .4s ease;
    display: none;
}
.category_wrap.on {
    display: block;
}
.category_inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.category_nav {
    height: calc(42px * 5);
    position: relative;
}
.category_menu {
    width: 240px;
    height: 100%;
    overflow-y: scroll;
    z-index: 1;
}
.category_menu::-webkit-scrollbar,
.category_depth2::-webkit-scrollbar {
    width: 2px;
}
.category_menu::-webkit-scrollbar-track,
.category_depth2::-webkit-scrollbar-track {
    background-color :var(--dark-line);
}
.category_main,
.category_sub {
    width: 100%;
    height: 42px;
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
} 
.category_main a,
.category_sub a {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category_main a::after,
.category_sub a::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: url('/images/right_p.svg') no-repeat left center;
    opacity: 0;
}

.category_main.hover,
.category_sub:hover {
    background-color: var(--primary-bg);
    color: var(--primary);
}
.category_main.hover a::after,
.category_sub:hover a::after {
    opacity: 1;
}

.category_depth2 {
    width: 242px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 238px;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    padding-left: 2px;
}
.category_main.hover ~ .category_depth2,
.category_menu_item:hover .category_depth2 {
    opacity: 1;
    pointer-events: all;
}

.menu_event_swiper {
    width: 300px;
    overflow: hidden;
}
.menu_event_box {
    width: 100%;
}
.menu_event_img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}
.menu_event_img img {
    transition: transform .4s ease;
}
.menu_event_box:hover .menu_event_img img {
    transform: scale(1.05);
}
.menu_event_title {
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    margin-top: 10px;
}
.menu_event_date {
    font-size: var(--ft12);
    color: var(--gray-400);
}
.menu_event_swiper .swiper_num {
    width: 60px;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}
.menu_event_swiper .swiper_num,
.menu_event_swiper .swiper_num * {
    font-size: var(--ft12);
    color: var(--white);
    font-weight: var(--semi-bold);
}


.category_bg {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}
.category_bg.on {
    opacity: 1;
    pointer-events: all;
}

.header.h_scroll .h_inner {
    transform: translateY(calc(-100% + 63px));
}
.header.h_scroll .category_wrap {
    transform: translateY(calc(-137px));
}



/*----------------------- quick_menu -----------------------*/
.quick_menu {
    width: 90px;
    padding-top: 20px;
    transform: translateY(-50%);
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--dark-line);
    pointer-events: all;
    position: fixed;
    right: 100px;
    top: 50%;
    z-index: 5;
}
.quick_list {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.quick_list li {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: all .3s ease;
}
.quick_list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 0;
}
.quick_img {
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
}
.quick_text {
    font-size: 13px;
    font-weight: var(--medium);
    color: var(--gray-500);
    text-align: center;
}

.quick_list li:hover {
    background-color: var(--primary-bg);
    border-color: var(--dark-line);
}

.recently {
    padding: 20px 10px 0;
    margin: 20px 0;
    border-top: 1px solid var(--dark-line);
}
.recently span {
    display: block;
    font-size: 13px;
    font-weight: var(--medium);
    color: var(--gray-500);
    text-align: center;
}

.recently_swiper {
    width: 50px;
    height: 50px;
    margin: 10px auto;
    overflow: hidden;
}
.recently_img {
    width: 100%;
    height: 100%;
    background-color: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}
.recently_img img {
    transition: transform .4s ease;
}
.recently_img:hover img {
    transform: scale(1.05);
}
.recently_btn.swiper_btn_1 .btn_prev img,
.recently_btn.swiper_btn_1 .btn_next img {
    width: 10px;
    height: 10px;
}

.top_btn {
    width: 100%;
    height: 28px;
    background-color: var(--primary); 
    border-radius: 0 0 10px 10px;
    cursor: pointer;
}
.top_btn div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: var(--medium);
    color: var(--white);
}

/*----------------------- m_top_btn -----------------------*/
.m_top_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--dark-line);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    bottom: 75px;
    right: 10px;
    z-index: 3;
    display: none;
}
.m_top_btn img {
    width: 12px;
    height: 12px;
    opacity: .5;
    transform: rotate(180deg);
}

/*----------------------- m_btm_quick -----------------------*/
.m_btm_quick {
    width: 100%;
    height: 65px;
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--dark-line);
    border-bottom: none;
    background-color: var(--white);
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: none;
}
.m_btm_quick li {
    width: 100%;
    height: 100%;
    opacity: .7;
}
.m_btm_quick li.show {
    opacity: 1;
}
.m_btm_quick li,
.m_btm_quick a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.m_qucik_img {
    width: 24px;
    height: 24px;
}
.m_quick_text {
    font-size: var(--ft12);
    font-weight: var(--medium);
    color: var(--gray-600);
}

/*----------------------- footer -----------------------*/
.footer {
    width: 100%;
    padding: 60px 0;
    margin-top: 180px;
    border-top: 1px solid var(--dark-line);
}
.f_top {
    display: flex;
    align-items: start;
    gap: 50px;
}
.f_l {
    width: 60%;
}
.f_nav {
    display: flex;
    gap: 40px;
}
.f_nav li {
    font-size: var(--ft16);
    font-weight: var(--medium);
}

.f_info {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.f_info_line {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.f_info * {
    line-height: 1;
}
.f_info span {
    font-size: var(--ft14);
    color: var(--gray-500);
    opacity: .9;
}
.f_info .bold {
    font-weight: var(--medium);
}

.f_r {
    width: 40%;
}
.center_link {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
}
.center_link p {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
}
.center_link img {
    width: 12px;
    height: 12px;
}
.center_tal {
    max-width: 260px;
    width: 100%;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--primary-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.center_tal p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.center_tal img {
    width: 18px;
    height: 18px;
}
.center_info {
    color: var(--gray-500);
    margin-top: 10px;
    line-height: 1.5;
}

.f_btm {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    display: flex;
    align-items: center;
    gap: 10px;
}
.copyright * {
    width: fit-content;
    font-size: var(--ft14);
    color: var(--gray-500);
    opacity: .9;
    line-height: 1;
}
.copyright p {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.copyright p a {
    width: fit-content;
    font-weight: var(--semi-bold);
}
.copyright a:hover {
    text-decoration: underline;
}

.family_box {
    position: relative;
}
.family_btn {
    padding: 10px 24px;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 60px;
    cursor: pointer;
}
.family_btn p {
    font-weight: var(--medium);
    color: var(--gray-500);
}
.family_drop {
    width: 10px;
    height: 10px;
    transition: transform .4s ease;
}
.family_list {
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    position: absolute;
    top: 0;
    transform: translateY(calc(-100% - 10px));
    display: none;
}
.family_list li {
    border-radius: 4px;
    transition: background .4s ease;
}
.family_list a {
    padding: 6px 10px;
}
.family_list li:hover {
    background-color: var(--gray-200);
}

.family_box.open .family_drop {
    transform: rotate(180deg);
}

/*----------------------- loader_bg -----------------------*/
.loader_bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
body:has(.loader_bg.active) {
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    touch-action: none;
}
.loader_bg.active {
    display: flex;
}

.loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin:15px auto;
    position: relative;
    color: var(--white);
    box-sizing: border-box;
    animation: animloader 2s infinite alternate;
}
@keyframes animloader {
    0% {
        box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
    }
    25% {
        box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 2px;
    }
    50% {
        box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 2px,  -38px 0 0 -2px;
    }
    75% {
        box-shadow: 14px 0 0 2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
    }
    100% {
        box-shadow: 14px 0 0 -2px,  38px 0 0 2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
    }
}

/*----------------------- content_list -----------------------*/
.content_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.content {
    width: 100%;
    cursor: pointer;
}
.img_box {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.img_box .img {
    width: 100%;
    height: 100%;
    background-color: var(--gray-200);
    overflow: hidden;
}
.img_box .img img {
    transition: transform .4s ease;
}
.soldout {
    width: 100%;
    height: 50px;
    background-color: var(--gray-600);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
}
.store {
    font-size: var(--ft14);
    color: var(--gray-500);
    margin-bottom: 6px;
}
.title {
    font-size: var(--ft18);
    font-weight: var(--medium);
    color: var(--gray-600);
    margin-bottom: 10px;
}
.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.price > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price .per {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    color: var(--red);
}
.price .current {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    color: var(--gray-600);
}
.price .original {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-400);
    text-decoration: line-through;
}
.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 22px;
    background: url('/images/star.svg') no-repeat left center;
}
.rating p {
    font-size: var(--ft16);
    color: var(--gray-400);
    line-height: 1;
}

.content:hover .img_box img {
    transform: scale(1.05);
}

.content.sm .price {
    gap: 8px;
}
.content.sm .price .per,
.content.sm .price .current {
    font-size: var(--ft18);
}


/*-- 대량구매 --*/
.bulk_content {
    height: auto;
    display: flex;
    flex-direction: column;
}
.bulk_content .img_box {
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}
.content_box {
    height: 100%;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--dark-line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.content_inner {
    padding: 24px;
}
.bulk_content .title {
    font-weight: var(--semi-bold);
}
.min {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.min p {
    color: var(--gray-500);
}
.content_btn {
    width: 100%;
    height: 54px;
    background-color: var(--gray-500);
    border-radius: 0 0 12px 12px;
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/*-- 입점파트너 --*/
.partner_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.partner_box {
    height: auto !important;
    border: 1px solid var(--dark-line);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.partner_img {
    width: 100%;
    height: fit-content;
    aspect-ratio: 1 / 1;
    background-color: var(--gray-200);
}
.partner_img figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.partner_img figure img {
    transition: transform .4s ease;
}
.partner_img:hover figure img {
    transform: scale(1.05);
}
.partner_inner {
    height: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.partner_name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.partner_name p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
}
.partner_name .plus {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--gray-500);
    display: flex;
    justify-content: center;
    align-items: center;
}
.partner_name .plus img {
    width: 14px;
    height: 14px;
}
.partner_text {
    color: var(--gray-500);
}
.partner_centent {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.partner_centent a {
    display: flex;
    align-items: center;
    gap: 20px;
}
.s_img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.s_inner {
    width: calc(100% - 80px - 20px);
}
.s_title {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-500);
    margin-bottom: 10px;
}
.s_price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.s_price > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.s_price .per {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--red);
}
.s_price .current {
    font-weight: var(--semi-bold);
}
.s_price .original {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
    text-decoration: line-through;
}


/*-- img_hover --*/
.img_hover img {
    transition: transform .4s ease;
}
.img_hover:hover img {
    transform: scale(1.05);
}

/*----------------------- null_list -----------------------*/
.null_list {
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.null_list .null {
    width: 80px;
    height: 80px;
}
.null_img {
    width: 150px;
    height: 150px;
}
.null_text {
    font-weight: var(--medium);
    color: var(--gray-400);
    text-align: center;
}
.null_list .btn {
    max-width: 240px;
    margin-top: 20px;
    font-size: var(--ft16);
    transition: background .4s ease;
}
.null_list .btn:hover {
    background-color: var(--gray-100);
}

/*----------------------- product_list -----------------------*/
.product_list {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--dark-line);
    padding: 0 30px;
    margin-top: 30px;
}
.product_list li {
    padding: 30px 0;
    border-bottom: 1px solid var(--dark-line);
    position: relative;
}
.product_list li:last-child {
    border-bottom: none;
}
.order_state {
    font-weight: var(--semi-bold);
    margin-bottom: 10px;
}
.order_state.complete {
    color: var(--primary);
}
.product_flex {
    display: flex;
    gap: 20px;
    align-items: start;
}
.product_thumbs {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.product_title {
    font-size: var(--ft16);
    font-weight: var(--medium);
    margin-bottom: 6px;
}
.product_option {
    font-size: var(--ft14);
    color: var(--gray-400);
}
.product_btm {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.product_price {
    font-weight: var(--medium);
}
.product_num {
    font-size: var(--ft14);
    color: var(--gray-500);
}
.product_delet {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 30px;
    right: 0;
    cursor: pointer;
}

/*-- product_info --*/
.product_info {
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product_info div {
    display: flex;
    align-items: center;
}
.product_info p {
    font-size: var(--ft14);
    color: var(--gray-500);
}
.product_info p.bold {
    width: 100px;
    color: var(--gray-400);
    flex-shrink: 0;
}

/*-- sold_out --*/
.product_list li.sold_out .option_btn {
    pointer-events: none;
}
.product_list li.sold_out .option_btn * {
    opacity: .3;
}
.product_title span {
    font-size: 13px;
    font-weight: var(--medium);
    color: var(--gray-500);
    padding: 4px 6px;
    background-color: var(--gray-200);
    border-radius: 4px;
    margin-right: 8px;
}

/*-- return_list --*/
.product_list.return_list li {
    padding: 0;
}
.product_list.return_list .product_flex {
    padding: 30px 30px 20px;
}
.return_reason {
    width: 100%;
    padding: 24px 30px;
    background-color: var(--gray-100);
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.return_reason p.bold {
    color: var(--gray-400);
}

/*----------------------- menu_list -----------------------*/
.menu_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.menu_list label,
.menu_list a {
    display: block;
    padding: 10px 24px;
    border-radius: 8px;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background .3s ease, border .3s ease;
}
.menu_list label:hover {
    background-color: var(--gray-200);
}
.menu_list p,
.menu_list a {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
    transition: color .3s ease;
}
.menu_list input[type="radio"]:checked ~ label,
.menu_list li.on a {
    background-color: var(--primary);
    border-color: var(--primary);
}
.menu_list input[type="radio"]:checked ~ label p,
.menu_list li.on a {
    font-weight: var(--semi-bold);
    color: var(--white);
}


/*----------------------- btn 모음 -----------------------*/

/*-- more_btn --*/
.more_btn {
    width: fit-content;
    background-color: var(--gray-600);
    border-radius: 10px;
    margin: 80px auto 0;
}
.more_btn a {
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.more_btn p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--white);
}
.plus {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.plus img {
    width: 18px;
    height: 18px;
    transition: transform .4s ease;
}
.plus.cir img {
    width: 12px;
    height: 12px;
    transform: rotate(0) !important;
}

.more_btn.primary {
    background-color: var(--primary);
}
.more_btn.gray {
    background-color: var(--gray-400);
}

.more_btn:hover .plus img {
    transform: rotate(180deg);
}

/*-- sec_more --*/
.sec_more a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sec_more p {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.sec_more .plus {
    background-color: var(--primary);
    transition: transform .4s ease;
}
.sec_more.gray p {
    color: var(--gray-400);
}
.sec_more.gray .plus {
    background-color: var(--gray-400);
}

.sec_more:hover .plus {
    transform: rotate(180deg);
}


/*-- btn_list --*/
.btn_list {
    width: 100%;
    margin-top: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    text-align: center;
    cursor: pointer;
}
.btn,
.btn a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn.gray {
    color: var(--gray-400);
    border: 1px solid var(--dark-line);
}
.btn.primary {
    color: var(--white);
    background-color: var(--primary);
}


/*----------------------- search_box -----------------------*/
.search_box {
    width: 280px;
    height: 40px;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 16px;
    background-color: var(--white);
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: center;
    align-items: center;
}
.search_box input {
    height: 100%;
}
.search_btn {
    width: 18px;
    height: 18px;
}


/*----------------------- list_top -----------------------*/
.list_top {
    padding-top: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.path {
    margin-bottom: 16px;
}
.path,
.path li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.path li,
.path li p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
}
.path li::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('/images/right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.path li:last-child::after {
    display: none;
}
.path li.path_home img {
    width: 14px;
    height: 14px;
}
.page_title {
    font-size: var(--ft36);
    font-weight: var(--bold);
    text-align: center;
}
.page_title strong {
    color: var(--primary);
    font-weight: var(--bold);
}
.page_search {
    width: 100%;
    max-width: 360px;
    height: 50px;
    margin-top: 24px;
    padding: 0 24px;
    border-radius: 25px;
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list_top .menu_list {
    margin-top: 30px;
}



/*----------------------- pagination -----------------------*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--contant-gap);
    margin-top: 80px;
}
.pagination .pagination_btn {
    width: 32px;
    height: 32px;
}
.pagination .pagination_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination ul {
    display: flex;
    gap: 4px;
}
.pagination ul li {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.pagination ul li a {
    font-size: var(--ft14);
    text-align: center;
    line-height: 32px;
}
.pagination i {
    font-size: var(--ft12);
    color: var(--gray-400);
}
.pagination span {
    font-size: var(--ft18);
    color: var(--gray-400);
}
.pagination ul li:hover,
.pagination ul li.page_click {
    background-color: var(--primary);
}
.pagination ul li:hover a,
.pagination ul li.page_click a {
    color: var(--white);
}

/*----------------------- swiper -----------------------*/
.swiper_bullet {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.cir_swiper_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.swiper_pagination_bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
}
.swiper_pagination_bullet_active {
    background-color: var(--primary);
}
.swiper_play {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}
.swiper_play div {
    width: 100%;
    height: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
}
.swiper_play div.show {
    display: flex;
}
.swiper_play img {
    width: 14px;
    height: 14px;
}

/*-- swiper_btn_1 --*/
.swiper_btn_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.swiper_btn_1 .btn_prev,
.swiper_btn_1 .btn_next {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.swiper_btn_1 .btn_prev img,
.swiper_btn_1 .btn_next img {
    width: 12px;
    height: 12px;
}
.swiper_btn_1 .btn_prev {
    transform: rotate(180deg);
}
.swiper_btn_1 .swiper_num {
    display: flex;
    align-items: center;
    gap: 3px;
}
.swiper_btn_1 .swiper_num,
.swiper_btn_1 .swiper_num * {
    font-size: 12px;
    font-weight: var(--medium);
}



/*----------------------- bulk -----------------------*/
.bulk {
    margin-bottom: 50px;
    padding: 40px 55px;
    background-color: var(--gray-100);
    border-radius: 12px;
}
.bulk_info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px;
}
.bulk_info li {
    width: 100%;
    padding: 30px;
    padding-bottom: 70px;
    border-radius: 12px;
    background-color: var(--white);
    position: relative;
}
.bulk_info li::after {
    content: url('/images/right_cir_g.svg');
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: -34px;
    transform: translateY(-50%);
}
.bulk_info li:last-child::after {
    display: none;
}
.bulk_title {
    font-size: var(--ft18);
}
.bulk_title strong {
    font-weight: var(--semi-bold);
}
.bluk_text {
    color: var(--gray-500);
    margin-top: 14px;
}
.bluk_img {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}



/*----------------------- type_list -----------------------*/
.type_list {
    display: flex;
    align-items: center;
    gap: 28px;
}
.type_list label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.type_list p {
    font-weight: var(--medium);
    color: var(--gray-400);
    transition: color .3s ease;
}

.type_list label:hover p {
    color: var(--primary);
}
.type_list input[type="radio"]:checked ~ label {
    padding-left: 18px;
    background: url('/images/chk_p.svg') no-repeat left center;
}
.type_list input[type="radio"]:checked ~ label p {
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.type_wrap {
    position: relative;
}
.type_select {
    padding: 6px 12px;
    padding-right: 32px;
    border-radius: 8px;
    border: 1px solid var(--dark-line);
    background: url('/images/arrow_drop_down.svg') no-repeat calc(100% - 10px) 50%/16px auto;
    display: none;
    cursor: pointer;
}
.type_select span {
    font-size: var(--ft14);
    font-weight: var(--medium);
}


/*----------------------- popup -----------------------*/
.popup {
    width: 100%;
    height: 100dvh;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
}
.popup.on {
    opacity: 1;
    pointer-events: all;
}
body:has(.popup.on) {
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    touch-action: none;
}
.popup_bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
}
.popup_scroll {
    width: 100%;
    max-height: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: auto; 
}
.popup_scroll::-webkit-scrollbar {
    display: none;
}
.popup_box {
    margin: 20px auto;
    padding: 50px 30px 40px;
    border-radius: 12px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity .4s ease;
}
.popup.on .popup_box {
    opacity: 1;
}
.popup_close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.popup_title {
    width: 100%;
    font-size: var(--ft20);
    font-weight: var(--semi-bold); 
    margin-bottom: 30px;
}
.popup_text {
    color: var(--gray-500);
}
.popup_text strong {
    font-weight: var(--semi-bold);
}
.popup_h {
    font-weight: var(--semi-bold);
    margin-bottom: 8px;
}
.popup_h.primary span {
    color: var(--red);
    font-weight: var(--semi-bold);
}
.popup_h .text {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-400);
    margin-left: 6px;
}
.popup_send {
    width: 100%;
    height: 54px;
    border-radius: 8px;
    margin-top: 30px;
    background-color: var(--primary);
    font-weight: var(--semi-bold);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.popup .form_list {
    margin-top: 0;
    gap: 20px;
}
.popup .input_box {
    height: 50px;
}
.popup .input_box.textarea_box {
    height: 120px;
}
.popup .btn_list {
    margin-top: 40px;
}
.popup .btn {
    height: 50px;
    font-size: var(--ft16);
}

/*-- popup_form_list --*/
.popup_form_list {
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-400);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.popup_form_list li {
    display: flex;
}
.popup_form_list .input_name {
    width: 100px;
    max-height: 50px;
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.popup_form_list .add_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/*----------------------- soldout_popup -----------------------*/
.soldout_popup .popup_box {
    padding: 50px 70px 30px;
}
.soldout_img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}
.soldout_popup .popup_title {
    margin-bottom: 10px;
}
.soldout_popup .popup_send {
    max-width: 200px;
    background-color: var(--gray-500);
}

/*----------------------- bulk_popup -----------------------*/
.bulk_popup .popup_box {
    max-width: 480px;
}


/*-- bulk_product -- */
.bulk_product {
    width: 100%;
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dark-line);
}
.bulk_product_img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}
.bulk_product_name {
    font-weight: var(--semi-bold);
    margin-bottom: 6px;
}
.bulk_product_info {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-500);
}
/*----------------------- review_popup -----------------------*/
.review_popup .popup_box {
    width: 100%;
    max-width: 480px;
}

.review_edit_popup .popup_box {
    width: 100%;
    max-width: 480px;
}

/*-- r_product -- */
.r_product {
    width: 100%;
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dark-line);
}
.r_product_img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}
.r_product_saller {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-500);
    margin: 4px 0;
    display: block;
}
.r_product_name {
    font-weight: var(--medium);
}

/*-- r_rating -- */
.r_rating {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.r_star_rating {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    flex-direction: row-reverse;
}
.r_star_rating label {
    width: 32px;
    height: 32px;
    cursor: pointer;
}
.r_star_rating span {
    display: block;
    width: 100%;
    height: 100%;
    background: url('/images/star.svg') no-repeat center/contain;
    opacity: .6;
}

.r_star_rating input[type="radio"]:checked ~ label span {
    background-image: url('/images/star_p.svg');
    opacity: 1;
}

/*-- r_picture_wrap -- */
.r_picture_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.r_picture_wrap::-webkit-scrollbar {
    display: none;
}
.r_picture_list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.r_picture_list .preview {
    width: 76px;
    height: 76px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.remove_img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 4px;
    right: 4px;
}
.r_picture_box {
    width: 76px;
    height: 76px;
    border-radius: 4px;
    background-color: var(--gray-100);
    border: 1px solid var(--dark-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    flex-shrink: 0;
}
.r_picture_box img {
    width: 20px;
    height: 20px;
}
.r_picture_box p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
}

/*----------------------- delivery_add_popup -----------------------*/
.delivery_add_popup .popup_box {
    max-width: 530px;
}
.delivery_add_popup .popup_title {
    margin-bottom: 20px;
}
.delivery_add_popup .basic {
    margin-top: 0;
}


/*----------------------- review_img_popup -----------------------*/
.review_img_popup .img_popup {
    position: relative;
    z-index: 2;
}
.review_img_popup .popup_close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
}
.review_img_popup .popup_close img {
    width: 24px;
    height: 24px;
}
.img_append {
    max-width: 1600px;
    max-height: 80vh;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/*----------------------- s_popup -----------------------*/
.s_popup .popup_box {
    width: 100%;
    max-width: 320px;
    padding: 60px 30px 30px;
}
.s_popup .s_popup_img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}
.s_popup .s_popup_img svg {
    width: 100%;
    height: 100%;
}
.s_popup .popup_title {
    margin-bottom: 12px;
}
.s_popup .popup_text {
    font-weight: var(--medium);
    text-align: center;
}

.success_cir {
    transform-origin: center;
    animation: success 8s infinite linear;
}
@keyframes success {
    100% {
        transform: rotate(360deg);
    }
}
.join_popup.s_popup .popup_text {
    font-weight: var(--normal);
}
/*----------------------- edit_popup -----------------------*/
.edit_popup .popup_title {
    margin-bottom: 0;
}
.edit_popup .popup_box {
    width: 100%;
    max-width: 530px;
}

/*----------------------- form -----------------------*/
.form_box {
    width: 100%;
    max-width: 480px;
    padding: 50px 40px;
    margin-top: 40px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--dark-line);
}
.form_title {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
}
.form_list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.input_name {
    font-weight: var(--semi-bold);
    margin-bottom: 8px;
}
.input_name span {
    font-weight: var(--semi-bold);
    color: var(--red);
}
.input_text {
    display: block;
    font-size: var(--ft14);
    color: var(--gray-500);
    margin-bottom: 8px;
}

/* input */
.input_box {
    width: 100%;
    height: 54px;
    border-radius: 8px;
    border: 1px solid var(--dark-line);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border .4s ease;
}
.input_box:hover,
.input_box.focus {
    border-color: var(--gray-400);
}
.input_box.lock {
    background-color: var(--gray-200);
    border-color: var(--dark-line);
    pointer-events: none;
}
.input_box input {
    height: 100%;
    padding: 0 24px;
}
.toggle_password {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.input_msg {
    margin-top: 6px;
    font-size: var(--ft14);
    color: var(--red);
    display: none;
}
.input_msg.success_msg {
    color: var(--primary);
    padding-left: 18px;
    background: url(/images/chk_p.svg) no-repeat left center;
}

/* textarea */
.input_box.textarea_box {
    height: 120px;
}
.input_box.textarea_box textarea {
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    padding: 24px;
    resize: none;
}
.count_num {
    position: absolute;
    top: -30px;
    right: 0;
}
.count_num,
.count_num span {
    font-size: var(--ft14);
    color: var(--gray-400);
}


/* select */
.input_box select {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    background: url(/images/arrow_drop_down.svg) no-repeat calc(100% - 16px) 50% / 16px auto;
    cursor: pointer;
}

/* datepicker */
.input_date .input_box input {
    cursor: pointer;
}
.input_date img {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.input_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* button */
.button {
    width: 100%;
    height: 54px;
    border-radius: 8px;
    border: 1px solid var(--gray-500);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-500);
    flex-shrink: 0;
    transition: background .3s ease;
}
.button p {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-500);
}
.button.primary {
    border-color: var(--primary);
    color: var(--primary);
}
.button.primary p {
    color: var(--primary);
}
.button.input_btn {
    width: 110px;
    height: 48px;
}
.button:hover {
    background-color: var(--gray-100);
}

/* tel_box */
.tel_box {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* agree */
.agree {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.agree p {
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: var(--gray-500);
}
.agree a {
    width: fit-content;
    font-size: var(--ft14);
    color: var(--gray-400);
    text-decoration: underline;
}


/* send_btn */
.send_btn {
    width: 400px;
    height: 54px;
    margin-top: 40px;
    border-radius: 8px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--white);
    cursor: pointer;
}



.option_btn {
    width: fit-content;
    display: flex;
    align-items: center;
    height: 36px;
    background-color: var(--white);
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    overflow: hidden;
}
.option_btn div {
    width: 34px;
    height: 34px;
    cursor: pointer;
}
.option_btn .number {
    width: 36px;
    height: 100%;
    text-align: center;
}



/*-- policy --*/
.policy_title {
    margin-bottom: 40px;
}
.policy_wrap {
    width: 100%;
    border-radius: 10px;
    background-color: var(--gray-100);
    padding: 36px;
}
.policy_wrap h4 {
    margin-bottom: 16px;
}

@media all and (max-width: 1800px) {
    /*-- header --*/
    .h_mid_inner {
        padding: 30px 80px 10px;
    }
    .h_btm_inner {
        max-width: calc(100% - 240px);
        padding: 0;
        margin: 0 auto;
    }
    .menu_event_swiper .swiper_num {
        right: 140px;
    }
    .quick_menu {
        right: 0;
        border-radius: 10px 0 0 10px;
    }
    .top_btn {
        border-radius: 0 0 0 10px;
    }
}

@media all and (max-width: 1600px) {
    /*-- header --*/
    .h_menu ul {
        gap: 36px;
    }
    .quick_menu {
        width: 80px;
        padding-top: 12px;
    }
    .quick_img {
        width: 32px;
        height: 32px;
    }
    .quick_text,
    .recently span {
        font-size: var(--ft12);
    }
    .quick_list {
        margin-bottom: 16px;
    }
    .recently {
        padding: 16px 10px 0;
        margin: 16px 0;
    }

    /*-- content --*/
    .content_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
    .partner_list {
        gap: 30px 20px;
    }
    .s_title {
        margin-bottom: 4px;
    }
    .s_price {
        flex-direction: column;
        align-items: start;
        gap: 4px;
    }

}

@media all and (max-width: 1400px) {
    /*-- header --*/
    .h_top_inner {
        padding: 0 80px;
    }
    .h_logo {
        width: 170px;
    }
    .h_mypage figure {
        width: 30px;
        height: 30px;
    }
    .h_btm_inner {
        max-width: calc(100% - 160px);
    }
    .h_menu ul {
        gap: 30px;
    }
    .category_meenu_btn p,
    .main_menu {
        font-size: var(--ft15);
    }
    .category_inner {
        padding: 0 80px;
    }
    .menu_event_swiper .swiper_num {
        top: 10px;
        right: 90px;
    }

    /*-- bulk --*/
    .bulk_info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .bulk_info li::after {
        display: none;
    }

    /*-- content --*/
    .title {
        font-size: var(--ft16);
        margin-bottom: 4px;
    }
    .price > div {
        gap: 6px;
    }
    .price .per,
    .price .current {
        font-size: var(--ft18);
    }
    .price .original {
        font-size: var(--ft14);
    }
    .rating {
        background-size: 14px 14px;
        padding-left: 18px;
    }
    .rating p {
        font-size: var(--ft14);
    }

    .type_list {
        gap: 16px;
    }

    /*-- null_list --*/
    .null_list {
        padding: 60px 0;
    } 
    .null_list .null {
        width: 70px;
        height: 70px;
    }
    .null_img {
        width: 100px;
        height: 100px;
    }
}

@media all and (max-width: 1200px) {
    /*-- header --*/
    .h_top_inner {
        padding: 0 40px;
    }
    .h_inner {
        border-radius: 0 0 20px 20px;
    }
    .header .search_box {
        width: 240px;
    }
    .h_mid_inner {
        padding: 30px 40px 10px;
    }
    .h_btm_inner {
        max-width: calc(100% - 80px);
    }
    .h_menu {
        transform: translateX(-46px);
    }
    .h_menu ul {
        gap: 20px;
    }
    .category_inner {
        padding: 0 40px;
    }
    .category_main, 
    .category_sub {
        height: 38px;
        font-size: var(--ft15);
    }
    .menu_event_swiper {
        width: 260px;
    }
    .menu_event_swiper .swiper_num {
        top: 10px;
        right: 50px;
    }
    .category_meenu_btn .ham {
        width: 16px;
        gap: 3px;
    }
    .h_btm_logo {
        width: 46px;
        height: 30px;
        padding-right: 16px;
    }

    /*-- footer --*/
    .footer {
        padding: 40px 0 40px;
        margin-top: 120px;
    }
    .f_inner {
        padding: 0 40px;
    }
    .f_top {
        flex-direction: column;
        gap: 30px;
    }
    .f_l,
    .f_r {
        width: 100%;
    }
    .f_nav {
        gap: 24px;
    }
    .center_info {
        margin-top: 4px;
    }
    .f_info {
        margin-top: 30px;
    }
    .f_btm {
        margin-top: 0;
    }

    /*-- content --*/
    .content_inner {
        padding: 16px;
    }
    .content_btn {
        font-size: var(--ft14);
        height: 44px;
    }

    .partner_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner_centent a {
        gap: 12px;
    }
    .s_img {
        width: 64px;
        height: 64px;
        border-radius: 6px;
    }
    .s_inner {
        width: calc(100% - 64px - 12px);
    }
    .s_price > div {
        gap: 6px;
    }
    .s_price .per,
    .s_price .current {
        font-size: var(--ft16);
    }

    /*-- btn --*/
    .btn_list {
        margin-top: 60px;
    }
    .btn {
        height: 50px;
        font-size: var(--ft16);
    }

    /*-- bulk --*/
    .bulk .box_title {
        font-size: var(--ft24);
    }

    /*-- popup --*/
    .popup_box {
        padding: 30px 24px;
    }
    .soldout_popup .popup_box {
        padding: 40px 40px 24px;
    }
}

@media all and (max-width: 1024px) {
    /*-- header --*/
    .quick_menu {
        display: none;
    }
    .h_menu {
        display: none;
    }
    .h_inner {
        padding: 10px 40px;
        border-radius: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--dark-line);
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .notice_bold p,
    .h_notice > span,
    .notice_btn_box {
        display: none;
    }
 
    .h_mypage,
    .category_meenu_btn {
        display: none;
    }
    .quick_menu {
        display: none;
    }
    .h_mid_inner {
        width: fit-content;
        padding: 0;
        margin: 0;
        justify-content: start;
    }
    .h_logo {
        width: 110px;
        position: static;
        transform: translate(0);
    }
    .h_btm_inner {
        max-width: 100%;
        height: auto;
        position: static;
        padding: 0;
        margin: 0;
    }
    .h_btm_inner form {
        width: 100%;
    }
    .header .search_box {
        width: 100%;
        background-color: var(--gray-100);
    }
    .h_menu {
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-y: scroll; 
    }
    .h_menu::-webkit-scrollbar {
        display: none;
    }
    .h_menu ul {
        gap: 0;
    }
    .h_menu > ul > li {
        flex-shrink: 0;
        margin-right: 20px;
    }
    .h_menu > ul > li:last-child {
        margin-right: 0;
    }

    .header.h_scroll .h_inner {
        transform: translateY(0);
    }

    /*-- category_popup --*/
    .category_popup {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 7;
        background-color: var(--white);
        transform: translateX(100%);
        pointer-events: none;
        opacity: 0;
        transition: transform .6s ease, opacity 0s .6s;
    }
    body:has(.category_popup.on) {
        overflow: hidden;
        height: 100%;
        min-height: 100%;
        touch-action: none;
    }
    .category_popup.on {
        transform: translateX(0);
        pointer-events: all;
        opacity: 1;
        transition: transform .6s ease;
    }
    .popup_inner {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    .category_p_h {
        width: 100%;
        padding: 30px 20px 0px;
        display: flex;
        justify-content: space-between;
        align-items: start;
    }
    .category_p_h .popup_close {
        position: static;
    }
    .p_top_scroll {
        width: 100%;
        display: block;
        width: 100%;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-shrink: 0;
    }
    .p_top_scroll::-webkit-scrollbar {
        display: none;
    }
    .p_top_menu {
        width: fit-content;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 20px;
        padding: 0 20px;
    }
    .p_top_menu li {
        flex-shrink: 0;
    }
    .p_main_img {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        background-color: var(--gray-100);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .p_main_img img {
        width: 32px;
        height: 32px;
    }
    .p_main_text {
        font-size: var(--ft14);
        text-align: center;
        margin-top: 8px;
    }
    .category_wrap {
        height: 100%;
        margin-top: 30px;
        padding: 0;
        border-top: 1px solid var(--dark-line);
        display: flex;
        position: static;
        transform: translateY(0);
    }
    .header.h_scroll .category_wrap {
        transform: translateY(0);
    }
    .category_inner {
        width: 100%;
        height: 100%;
        padding: 0;
    }
    .category_nav {
        width: 50%;
        height: 100%;
    }
    .category_menu {
        width: 100%;
        overflow: visible;
        border-right: 1px solid var(--dark-line);
        background-color: var(--gray-100);
    }
    .category_depth2 {
        width: 100%;
        left: auto;
        right: 0;
        transform: translateX(100%);
        overflow: visible;
        padding-left: 1px;
    }
    .category_menu_item.hover .category_depth2 {
        opacity: 1;
        pointer-events: all;
    }
    .category_main a {
        pointer-events: none;
    }
    .category_bg {
        display: none;
    }

    .menu_event_swiper {
        display: none;
    }

    .m_top_btn,
    .m_btm_quick {
        display: flex;
    }

    /*-- footer --*/
    .footer {
        padding-bottom: 100px;
    }

    /*-- list_top --*/
    .list_top {
        padding-top: 160px;
    }
    
    /*-- btn --*/
    .more_btn {
        margin-top: 60px;
    }

}

@media all and (max-width: 900px) {
    /*-- header --*/
    .h_top_inner {
        padding: 0 20px;
    }
    .h_inner {
        padding: 10px 20px;
    }
    .h_logo {
        width: 100px;
    }
    .header .search_box {
        height: 36px;
    }

    /*-- footer --*/
    .f_inner {
        padding: 0 20px;
    }
}   

@media all and (max-width: 768px) {
    /*-- header --*/
    .h_top {
        height: 28px;
    }
    .h_top * {
        font-size: var(--ft12);
    }
    .notice_bold img {
        width: 10px;
        height: 10px;
    }
    .notice_bold p,
    .notice_btn_box,
    .h_notice > span {
        display: none;
    }
    .h_top_menu {
        gap: 10px;
    }
    .h_top_menu li:last-child {
        display: none;
    }

    /*-- footer --*/
    .footer {
        margin-top: 80px;
    }
    .center_tal p {
        font-size: var(--ft16);
    }
    .center_tal img {
        width: 15px;
        height: 15px;
    }
    .f_btm {
        margin-top: 30px;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
    .copyright {
        order: 2;
    }

    /*-- list_top --*/
    .list_top {
        padding-top: 130px;
    }
    .path, 
    .path li {
        gap: 6px;
    }
    .page_title {
        font-size: var(--ft28);
    }
    .page_search {
        max-width: 280px;
        height: 40px;
        padding: 0 20px;
        margin-top: 20px;
    }
    .list_top .menu_list {
        margin-top: 20px;
    }

    /*-- menu_list --*/
    .menu_list {
        flex-wrap: wrap;
    }
    .menu_list {
        gap: 10px;
    }
    .menu_list label, 
    .menu_list a {
        padding: 6px 14px;
    }
    .menu_list p, 
    .menu_list a {
        font-size: var(--ft14);
    }

    /*-- type_list --*/
    .type_select {
        display: block;
    }
    .type_list {
        padding: 16px;
        border-radius: 8px;
        background-color: var(--white);
        border: 1px solid var(--dark-line);
        flex-direction: column;
        align-items: start;
        gap: 0;
        position: absolute;
        right: 0;
        bottom: 0;
        transform: translateY(calc(100% + 6px));
        z-index: 1;
        display: none;
    }
    .type_list p {
        font-size: var(--ft14);
        padding: 4px 0;
    }
    .type_list input[type="radio"]:checked ~ label {
        padding-left: 0;
        background: none;
    }

    /*-- form_list --*/
    .form_list {
        margin-top: 24px;
    }
    .input_box {
        height: 46px;
    }
    .input_box input {
        padding: 0 16px;
    }
    .input_box.textarea_box textarea {
        padding: 16px;
    }
    .send_btn {
        width: 100%;
        height: 46px;
        margin-top: 30px;
    }
    .toggle_password img {
        width: 20px;
        height: 20px;
    }
    .count_num {
        top: -24px;
    }
    .count_num, .count_num span {
        font-size: var(--ft12);
    }

    /*-- content --*/
    .content_list {
        grid-template-columns: repeat(2, 1fr);
    }

    /*-- btn --*/
    .sec_more a {
        gap: 6px;
    }
    .plus {
        width: 18px;
        height: 18px;
    }
    .plus img {
        width: 16px;
        height: 16px;
    }
    .more_btn {
        margin-top: 40px;
    }
    .more_btn a {
        padding: 14px 32px;
    }
    .more_btn p {
        font-size: var(--ft16);
    }
    .btn_list {
        margin-top: 40px;
    }


    /*-- bulk --*/
    .bulk .box_title {
        font-size: var(--ft20);
    }
    .bulk_info {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .bulk_info li {
        padding: 20px;
    }
    .bulk_title {
        font-size: var(--ft16);
    }
    .bluk_text {
        font-size: var(--ft14);
        margin-top: 6px;
    }
    .bluk_img {
        width: 40px;
        height: 40px;
    }

    /*-- null_list --*/
    .null_list {
        padding: 40px 0;
    }
    .null_list .null {
        width: 60px;
        height: 60px;
    }
    .null_img {
        width: 80px;
        height: 80px;
    }

    /*-- product_list --*/
    .product_flex {
        gap: 10px;
    }
    .product_thumbs {
        width: 60px;
        height: 60px;
        border-radius: 4px;
    }
    .product_btm {
        gap: 10px;
        margin-top: 10px;
    }

    /*-- option_btn --*/
    .option_btn {
        height: 30px;
        border-radius: 4px;
    }
    .option_btn div {
        width: 24px;
        height: 30px;
    }
    .option_btn .number {
        width: 30px;
    }

    /*-- popup --*/
    .popup_box {
        padding: 30px 20px 20px;
    }
    .popup .input_box {
        height: 46px;
    }
    .popup_send {
        height: 46px;
    }
    .popup .btn {
        height: 46px;
    }

    .soldout_popup .popup_box {
        width: 100%;
        max-width: 300px;
        padding: 30px 20px 24px;
    }
    .soldout_img {
        width: 100px;
        height: 100px;
        margin-bottom: 14px;
    }
    .soldout_popup .popup_title {
        margin-bottom: 4px;
    }

    .s_popup .popup_box {
        padding: 40px 20px 20px;
    }
    .s_popup .btn_list {
        margin-top: 30px;
    }
    .s_popup .s_popup_img {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    /*-- input --*/
    .tel_box {
        gap: 4px;
    }
    
}

@media all and (max-width: 600px) {

    /*-- header --*/
    .p_top_menu {
        gap: 10px;
    }
    .p_main_text {
        font-size: var(--ft12);
    }

    /*-- footer --*/
    .f_nav {
        gap: 12px 20px;
        flex-wrap: wrap;
    }
    .f_info_line {
        flex-direction: column;
        gap: 8px;
    }
    .center_link {
        gap: 6px;
        align-items: start;
    }
    .center_link p {
        font-size: var(--ft18);
    }
    .center_link img {
        width: 8px;
        height: 8px;
        margin-top: 6px;
    }
    .center_info {
        font-size: var(--ft14);
    }
    .copyright {
        flex-direction: column;
        align-items: start;
        gap: 6px;
    }

    /*-- loader_bg  --*/
    .loader  {
        scale: .8;
    }

    /*-- popup --*/
    .popup_title {
        margin-bottom: 20px;
    }

    /*-- content --*/
    .content_list {
        gap: 24px 10px;
    }
    .soldout {
        height: auto;
        padding: 6px 0;
        font-size: var(--ft14);
    }
    .img_box {
        border-radius: 6px;
        margin-bottom: 10px;
    }
    .store {
        font-size: var(--ft12);
        margin-bottom: 2px;
    }
    .price {
        margin-bottom: 4px;
        flex-direction: column;
        align-items: start;
        gap: 4px;
    }
    .price > div {
        gap: 4px;
    }
    .price .per,
    .price .current,
    .price .original {
        font-size: var(--ft16);
    }
    .price .original {
        font-size: var(--ft12);
    }
    .content.sm .price {
        gap: 4px;
    }
    .content.sm .price .per, 
    .content.sm .price .current {
        font-size: var(--ft16);
    }
    .rating {
        background-size: 10px 10px;
        padding-left: 12px;
    }
    .rating p {
        margin-top: 2.3px;
        font-size: var(--ft12);
    }
    .content_inner {
        padding: 10px;
    }
    .min {
        margin-top: 0;
    }
    .min p {
        font-size: var(--ft14);
    }
    .bulk_content .img_box {
        border-radius: 6px 6px 0 0;
    }
    .content_btn {
        height: 38px;
        border-radius: 0 0 6px 6px;
    }

    .partner_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .partner_img {
        max-height: 360px;
    }
    .partner_inner {
        padding: 20px;
    }
    .partner_name {
        margin-bottom: 10px;
        gap: 6px;
    }
    .partner_centent {
        margin-top: 20px;
        gap: 10px;
    }
    .s_price .original {
        font-size: var(--ft12);
    }

    /*-- pagination --*/
    .pagination {
        margin-top: 50px;
    }
    .swiper_bullet {
        gap: 8px;
    }
    .cir_swiper_pagination {
        gap: 8px;
    }
    .swiper_pagination_bullet {
        width: 8px;
        height: 8px;
    }
    .swiper_play {
        width: 18px;
        height: 18px;
    }
    .swiper_play img {
        width: 12px;
        height: 12px;
    }

    /*-- popup --*/
    .popup_form_list li {
        flex-direction: column;
        gap: 10px;
    }


    .policy_wrap  {
        padding: 24px;
    }
    .ck-content h4 {
        margin-bottom: 10px;
    }
}