﻿@font-face {
    font-family: 'GT Super Display Light';
    src: url('/contents/module/fonts/miming/GT-Super-Display-Light-Trial.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/contents/module/fonts/miming/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
}

body {
    color: #222;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    font-size: 13px;
    letter-spacing: -0.05em;
    background: #f0f0f0;
}

.page-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #f0f0f0;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 600px;
    max-width: 600px;
    min-width: 320px;
    background: #fff;
    min-height: 100vh;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid #000;
    width: 600px;
    max-width: 600px;
    min-width: 320px;
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    pointer-events: none;
    transition: background .25s ease, border-color .25s ease;
    backdrop-filter: blur(5px);
    background-color: hsla(0, 0%, 100%, .05);
}

.header a,
.header .header-icon {
    pointer-events: auto;
}

.header-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.5px;
    text-decoration: none;
    width: 114px;
    height: 50px;
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    fill: none;
    stroke-width: 1.8;
}

/* Legacy header classes */
.hdr {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #111;
}

.logo {
    font-family: 'GT Super Display Light', Georgia, serif;
    font-size: 25px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.logo img {
    height: 24px;
    width: auto;
    display: block;
    filter: brightness(0);
}

.hdr-nav {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hdr-nav a {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hdr-nav svg {
    width: 22px;
    height: 22px;
    stroke: #111;
    fill: none;
    stroke-width: 1.8;
}

/* ==========================================================================
   Search Panel
   ========================================================================== */
.search-panel {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 600px;
    max-width: 600px;
    z-index: 110;
    background: #fff;
    border-bottom: 1px solid #111;
    box-sizing: border-box;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: transform .3s ease;
}

.search-panel.open {
    transform: translateX(-50%) translateY(0);
}

.search-panel input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #111;
}

.search-panel input::placeholder {
    color: #999;
    letter-spacing: 1px;
}

.search-close {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-close svg {
    width: 20px;
    height: 20px;
    stroke: #111;
    stroke-width: 1.6;
}

.search-dim {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 600px;
    height: 100%;
    background: rgba(0, 0, 0, .45);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.search-dim.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 640px) {
    .container {
        width: 100%;
        max-width: 100%;
    }

    .header {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
        padding: 10px 16px;
    }

    .search-panel {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: translateY(-100%);
        padding: 0 16px;
    }

    .search-panel.open {
        transform: translateY(0);
    }

    .search-dim {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
    }
}

/* ==========================================================================
   Brand Detail Styles
   ========================================================================== */
#contents {
    width: 100%;
    background: #fff;
    padding-top: 70px;
    box-sizing: border-box;
}

/* Brand Detail Top */
.unit_wrap {
    position: relative;
    width: 100%;
    background: #fff;
}

.unit_wrap.xans-product-detail {
    padding-top: 40px;
    padding-bottom: 50px;
}

.detailArea {
    position: relative;
    width: 100%;
}

.detailArea .imgArea {
    position: relative;
    width: 100%;
}

.prd_img_wrap.unit_item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.unit_img_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.unit_img_item {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
    list-style: none;
}

.unit_img_item .ThumbImage,
.unit_img_wrap .ThumbImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 50%;
    box-shadow: none;
}

.infoArea {
    width: 100%;
    margin: 0 auto;
}

.headingArea {
    text-align: center;
    margin: 0 auto;
    border: 0;
    padding: 0;
}

.headingArea p.gt_font {
    font-family: 'GT Super Display Light', Georgia, serif;
    font-size: 20px;
    color: #000;
    font-weight: 300;
    padding: 20px 0 10px;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    text-shadow: none;
}

.headingArea h1.noto_font {
    font-family: 'GT Super Display Light', Georgia, serif;
    font-size: 44px;
    line-height: 55px;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.5px;
    margin: 0;
    text-align: center;
    text-shadow: none;
}

/* Brand Product Grid */
.brand_section {
    background: #fff;
    position: relative;
    width: 100%;
}

#unit_tap_list {
    display: flex !important;
    flex-wrap: wrap !important;
    border-top: 1px solid #f2f2f2 !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

#unit_tap_list .xans-record- {
    width: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 50% !important;
    border-right: 1px solid #f2f2f2 !important;
    border-bottom: 1px solid #f2f2f2 !important;
    box-sizing: border-box !important;
    list-style: none !important;
    background: #fff !important;
}

#unit_tap_list .xans-record- a {
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    line-height: 0 !important;
}

#unit_tap_list .thumbnail {
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
    line-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#unit_tap_list .thumbnail img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    border: 0 !important;
}

#unit_tap_list .summary {
    display: none !important;
}

/* Article Brand Detail View */
.miming_board_wrap {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
}

.miming_board_wrap .ec-base-table.typeWrite {
    width: 100%;
}

.miming_board_wrap .detail {
    width: 100%;
    text-align: center;
    padding: 30px 16px 20px;
    box-sizing: border-box;
}

.miming_board_wrap .detail img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: top;
}

/* Common Action Buttons */
.ec-base-button.gBottom {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 24px 16px 40px !important;
    background: #fff !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    width: 100% !important;
}

.ec-base-button.gBottom .gRight {
    display: flex !important;
    justify-content: flex-end !important;
}

.btnSubmitFix {
    display: inline-block !important;
    background: #000 !important;
    color: #fff !important;
    padding: 10px 24px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-family: 'DM Sans', sans-serif !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
    border: 1px solid #000 !important;
    transition: background .2s ease, color .2s ease;
}

.btnSubmitFix:hover {
    background: #222 !important;
    color: #fff !important;
}

.btnNormalFix {
    display: inline-block !important;
    background: #fff !important;
    color: #111 !important;
    padding: 10px 24px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-family: 'DM Sans', sans-serif !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
    border: 1px solid #d5d5d5 !important;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.btnNormalFix:hover {
    border-color: #000 !important;
    color: #000 !important;
}

/* ==========================================================================
   Company Styles
   ========================================================================== */
input.field {
    border: 0;
    border-bottom: 1px solid #111;
    width: 100%;
    background: transparent;
    outline: none;
}

input.fld {
    border: 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
    background: transparent;
    outline: none;
}

input.in {
    border: 0;
    border-bottom: 1px solid #ddd;
    background: transparent;
    outline: none;
}

textarea.ta {
    outline: none;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #bbb;
}

.acc {
    cursor: pointer;
}

.acc-arrow {
    float: right;
    transition: transform .2s;
}

.acc.open .acc-arrow {
    transform: rotate(180deg);
}

.acc-body {
    padding-top: 70px;
    display: none;
    font-size: 12px;
    color: #777;
    line-height: 1.8;
    padding: 14px 2px;
    border-bottom: 1px solid #eee;
}

.sel-item .qty span {
    cursor: pointer;
    user-select: none;
}

.qty-ctrl .box {
    cursor: pointer;
    user-select: none;
}

.tabs span {
    cursor: pointer;
}

.periods a {
    cursor: pointer;
}

select.opt-select {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    color: #444;
    cursor: pointer;
}

.intro {
    background: #fbf8f4;
    padding: 140px 40px 90px;
    text-align: center;
    margin-top: 70px;
}

.intro-img {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 50px;
}

.history-img {
    display: block;
    width: calc(100% + 80px);
    margin: 130px -40px 0;
    max-width: none;
}

.intro .lead {
    font-size: 16px;
    color: #222;
    line-height: 1.4;
    font-family: 'GT Super Display Light';
    font-weight: bold;
}


.intro p {
    font-size: 14px;
    color: #555;
    line-height: 23px;
    margin-top: 36px;
    word-break: keep-all;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 3s ease, transform 3s ease;
    font-family: 'Noto Sans KR';
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.intro .strong {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-top: 44px;
    font-family: 'GT Super Display Light';
    font-weight: bold;
}

.hash {
    font-family: 'GT Super Display Light', Georgia, serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
    padding: 60px 0 30px;
    background: #fbf8f4;
}

.imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 24px 80px;
}

.imgs .ic {
    border: 1px solid #eee;
}

.imgs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 30px;
}

.float-btn {
    position: fixed;
    bottom: 40px;
    right: calc(50vw - 300px + 10px);
    width: 58px;
    height: 58px;
    z-index: 200;
}

.float-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 640px) {
    .intro-title {
        font-size: 28px;
    }

    .intro-sub {
        font-size: 12px;
        max-width: 240px;
        margin-bottom: 36px;
    }

    .float-btn {
        right: 10px;
    }

    .intro {
        padding: 90px 24px 60px;
    }

    .history-img {
        width: calc(100% + 48px);
        margin: 50px -24px 0;
    }

    .imgs {
        padding: 0 16px 60px;
        gap: 12px;
    }

    .imgs img {
        padding: 20px;
    }

    .hash {
        font-size: 17px;
        padding: 50px 0 24px;
    }
}

/* ==========================================================================
   Recommend Product Wrap (Swiper)
   ========================================================================== */
.recommend_product_wrap {
    background-color: rgb(251, 248, 244);
    padding: 50px 0 80px;
}

.recommend_title {
    font-family: 'GT Super Display Light', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #111;
    margin-bottom: 0;
}

.recommend_product {
    position: relative;
    margin: 25px 20px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.recommend_list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommend_item {
    box-sizing: border-box;
}

.recommend_item .prdImg {
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.recommend_item .recommend_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.recommend_item .recommend_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.recommend_product .swiper-button-next,
.recommend_product .swiper-button-prev {
    display: none;
}

@media (max-width: 640px) {
    .recommend_product_wrap {
        padding: 40px 0 60px;
    }


    .recommend_product {
        margin: 20px 16px 0;
    }

    .recommend_item .prdImg {
        padding: 16px;
    }
}