@charset "utf-8";

/* 기본프로그램 사용자모듈 메뉴 - PC */
.all_m_btn {
    padding: 10px;
    background: #323337;
}

.pro_m_wrap .m_menu {
    width: 200px;
}

@media all and (max-width:999px) {
    .pro_m_wrap.view {
        left: 0;
    }
}

/* basic */
.inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

@media all and (max-width:1440px) {
    .inner {
        width: 96%;
    }
}

/* Header */
#header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#header .header_top_bar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: height 0.4s ease, opacity 0.4s ease;
}

#header .header_logo {
    width: 180px;
}

#header .btn_login {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 14px;
    background: #222;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

#header .header_nav_bar {
    padding: 0 160px;
    transition: padding 0.4s ease;
}

#header .nav_inner {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#header .header_logo_text {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#header .header_logo_text .logo_title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'ChangwonDangamRound', 'Pretendard', sans-serif;
}

#header .header_logo_text .logo_sub {
    color: #fff;
    font-size: 6px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.28px;
    font-family: 'ChangwonDangamRound', 'Pretendard', sans-serif;
    margin-top: 2px;
}

#header .gnb .gnb_list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

#header .gnb .gnb_list li {
    position: relative;
}

#header .gnb .gnb_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

/* gnb sub menu */
#header .gnb .gnb_sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 100;
}

#header .gnb .gnb_list li:hover>.gnb_sub {
    opacity: 1;
    visibility: visible;
}

#header .gnb .gnb_sub li a {
    display: block;
    padding: 10px 24px;
    color: rgba(66, 66, 66, 0.8);
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.2s;
}

#header .gnb .gnb_sub li a:hover {
    color: #000;
    font-weight: 600;
}

#header.dark .gnb .gnb_sub {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

#header.dark .gnb .gnb_sub li a {
    color: rgba(66, 66, 66, 0.8);
}

#header.dark .gnb .gnb_sub li a:hover {
    color: #000;
}

#header .gnb .gnb_list li.active a {
    font-weight: 700;
}

#header .gnb .gnb_list li.active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

#header .btn_hamburger {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
}

#header .btn_hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

#header .btn_hamburger_mobile {
    display: none;
}

/* Header - 스크롤 시 */
#header.fixed .header_top_bar {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

#header.fixed .header_nav_bar {
    padding: 10px 60px;
}

#header.fixed .nav_inner {
    justify-content: space-between;
}

#header.fixed .header_logo_text {
    display: flex;
    opacity: 1;
}

#header.fixed .gnb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#header.fixed .gnb .gnb_sub {
    top: calc(100% + 8px);
}

/* Header - 다크 모드 (밝은 배경 섹션) */
#header.dark {
    background: rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid #eee;
}

#header.dark .gnb .gnb_list li a {
    color: #424242;
}

#header.dark .gnb .gnb_list li.active a {
    font-weight: 700;
}

#header.dark .gnb .gnb_list li.active::before {
    background: #424242;
}

#header.dark .header_logo {
    filter: brightness(0);
}

#header.dark .btn_hamburger svg path {
    stroke: #424242;
}

#header.dark .btn_hamburger span {
    background: #424242;
}

#header.dark .header_logo_text .logo_title,
#header.dark .header_logo_text .logo_sub {
    color: #424242;
}

#header.dark .btn_login {
    background: #424242;
}

/* Header - 반응형 */

@media all and (max-width:1550px) {
    #header .gnb .gnb_list li a {
        padding: 20px 10px;
    }
}

@media all and (max-width:1400px) {
    #header .header_nav_bar {
        padding: 0 40px;
    }

    #header.fixed .header_nav_bar {
        padding: 10px 30px;
    }

    #header .gnb .gnb_list li a {
        padding: 20px 10px;
        font-size: 16px;
    }

    #header.fixed .header_logo {
        width: 150px;
    }

    #header.fixed .btn_hamburger {
        width: 40px;
        height: 40px;
    }
}

@media all and (max-width:1200px) {
    #header.fixed .header_nav_bar {
        padding: 10px;
    }


}

@media all and (max-width:1024px) {
    #header .header_top_bar {
        height: 60px;
        justify-content: unset;
        padding-left: 10px;
    }

    #header .header_logo {
        width: 140px !important;
    }

    #header .btn_hamburger {
        width: 40px;
        height: 40px;
    }

    #header .btn_login {
        right: 70px;
    }

    #header .header_nav_bar {
        display: none;
    }

    #header .btn_hamburger_mobile {
        display: flex;
    }

    /* 스크롤 시 모바일 - top_bar 유지 */
    #header.fixed .header_top_bar {
        height: 60px;
        opacity: 1;
        pointer-events: auto;
    }

    .btn_login {
        display: none;
    }
}

@media all and (max-width:768px) {
    #header .header_logo {
        width: 120px;
    }

    #header .btn_login {
        font-size: 12px;
        padding: 3px 12px;
    }
}

@media all and (max-width:640px) {
    #header {
        border-bottom: 1px solid #eee;
    }

    #header .gnb .gnb_list li a {
        color: #424242;
    }

    #header .gnb .gnb_list li.active::before {
        background: #424242;
    }

    #header .header_logo {
        filter: brightness(0);
    }

    #header .btn_hamburger svg path {
        stroke: #424242;
    }

    #header .btn_hamburger span {
        background: #424242;
    }

    #header .header_logo_text .logo_title,
    #header .header_logo_text .logo_sub {
        color: #424242;
    }

    #header .btn_login {
        background: #424242;
    }
}

/* PC 메가 메뉴 */
.mega_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mega_menu.on {
    opacity: 1;
    visibility: visible;
}

.mega_menu .mega_menu_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/mega_bg.jpg') center / cover no-repeat;
}

.mega_menu .mega_menu_header {
    position: relative;
    z-index: 2;
    padding: 10px 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mega_menu .mega_header_inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mega_menu .mega_header_inner .header_logo {
    width: 180px;
}

.mega_menu .mega_menu_close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega_menu .mega_menu_content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    height: calc(100% - 80px);
    overflow-y: auto;
    box-sizing: border-box;
}

.mega_menu .mega_menu_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
    gap: 20px;
}

.mega_menu .mega_row {
    display: flex;
    align-items: center;
}

.mega_menu .mega_title {
    flex-shrink: 0;
    width: 220px;
    padding: 20px;
    color: #000;
    font-size: 22px;
    font-weight: 700;
}

.mega_menu .mega_links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mega_menu .mega_link {
    padding: 20px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.mega_menu .mega_link:hover {
    color: #000;
    font-weight: 700;
}

@media all and (max-width:1400px) {
    .mega_menu .mega_menu_header {
        padding: 10px 40px;
    }

    .mega_menu .mega_menu_inner {
        padding: 0 40px;
    }

    .mega_menu .mega_title {
        width: 180px;
        font-size: 18px;
        padding: 16px 20px;
    }

    .mega_menu .mega_link {
        font-size: 16px;
        padding: 16px;
    }

    .mega_menu .mega_links {
        gap: 16px;
    }
}

@media all and (max-width:1024px) {
    .mega_menu {
        display: none;
    }
}

/* 모바일 메뉴 */
.m_menu_bg {
    z-index: 1001;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    cursor: pointer;
}

#m_menu {
    z-index: 1002;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

#m_menu.on {
    right: 0;
}

#m_menu .top_box {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
}

#m_menu .top_box .close_btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#m_menu .top_box .close_btn i {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s;
}

#m_menu .top_box .close_btn i:first-of-type {
    transform: rotate(45deg);
}

#m_menu .top_box .close_btn i:last-of-type {
    transform: rotate(-45deg);
}

#m_menu .gnb_box {
    padding: 10px 0;
}

#m_menu .gnb_box>ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#m_menu .gnb_box>ul>li {
    border-bottom: 1px solid #f0f0f0;
}

#m_menu .gnb_box>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    position: relative;
}

/* 로그인/회원가입 */
#m_menu .login_box {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

#m_menu .login_box a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
}

#m_menu .login_box a:first-child {
    background: #222;
    color: #fff;
    border-color: #222;
}

/* 2depth 화살표 효과 */
#m_menu .gnb_box>ul>li>a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: transform 0.3s;
    flex-shrink: 0;
}

#m_menu .gnb_box>ul>li.on>a:after {
    transform: rotate(-135deg);
}

/* 2depth 없는 항목은 화살표 제거 */
#m_menu .gnb_box>ul>li:not(:has(> ul))>a:after {
    display: none;
}

#m_menu .gnb_box>ul>li>ul {
    display: none;
    background: #f9f9f9;
    padding: 10px 0;
}

#m_menu .gnb_box>ul>li>ul>li>a {
    display: block;
    padding: 10px 35px;
    font-size: 15px;
    color: #666;
    text-decoration: none;
}

#m_menu .gnb_box>ul>li>ul>li>a:hover {
    color: #5A5A40;
    font-weight: 500;
}

.quick_step_btn_box01 {
    display: flex;
}

.quick_step_btn_box01>a {
    position: absolute;
    z-index: 2;
}

.quick_step_btn_box01>a.btn-prev {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.quick_step_btn_box01>a.btn-next {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

/* PC 퀵메뉴 */
#sideQuick {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    width: 60px;
}

#sideQuick>ul {
    border-radius: 6px;
    margin-bottom: 20px;
}

#sideQuick ul li .side_quick_menu01 {
    width: 100%;
    aspect-ratio: 1/0.357;
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    padding: 0 20px;
}

#sideQuick ul li .side_quick_menu01+.side_quick_menu01 {
    margin-top: 10px;
}

#sideQuick ul li .side_quick_menu01 img {
    width: fit-content;
}

#top_btn {
    margin-top: 10px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
}

#top_btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#sideQuickMoreBtn {
    position: absolute;
    cursor: pointer;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

#top_btn,
#sideQuickMoreBtn {
    display: flex;
    justify-content: center;
}

.sideQuickBtn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

#sideQuickMoreBtn .sideQuickBtn {
    background-color: var(--color-primary01, #307dd4);
}

#top_btn .sideQuickBtn {
    background-color: transparent;
    box-shadow: none;
    border: 1px solid var(--color-primary01, #307dd4);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

#top_btn .sideQuickBtn .top_arrow {
    display: block;
    width: 11px;
    height: 11px;
    border-left: 2px solid var(--color-primary01, #307dd4);
    border-top: 2px solid var(--color-primary01, #307dd4);
    border-right: none;
    border-bottom: none;
    background: transparent;
    transform: rotate(45deg) !important;
    position: static;
    margin-top: 5px;
}

#top_btn .sideQuickBtn .top_text {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary01, #307dd4);
    position: static;
    transform: none;
    background: transparent;
    width: auto;
    height: auto;
    line-height: 1;
    margin-top: 2px;
}

#sideQuickMoreBtn .sideQuickBtn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

#sideQuickMoreBtn .sideQuickBtn span:nth-child(1) {
    width: 12px;
    height: 1px;
}

#sideQuickMoreBtn .sideQuickBtn span:nth-child(2) {
    width: 1px;
    height: 12px;
}

#sideQuickMoreBtn.scroll {
    bottom: 60px;
}

#sideQuickMoreBtn.active .sideQuickBtn span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

#sideQuickMoreBtn.active .sideQuickBtn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
}

#sideQuickMoreBtn .quick {
    position: absolute;
    bottom: 100%;
    margin-bottom: 10px;
    min-width: 140px;
    display: none;
}

/* 최근 본 상품 / 관심 상품 */
.quick ul li.recent_prod {}

.quick ul li.recent_prod>p {
    height: 40px;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 40px;
    background-color: var(--color-primary01, #307dd4);
    text-align: center;
}

.prod_no_box {
    width: 114px;
    height: 114px;
    border-radius: 5px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.prod_no_box>p {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    margin-top: 5px;
}

.quick ul li.recent_prod ul {
    padding: 30px 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    position: relative;
}

.quick ul li.recent_prod ul li {
    border: unset;
    border-radius: 6px;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 10px;
}

.quick ul li.recent_prod ul li:last-of-type {
    margin-bottom: 0;
}

.quick ul li.recent_prod ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick ul li.recent_prod .quick_pager {
    margin-top: 0;
    margin-bottom: 30px;
}

.quick ul li.recent_prod .quick_pager a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
    border: 0 none;
    margin: 0 3px;
    line-height: 14px;
    font-size: 14px;
    color: #b6b6b6;
}

.quick ul li.recent_prod .quick_pager a.active {
    color: #666666;
}

.quick ul.zzim {
    margin-top: 30px;
}

.quick ul li.top_btn {
    width: 100%;
    height: 40px;
    background-color: #000;
    box-sizing: border-box;
    line-height: 48px;
    text-align: center;
}

.quick ul li.top_btn a {
    display: block;
    color: #fff;
    line-height: 40px;
    font-size: 15px;
    letter-spacing: -0.025em;
}

/* 모바일에서 퀵메뉴 위치 조정 */
@media all and (max-width:768px) {
    #sideQuick {
        right: 10px;
        bottom: 10px;
    }

    #sideQuickMoreBtn .quick {
        right: auto;
        left: auto;
        transform: translateX(-30px);
    }
}

/* ========== END 퀵메뉴 & TOP 버튼 ========== */

/* Footer */
.footer {
    padding: 0;
    background: #fff;
}

.footer .inner {
    max-width: 1440px;
    /* padding: 0 10px; */
}

.footer .footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
}

.footer .footer_logo {
    width: 250px;
}

.footer .footer_top_links {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.footer .footer_top_links a {
    color: #999;
    font-size: 20px;
    font-weight: 500;
}

.footer .footer_top_links a.bold {
    color: #000;
    font-weight: 600;
}

.footer .footer_top_links .divider {
    margin: 0 16px;
    color: #999;
}

.footer .footer_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 44px 0 100px;
}

.footer .info_text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #424242;
    font-size: 20px;
    font-weight: 400;
}

.footer .footer_inline_links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
}

.footer .footer_inline_links a {
    color: #424242;
    font-size: 20px;
    font-weight: 500;
}

.footer .footer_inline_links a.bold {
    font-weight: 700;
}

.footer .copyright {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.footer .footer_sns {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.footer .sns_btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.footer .sns_btn:hover {
    filter: drop-shadow(0px 6px 14px rgba(0, 0, 0, 0.15)) brightness(1.15);
    transform: translateY(-3px);
}

@media all and (max-width:1024px) {
    .footer .inner {
        max-width: 100%;
    }

    .footer .info_text {
        font-size: 15px;
    }

    .footer .copyright {
        font-size: 13px;
    }

    .footer .footer_top_links a,
    .footer .footer_inline_links a {
        font-size: 15px;
    }

    .footer .footer_logo {
        width: 180px;
    }
}

@media all and (max-width:768px) {
    .footer .footer_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer .footer_content {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 30px 0 60px;
    }

    .footer .info_text {
        font-size: 13px;
        gap: 10px;
    }

    .footer .copyright {
        margin-top: 24px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .footer .footer_top_links a,
    .footer .footer_inline_links a {
        font-size: 13px;
    }

    .footer .footer_logo {
        width: 150px;
    }

    .footer .footer_sns {
        gap: 14px;
    }

    .footer .sns_btn {
        width: 40px;
        height: 40px;
    }
}


@media (max-width:1200px) {
    #header.fixed .gnb {
        left: 55%;
    }
}



/* ========================================
   Quick Menu
======================================== */
.quick_menu {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    width: 100px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border-radius: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.05), 8px 8px 50px rgba(0, 0, 0, 0.15);
}

.quick_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: #fff;
}

.quick_item span {
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    text-align: center;
}

.quick_w_bar {
    background-color: rgba(255, 255, 255, 0.40);
    height: 2px;
    width: 50px;
    margin: 0 auto;
}

.quick_menu,
.quick_item,
.quick_item span,
.quick_w_bar {
    transition: all 0.3s;
}

.quick_menu.light_bg {
    background: rgba(255, 236, 215, 0.20);
    border-color: rgba(164, 139, 120, 0.2);
    box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.05), 8px 8px 50px rgba(0, 0, 0, 0.08);
}

.quick_menu.light_bg .quick_item {
    color: #424242;
}

.quick_menu.light_bg .quick_item span {
    color: #424242;
}

.quick_menu.light_bg .quick_w_bar {
    background-color: rgba(164, 139, 120, 0.30);
}

.quick_menu.light_bg svg path {
    fill: #424242;
}

@media screen and (max-width: 1440px) {
    .quick_menu {
        right: 20px;
        width: 80px;

    }

    .quick_item span {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .quick_menu {
        opacity: 0.4;
    }

    .quick_menu:hover,
    .quick_menu:active,
    .quick_menu:focus-within {
        opacity: 1;
    }
}

@media screen and (max-width: 640px) {
    .quick_menu {
        right: 8px;
        bottom: 16px;
        width: 50px;
        padding: 15px 0;
        gap: 10px;
        height: fit-content;
        background: #fff !important;
        border-color: #eee !important;
    }

    .quick_menu .quick_item {
        color: #424242 !important;
    }

    .quick_menu .quick_item span {
        color: #424242 !important;
        font-size: 12px;
        display: none;
    }

    .quick_menu .quick_w_bar {
        background-color: rgba(164, 139, 120, 0.30) !important;
        width: 80%;
    }

    .quick_menu svg path {
        fill: #424242 !important;
    }

    .quick_item svg {
        width: 20px;
        height: 20px;
    }
}

/* Fee Popup Styles */
.fee_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.fee_popup {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.fee_popup_title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}
.fee_popup_content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}
.fee_popup_content::-webkit-scrollbar {
    width: 6px;
}
.fee_popup_content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.fee_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.fee_label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}
.fee_price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-align: right;
}
.fee_price small {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}
.fee_popup_close {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 18px 0;
    border-radius: 40px;
    margin-top: 40px;
    cursor: pointer;
    border: none;
}
body.popup-open {
    overflow: hidden;
}