@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@font-face {
    font-family: 'SeoulHangang';
    font-weight: 300;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangLight.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangLight.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangLight.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangLight.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangLight.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'SeoulHangang';
    font-weight: 500;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangMedium.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangMedium.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangMedium.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangMedium.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangMedium.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'SeoulHangang';
    font-weight: 700;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangBold.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangBold.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangBold.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangBold.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangBold.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'SeoulHangang';
    font-weight: 800;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangExtraBold.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangExtraBold.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangExtraBold.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangExtraBold.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/seoulhangang/SeoulHangangExtraBold.ttf') format("truetype");
    font-display: swap;
}

:root {
    --clr-white: #fff;
    --clr-s-light: #f2f2f2;
    --clr-light: #999;
    --clr-gray: #c8c8c8;
    --clr-dark: #333;
    --clr-black: #000;
    /* --clr-primary: #4AA278;#2FBDEB */
    --clr-primary: #2FBDEB;
    --clr-gray: #949494;
    --clr-bg: #2FBDEB;
    --point_color_02: #2FBDEB;
}

* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}

html,
body {
    font-family: "Pretendard", Pretendard, sans-serif;
    overflow-x: hidden;
    color: var(--clr-white);
    background-color: var(--clr-black);
    font-weight: 400;
    height: 100%;
    scroll-behavior: smooth;
}

.container {
    width: calc(100% - 30px);
    max-width: 1320px;
    margin: 0 auto;
}

.container-full {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.text-primary {
    color: var(--clr-primary);
}

.text-secodary {
    color: var(--clr-gray);
}

/* Header */
header nav {
    display: flex;
    align-items: center;
    height: 114px;
    justify-content: space-between;
}

header ul.gnb,
.header-left,
header ul.header-links {
    display: flex;
    height: 100%;
}
header ul.gnb {
    column-gap: 56px;
}

header ul.header-links a {
    height: 100%;
    display: grid;
    place-items: center;
}

header .gnb a {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 100%;
    display: grid;
    place-items: center;
    /* padding: 0 28px; */
}

header .logo {
    margin-right: 48px;
    display: flex;
    align-items: center;
}

header ul.header-links {
    gap: 16px;
}

header .gnb .lnb,
.header-links li .switch-language {
    position: absolute;
    bottom: 0;
    flex-direction: row;
    display: flex;
    background-color: var(--clr-white);
    border-radius: 100px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 300ms;
    z-index: 3;
}
.header-links li .switch-language {
    padding: 14px 20px;
    gap: 24px;
}

header .gnb li:hover .lnb,
.header-links li:hover .switch-language {
    opacity: 1;
    visibility: visible;
    transform: translateY(50%);
}

header .gnb .lnb a {
    padding: 14px 20px;
}

header .gnb .lnb a,
.switch-language a {
    color: var(--clr-black);
    white-space: nowrap;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

header nav .gnb>li {
    position: relative;
}

.header-links li {
    position: relative;
}
.icon-mb {
    display: none;
}
@media(max-width: 1023px) {
    .icon-mb {
        display: block;
    }
    header nav {
        padding: 20px 30px 20px 0;
        position: relative;
        height: auto;
    }
    .menu-wrapper .icon-mb.icon-menu i {
        font-size: 24px;
    }
    header .gnb li:hover .lnb,
    .header-links li:hover .switch-language {
        transform: none;
    }
    .menu-wrapper .icon-mb.icon-menu {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .menu-wrapper .icon-mb.icon-close {
        position: absolute;
        top: 20px;
        right: 15px;
        z-index: 999;
    }
    .menu-wrapper .icon-mb.icon-close img {
        max-width: 30px;
    }

    ul.header-links img {
        max-width: 24px;
    }

    header ul.header-links {
        gap: 8px;
    }

    header ul.gnb {
        display: none;
    }

    header ul.gnb {
        position: fixed;
        inset: 0;
        flex-direction: column;
        background: var(--clr-white);
        color: var(--clr-dark);
        gap: 20px;
        padding: 40px 15px;
        overflow-y: scroll;
        z-index: 99;
    }

    header .gnb a {
        font-size: 20px;
    }

    header .gnb .lnb {
        position: static;
        opacity: 1;
        visibility: visible;
        flex-direction: column;
        gap: 15px;
        padding: 14px;
        transform: none;
    }

    header .gnb .lnb a {
        font-weight: 400;
        color: var(--clr-dark);
    }

    header nav .gnb>li {
        height: max-content;
    }
    header .gnb a {
        height: max-content;
    }
}

/* footer */
footer {
    background: #3D3D3D;
    padding: 60px 0 40px;
}

ul.footer-top a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

ul.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 26px;
    flex-wrap: wrap;
}

.footer-bottom {
    padding-top: 26px;
}

.footer-bottom ul {
    display: flex;
    gap: 101px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom .footer-copyright {
    display: flex;
    justify-content: center;
}

.footer-bottom li {
    color: var(--clr-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-bottom li span {
    color: #ccc;
    margin-right: 4px;
}

.copyright {
    margin-top: 4px;
    text-align: center;
    color: var(--clr-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.copyright span {
    color: #ccc;
}

.logo-mb {
    display: none;
}

@media(max-width: 1023px) {
    .logo-mb {
        display: block;
        margin-bottom: 20px;
    }

    footer {
        padding: 40px 0;
    }

    ul.footer-top {
        justify-content: flex-start;
        row-gap: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom ul li:first-child {
        display: none;
    }

    .footer-bottom ul {
        gap: 20px;
    }

    .copyright {
        margin-top: 20px;
    }
}

@media(min-width: 1024px) and (max-width: 1300px) {
    .footer-bottom ul {
        gap: 20px;
        justify-content: flex-start;
    }

    .footer-bottom ul li {
        width: calc((100% - 40px) / 3);
    }

    .copyright {
        margin-top: 20px;
    }
}

/* Heading */
.heading {
    color: var(--point_color_02, #2FBDEB);
    font-family: 'SeoulHangang';
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 80px 0 138px;
    margin-bottom: 36px;
}
.heading span {
    font-size: 56px;
    margin-left: 16px;
}
@media(max-width: 1300px) {
    .heading {
        font-size: 40px;
        padding: 40px 0;
        margin-bottom: 0;
    }
    .heading span {
        font-size: 30px;
    }
}
/* Form */
input:not([type="checkbox"]), textarea {
    width: 100%;
    max-width: 636px;
    border-radius: 8px;
    border: 1px solid var(--clr-s-light);
    padding: 18px 16px;
    background: transparent;
    font-size: 24px;
    color: var(--clr-white);
    display: block;
    margin-top: 36px;
}
input:not([type="checkbox"])::placeholder, textarea::placeholder {
    color: var(--clr-gray);
    font-size: 20px;
}
input:not([type="checkbox"])::placeholder, textarea::placeholder, textarea {
    font-family: "Pretendard", Pretendard, sans-serif;
}
input:focus-visible, textarea:focus-visible {
    outline: none;
    border-color: #51ADAE;
}
.custom-checkbox {
    align-items: center;
    font-size: 24px;
    max-width: max-content;
	display: grid;
	grid-template-columns: max-content minmax(0,1fr);
}
.custom-checkbox input[type=checkbox] {
    appearance: none;
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 24px 0 0;
    cursor: pointer;
}
.custom-checkbox input[type=checkbox]::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    background: url('../images/checkbox-outline.svg') no-repeat;
}
.custom-checkbox input[type=checkbox]:checked:before {
    background: url('../images/checkbox-checked.svg') no-repeat;
}
.validate-err {
    color: #FF4949;
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
}
.validate-success {
    color: var(--clr-primary);
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
}
@media(max-width: 767px) {
    input:not([type="checkbox"]), textarea {
        font-size: 20px;
    }
}

/* if empty show placeholder */
.list-item-block .list-item:not(:has(table)),
.list-item-block .customer-service-list:not(:has(table)),
.list-item-block .notice-list:not(:has(li)),
.faq-page .accordion:not(:has(.accordion__item)) {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 37px;
    opacity: 0.6;
}
.list-item-block .list-item:not(:has(table))::before,
.list-item-block .customer-service-list:not(:has(table))::before,
.list-item-block .notice-list:not(:has(li))::before,
.faq-page .accordion:not(:has(.accordion__item))::before {
    content: '';
    width: max-content;
    min-width: 167px;
    aspect-ratio: 1/1;
    background-image: url('../images/icon-placeholder.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.list-item-block .list-item:not(:has(li))::after,
.list-item-block .customer-service-list:not(:has(table))::after,
.list-item-block .notice-list:not(:has(li))::after,
.faq-page .accordion:not(:has(.accordion__item))::after {
    color: var(--clr-s-light);
    font-family: "SeoulHangang";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}
.wishlist-page .list-item-block .list-item:not(:has(table))::after {
    content: "위시리스트가 비어 있어요.";
}
.cart-page .list-item-block .list-item:not(:has(table))::after {
    content: "장바구니가 비어 있어요.";
}
.list-item-block .customer-service-list:not(:has(table))::after {
    content: "문의내역이 없어요.";
}
.list-item-block .notice-list:not(:has(li))::after {
    content: "공지사항이 없어요.";
}
.faq-page .accordion:not(:has(.accordion__item))::after {
    content: "FAQ가 없어요.";
}
.wishlist-page .list-item-block .list-item:not(:has(table))::before,
.cart-page .list-item-block .list-item:not(:has(table))::before {
    background-image: url('../images/cart-empty.svg');
}
@media(max-width: 767px) {
    .list-item-block .list-item:not(:has(table)),
    .list-item-block .customer-service-list:not(:has(table)),
    .list-item-block .notice-list:not(:has(li)),
    .faq-page .accordion:not(:has(.accordion__item)) {
        min-height: 300px;
    }
}

/* Pagination */
.pagination {
    padding-top: 36px;
    border-top: 1px solid #D9D9D9;
}
.pagination, .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination ul {
    margin: 0 36px;
}

.pagination ul li a {
    color: var(--clr-white);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 10px;
    opacity: 0.7;
}

.pagination ul li a.on {
    font-weight: 500;
    opacity: 1;
}

@media(max-width: 1023px) {
    .pagination ul li a {
        font-size: 20px;
        padding: 0 5px;
    }

    .pagination ul {
        margin: 0 5px;
    }
}

/* Modal */
.inquiry-modal {
    position: fixed;
    z-index: 9;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.60);
    display: none;
    align-items: center;
    justify-content: center;
}
.inquiry-modal .modal-wrap {
    width: calc(100% - 30px);
    max-width: 684px;
    padding: 24px;
    background: #000;
    position: relative;
}
.inquiry-modal .close-modal {
    position: absolute;
    right: 40px;
    top: 24px;
    cursor: pointer;
}
.inquiry-modal .modal-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 36px;
}
.inquiry-modal .modal-wrap .btn-primary {
    max-width: 427px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

@media(max-width: 767px) {
    .inquiry-modal .modal-wrap {
        padding: 24px 12px;
    }
    .inquiry-modal .close-modal {
        right: 12px;
        top: 24px;
    }
}

.good-detail-left .swiper-slide img {
    width: 100%;
    height: 345px;
    object-fit: cover;
    object-position: center;
}
.addition-block img {
    height: 160px;
    object-fit: cover;
    object-position: center;
}
#exhibition-view .product-img img {
    height: 100%;
}
