@charset "utf-8";

/* Common Styles */

.title_lg.common {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 500;
    color: #5E503F;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.common .title_md {
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.common .desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #888888;
    text-transform: lowercase;
    line-height: 25.2px;
    letter-spacing: 0.5px;
}

.btn_arrow.common {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn_arrow.common :hover {
    opacity: 0.8;
}

.btn_arrow.common .text {
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn_arrow.common .icon {
    width: 50px;
    height: 50px;
    background-color: #5E503F;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.common .btn_arrow .icon img {
    width: 20px;
    height: 14px;
}

.common .item_title {
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.common .item_category {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #888888;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.common .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.common .text_top {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

@media (max-width: 1280px) {
    .common .title_lg {
        font-size: 42px;
    }

    .common .title_md {
        font-size: 20px;
    }

    .common .desc {
        font-size: 16px;
        line-height: 22px;
    }

    .common .btn_arrow .text {
        font-size: 20px;
    }

    .common .btn_arrow .icon {
        width: 44px;
        height: 44px;
    }

    .common .item_title {
        font-size: 20px;
    }

    .common .item_category {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .common .title_lg {
        font-size: 36px;
    }

    .common .title_md {
        font-size: 18px;
    }

    .common .desc {
        font-size: 15px;
        line-height: 21px;
    }

    .common .desc br {
        display: none;
    }

    .common .btn_arrow .text {
        font-size: 18px;
    }

    .common .btn_arrow .icon {
        width: 40px;
        height: 40px;
    }

    .common .btn_arrow .icon img {
        width: 16px;
        height: 12px;
    }

    .common .item_title {
        font-size: 18px;
    }

    .common .item_category {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .common .title_lg {
        font-size: 28px;
    }

    .common .title_md {
        font-size: 16px;
    }

    .common .desc {
        font-size: 14px;
        line-height: 20px;
    }
}


/* main visual */
.main_visual {
    height: 100vh;
    width: 100%;
    min-height: 600px;
    aspect-ratio: 1 / 0.5625;
    position: relative;
}

.main_visual .swiper-container {
    width: 100%;
    height: 100%;
}

.main_visual .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.main_visual .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 72px;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}

.mv_txt {
    width: 100%;
}

.mv_txt h1 {
    color: #FFF;
    text-align: center;
    font-family: "Playfair Display";
    font-size: clamp(60px, 6vw, 88px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.mv_txt p {
    color: #DFDED8;
    text-align: center;
    font-family: Pretendard;
    font-size: clamp(20px, 3.2vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin-top: 18px;
}

.shop_now_btn a {
    padding: 18px 72px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 2px;
    backdrop-filter: blur(5px);
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop_now_btn a:hover {
    background: rgba(255, 255, 255, 0.2);
}


@media (max-width:768px) {
    .main_visual {
        height: 100%;
        aspect-ratio: unset;
    }
}


/* Main */

.section {
    padding: 144px 0;
}

@media (max-width:768px) {
    .section {
        padding: 72px 0;
    }
}

/* New Arrivals Section */

.section_new_arrivals {
    background-color: #EDEDE9;
}

.section_new_arrivals .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 72px;
}

.section_new_arrivals .list {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.section_new_arrivals .item {
    flex: 0 0 calc((100% - 90px) / 6);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section_new_arrivals .item_img {
    width: 100%;
    height: 252px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_new_arrivals .item_img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.section_new_arrivals .item_info {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.section_new_arrivals .badge {
    display: inline-flex;
    padding: 4px 18px;
    background-color: #222222;
    color: #fff;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-top: 18px;
}

@media (max-width: 1280px) {
    .section_new_arrivals .header {
        margin-bottom: 50px;
    }

    .section_new_arrivals .item {
        flex: 0 0 calc((100% - 54px) / 4);
    }
}

@media (max-width: 1024px) {
    .section_new_arrivals .item {
        flex: 0 0 calc((100% - 36px) / 3);
    }
}

@media (max-width: 768px) {
    .section_new_arrivals .header {
        margin-bottom: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section_new_arrivals .item {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .section_new_arrivals .item_img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .section_new_arrivals .list {
        gap: 15px;
    }

    .section_new_arrivals .item {
        flex: 0 0 calc((100% - 15px) / 2);
        gap: 15px;
    }

    .section_new_arrivals .item_img {
        height: 280px;
    }

    .section_new_arrivals .badge {
        font-size: 12px;
        padding: 3px 15px;
    }
}

/* Best Sellers Section */

.section_best_sellers {
    background-color: #DFDED8;
}

.section_best_sellers .text_wrap {
    align-items: center;
    margin-bottom: 72px;
}

.section_best_sellers .text_top {
    align-items: center;
}

.section_best_sellers .desc {
    text-align: center;
    /* max-width: 790px; */
    margin-top: 18px;
}

.section_best_sellers .list {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.section_best_sellers .item {
    flex: 0 0 calc((100% - 36px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.section_best_sellers .item_img {
    width: 100%;
    height: 695px;
    border-radius: 5px;
    overflow: hidden;
}

.section_best_sellers .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_best_sellers .item_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.section_best_sellers .item_title,
.section_best_sellers .item_category {
    text-align: center;
}

@media (max-width: 1280px) {
    .section_best_sellers .text_wrap {
        margin-bottom: 50px;
    }

    .section_best_sellers .item_img {
        height: 550px;
    }
}

@media (max-width: 1024px) {
    .section_best_sellers .item_img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .section_best_sellers .text_wrap {
        margin-bottom: 40px;
    }

    .section_best_sellers .item {
        flex: 0 0 100%;
    }

    .section_best_sellers .item_img {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .section_best_sellers .item_img {
        height: 400px;
    }
}

/* Philosophy Banner Section */

.section_philosophy_banner {
    background-image: url('/img/main_banner_bg01.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* .section_philosophy_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
} */

.section_philosophy_banner .inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

.section_philosophy_banner .text_wrap {
    align-items: center;
    max-width: 790px;
}

.section_philosophy_banner .text_top {
    align-items: center;
}

.section_philosophy_banner .title_md,
.section_philosophy_banner .title_lg {
    color: #fff;
    text-align: center;
}

.section_philosophy_banner .title_lg {
    font-size: 46px;
    line-height: 64.4px;
}

.section_philosophy_banner .desc {
    color: #DFDED8;
    text-align: center;
    margin-top: 18px;
}

.section_philosophy_banner .btn {
    padding: 18px 72px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 2px;
    backdrop-filter: blur(5px);
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section_philosophy_banner .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1280px) {
    .section_philosophy_banner .inner {
        gap: 50px;
    }

    .section_philosophy_banner .title_lg {
        font-size: 40px;
        line-height: 56px;
    }

    .section_philosophy_banner .btn {
        font-size: 20px;
        padding: 16px 60px;
    }
}

@media (max-width: 1024px) {
    .section_philosophy_banner .title_lg {
        font-size: 36px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    .section_philosophy_banner .inner {
        gap: 40px;
    }

    .section_philosophy_banner .title_lg {
        font-size: 32px;
        line-height: 44px;
    }

    .section_philosophy_banner .btn {
        font-size: 18px;
        padding: 14px 50px;
    }
}

@media (max-width: 480px) {
    .section_philosophy_banner .title_lg {
        font-size: 26px;
        line-height: 36px;
    }

    .section_philosophy_banner .btn {
        font-size: 16px;
        padding: 12px 40px;
    }
}

/* Catalog Section */

.section_catalog {
    background-color: #EDEDE9;
    border-bottom: 1px solid rgba(94, 80, 63, 0.2);
}

.section_catalog .title_wrap {
    padding: 0 18px 18px;
    border-bottom: 1px solid #5E503F;
    margin-bottom: 72px;
}

.section_catalog .content {
    display: flex;
    gap: 18px;
}

.section_catalog .content_left {
    flex: 0 0 calc((100% - 18px) / 2);
}

.section_catalog .content_left img {
    width: 100%;
    height: 1055px;
    object-fit: cover;
    border-radius: 5px;
}

.section_catalog .content_right {
    flex: 0 0 calc((100% - 18px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.section_catalog .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.section_catalog .sub_title_main {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 500;
    color: #5E503F;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.section_catalog .bottom {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.section_catalog .img_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section_catalog .img_row {
    display: flex;
    gap: 18px;
    width: calc(50% - 9px);
}

.section_catalog .img_row img {
    flex: 0 0 calc((100% - 18px) / 2);
    /* height: 290px; */
    object-fit: cover;
    border-radius: 5px;

    aspect-ratio: 1 / 0.75032;
}

.section_catalog .btn_download {
    padding: 18px 72px;
    background: rgba(94, 80, 63, 0.1);
    border: 1px solid #5E503F;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section_catalog .btn_download:hover {
    background: rgba(94, 80, 63, 0.2);
}

.section_catalog .btn_download .icon {
    width: 22px;
    height: 22px;
}

.section_catalog .btn_download .icon img {
    width: 100%;
    height: 100%;
}

.section_catalog .btn_download .text {
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #5E503F;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

@media (max-width: 1280px) {
    .section_catalog .title_wrap {
        margin-bottom: 50px;
    }

    .section_catalog .content_left img {
        height: 900px;
    }

    .section_catalog .sub_title_main {
        font-size: 42px;
    }

    /* .section_catalog .img_row img {
        height: 240px;
    } */

    .section_catalog .bottom {
        gap: 50px;
    }

    .section_catalog .btn_download {
        font-size: 20px;
        padding: 16px 60px;
    }
}

@media (max-width: 1024px) {
    .section_catalog .content {
        flex-direction: column;
    }

    .section_catalog .content_left,
    .section_catalog .content_right {
        flex: 0 0 100%;
    }

    .section_catalog .top {
        flex-direction: column;
        gap: 30px;
    }

    .section_catalog .content_left img {
        height: 600px;
    }

    .section_catalog .sub_title_main {
        font-size: 36px;
    }

    .section_catalog .img_row {
        width: 100%;
    }

    /* .section_catalog .img_row img {
        height: 200px;
    } */

    .section_catalog .img_row img {
        flex: unset;
        width: calc(50% - 9px);
    }
}

@media (max-width: 768px) {
    .section_catalog .title_wrap {
        margin-bottom: 40px;
    }


    .section_catalog .sub_title_main {
        font-size: 32px;
    }

    .section_catalog .content_left img {
        height: 500px;
    }

    /* .section_catalog .img_row img {
        height: 180px;
    } */

    .section_catalog .bottom {
        gap: 40px;
    }

    .section_catalog .btn_download {
        font-size: 18px;
        padding: 14px 50px;
    }
}

@media (max-width: 480px) {
    .section_catalog .sub_title_main {
        font-size: 26px;
    }

    .section_catalog .content_left img {
        height: 400px;
    }

    .section_catalog .img_row {
        flex-direction: column;
    }

    /* .section_catalog .img_row img {
        flex: 0 0 100%;
        height: 250px;
    } */

    .section_catalog .btn_download {
        font-size: 16px;
        padding: 12px 40px;
    }

    .section_catalog .img_row img {

        width: 100%;
    }
}



/* Board Section */

.section_board {
    background-color: #EDEDE9;
}

.section_board .board_wrap {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.section_board .board_col {
    flex: 0 0 calc((100% - 18px) / 2);
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-self: stretch;

}

.section_board .board_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 18px 18px;
    border-bottom: 1px solid #5E503F;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.section_board .btn_view_all {
    padding: 9px 36px;
    background-color: #5E503F;
    border-radius: 2px;
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section_board .btn_view_all:hover {
    background-color: #4A3B32;
}

.section_board .notice_list {
    display: flex;
    flex-direction: column;
}

.section_board .notice_item {
    padding: 18px;
    border-bottom: 1px solid rgba(94, 80, 63, 0.2);
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    min-height: 93px;
    justify-content: center;
}

.section_board .notice_item:hover {
    background-color: rgba(94, 80, 63, 0.05);
}

.section_board .notice_meta {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #888888;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.section_board .notice_title {
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section_board .faq_list {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.section_board .faq_item {
    border-bottom: 1px solid rgba(94, 80, 63, 0.2);
    display: flex;
    flex-direction: column;
}

.section_board .faq_question {
    width: 100%;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-wrap: wrap;
    gap: 18px;
    min-height: 93px;
}

.section_board .faq_question:hover {
    background-color: rgba(94, 80, 63, 0.05);
}

.section_board .faq_question_text {
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.section_board .faq_icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_board .faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.section_board .faq_item.active .faq_answer {
    max-height: 200px;
}

.section_board .faq_answer p {
    padding: 18px 18px;
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #888888;
    line-height: 25.2px;
    letter-spacing: 0.5px;
}

@media (max-width: 1280px) {
    .section_board .btn_view_all {
        font-size: 20px;
        padding: 8px 30px;
    }

    .section_board .notice_meta {
        font-size: 16px;
    }

    .section_board .notice_title {
        font-size: 20px;
    }

    .section_board .faq_question_text {
        font-size: 20px;
    }

    .section_board .faq_answer p {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .section_board .board_col {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .section_board .btn_view_all {
        font-size: 18px;
        padding: 7px 24px;
    }

    .section_board .notice_meta {
        font-size: 15px;
    }

    .section_board .notice_title {
        font-size: 18px;
    }

    .section_board .faq_question_text {
        font-size: 18px;
    }

    .section_board .faq_answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section_board .board_header {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .section_board .btn_view_all {
        font-size: 16px;
        padding: 6px 20px;
    }

    .section_board .notice_meta {
        font-size: 14px;
    }

    .section_board .notice_title {
        font-size: 16px;
    }

    .section_board .faq_question_text {
        font-size: 16px;
    }

    .section_board .faq_icon {
        width: 18px;
        height: 18px;
    }

    .section_board .faq_icon::before {
        width: 10px;
    }

    .section_board .faq_icon::after {
        height: 10px;
    }

    .section_board .faq_answer p {
        font-size: 14px;
    }
}