@charset 'utf-8';
@import url("font.css");

/* =======공통클래스========= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #1a233d;
}

:root {
  /* color& typo */
  --text-color: #1a233d;
  --primary-bg: white;
  --engFont: "EBgaramond", sans-serif;
  --koFont: "Pretendard", "Noto Sans KR", sans-serif;
  --mainColor: #1a233d;

  --section-padding-vertical: 80px;
  --logo-height: 70px;
  --menu-height: 55px;
  --total-header-height: calc(var(--logo-height) + var(--menu-height));
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

body {
  font-family: "EBgaramond", "Pretendard", "Noto Sans KR", "Arial", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  padding-top: var(--total-header-height);
  overflow-x: hidden;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

section {
  margin-top: 150px;
}
footer {
  margin-top: 50px;
}
section.visual {
  margin-top: 0;
  padding-top: 0;
}

section.new-arrival {
  padding: 0;
  margin: 0;
}

section.boutique {
  margin-top: 150px;
}

/* 폰트사이즈 */
h2 {
  font-size: 40px;
  font-weight: 700;
}
h3 {
  font-size: 20px;
  font-weight: 500;
}
h4 {
  font-size: 16px;
  font-weight: 400;
}
h5 {
  font-size: 14px;
  font-weight: 400;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* 모바일 버튼 영역 */
.mb-btn {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1000;
  display: none;
}

.mb-btn .line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--mainColor);
  margin: 5px;
  border-radius: 5px;
  transition: 1s;
}
.mb-btn .line.line-top {
}
.mb-btn .line.line-middle {
  width: 20px;
}
.mb-btn .line.line-bottom {
  width: 10px;
}

/* X버튼 으로 변형 */
.mb-btn.on .line.line-top {
  transform: rotate(45deg) translateY(11.6px);
}
.mb-btn.on .line.line-middle {
  opacity: 0;
}
.mb-btn.on .line.line-bottom {
  width: 25px;
  transform: rotate(-45deg) translateY(-11.6px);
}

/* 모바일 메뉴 영역 */
.mb-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color:#fff;
  z-index: 999;
  transition: 0.4s ease;
}

.mb-nav .icon--unidirectional {
  width: 90px;
  height: 25px;
  position: absolute;
  top: 23px;
  left: 15px;
  fill: var(--mainColor);
}

.mb-nav.on {
  right: 0;
}


/* ========== drawer========== */
.drawer-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  margin-top: 70px;
  overflow: hidden;
}

.drawer-container .drawer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: visible; 
  background-color: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.drawer-container .drawer[data-level="0"] {
  transform: translate(0);
  z-index: 1;
}

.drawer-container .drawer[data-level="1"] {
  transform: translate(100%);
  z-index: 2;
}


.drawer-container .drawer.is-active {
  transform: translate(0) !important;
}

/* ========== 메뉴 아이템 ========== */
.drawer-items {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 15px;
}

.drawer-items__item {
  padding: 0;
  border-bottom: 1px solid #cfcdc6;
}

.drawer-items__item:first-child {
  border-top: 1px solid #cfcdc6;
}


.drawer-items__item .drawer__link,
.drawer-items__item .drawer__toggle {
  display: block;
  width: 100%;
  padding: 16px 25px;
  color: var(--mainColor);
  font-family: var(--koFont);
  font-size: 17px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}

.drawer-items__item .drawer__link:hover,
.drawer-items__item .drawer__toggle:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.drawer-items__item .drawer__toggle:not(.drawer__toggle--backwards)::after {
  content: '›';
  position: absolute;
  right: 25px;
  font-size: 18px;
  color: var(--mainColor);
}

.drawer-items__item .drawer__toggle--backwards {
  font-weight: 600;
  padding-left: 45px;
}

.drawer-items__item .drawer__toggle--backwards::before {
  content: '‹';
  position: absolute;
  left: 25px;
  font-size: 20px;
  color: var(--mainColor);
  font-weight: normal;
}


.drawer-items__item .drawer__link--category {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.02);
}

.drawer-items__item .drawer__link--category:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.drawer-items__item  .mt-md {
  margin-top: 30px;
}


/* 마스크 영역 */
.window-mask {
  position: fixed !important;
  inset: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.9);
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ========== 모바일 메뉴 푸터 ========== */
.mb-nav .mb-footer {
  position: absolute;
  bottom:0px;
  z-index:10;
  display: block;
  background-color: #fff; 
}

.mb-nav .mb-footer .icon {
  margin-top: 10px;
  padding-bottom: 10px;
  
}

.mb-nav .mb-footer a {
  font-size: 13px;
  color: var(--mainColor);
  transition: opacity 0.3s;
  display: flex;
  align-items: center; 
  margin-left: 25px;
  padding: 5px 0; 
}

.mb-nav .mb-footer a img {
  width: 22px;
  height: 22px;
  fill: var(--mainColor);
  display: block;
  margin-top: 0; 
  margin-right: 20px; /* 추가 */
}

.mb-nav .mb-footer a span {
  display: block;
  margin-left: 0; 
  white-space: nowrap;
  margin-top: 0; 
  font-family: var(--koFont);
}

.mb-nav .mb-footer a:hover {
  opacity: 0.6;
}


/* ================== header=============== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 997;
}

header .logo-section {
  background-color: var(--primary-bg);
  height: var(--logo-height);
}

header .logo-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header .logo-section .utility-nav {
}

header .logo-section .utility-nav ul {
  display: flex;
  gap: 23px;
  justify-content: space-between;
  align-items: center;
}

/* 유틸리티 */
header .logo-section .utility-nav ul .search {
  background: url("../images/icon1.png") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  display: block;
}
header .logo-section .utility-nav ul .heart {
  background: url("../images/icon2.png") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  display: block;
}
header .logo-section .utility-nav ul .login {
  background: url("../images/icon3.png") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  display: block;
}
header .logo-section .utility-nav ul .cart {
  background: url("../images/icon4.png") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  display: block;
}

header .logo-section .logo {
  position: absolute;
  width:120px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: var(--mainColor);
}

header .logo-section .lang-nav ul {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
header .logo-section .lang-nav ul .korean {
  background: url("../images/icon5.png") no-repeat;
  width: 30px;
  height: 30px;
  background-size: cover;
  display: block;
}
header .logo-section .lang-nav ul li a {
}

/* 메뉴 */

header .menu-section {
  position: absolute;
  top: var(--logo-height);
  left: 0;
  width: 100%;
  z-index: 99;
  color: var(--text-color);
  display: block;
  background: #fff;
  transition: 0.3s;
}
header.is-hidden .menu-section {
  opacity: 0;
  pointer-events: none;
}
header .menu-section.down {
  height: 250px;
  background-color: #fff;
  z-index: 100;
}

header .menu-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 50px;
}
header .menu-section .container .tabs-nav {
}
header .menu-section .container .tabs-nav ul {
  display: flex;
  gap: 30px;
}
header .menu-section .container .tabs-nav ul li {
}
header .menu-section .container .tabs-nav ul li a {
}

header .menu-section .container .tabs-nav ul li a.active {
  text-decoration: underline;
  font-weight: 700;
}

header .menu-section #drop-menu {
  display: none;
  width: 100%;
  background-color: #fff;
}

header .menu-section.down #drop-menu {
  display: block;
}

header #drop-menu .tabs-panel .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* 자식 요소들을 맨 위를 기준으로 정렬 */
}
header #drop-menu .tabs-panel .menu-column {
  display: block;
  flex-shrink: 0;
  margin-left: 50px;
}

header #drop-menu .tabs-panel .menu-column ul {
}

header #drop-menu .tabs-panel .menu-column ul li {
  margin: 8px 0;
}

header #drop-menu .tabs-panel .menu-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}
header #drop-menu .tabs-panel .menu-column ul li a:hover {
  color: var(--mainColor);
  text-decoration: underline !important;
}
header #drop-menu .tabs-panel .second-menu-column {
  display: block;
  flex-shrink: 0;
}

header #drop-menu .tabs-panel .second-menu-column ul {
}
header #drop-menu .tabs-panel .second-menu-column ul li {
  margin: 7px 0;
}
header #drop-menu .tabs-panel .second-menu-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}
header #drop-menu .tabs-panel .second-menu-column ul li a:hover {
  color: var(--mainColor);
  text-decoration: underline !important;
}

header #drop-menu .tabs-panel .menu-column h3,
header #drop-menu .tabs-panel .second-menu-column h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--mainColor);
  margin: 0 0 15px 0;
}

/* 이미지 */
#drop-menu .tabs-panel .image-wrapper {
  width: 800px;
  height: 350px;
  object-fit: cover;
  position: relative;
}
#drop-menu .tabs-panel .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#drop-menu .tabs-panel .image-wrapper img.on {
  display: block;
}

/* ========================MAIN======================= */
/* =========visual section====== */
/* YOUTUBE-API */

/* visual-pc */
.visual .youtube.pc {
  height: 850px;
  position: relative;
  overflow: hidden;
  /* 영상 감싸는거 overflow-hidden 그럼 잘려져서 나옴*/
  /* 가장 중요. 자식 요소인 영상이 부모를 벗어나 커질 때 잘라내어(Crop) 보여주게 합니다. */
  z-index: 900;

}
.visual .youtube.pc .youtube-area {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1903px;
  /* 스크롤 너비뺀 너비 */
  /* 위아래 youtube 로고 같은거 잘라내게하려고 50px씩 더 높이를 줫음 */
}

.visual .youtube.pc .youtube-area::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* 유튜브 영상 16:9 크기임 
    너비가 16이면 높이는 9가 된다  
    /* 너비가 100이면 56.25를 해서 16:9 크기로 맞춘다*/
  /* padding-top은자식에게 주어야 함 area의 자식 가상요소 */
}

.visual .youtube.pc .youtube-area #player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.visual .youtube.pc .youtube-area #player iframe {
  width: 100%;
  height: 100%;
}

.visual .youtube.pc .youtube-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 레이어하나깔아가지고 클릭해도안되게 만든다 */
  background: url("../images/video_cover_pattern.png");
  /* no-repeat하면 안됨.. 200px 200px이라서 작으니까  */
}

/* visual-mobile */
.visual .youtube.mobile {
  /* height: 100vh;  */
  position: relative;
  /* inset: 0; */
  overflow: hidden;
  z-index: 900;
  display: none;
  padding-top: 177.78%;
  /* 9/16 이라서 패딩탑을 저 수치로 주었다 */
  height: 0;
}

.visual .youtube.mobile .youtube-area {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
}

/* 세로 9:16 → 높이/너비 = 16/9 = 1.777... → 177.78% */
/* .visual .youtube.mobile .youtube-area::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 177.78%; 
} */

.visual .youtube.mobile .youtube-area #player02 {
  /* position: absolute;
  inset: 0; */
  width: 100%;
  height: 100%;
}

.visual .youtube.mobile .youtube-area #player02 iframe {
  width: 100%;
  height: 100%;
}

.visual .youtube.mobile .youtube-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 레이어하나깔아가지고 클릭해도안되게 만든다 */
  background: url("../images/video_cover_pattern.png");
  /* no-repeat하면 안됨.. 200px 200px이라서 작으니까  */
}

/* ====new-arrival section===== */
main .new-arrival {
  width: 100%;
}

main .new-arrival .box-section {
  display: flex;
}

/* 왼쪽 배너 */
main .new-arrival .box-section .box-banner {
  order: 0;
  flex-shrink: 0;
  /* 사진이 줄어들지 않게 만든다 */
  position: relative;
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
}

main .new-arrival .box-banner .image {
  height: 100%;
}

main .new-arrival .box-banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 오른쪽 제품 목록 영역 */
main .new-arrival .box-prd {
  order: 1;
  width: 50%;
  padding: 100px 80px 80px;
  /* overflow-y: auto;
    max-height: 100vh; */

    /* 반응형을 고려해서 width값 퍼센트로 주었다 */
}

/* 타이틀 */
main .new-arrival .box-prd .cmn-title {
  padding: 20px 0 40px;
  letter-spacing: 2px;
  color: var(--mainColor);
  text-align: center;
  line-height: 1.4;
  font-family: var(--font2, "EB Garamond", serif);
}

main .new-arrival .box-prd .cmn-title .desc {
  margin: 12px 0 0;
  font-size: 20px;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 400;
  color: var(--mainColor);
  font-family: var(--font2, "EB Garamond", serif);
}

/* 제품 리스트 */
main .new-arrival .prd-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}

main .new-arrival .prd-list .box-new {
  /* width: 300px; */
  width: auto;
  min-width: 0;
/* Flexbox/Grid 아이템의 기본 설정은 min-width: auto임
min-width: 0의 중요성과 필요성은 주로 Flexbox와 Grid 레이아웃 시스템에서 발생

min-width: auto는 아이템 내부 콘텐츠(예: 긴 단어, 큰 이미지)의 크기를 기준으로 최소 너비를 설정함.
콘텐츠가 길면 아이템이 넘쳐흐르면서(overflow) 레이아웃이 깨짐
min-width:0 
 요소가 넘치지 않고 항상 부모 컨테이너의 범위 안에 머무르도록 보장하여, 레이아웃이 깨지는 것을 방지 레이아웃이 너비에 따라 유연하게 줄어듬 */

  /* height: 450px;
  object-fit: cover;
  margin-top: 50px; */
  /* 너비 높이를 주지 않아야 반응형일때 비율로 줄어듬 안그러면 고정된 너비와 높이로 줄어든다 */

}

main .new-arrival .prd-list .box-new a {
}
main .new-arrival .prd-list .box-new .thumb-slide {
  /* width: 300px; */
  /* height: 300px; */
  width: 100%;
  /* height: 100%; */
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;


}
main .new-arrival .prd-list .box-new .thumb-slide .swiper-wrapper {
}
main
  .new-arrival
  .prd-list
  .box-new
  .thumb-slide
  .swiper-wrapper
  .swiper-slide {
}
main
  .new-arrival
  .prd-list
  .box-new
  .thumb-slide
  .swiper-wrapper
  .swiper-slide
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .new-arrival .info-wrap {
  background-color: #f9f8f6;
  /* width: 300px;
  height: 120px; */
  width: 100%;
  position: relative;
  padding: 18px 20px;
}
main .new-arrival .info-wrap .name {
}
main .new-arrival .info-wrap .name a {
}
main .new-arrival .info-wrap .name a .name-first {
  font-size: 20px;
  font-weight: 500;
  color: var(--mainColor);
  font-family: var(--koFont);
  line-height: 1.4;
}
main .new-arrival .info-wrap .name a .name-add {
  font-size: 16px;
  color: #666;
  font-family: var(--koFont);
  line-height: 1.4;
  white-space: nowrap;
}
main .new-arrival .info-wrap .product-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--mainColor);
  font-family: var(--koFont);
  margin-top: 4px;
}
main .new-arrival .info-wrap .whishlist-btn {
}

/* Wishlist Button - 하트 버튼 */
.new-arrival .info-wrap .wishlist-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: left;
  color: #999;
  transition: all 0.3s ease;
  flex-shrink: 0;
  outline: none;
  position: absolute;
  top: 17%;
  right: 20px;
}

/* 호버 시 - 남색으로 채워짐 */
.new-arrival .info-wrap .wishlist-btn:hover {
  color: var(--mainColor);
}

.new-arrival .info-wrap .wishlist-btn:hover .heart-icon path {
  fill: var(--mainColor);
  stroke: var(--mainColor);
}

.new-arrival .info-wrap .wishlist-btn:focus {
  outline: none;
}
/* Swiper 버튼 */
main .new-arrival .thumb-slide .thumb-btn-next,
main .new-arrival .thumb-slide .thumb-btn-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
  color: var(--mainColor);
}

main .new-arrival .thumb-slide:hover .thumb-btn-next,
main .new-arrival .thumb-slide:hover .thumb-btn-prev {
  opacity: 1;
}

main .new-arrival .thumb-btn-prev {
  left: 13px;
}

main .new-arrival .thumb-btn-prev::before {
  content: "‹";
  font-size: 28px;
  color: var(--mainColor);
  line-height: 1;
}

main .new-arrival .thumb-btn-next {
  right: 13px;
}

main .new-arrival .thumb-btn-next::before {
  content: "›";
  font-size: 28px;
  color: var(--mainColor);
  line-height: 1;
}

/* Swiper Pagination */
main .new-arrival .pagination {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  font-size: 12px;
  color: var(--mainColor);
}

main .thumb-slide:hover .pagination {
  display: block;
}

/* information */
main .info-wrap {
  padding: 20px 10px 10px;
}

main .info-wrap .name {
  margin-bottom: 8px;
}

main .info-wrap .name a {
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  font-size: 14px;
  color: #1e1e1e;
  font-weight: 500;
}

main .info-wrap .name a:hover {
  color: var(--mainColor);
}

/* Swiper Progressbar 스타일 - 더 눈에 띄게 */
main .new-arrival .thumb-slide .swiper-pagination-progressbar {
  position: absolute;
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 70% !important;
  height: 3px !important;
  background: #ddd !important;
  border-radius: 10px !important;
  color: var(--mainColor);
}

main
  .new-arrival
  .thumb-slide
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: var(--mainColor) !important;
  height: 100% !important;
  border-radius: 10px !important;
}

/* =====type3 section========= */
main .types3 {
  display: flex;
  flex-wrap: wrap;
  /* padding: 2px 0 3px; */
  gap: 5px;
}
main .types3 .box {
  width: calc(33.33% - 10px);
  /* margin-right: 2px; */
}

main .types3 .box .img-wrap {
  position: relative;
  overflow: hidden;
}
main .types3 .box .img-wrap .box-img {
  transform: scale(1);
  transition: all 1s;
  width: 100%;
}

main .types3 .img-wrap:hover .box-img {
  transform: scale(1.2);
}

main .types3 .box .img-wrap span {
  display: block;
  position: absolute;
  bottom: 5%;
  left: 80%;
  transform: translateX(-50%);
  padding: 0 6%;
  width: 100%;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  z-index: 10;
  font-family: var(--font2, "EB Garamond", serif);
  margin:0 auto;
}

/* =====gallery-section==== */


main .gallery-area {
    position: relative;    
}



main .gallery-area .container {
    /* margin: 0 auto;
    max-width: 1400px; */
    display: flex;
    position: relative;
}


main .gallery-area .text-area {
  width: 50%;
  position: sticky;
  top: 10%;
  height: 100%;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  z-index: 10;
    
}

main .gallery-area .text-area .icon {
  fill: var(--mainColor);
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

main .gallery-area .text-area .slogen {
  line-height: 1.4;
  color: var(--mainColor);
  font-size: 30px;
  text-align: center;
  font-family: var(--font2, 'EB Garamond', serif);
  margin-top: 1.43%;
  max-width:400px;
  
}

/*  이미지 영역 */
main .gallery-area .img-area {
    position: relative;    
    width:50%;   
}


/* 이미지 랩퍼들 */
main .gallery-area .img-area .img-wrap1 {
  width: 75%;
  aspect-ratio: 3/4
}

main .gallery-area .img-area .img-wrap1 .gallery1 {
    width: 100%; 
    height: 100%;
    object-fit:cover;  
    display: block;
}
main .gallery-area .img-area .row {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-left: -50%;
  margin-top: 30px;
}

main .gallery-area .img-wrap2 {
  width: 40%;
  /* height: 400px; */
}

main .gallery-area .img-wrap2 .gallery2 {
    width: 100%;   
    display: block;
}

main .gallery-area .img-wrap3 {
  width: 50%;
  /* height: 700px; */
}

main .gallery-area .img-wrap3 .gallery3 {
    width: 100%;    
    display: block;
}


/* House of Gold 섹션 */
/* House of Gold 섹션 */
main .gallery-area .house-of-gold {
  text-align: center;
  padding: 80px 20px;
  /* margin-top: 250px; */
  margin-top: 130px;
}

main .gallery-area .house-of-gold .title {
  font-size: 36px;
  font-weight: 700;
  color: var(--mainColor);
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: block;
  font-family: var(--font2, "EB Garamond", serif);
}

main .gallery-area .house-of-gold .story,
main .gallery-area .house-of-gold .story01 {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mainColor);
  display: block;
  font-family: var(--koFont);
}

main .gallery-area .button-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 40px;
  border: 1px solid var(--mainColor);
  background-color: #fff;
  color: var(--mainColor);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--font2, "EB Garamond", serif);
  cursor: pointer;
}

main .gallery-area .button-btn:hover {
  background-color: var(--mainColor);
  color: #fff;
  transform: translateY(-2px);
}


/* 문제점 : house of gold 글씨가 안보여짐 
이유 display: flex를 사용하면 기본적으로 모든 자식 요소들이 한 줄에 가로로 배치됨
.text-area, .img-area, .house-of-gold이 container안에 있어서 3개가 가로로 나란히 배치되어버렸고 
근데 .text-area는 position: absolute라서 빠져나가고, 
img-area가 너비 930px + margin-left 500px = 1430px나 차지
.house-of-gold가 들어갈 공간이 없어서 화면 밖으로 밀려났거나 겹쳐짐
container 높이가 없어서 absolute 포지션 아닌것들 공간 차지 못함 */

/* 해결 */
/* houseofgold container 밖으로 뺐음 */
/* flex-wrap: wrap - house-of-gold가 다음 줄로 내려감
min-height: 900px - container가 충분한 높이를 가져서 이미지들이 제대로 보임
width: 100% - house-of-gold가 전체 너비를 차지
position: relative, z-index: 1 - house-of-gold가 제대로 표시됨   */

/*====== Collection Section ======== */
main .collection {
  /* padding: 80px 0; */
  background: var(--bg, #fff);
}

main .collection .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Title */
main .collection .title {
  margin-bottom: 10px;
  font-family: var(--engFont);
  font-weight: 700;
}

main .collection .title h2 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--mainColor);
  font-family: var(--font2, "EB Garamond", serif);
}

/* Tab-btn */
main .collection .collection-tab-btns {
  margin-bottom: 60px;
}

main .collection .collection-tab-btns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

main .collection .collection-tab-btns ul li {
  margin: 0;
}

main .collection .collection-tab-btns ul li a {
  display: inline-block;
  font-size: 23px;
  font-weight: 400;
  color: var(--mainColor);
  padding: 0 12px;
  text-align: center;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-family: var(--font2, "EB Garamond", serif);
}
.collection-tab-btns li a.on {
  text-decoration: underline;
  color: var(--mainColor);
}

main .collection .collection-tab-btns ul li a:hover {
  color: var(--mainColor);
  text-decoration: underline;
  font-weight: 400;
}

/* main .collection .collection-tab-btns ul li a.focus,
main .collection .collection-tab-btns ul li a.active {
  color: var(--mainColor);
  text-decoration: underline;
} */

/* Tab Contents */
main .collection .collection-tabs-contents {
  position: relative;
}

main .collection .collection-tabs-contents > div {
  position: relative;
}

/* Swiper Container */
main .collection .swiper-collection {
  width: 100%;
  padding: 30px 0 80px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

main .collection .swiper-collection .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

main .collection .swiper-collection .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
}

main .collection .swiper-collection .item {
  position: relative;
  height: 100%;
}

main .collection .swiper-collection .item a {
  display: block;
  text-decoration: none;
  position: relative;
}

/* Thumb Box */
main .collection .thumb-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f8f8f8;
}

main .collection .thumb-box .thumb-img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

main .collection .thumb-box .thumb-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

main .collection .thumb-box .thumb-img img.before {
  opacity: 1;
  z-index: 1;
}

main .collection .thumb-box .thumb-img img.after {
  opacity: 0;
  z-index: 2;
}

/* Hover */
main .collection .item a:hover .thumb-img img.before {
  opacity: 0;
}

main .collection .item a:hover .thumb-img img.after {
  opacity: 1;
}
main .collection .collection-tabs-contents #WATCHES .thumb-img .before {
  scale: 0.9;
}
main .collection .collection-tabs-contents #EARRING .thumb-img .before {
  scale: 0.9;
}
main .collection .collection-tabs-contents #BRACELET .thumb-img .before {
  scale: 0.9;
}
main .collection .collection-tabs-contents #RING .thumb-img .before {
  scale: 0.6;
}

/* Text Box - 좌측 정렬 + 하트 버튼 */
main .collection .text-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 10px;
  gap: 10px;
  position: relative;
}

main .collection .text-box .text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  flex: 1;
}

main .collection .text-box .strong {
  font-size: 20px;
  font-weight: 500;
  color: var(--mainColor);
  font-family: var(--koFont);
  line-height: 1.4;
}

main .collection .text-box .add-strong {
  font-size: 16px;
  color: #666;
  font-family: var(--koFont);
  line-height: 1.4;
  white-space: nowrap;
}

main .collection .text-box .price {
  font-size: 18px;
  font-weight: 500;
  color: var(--mainColor);
  font-family: var(--koFont);
  margin-top: 4px;
}

/* Wishlist Button - 하트 버튼 */
main .collection .wishlist-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  color: #999;
  transition: all 0.3s ease;
  flex-shrink: 0;
  outline: none;
  z-index: 99;
}

/* 호버 시 - 남색으로 채워짐 */
main .collection .wishlist-btn:hover {
  color: var(--mainColor);
}

main .collection .wishlist-btn:hover .heart-icon path {
  fill: var(--mainColor);
  stroke: var(--mainColor);
}

main .collection .wishlist-btn:focus {
  outline: none;
}

/* 활성화 시 - 메인 컬러로 채워짐 */
main .collection .wishlist-btn.active {
  color: var(--mainColor);
}

main .collection .wishlist-btn.active .heart-icon path {
  fill: var(--mainColor); /* 클릭 시 메인 컬러로 채우기 */
  stroke: var(--mainColor);
}

main .collection .heart-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

main .collection .heart-icon path {
  fill: none;
  stroke: currentColor;
  transition: all 0.3s ease;
}
/* Swiper Pagination -  */
main .collection .swiper-pagination {
  position: absolute !important;
  top: auto !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 60px);
  max-width: 1140px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  z-index: 10;
}

main .collection .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1);
}

main
  .collection
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: var(--mainColor);
  height: 100%;
  border-radius: 2px;
}

/* ========Boutique Section============ */
main .boutique {
  padding: 80px 0;
  background-color: var(--mainColor);
}

main .boutique .container {
  max-width: 1400px;
  margin: 0 auto;
  
}

/* Title */
main .boutique .title {
  margin-bottom: 50px;
  font-family: var(--font2, "EB Garamond", serif);
  font-weight: 700;
}

main .boutique .title h2 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  font-family: var(--font2, "EB Garamond", serif);
  font-weight: 700;
}

/* 3열로 나열 */
main .boutique .boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

main .boutique .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
main .boutique .boutique-text {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--koFont);
}

main .boutique .boutique-text p.worldwide {
  font-size: 25px;
  color: #fff;
  line-height: 2.5;
  margin: 5px 0;
  font-family: var(--koFont);
  font-weight: 700;
}

main .boutique .boutique-text p {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  margin: 5px 0;
}

/* Button */
main .boutique-btn {
  text-align: center;
}

main .boutique .boutique-btn .btn {
  display: inline-block;
  padding: 12px 40px;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
  font-family: var(--font2, "EB Garamond", serif);
  font-weight: 500;
}

main .boutique .boutique-btn .btn:hover {
  background-color: #ffffff;
  color: var(--mainColor);
  font-family: var(--font2, "EB Garamond", serif);
}

/* ==============footer===================== */
.footer {
  background-color: #fff;
  padding: 60px 0 40px;
}

.footer .container {
  padding: 0 40px;
}

footer .footer-top {
}

footer .footer-top .footer-nav {
  display: flex;
  gap: 40px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-nav a {
  color: var(--mainColor);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  font-family: var(--koFont);
}

.footer-nav a:hover {
  color: #666;
}

.footer .footer-top .footer-social {
  display: flex;
  gap: 50px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.footer .footer-top .social-icon {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.footer .footer-top .social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .footer-top .social-icon .social-icon:hover {
}

footer .footer-divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 40px 0;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

footer .footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #333;
}

footer .footer-info {
  text-align: center;
}

footer .footer-info p {
  color: #999;
  font-size: 11px;
  line-height: 1.8;
  margin: 8px 0;
}
