/* =============================================
   sec2603 — SECRET BAG Collection Page
   네임스페이스: sec2603-
   ============================================= */

/* === 1. 기본 리셋 / 글로벌 === */

.contents {
  width: 100%;
  padding-top: 84px;
  background-color: #fff;
}

#sec2603_page {
  width: 100%;
  background-color: #F6F5F1;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000000;
}

#sec2603_page img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

#sec2603_page h1,
#sec2603_page h2,
#sec2603_page h3,
#sec2603_page p,
#sec2603_page a {
  font-weight: 300;
  font-style: normal;
  color: #000000;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

#sec2603_page p {
  font-size: 16px;
  line-height: 1.8;
}

#sec2603_page a {
  display: inline-block;
  transition: .3s;
}

#sec2603_page a:hover {
  opacity: .8;
}

/* === 2. 공통 페이드 이미지 패턴 === */

#sec2603_page .sec2603-fade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#sec2603_page .sec2603-fade-img.active {
  position: relative;
  opacity: 1;
}

/* === 3. 메인 배너 === */

#sec2603_page .sec2603-header {
  width: 100%;
}

#sec2603_page .sec2603-banner {
  width: 100%;
  position: relative;
}

#sec2603_page .sec2603-banner .sec2603-fade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#sec2603_page .sec2603-banner .sec2603-fade-img.active {
  position: relative;
}

#sec2603_page .sec2603-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* === 4. 인트로 === */

#sec2603_page .sec2603-intro {
  width: 100%;
  padding: 120px 0 0;
}

#sec2603_page .sec2603-intro-text {
  text-align: center;
  font-size: 18px;
  line-height: 2.2;
  margin: 0 auto 100px;
  letter-spacing: 1px;
  font-weight: 100;
  max-width: 1000px;
  padding: 0 40px;
}

#sec2603_page .sec2603-intro-images {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

#sec2603_page .sec2603-intro-images img {
  flex: 1;
  width: 50%;
  min-width: 0;
  height: auto;
  display: block;
}

/* === 5. 메인 컨테이너 === */

#sec2603_page .sec2603-main {
  width: 100%;
}

/* === 6. DETAIL 섹션 === */

#sec2603_page .sec2603-detail {
  width: 100%;
  padding: 280px 0 120px;
}

#sec2603_page .sec2603-detail-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px;
}

#sec2603_page .sec2603-detail-title img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

/* 제품 아이템 (구분선이 뷰포트 중앙에 오도록 전체 오른쪽으로 이동) */
#sec2603_page .sec2603-detail-item {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  transform: translateX(38px);
}

#sec2603_page .sec2603-detail-item + .sec2603-detail-item {
  margin-top: 180px;
}

/* 왼쪽: 이미지 + 색상 내비 + 가격 */
#sec2603_page .sec2603-detail-left {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sec2603_page .sec2603-detail-images {
  width: 100%;
  position: relative;
}

#sec2603_page .sec2603-detail-images .sec2603-fade-img {
  transition: opacity 0.5s ease-in-out;
}

#sec2603_page .sec2603-detail-images img {
  width: 100%;
  height: auto;
  display: block;
}

/* 색상 네비게이션 */
#sec2603_page .sec2603-detail-color-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 85px;
  margin-top: 24px;
}

#sec2603_page .sec2603-detail-prev,
#sec2603_page .sec2603-detail-next {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  transition: opacity 0.3s;
}

#sec2603_page .sec2603-detail-prev:hover,
#sec2603_page .sec2603-detail-next:hover {
  opacity: 0.5;
}

#sec2603_page .sec2603-detail-prev img,
#sec2603_page .sec2603-detail-next img {
  height: 25px;
  width: auto;
  display: block;
}

/* 색상 이름 (페이드) */
#sec2603_page .sec2603-detail-color-names {
  position: relative;
  min-width: 120px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec2603_page .sec2603-color-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-weight: 200;
  color: #000000;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#sec2603_page .sec2603-color-name.active {
  opacity: 1;
}

/* 가격 */
#sec2603_page .sec2603-detail-price {
  margin-top: 36px;
  text-align: center;
}

#sec2603_page .sec2603-detail-price img {
  height: 20px;
  width: auto;
  display: block;
}

#sec2603_page .sec2603-detail-price img[src*="de_price2.svg"] {
  height: 21px;
}

/* 구분선 */
#sec2603_page .sec2603-detail-divider {
  width: 1.5px;
  align-self: stretch;
  min-height: 540px;
  background-color: #000000;
  margin: 0 50px;
  flex-shrink: 0;
}

/* 오른쪽: 제품명 + 설명 + 구매 */
#sec2603_page .sec2603-detail-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#sec2603_page .sec2603-detail-product-name {
  margin-bottom: 30px;
}

#sec2603_page .sec2603-detail-product-name img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#sec2603_page .sec2603-detail-desc {
  font-size: 15.2px;
  line-height: 2.3;
  margin: 0 0 40px;
  color: #000000;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0.04em;
}

/* 구매 버튼 */
#sec2603_page .sec2603-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 56px;
  background: #F6F5F1;
  border: 1.5px solid #000000;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

#sec2603_page .sec2603-buy-btn img {
  height: 18px;
  width: auto;
  display: block;
}

#sec2603_page .sec2603-buy-btn:hover {
  background: #ffffff;
  opacity: 1;
}

/* === 7. STYLING 섹션 === */

#sec2603_page .sec2603-styling {
  width: 100%;
  padding: 280px 0 100px;
}

#sec2603_page .sec2603-styling-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px;
}

#sec2603_page .sec2603-styling-title img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

#sec2603_page .sec2603-styling-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

#sec2603_page .sec2603-styling-wrap + .sec2603-styling-wrap {
  margin-top: 230px;
}

#sec2603_page .sec2603-styling-slider {
  width: 100%;
  position: relative;
  height: 620px;
}

#sec2603_page .sec2603-styling-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#sec2603_page .sec2603-styling-slide.active {
  position: absolute;
  opacity: 1;
}

#sec2603_page .sec2603-styling-mono {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: translateX(-35px);
}

#sec2603_page .sec2603-styling-mono img {
  width: 100%;
  height: auto;
  display: block;
}

#sec2603_page .sec2603-styling-hito {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateX(35px);
}

#sec2603_page .sec2603-styling-hito img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

#sec2603_page .sec2603-styling-pc-single {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#sec2603_page .sec2603-styling-pc-single img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

#sec2603_page .sec2603-styling-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 28px;
}

#sec2603_page .sec2603-styling-prev,
#sec2603_page .sec2603-styling-next {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

#sec2603_page .sec2603-styling-prev:hover,
#sec2603_page .sec2603-styling-next:hover {
  opacity: 0.5;
}

#sec2603_page .sec2603-styling-prev img,
#sec2603_page .sec2603-styling-next img {
  height: 18px;
  width: auto;
  display: block;
}

#sec2603_page .sec2603-styling-dots {
  display: flex;
  gap: 28px;
  align-items: center;
}

#sec2603_page .sec2603-styling-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

#sec2603_page .sec2603-styling-dot.active {
  background: #000000;
}

#sec2603_page .sec2603-styling-sp-img {
  display: none;
}

/* === 8. INSIDE 섹션 === */

#sec2603_page .sec2603-inside {
  width: 100%;
  padding: 280px 0 80px;
}

#sec2603_page .sec2603-inside-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px;
}

#sec2603_page .sec2603-inside-title img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

/* Inside 아이템 (좌우 배치) */
#sec2603_page .sec2603-inside-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 40px;
}

#sec2603_page .sec2603-inside-item:last-child {
  margin-bottom: 0;
}

/* 이미지 래퍼 */
#sec2603_page .sec2603-inside-img-wrap {
  flex: 1;
  max-width: 360px;
}

#sec2603_page .sec2603-inside-slider {
  width: 100%;
  position: relative;
}

#sec2603_page .sec2603-inside-slider img {
  width: 100%;
  height: auto;
  display: block;
}

/* 이미지 네비게이션 (< 점점점 >) */
#sec2603_page .sec2603-inside-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 28px;
}

#sec2603_page .sec2603-inside-prev,
#sec2603_page .sec2603-inside-next {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

#sec2603_page .sec2603-inside-prev:hover,
#sec2603_page .sec2603-inside-next:hover {
  opacity: 0.5;
}

#sec2603_page .sec2603-inside-prev img,
#sec2603_page .sec2603-inside-next img {
  height: 15px;
  width: auto;
  display: block;
}

/* 도트 인디케이터 */
#sec2603_page .sec2603-inside-dots {
  display: flex;
  gap: 55px;
  align-items: center;
}

#sec2603_page .sec2603-inside-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

#sec2603_page .sec2603-inside-dot.active {
  background: #000000;
}

/* 텍스트 콘텐츠 */
#sec2603_page .sec2603-inside-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#sec2603_page .sec2603-inside-product-name {
  margin-bottom: 20px;
}

#sec2603_page .sec2603-inside-product-name img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#sec2603_page .sec2603-inside-divider {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 24px;
  border: none;
  border-top: 1.5px solid #000000;
}

#sec2603_page .sec2603-inside-desc {
  font-size: 17px;
  line-height: 2.3;
  margin: 0;
  color: #000000;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0.04em;
}

/* === 9. 푸터 === */

#sec2603_page .sec2603-footer {
  width: 100%;
  padding: 100px 0 120px;
  text-align: center;
}

#sec2603_page .sec2603-footer-img {
  margin-bottom: 12px;
}

#sec2603_page .sec2603-footer-img img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#sec2603_page .sec2603-footer-link {
  display: inline-block;
}

#sec2603_page .sec2603-footer-link img {
  height: 22px;
  width: auto;
  display: block;
  margin: 0 auto;
}

#sec2603_page .sec2603-footer-link:hover {
  opacity: 0.6;
}

/* === 10. LOOKS 섹션 === */

#sec2603_page .sec2603-looks {
  width: 100%;
  padding: 220px 0 80px;
}

#sec2603_page .sec2603-looks-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px;
}

#sec2603_page .sec2603-looks-title img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

#sec2603_page .sec2603-looks-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

#sec2603_page .sec2603-looks-item {
  flex: 1;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sec2603_page .sec2603-looks-video-wrap {
  width: 100%;
  overflow: hidden;
  background: #000;
}

#sec2603_page .sec2603-looks-video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

#sec2603_page .sec2603-looks-caption {
  margin: 16px 0 0;
  text-align: center;
}

#sec2603_page .sec2603-looks-caption a {
  display: inline-block;
  text-decoration: none;
}

#sec2603_page .sec2603-looks-caption img {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* =============================================
   PC/SP 전환 유틸 클래스
   ============================================= */

.dPc       { display: block !important; }
.dSp       { display: none !important; }
.dPcinline { display: inline-block !important; }
.dSpinline { display: none !important; }

/* =============================================
   SP (모바일) 대응 — max-width: 1064px
   ============================================= */

@media (max-width: 1064px) {

  /* --- 유틸 클래스 전환 --- */
  .contents {
    padding-top: 0;
  }

  .dPc       { display: none !important; }
  .dSp       { display: block !important; }
  .dPcinline { display: none !important; }
  .dSpinline { display: inline-block !important; }

  /* --- 글로벌 --- */
  #sec2603_page p {
    font-size: 3vw;
  }

  /* --- 인트로 --- */
  #sec2603_page .sec2603-intro {
    padding: 10vw 0 0;
  }

  #sec2603_page .sec2603-intro-text {
    font-size: 2.8vw;
    line-height: 2.7;
    margin: 0 auto 15vw;
    padding: 0 6vw;
    max-width: none;
    box-sizing: border-box;
  }

  #sec2603_page .sec2603-intro-images {
    flex-direction: column;
    max-width: none;
    padding: 0 6vw;
    gap: 0;
    margin-bottom: 10vw;
  }

  #sec2603_page .sec2603-intro-images img {
    width: 100%;
    flex: none;
  }

  /* --- DETAIL --- */
  #sec2603_page .sec2603-detail {
    padding: 22vw 0 15vw;
  }

  #sec2603_page .sec2603-detail-title {
    margin: 0 auto 16vw;
  }

  #sec2603_page .sec2603-detail-title img {
    max-width: 30vw;
  }

  #sec2603_page .sec2603-detail-item {
    flex-direction: column;
    max-width: none;
    padding: 0 6vw;
    transform: none;
  }

  #sec2603_page .sec2603-detail-item + .sec2603-detail-item {
    margin-top: 20vw;
  }

  #sec2603_page .sec2603-detail-left {
    flex: none;
    width: 100%;
  }

  #sec2603_page .sec2603-detail-divider {
    display: block;
    width: 90%;
    max-width: 600px;
    min-height: 0;
    height: 1px;
    margin: 6vw auto 4vw;
    align-self: center;
  }

  #sec2603_page .sec2603-detail-right {
    flex: none;
    width: 100%;
    margin-top: 0;
  }

  #sec2603_page .sec2603-detail-product-name img {
    max-width: 50vw;
  }

  #sec2603_page .sec2603-detail-desc {
    font-size: 2.6vw;
    line-height: 2.25;
    font-weight: 100;
  }

  #sec2603_page .sec2603-detail-color-nav {
    gap: 18vw;
    margin-top: 4vw;
  }

  #sec2603_page .sec2603-detail-prev img,
  #sec2603_page .sec2603-detail-next img {
    height: 4vw;
  }

  #sec2603_page .sec2603-color-name {
    font-size: 5vw;
  }

  #sec2603_page .sec2603-detail-price {
    margin-top: 7vw;
  }

  #sec2603_page .sec2603-detail-price img {
    height: 3.5vw;
  }

  #sec2603_page .sec2603-detail-price img[src*="de_price2.svg"] {
    height: 3.5vw;
  }

  #sec2603_page .sec2603-detail-item[data-product="1"] .sec2603-detail-price img {
    height: 3.6vw;
  }

  #sec2603_page .sec2603-detail-item[data-product="2"] .sec2603-detail-price img {
    height: 4.1vw;
  }

  #sec2603_page .sec2603-buy-btn {
    padding: 2.5vw 10vw;
    border-width: 1px;
  }

  #sec2603_page .sec2603-buy-btn img {
    height: 3vw;
  }

  /* --- STYLING --- */
  #sec2603_page .sec2603-styling {
    padding: 22vw 0 15vw;
  }

  #sec2603_page .sec2603-styling-title {
    margin: 0 auto 8vw;
  }

  #sec2603_page .sec2603-styling-title img {
    max-width: 30vw;
  }

  #sec2603_page .sec2603-styling-wrap {
    max-width: none;
    padding: 0 6vw;
  }

  #sec2603_page .sec2603-styling-wrap + .sec2603-styling-wrap {
    margin-top: 20vw;
  }

  /* SP: 슬라이드당 한 장(stsp1~6) → 고정 높이 프레임에 맞춰 크기 통일 */
  #sec2603_page .sec2603-styling-slider {
    height: 85vw;
    min-height: 280px;
  }

  #sec2603_page .sec2603-styling-slide {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #sec2603_page .sec2603-styling-slide.active {
    position: relative;
  }

  #sec2603_page .sec2603-styling-sp-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  #sec2603_page .sec2603-styling-sp-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  #sec2603_page .sec2603-styling-nav {
    margin-top: 4vw;
  }

  #sec2603_page .sec2603-styling-prev img,
  #sec2603_page .sec2603-styling-next img {
    height: 2.9vw;
  }

  #sec2603_page .sec2603-styling-dot {
    width: 0.9vw;
    height: 0.9vw;
  }

  /* --- INSIDE --- */
  #sec2603_page .sec2603-inside {
    padding: 22vw 0 10vw;
  }

  #sec2603_page .sec2603-inside-title {
    margin: 0 auto 8vw;
  }

  #sec2603_page .sec2603-inside-title img {
    max-width: 30vw;
  }

  #sec2603_page .sec2603-inside-item {
    flex-direction: column;
    gap: 6vw;
    max-width: none;
    padding: 0 4vw;
    margin: 0 auto 18vw;
  }

  #sec2603_page .sec2603-inside-item.sec2603-inside-reverse {
    flex-direction: column-reverse;
  }

  #sec2603_page .sec2603-inside-img-wrap {
    max-width: 60vw;
    margin: 0 auto;
  }

  #sec2603_page .sec2603-inside-content {
    width: 100%;
    margin-left: -9vw;
    margin-right: -9vw;
    padding: 0 2vw;
    box-sizing: border-box;
  }

  #sec2603_page .sec2603-inside-product-name img {
    max-width: 50vw;
  }

  #sec2603_page .sec2603-inside-divider {
    max-width: 68vw;
    border-top-width: 1px;
  }

  #sec2603_page .sec2603-inside-desc {
    font-size: 2.5vw;
    line-height: 2.4;
  }

  /* --- LOOKS --- */
  #sec2603_page .sec2603-looks {
    padding: 10vw 0 4vw;
  }

  #sec2603_page .sec2603-looks-title {
    margin: 0 auto 8vw;
  }

  #sec2603_page .sec2603-looks-title img {
    max-width: 30vw;
  }

  #sec2603_page .sec2603-looks-inner {
    flex-direction: row;
    justify-content: center;
    gap: 4vw;
    padding: 0 6vw;
    max-width: none;
  }

  #sec2603_page .sec2603-looks-item {
    flex: 1;
    max-width: 47%;
  }

  #sec2603_page .sec2603-looks-caption {
    margin-top: 3vw;
  }

  #sec2603_page .sec2603-looks-caption img {
    height: 2.3vw;
  }

  /* --- 푸터 --- */
  #sec2603_page .sec2603-footer {
    padding: 10vw 0 15vw;
  }

  #sec2603_page .sec2603-footer-img img {
    max-width: 68vw;
  }

  #sec2603_page .sec2603-footer-link img {
    height: 3vw;
  }
}
