/* BASIC css start */
/* scrolling gently */
html { scroll-behavior: smooth; transition: all .3s; }

/* reset css */
.stylelog__container ul,
.stylelog__container li { list-style: none; }
.stylelog__container a,
.stylelog__container span { display: block; }
.stylelog__container main, 
.stylelog__container section, 
.stylelog__container article
.stylelog__container div { position: relative; }
.stylelog__container a { text-decoration: none; cursor: pointer; color: inherit; }
.stylelog__container img { width: 100%; vertical-align: top; }
.stylelog__container {
    /* Pretendard 우선하는 경우 */
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* STYLELOG BACKGROUND */
.bg {
    position: fixed;
    top: 0;
    width: calc((100% - 800px) / 2);
    height: 100vh;
    z-index: -1;
}
/* LEFT */
.bg.left {
    background: url('');
    background-size: cover;
    right: calc(50% + 400px);
}
/* RIGHT */
.bg.right {
    background: url('');
    background-size: cover;
    left: calc(50% + 400px);
}

/* STYLELOG CONTAINER */
.stylelog__container { 
    max-width: 900px; 
    margin: 0 auto; 
    border: 0; 
    padding: 0; 
    box-sizing: border-box;
}
.stylelog__container .straight,
.stylelog__container .bootcut,
.stylelog__container .wide { overflow-x: hidden; padding-top: 50px; background-color: #f3f3f3; }

/* INTRO */
/* 쿠폰 */
.coupons__wrap { position: relative; }
.coupons__wrap ul {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    margin: 0; padding: 0;
}
.coupons__wrap .coupon {
    position: absolute;
    width: 38.33%; height: 24.23%;
}
.coupons__wrap .coupon a { width: 100%; height: 100%; }
.coupons__wrap .coupon:nth-child(1) { left: 10.22%; top: 40.29%; }
.coupons__wrap .coupon:nth-child(2) { left: 51.78%; top: 40.29%; }
.coupons__wrap .coupon:nth-child(3) { left: 10.22%; top: 68.41%; }
.coupons__wrap .coupon:nth-child(4) { left: 51.78%; top: 68.41%; }
/* 유의사항 부분 css */
.notice__wrap,
.notice__wrap--more { position: relative; }
.notice__wrap--more { cursor: pointer; display: block; }
.notice__wrap--more img { margin-top: 0; }
.notice__wrap--notice {
    height: 0px;
    overflow: hidden;
    transition: height 0.3s ease; /* 애니메이션 효과 추가 */
}
.notice__wrap--notice.active { overflow: visible; }

/* STICKY */
.sticky__wrap {
    position: sticky; 
    top: 86px; left: 0; height: 90px;
    z-index: 999;
    /* height: 80px; */
    border: 1px solid black;
    border-left: 0; border-right: 0;
    background-color:#fcf8f5;
    border: 1px solid #000;
    border-left: none;
    border-right: none;
}
.sticky__wrap ul {
    position: absolute;
    top: 0; left: 1px;
    display: flex;
    flex-direction: row;
    width: 100%; height: 100%;
    margin: 0; padding: 0;
    align-items: flex-start;
}
.sticky__wrap .tab { 
    display: block; 
    width: 20%; height: 93.33%;
    position: relative;
    top:3.33%;
    border: 1px solid #000;
    box-sizing: border-box;
    cursor: pointer;
}
.sticky__wrap .tab a {
    line-height: 1.3;
    position: absolute;
    text-align: center;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 1.4em;
}
.sticky__wrap .tab a strong { font-size: 1.2em; }
.sticky__wrap .tab.sel { background-color: #000; }
.sticky__wrap .tab.sel a { color: #fff; }

/* SWIPER */
.mySwiper { 
    width: 92.89%;
    display: flex; flex-direction: row;
    margin-left: 7.11%;
    margin-top: 8%;
    margin-bottom: 3%;
}
.mySwiper .swiper-slide { width: 27.44%; }

.mySwiper.mySwiper18 .swiper-slide:nth-child(2) .normal_item {
    width: 100% !important;
}
.mySwiper.mySwiper18 .swiper-slide:nth-child(4) .normal_item {
    width: 100% !important;
}

/* 드랍다운 룩북 */
.dropdown--btn { cursor: pointer; position: relative; }
.dropdown--item--tit,
.dropdown--item--pdt {
    position: absolute;
    left: 38.44%;
    color: #7b7978;
    margin: 0;
}
.dropdown--item--arrow { 
    width: 2%; 
    position: absolute;
    right: 5.11%;
}
.dropdown--item--arrow img { vertical-align: middle; }
.dropdown--item--arrow,
.dropdown--item--tit { top: 12.86%; font-size: 2em; font-weight: bold; }
.dropdown--item--pdt { 
    top: 30.8%; 
    line-height: 1.5; 
    font-size: 1.538461538461538em;
    letter-spacing: -1px; 
    width: 55%;
}
.dropdown--item--tit.show { font-weight: bold; }
.dropdown--item--arrow.show img { 
    transform: rotate(180deg); 
}
.dropdown--item--tit.show,
.dropdown--item--pdt.show { color: #000; }
/* detail을 숨김 */
.dropdown--detail {
    max-height: 0;
    overflow: hidden;
    /*transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;*/
    opacity: 0;
}
/* 활성화될 때 애니메이션 적용 */
.dropdown--detail.active { opacity: 1; border-top: 1px solid #1d1d1d; }

.dropdown--item--pdt span.pick {
    color: #fff;
    display: inline-block;
}
.dropdown--item--pdt span.pick.hotpink { background-color: #f5285c; }
.dropdown--item--pdt span.pick.red { background-color: #cc3e50; }
.dropdown--item--pdt span.pick.green { background-color: #9ebf7a; }
.dropdown--item--pdt span.pick.pink { background-color: #ffadc9; }

/* 상품연동 */
.mySwiper .list {
    font-size: 0;
    display: flex; 
    flex-wrap: wrap; flex-direction: row; 
    justify-content: start; align-items: start;
    gap: 1%;
    /* padding: 0 0 0 2%; */
}
.mySwiper .normal_item { width: auto; margin-right: 0; }
.MK-product-icons img { width: auto; }


.proSection { 
    max-width: 900px; 
    margin: 0 auto; 
    background-color: #fff;
    overflow: hidden;
}
.proSection .product_wrap_section .list {
    font-size: 0;
    display: flex; 
    flex-wrap: wrap; flex-direction: row; 
    justify-content: start; align-items: start;
    gap: 1%;
    padding: 0 0 0 2%;
}
.proSection .product_wrap_section .list .normal_item { width: 32%; margin-right: 0; }
.proSection .product_wrap_section h2 {
    padding: 40px 0 30px 3%;
    font-size: 20px; font-weight: 700;
}

/* REELS */
.sec_video { max-width: 900px; 
    padding: 50px 0;
    background-color: #000; }

.aspect {
    aspect-ratio: 9/16;
    width: 100%;
    overflow:hidden;
    margin: 0;
}
.aspect iframe {
    width: 100%;
    height: 100%;
}


/* BASIC css end */

