@charset "utf-8";

/* main_visual */
.mv_wrap {
    max-width: 1600px;
    margin: 0 auto;

    margin-top: 184px;
}

.mv_swiper {
    position: relative;
}

.mv_box {
    aspect-ratio: 1 / 0.25;
    width: 100%;
}

/* section 공통 */
.section {
    padding: 100px 0;
}

.section+.section {
    padding-top: 0;
}

/* section_product */

.section_product .category_tab {
    display: flex;
    padding: 0 36px;
}

.section_product .tab_item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    color: #686868;
    border: 1px solid #EBEBEB;
    border-left: none;
    min-width: 0;
    transition: all 0.3s;
    cursor: pointer;
}

.section_product .tab_item:first-child {
    border-left: 1px solid #EBEBEB;
}

.section_product .tab_item.active {
    background: #0094EA;
    color: #fff;
    font-weight: 600;
    border-color: #0094EA;
    box-shadow: 0 8px 10px rgba(0, 148, 234, 0.4);
    border-bottom-right-radius: 20px;
}

.section_product .product_showcase {
    position: relative;
    padding: 50px 0 30px;
}

.section_product .showcase_wrap {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.section_product .showcase_wrap.active {
    position: relative;
    top: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.section_product .product_swiper {
    overflow: hidden;
    /* min-height: 300px; */
}

.section_product .product_swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1;
}

.section_product .product_swiper .swiper-slide img {
    width: 60%;
    object-fit: contain;
    transition: width 0.3s;
}

.section_product .product_swiper .swiper-slide-active {
    z-index: 2;
    overflow: hidden;
    text-align: center;
}

.section_product .product_swiper .swiper-slide-active::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #00A2FD;
    border-bottom-right-radius: 50px;
    box-shadow: 1px 1px 10px 5px rgba(0, 148, 234, 0.1);
    pointer-events: none;
    box-sizing: border-box;
}

.section_product .product_swiper .swiper-slide-active img {
    /* border-bottom-right-radius: 50px; */
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
}

.section_product .product_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 77px;
    padding-top: 20px;
}

.section_product .nav_arrow {
    flex: 0 0 auto;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 0;
}

.section_product .nav_arrow.next {
    color: #0094EA;
}

a.product_info {
    text-decoration: none;
    color: inherit;
}

.section_product .product_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section_product .product_name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-align: center;

    min-height: 36px;
}

.section_product .price_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 280px;
}

.section_product .price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_product .price_row .label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.section_product .price_row .value {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.section_product .price_row .value.point {
    color: #0094EA;
}


@media all and (max-width: 1024px) {
    .mv_wrap {
        margin-top: 67px;
    }
}

@media all and (max-width:768px) {
    .section {
        padding: 50px 0;
    }

    .section_product .category_tab {
        flex-wrap: wrap;
        padding: 0;
    }

    .section_product .tab_item {
        flex: 0 0 calc(100% / 3);
        font-size: 14px;
        padding: 14px 0;
        border-left: none;
        border: 1px solid #EBEBEB;
    }

    .section_product .tab_item:nth-child(1),
    .section_product .tab_item:nth-child(2),
    .section_product .tab_item:nth-child(3) {
        border-bottom: none;
    }

    .section_product .product_bottom {
        gap: 30px;
    }

    .section_product .price_box {
        min-width: 200px;
    }

}

/* @media all and (max-width:480px) {
    .section_product .product_swiper .swiper-slide:not(.swiper-slide-active) {
        opacity: 0;
    }
} */

/* section_newbest */
/* section_newbest */

.section_newbest .nb_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 93px;
}

.section_newbest .nb_tab_item {
    font-size: 65px;
    font-weight: 500;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.section_newbest .nb_tab_item.active {
    color: #0094EA;
}

.section_newbest .nb_divider {
    width: 2px;
    height: 50px;
    background: #666;
}

.section_newbest .nb_showcase {
    position: relative;
    padding-top: 100px;
}

.section_newbest .nb_wrap {
    display: none;
    align-items: center;
    gap: 50px;
}

.section_newbest .nb_wrap.active {
    display: flex;
}

.section_newbest .nb_arrow {
    flex: 0 0 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 0;
    transition: opacity 0.3s;
}

.section_newbest .nb_arrow.next {
    color: #0094EA;
}

.section_newbest .nb_arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

.section_newbest .nb_arrow.nb_hidden {
    visibility: hidden;
}

.section_newbest .nb_swiper {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.section_newbest .nb_card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.section_newbest .nb_img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.section_newbest .nb_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section_newbest .nb_info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 32px 15px 22px;
    background: #fff;
}

.section_newbest .nb_name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.section_newbest .nb_desc {
    font-size: 15px;
    font-weight: 700;
    color: #999;
    line-height: 1.6;
}

.section_newbest .nb_price {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_newbest .nb_price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_newbest .nb_price_row .label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.section_newbest .nb_price_row .value {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.section_newbest .nb_price_row .value.point {
    color: #0094EA;
}

@media all and (max-width:768px) {
    .section_newbest .nb_tab {
        gap: 40px;
    }

    .section_newbest .nb_tab_item {
        font-size: 36px;
    }

    .section_newbest .nb_divider {
        height: 30px;
    }

    .section_newbest .nb_showcase {
        padding-top: 50px;
    }

    .section_newbest .nb_wrap {
        gap: 15px;
    }

    .section_newbest .nb_arrow {
        flex: 0 0 30px;
        width: 30px;
    }

    .section_newbest .nb_arrow svg {
        width: 14px;
        height: auto;
    }

    .section_newbest .nb_price_row .label,
    .section_newbest .nb_price_row .value
     {
        font-size: 14px;
     }

     .section_newbest .nb_name {
        min-height: 36px;
     }

}

@media all and (max-width:480px) {
    .section_newbest .nb_arrow {
        display: none;
    }
}

/* section_process */
.section_process .process_list {
    display: flex;
}

.section_process .process_item {
    flex: 1 1 0;
    min-width: 0;
    padding: 39px 20px 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
}

.section_process .process_item.bg_blue {
    background: #0094EA;
}

.section_process .process_item.bg_dark {
    background: #005282;
}

.section_process .process_title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.section_process .process_desc {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.75;
}

@media all and (max-width:768px) {
    .section_process .process_list {
        flex-wrap: wrap;
    }

    .section_process .process_item {
        flex: 0 0 50%;
    }

    .section_process .process_title {
        font-size: 22px;
    }

    .section_process .process_desc {
        font-size: 16px;
    }
}

@media all and (max-width:480px) {
    .section_process .process_item {
        flex: 0 0 100%;
        padding: 30px 20px;
        gap: 20px;
    }

    .section_process .process_title {
        font-size: 20px;
    }

    .section_process .process_desc {
        font-size: 15px;
    }
}

.product_swiper a {
    text-align: center;
}