@charset "utf-8";
.default-modal-style{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 231, 221, 0.9) 100%);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(5px) saturate(0.5);
    -webkit-backdrop-filter: blur(5px) saturate(0.5);
    z-index: 1001;
    display: none;
}
#close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}



/* 진입모달 */
#infoModal{
    width: 100%;
    max-width: 906px;
    height: 379px;
}
#infoModal .inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
#infoModal.active{
    display: block;
}
#infoModal .close{
    width: 40px;
    position: absolute;
    top: 20px;
    right: 24px;
    cursor: pointer;
}
#infoModal h3{
    font-family: "ABC Favorit";
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
}
#infoModal p{
    font-size: 18px;
    font-weight: 300;
    font-family: 'Pretendard', sans-serif;
    text-align: center;
    margin-bottom: 4px;
    line-height: 1.3;
}
#infoModal h4{
    font-family: "ABC Favorit";
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-top: 46px;
}

@media screen and (max-width:1024px) {
  #infoModal{
    width: 80%;
  }
}

@media screen and (max-width:768px) {
  #infoModal{
    width: 90%;
  }
  #infoModal h3{
    font-size: 1.25rem;
  }
  #infoModal p{
    font-size: 16px;
  }

}
@media screen and (max-width:500px) {
  #infoModal .close{
    width: 24px;
    height: 24px;
    top: 16px;
    right: 16px;
  }
  #infoModal h3{
    font-size: 4vw;
  }
  #infoModal p{
    font-size: 3vw;
  }
}
@media screen and (max-width:425px) {
  #infoModal{
    height: 320px;
  }
}





  /* 기본 모달 */
#defaultModal{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1240px;
  width: 65%;
  height: 680px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 231, 221, 0.9) 100%);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(5px) saturate(0.5);
  -webkit-backdrop-filter: blur(5px) saturate(0.5);
  /* border-radius: 16px; */
  z-index: 1001;
  padding: 73px 98px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  display: none;
}
#defaultModal.active{
  display: block;
}
.modal-content{
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.head_en{
  font-size: 18px;
  font-family: "ABC Favorit";
  font-weight: 300;
  margin-bottom: 4px;
  color: #000;
}
.head_kr{
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.modal_body{
  display: flex;
  flex-direction: column;
}
.modal_desc{
  margin-top: auto;
}
.modal_img{
  width: 355px;
  overflow: hidden;
}
.modal_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal_img.on{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.desc_btn{
  width: 120px;
  padding: 20px 0;
  background: #000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.desc_btn p{
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
#productList{
  margin-right: 16px;
}
/* #productList .icon {
  width: 24px;
  height: 24px;
} */
#descArea p{
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.05em;
  margin-top: 32px;
}
#modalSlider .swiper-button-next, 
#modalSlider .swiper-button-prev{
  color: #000 !important;
}
/* 기본모달 슬라이드 */
.modal_slider{
  position: absolute;
  bottom: 0;
  left: 0;
  /* top: 58%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
} 
/* .slider_images {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
} */
#modalSlider .swiper-slide{
  height: auto !important;
}
.slide_image {

  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
}

.slider-arrow {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#prevArrow {
  left: 10px;
}

#nextArrow {
  right: 10px;
}

.slide_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  
  .slider-bar {
    width: 630px;
    -webkit-appearance: none;
    background: #666;
    height: 1px;
    border-radius: 2px;
    outline: none;
    margin-top: 10px;
    margin: 24px auto;
    display: block;
    position: relative;
  }
  
  .slider-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .slider-bar::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
  }
  .slider-bar::before {
    content: '스크롤로 이동하여 더 많은 컬렉션 이미지를 확인하세요.';
    position: absolute;
    left: 50%;
    bottom: -44px;
    transform: translateX(-50%);
    text-align: center;
    color: #000;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 15px;
    width: 100%;
  }

  .buy_item_btn {
    position: absolute;
    height: 65px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    transform: translateY(100%);
    cursor: pointer;
  }
  
  .slide_image:hover .buy_item_btn {
    transform: translateY(0%);
    
  }
  .buy_item_btn .icon{
    width: 24px;
    height: 24px;
  }
  .buy_item_btn:hover{
    background-color: rgba(0, 0, 0);
  }
  #hideCodePage{
    display: none;
  }
  .modal_header.on .head_en{
    margin-top: 63px;
    font-family: "ABC Favorit";
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    color: #000;
    text-align: center;
  }
  .modal_header.on .head_kr{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #000;
  }
  #descArea p.ss{
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #000;
    text-align: center;
    margin-bottom: 8px;
  }
  #descArea p.hh{
    font-size: 15px;
    letter-spacing: -0.05em;
    font-weight: 300;
    text-align: center;
  }
  #descArea p.hh br{
    display: none;
  }
  #hideCodePage .hide_code_label{
    margin: 60px auto 0;
    width: 632px;
  }
  #hideCodePage .hide_code_label .inner{
    display: flex;
    gap: 8px;
  }
  #hideCodePage .hide_code_label .code_label{
    width: 456px;
    height: 50px;
    display: grid;
    grid-template-columns: 82px 1px 1fr;
    align-items: center;
    justify-items: center;
    background-color: #F9F4EF;
    border:1px solid #fff;
    /* border-radius: 8px; */
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  
  }
  #hideCodePage .hide_code_label .code_label .tt{
    font-size: 13px;
    letter-spacing: -0.05em;
    font-weight: 300;
  }
  #hideCodePage .hide_code_label .code_label span{
    display: block;
    width: 1px;
    height: 34px;
    background-color: #C6C1BB;
  }
  #hideCodePage .hide_code_label .code_label h3{
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.05em;
  }
  .sale_codes{
    display: flex;
    gap: 8px;
  }
  #copyButton{
    background-color: #121212;
    width: 158px;
    height: 50px;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.05em;
    /* border-radius: 8px; */
    transition: 0.5s all;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  }
  #copyButton:hover{
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.7);
  }
  #downImg{
    display: block;
    border: none;
    background: #121212;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    transition: 0.5s all;
    padding: 10px;
    cursor: pointer;
  }
  #downImg:hover{
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.7);
  }
  #downImg img{
    width: 100%;
    height: 100%;
  }
  #hideCodePage .btm{
    font-weight: 400;
    font-size: 14px;
    color: #666;
    margin-top: 16px;
  }
  #hideCodePage .btm br{
    /* display: none; */
  }


  
  #archiveModal{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1240px;
    width: 65%;
    height: 680px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 231, 221, 0.9) 100%);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(5px) saturate(0.5);
    -webkit-backdrop-filter: blur(5px) saturate(0.5);
    /* border-radius: 16px; */
    z-index: 1001;
    padding: 73px 98px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    display: none;
  }
  #archiveModal.active{
    display: block;
  }
  #archiveModal .desc{
    /* text-align: center; */
    margin-top: 8px;
  }
  #backButton{
    position: absolute;
    top: 20px;
    left: 20px;
    border: none;
    background: transparent;
    font-size: 32px;
    font-weight: 200;
    width: 40px;
    height: 40px;
    text-align: center;
    /* line-height: 19px; */
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    cursor: pointer;
    color: #000;
    text-indent:-9999px;
  }
  #backButton::after,
  #backButton::before
  {
    content:"";
    height:1px;
    width:19px;
    border-radius:3px;
    position:absolute;
    background-color: #000;
    display:block;
    top:13px;
  }
  #backButton::before{
    transform:rotate(-45deg);
  }
  #backButton::after{
    transform:rotate(45deg);
    top:26px;
  }
  #archiveModal .close{
    width: 40px;
    position: absolute;
    top: 20px;
    right: 24px;
    cursor: pointer;
  }
  #archiveSliderWrapper{
    height: 440px;
    /* margin: 32px auto; */
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
  }
  #archSlider{
    height: 100%;
  }
  #archSlider .swiper-slide{
    width: 200px;
    height: auto;
    cursor: pointer;
  }
  #archSlider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #archSlider .data-tooltip{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #archiveSliderWrapper .swiper-button-next,
  #archiveSliderWrapper .swiper-button-prev{
    color: #000 !important;
  }
  #defaultModal.modal05 .modal_body{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  #defaultModal.modal05 .head_kr{
    margin-top: 16px;
    font-weight: 600;
    font-size: 32px;
  }
  #defaultModal.modal05 .head_en{
    margin-top: 70px;
  }
  #defaultModal.modal05 #descArea p{
    margin-top: 110px;
  }
  #defaultModal.modal05 .head_en,
  #defaultModal.modal05 #descArea p{
    text-align: center;
    font-size: 20px;

  }
  .swiper-button-next:after, .swiper-button-prev:after{

    content:"";
    height:2px;
    width:25px;
    border-radius:3px;
    position:absolute;
    background-color: #000;
    display:block;
    top:8px;
    transform:rotate(45deg)
  }
  .swiper-button-next:before,.swiper-button-prev:before{
    content:"";
    height:2px;
    width:25px;
    border-radius:3px;
    position:absolute;
    background-color: #000;
    display:block;
    top:25px;
    transform:rotate(-45deg);
  }

  .swiper-button-prev:after{
    transform:rotate(-45deg)
  }
  .swiper-button-prev:before{
    transform:rotate(45deg)
  }
  #fitting{
      width: 100%;
      max-width: 906px;
      height: 379px;
      padding: 80px 0 40px;
  }
  #fitting.active{
    display: block;
  }
  #fitting .close{
    width: 40px;
    position: absolute;
    top: 20px;
    right: 24px;
    cursor: pointer;
  }
  #fitting .inner{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  #enterFit{
    border: none;
    display: block;
    width: 100px;
    background: #000;
    margin: auto auto 0;
    line-height: 50px;
    color: #fff;
    text-align: center;
    cursor: pointer;
  }
@media screen and (max-width: 1800px) {
  .modal_body{
    width: 60%;
    margin: 0 auto;
  }
  .modal_body.on{
    width: 100%;
  }
  #descArea p br{
     display: none;
  }
  #defaultModal.modal05 #descArea p br{
    display: block;
  }
  .modal_body.on #descArea p br{
    display: block;
  }
}
@media screen and (max-width: 1540px) {
  #defaultModal{
    width: 80%;
    padding: 50px 70px;
  }
  #archiveModal{
    width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  #defaultModal{
    width: 90%;
    overflow: hidden;
  }
  #archiveModal{
    width: 90%;
  }

}
@media screen and (max-width: 768px) {
  /* #defaultModal{
    padding: 48px 8px 8px;
    height: 580px;
  } */

  #defaultModal {
    padding: 76px 40px 60px;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    border: none;
    overflow: hidden;
  }
  .modal_body{
    width: 100%;
    border-radius: 8px;
  }
  .modal_img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .modal_img::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
  }

  .head_kr{
    text-align: center;
    font-size: 1.25rem;
    color: #fff;
  }
  .head_en{
    text-align: center;
    font-size: 1rem;
    color: #fff;
  } 
  #fitting{
    width: 90%;
  }
  #fitting .head_en,
  #fitting .head_kr{
    color: #000;
  }
  #enterFit{
    font-size: 14px;
  }
  #fitting .close {
    width: 32px;
    top: 12px;
    right: 12px;
  }
  .modal_desc{
    margin-top: 0;
    padding: 5% 6%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
  .desc_btn{
    background: #fff;
  }
  .desc_btn p{
    color: #000;
  }
  #productList{
    margin-bottom: 0;
  }
  #descArea{
    margin-top: auto;
  }
  #descArea p{
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1%;
    line-height: 1.5;
    color: #fff;
  }
  /* 10주년  */
  #defaultModal.modal05 .head_kr{
    margin-top: 16px;
    font-weight: 600;
    font-size: 32px;
    color: #000;
  }
  #defaultModal.modal05 .head_en{
    margin-top: 70px;
    color: #000;
  }
  #defaultModal.modal05 #descArea p{
    margin-top: 110px;
    color: #000;
  }
  #defaultModal.modal05 .head_en,
  #defaultModal.modal05 #descArea p{
    text-align: center;
    font-size: 20px;

  }





  .modal_slider{
    position: static;
    height: 95%;
    margin-top: 30px;
  }
  #modalSlider .swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  #modalSlider .swiper-slide{
    height: 47% !important;
 
  }
  /* #modalSlider .swiper-slide {
    width: calc((100% - 8px) / 2) !important;
    margin-right: 8px;
    margin-bottom: 8px;
    height: auto;
  } */
  .slide_image{
    width: 220px;
  }
  /* #modalSlider .swiper-slide{
    width: 50% !important;
    height: 50% !important;
  } */
  .slider-bar{
    width: 70%;
    height: 2px;
  }
  .slider-bar::before {
    content: '스크롤로 이동하여\A더 많은 컬렉션 이미지를 확인하세요.';
    white-space: pre-line;
    bottom: -64px;
  }
  .slider-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .slider-bar::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
  }

  #hideCodePage .hide_code_label{
    width: 100%;
    margin:  70px auto 0px;
  }
  #hideCodePage .hide_code_label .inner{
    display: block;
  }
  #hideCodePage .hide_code_label .code_label{
    width: 100%;
    margin-bottom: 8px;
  }
  #copyButton{
    width: 100%;
  }
  #downImg{
    display: none;
  }
  .modal_header.on .head_en{
    margin-top: 30px;
    font-size: 15px;
  }
  .modal_header.on .head_kr{
    font-size: 18px;
  }
  .modal_body.on{
    width: 100%;
    display: block;
    padding: 0;
  }
  .modal_body.on #descArea p br{
    display: block;
  }
  #defaultModal.modal05 #descArea p br{
    display: none;
  }
  #hideCodePage .btm{
    line-height: 1.4;
    font-size: 15px;
    letter-spacing: -0.03em;
  }
  #hideCodePage .btm br{
    display: block;
  }
  #close-modal svg path{
    fill: #fff;
  }
  #defaultModal.modal05 #close-modal svg path{
    fill: #000;
  }
  #archiveModal{
    width: 90%;
    height: 70vh;
    height: 83dvh;
    
    padding: 62px 40px 60px;
  }
  #archSlider{
    height: 48vh;
    height: 55dvh;
  }
  #archiveModal .desc{
    text-align: center;
  }
  #archSlider .swiper-slide {
    /* height: 47% !important; */
  }
  #archSlider .data-tooltip{
    background: none;
  }
  #archiveModal .head_en, #archiveModal .head_kr{
    color: #000;
  }
  #archiveSliderWrapper{
    margin: 20px auto;
    position: static;
    height: 95%;
    width: 90%;
  }

  
}
@media screen and (max-width: 425px) {
  .desc_btn p{
    font-size: 14px;
  }
  #descArea p{
    font-size: 14px;
  }
  #descArea p.hh,
  #descArea p.ss{
    font-size: 16px;
    line-height: 1.3;
  }
  #defaultModal{
    padding: 76px 3% 60px;
    /* top: 46%; */
    /* height: 550px; */
  }
  #close-modal{
    top: 8px;
    right: 8px;

  }
  #archiveModal{
    padding: 20px 40px;
  }
  #archiveModal .desc {
    text-align: center;
    font-size: 13px;
  }
  #archiveModal .close{
    width: 32px;
    top: 8px;
    right: 8px;
  }
  #backButton{
    top: 8px;
    left: 8px;
  }
  #defaultModal.modal05 .head_en{        font-size: 1rem;}
  #defaultModal.modal05 .head_kr{        font-size: 1.25rem;}
  #defaultModal.modal05 #descArea p{
    font-size: 14px;
  }
}
