@charset "UTF-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
    --main_color : #DC0030;
    --gray_100 : #f5f5f5;
    --gray_300 : #e0e0e0;
    --gray_400 : #bdbdbd;
    --gray_500 : #9e9e9e;
    --gray_600 : #757575;
    --gray_800 : #424242;
    --gray_900 : #212121;
}
@media (max-width: 500px) {
    html {
		font-size: 8px;
		font-size: 50%;
	}
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:  "Pretendard", sans-serif;
    line-height: 1.5;
    color: #212121;
}
a {
    text-decoration: none;
    color: #212121;
}
button {
    font-family:  "Pretendard", sans-serif;
    background: none;
    border: none;
}
input, select {
    font-family:  "Pretendard", sans-serif;
}
ol, ul, li {
   list-style: none;
}
table {
    font-family:  "Pretendard", sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.wrap {
    max-width: 640px;
    padding: 0 15px;
    margin: 0 auto;
    overflow: hidden;
}

/* header */
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 14.3px 0;
}
.header_inner .logo img {
    height: 31.4px;
    object-fit: contain;
}
.header_inner .login_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 21px;
    border: 1px solid #f8ccd6;
    font-size: 12px;
}
.header_inner .login_btn i {
    font-size: 20px;
    line-height: 1;
    color: var(--main_color);

}
.header_inner .login_btn span {
    color: var(--gray_800);
    font-size: 12px;
    font-weight: 500;
}
@media (max-width: 485px) {
    .header_inner .login_btn {
        gap: 5px;
        padding: 5px 15px;
        font-size: 12px;
    }
    .header_inner .login_btn i {
        font-size: 16px;
    }
}


.mainSwiper {
    position: relative;
}
.mainSwiper .main_swiper_controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 4px 10px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
}
.mainSwiper .main_swiper_controls .swiper-pagination-current {
    color: rgba(255, 255, 255, 1);
}
.mainSwiper .main_swiper_controls .main-button-pause {
    height: 18px;
}
.mainSwiper .main_swiper_controls i {
    display: inline-block;
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1;
    font-weight: normal;
    color: rgba(255, 255, 255, 1);
}

/* product_wrap */
.product_wrap {
    margin-top: 30px;
}
.product_wrap .product_inner2 {
    margin-top: 46px;
}
.product_wrap .product_inner3 {
    margin-top: 50px;
}
.product_wrap .product_ttl {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}
.product_wrap .product_item_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.product_wrap .product_item {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}
.product_wrap .product_item.soldout {
    opacity: 0.4;
}
.product_wrap .product_item.upcoming .item_img_box {
    position: relative;
}
.product_wrap .product_item .item_img_box {
    border-radius: 8px;
    overflow: hidden;
}
.product_wrap .item_img_box .item_img {
    position: relative;
}
.product_wrap .item_img_box .item_img .upcoming_bg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background-color: rgba(255, 255, 255, 0.3);
}
.product_wrap .item_img_box .item_img .upcoming_bg .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}
.product_wrap .item_img_box .item_img .soldout_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.product_wrap .item_img_box .sale_time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: var(--main_color);
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.product_wrap .item_img_box .sale_time i {
    font-size: 18px;
    line-height: 1;
    font-weight: normal;
}
.product_wrap .item_info_box {
    margin-top: 10px;
}
.product_wrap .item_info_box .shipping_fee div {
    display: inline-flex;
    gap: 5px;
    padding: 2.5px 8px;
    border-radius: 5px;
    white-space: nowrap;
    color: var(--main_color);
    background-color: var(--gray_100);
    font-size: 10px;
    font-weight: 500;
}
.product_wrap .item_info_box .shipping_fee div i {
    font-size: 15px;
    line-height: 1;
}
.product_wrap .item_info_box .item_title {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    height: 42px;
}
.product_wrap .item_info_box .price_box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}
.product_wrap .item_info_box .price_box .price_origin {
    color: var(--gray_500);
    font-size: 12px;
    text-decoration: line-through;
}
.product_wrap .item_info_box .price_box .final_price_box .discount_rate {
    font-size: 16px;
    font-weight: 600;
    color: var(--main_color);
}
.product_wrap .item_info_box .price_box .final_price_box .final_price {
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
    font-weight: bold;
}
.product_wrap .item_info_box .purchase_info {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-top: 10px;
    font-size: 10px;
    color: var(--gray_600);
}
.product_wrap .item_info_box .purchase_info div {
    padding-bottom: 2px;
}
.product_wrap .item_info_box .purchase_info .purchase_count {
    padding-bottom: 0px;
}
.product_wrap .item_info_box .purchase_info .purchase_count span {
    color: var(--main_color);
    font-size: 14px;
    font-weight: bold;
}
.product_wrap .product_item.is-hidden {
    display: none;
}
.product_wrap .product_more_btn {
    margin-top: 30px;
    border: 1px solid var(--gray_300);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: bold;
    padding: 13px 10px;
    border-radius: 5px;
    width: 100%;
    color: var(--gray_800);
    cursor: pointer;
}
.product_wrap .product_more_btn i {
    font-size: 24px;
    line-height: 1;
    color: var(--gray_600);
}
.product_wrap .product_more_btn.is-disabled {
    opacity: .5;
    pointer-events: none;
}
.notify-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--main_color);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s ease;
    margin-top: 15px;
}
.notify-btn i {
    font-size: 16px;
}
.notify-btn.is-off {
    color: var(--main_color);
}
.notify-btn.is-off .icon-off,
.notify-btn.is-off .text-off {
    display: none;
}
.notify-btn.is-on {
    color: var(--gray_500);
    border-color: var(--gray_500);
}
.notify-btn.is-on .icon-on,
.notify-btn.is-on .text-on {
    display: none;
}

.footer_inner {
    background-color: var(--gray_100);
    padding: 30px 15px 90px;
}
.footer_inner .footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}
.footer_inner .footer_top .footer_logo img {
    height: 31.4px;
    object-fit: contain;
}
.footer_inner .footer_top .sns_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray_300);
    background-color: var(--gray_100);
}
.footer_inner .footer_menu {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
}
.footer_inner .footer_menu a {
    color: var(--gray_800);
}
.footer_inner .footer_menu .privacy {
    font-weight: bold;
}
.footer_inner .footer_menu .bar {
    width: 1px;
    height: 11px;
    background-color: var(--gray_400);
}

