/* ──────────────────────────────────────
   homepage.css — 홈페이지 전용 스타일
   오방색 디자인 시스템 기반, 모바일 퍼스트
   한복남(hanboknam.com) 참조 개편
   ────────────────────────────────────── */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. 이벤트 상단 띠
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.event-strip {
  font-size: 11px;
  letter-spacing: .3px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. 히어로 캐러셀
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-section {
  background-color: var(--color-jjok-mist);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(60,53,48,.12);
  position: relative;
  z-index: 1;
}

/* 슬라이드 기본 — 고정 높이 방식 */
.hero-slide {
  --hero-h: 500px;
  background-color: var(--color-jjok-mist);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  min-height: var(--hero-h);
}
@media (min-width: 768px)  { .hero-slide { --hero-h: 562px; padding: 72px 0; } }
@media (min-width: 992px)  {
  .hero-slide {
    --hero-h: 656px;
    height: var(--hero-h);
    min-height: 0;
    padding: 0;
  }
}

/* 이미지 없을 때 그라디언트 폴백 */
.hero-slide--gradient {
  background: linear-gradient(135deg, #C8D8F0 0%, #D0C8E8 50%, #E0B8C8 100%);
}

/* 좌→우 화이트/크림 오버레이 (텍스트 가독성) */
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(252,248,241,.96) 0%,
      rgba(252,248,241,.82) 36%,
      rgba(252,248,241,.26) 68%,
      rgba(252,248,241,.04) 100%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,0) 28%);
  pointer-events: none;
}

/* 슬라이드 내부 레이아웃 */
.hero-slide > .container-xl { position: relative; z-index: 1; }
@media (min-width: 992px) {
  .hero-slide > .container-xl,
  .hero-slide .row { height: 100%; }
  .hero-text-col {
    padding-top: 56px;
    padding-bottom: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* 데스크톱에서 우측 시각 컬럼 숨김 */
@media (min-width: 992px) { .hero-visual-col { display: none !important; } }

/* 아이브로우 */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow-line {
  width: 24px; height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: .72rem;
  color: var(--color-jjok-dk);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(79,145,186,.26);
  border-radius: 999px;
  padding: 5px 12px;
}

/* 제목 */
.hero-h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #27211F;
  line-height: 1.35;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(255,255,255,.82);
}
@media (min-width: 768px) { .hero-h1 { font-size: 2.1rem; } }
@media (min-width: 992px) { .hero-h1 { font-size: 2.9rem; } }

/* 제목 강조 — 텍스트·배경 블록 모두 배너별 CSS 변수로 지정 */
.hero-accent {
  color: var(--accent-text, #3D5799);
  background: linear-gradient(
    to bottom,
    transparent 52%,
    color-mix(in srgb, var(--accent-bg, #C4A050) 45%, transparent) 52%
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 3px;
}

/* 서브타이틀 */
.hero-sub {
  font-size: .96rem;
  color: #4C423E;
  line-height: 1.82;
  margin-bottom: 28px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(255,255,255,.68);
  white-space: pre-line;
}

/* CTA — 골드 버튼 */
.btn-gold-hero {
  background: var(--color-gold);
  color: var(--color-ink);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: .94rem;
  padding: 12px 24px;
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 12px 24px rgba(139,100,25,.18);
}
.btn-gold-hero:hover {
  background: var(--color-gold-lt);
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(139,100,25,.24);
  transform: translateY(-1px);
}

/* CTA — 고스트 버튼 */
.btn-ghost-hero {
  background: rgba(255,255,255,.62);
  color: var(--color-jjok-dk);
  border: 1px solid rgba(79,145,186,.34);
  border-radius: 8px;
  font-size: .94rem;
  font-weight: 800;
  padding: 11px 24px;
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost-hero:hover {
  background: var(--color-jjok-mist);
  color: var(--color-jjok-dk);
  box-shadow: 0 12px 24px rgba(39,99,132,.12);
  transform: translateY(-1px);
}

/* 모바일: 버튼 풀너비 그리드 */
.d-grid-hero { display: grid; }
@media (min-width: 576px) { .d-grid-hero { display: flex; } }

/* 인디케이터 — 프로스티드 글라스 필 */
#heroCarousel .carousel-indicators {
  right: auto;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: auto;
  margin: 0;
  gap: 9px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 999px;
  padding: 8px 11px;
  box-shadow: 0 14px 28px rgba(39,33,31,.14);
  backdrop-filter: blur(10px);
}
#heroCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(39,99,132,.36);
  border: 0;
  opacity: 1;
  margin: 0;
  transition: width .22s, background .22s, transform .22s;
}
#heroCarousel .carousel-indicators [data-bs-target]:hover {
  background: var(--color-jjok);
  transform: scale(1.12);
}
#heroCarousel .carousel-indicators .active {
  width: 30px;
  background: linear-gradient(90deg, var(--color-jjok-dk), var(--color-gold));
}

/* Prev / Next — 흰 원형 버튼 */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 64px;
  opacity: 1;
}
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 48px;
  height: 48px;
  background-size: 20px 20px;
  background-position: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,.94);
  border: 1.5px solid rgba(79,145,186,.32);
  box-shadow: 0 2px 8px rgba(39,33,31,.13), 0 1px 3px rgba(39,33,31,.08);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), background-color .18s, box-shadow .18s;
}
#heroCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23276384'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
#heroCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23276384'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#heroCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#heroCarousel .carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.12);
  background-color: #fff;
  border-color: rgba(39,99,132,.65);
  box-shadow: 0 4px 18px rgba(39,33,31,.2), 0 2px 6px rgba(39,33,31,.12);
}
#heroCarousel .carousel-control-prev:active .carousel-control-prev-icon,
#heroCarousel .carousel-control-next:active .carousel-control-next-icon {
  transform: scale(.96);
}

@media (max-width: 767.98px) {
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next { width: 50px; }
  #heroCarousel .carousel-control-prev-icon,
  #heroCarousel .carousel-control-next-icon { width: 40px; height: 40px; background-size: 17px 17px; }
  #heroCarousel .carousel-indicators { bottom: 14px; padding: 7px 10px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. 카테고리 빠른 진입 바
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cat-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-top: 2.5px solid var(--color-gold);
  border-bottom: 1px solid var(--color-border-trad);
  box-shadow: 0 4px 18px rgba(60,53,48,.10);
}
.cat-scroll-wrap {
  position: relative;
}
.cat-scroll-wrap::before,
.cat-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}
.cat-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 60%, transparent);
}
.cat-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 60%, transparent);
}
.cat-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 14px 0;
  gap: 10px;
  align-items: center;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--color-ink-mid);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,.08);
  background: var(--color-hanji);
  transition: color .16s, background .16s, border-color .16s, box-shadow .16s;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.cat-item__icon {
  font-size: 1.1rem;
  opacity: .8;
  transition: opacity .16s;
}
.cat-item--active {
  color: #fff;
  font-weight: 700;
  background: var(--color-jjok-dk);
  border-color: var(--color-jjok-dk);
  box-shadow: 0 2px 10px rgba(92,112,172,.32);
}
.cat-item--active .cat-item__icon { opacity: 1; }
.cat-item:hover:not(.cat-item--active) {
  color: var(--color-jjok-dk);
  background: var(--color-jjok-mist);
  border-color: rgba(92,112,172,.22);
  box-shadow: 0 1px 6px rgba(92,112,172,.12);
  text-decoration: none;
}
.cat-item:hover:not(.cat-item--active) .cat-item__icon { opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. 섹션 공통 타이틀
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-heading {
  border-left: 3px solid var(--color-gold);
  padding-left: 14px;
}
.sec-heading__en {
  font-size: .68rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-gold-dk);
  font-weight: 600;
  margin: 0 0 4px;
}
.sec-heading__ko {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0;
  letter-spacing: -.02em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. BEST ITEM 탭 섹션
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.prod-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--color-border-trad);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: .5rem;
}
.prod-tab-nav::-webkit-scrollbar { display: none; }
.prod-tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  padding: .7rem 1.3rem;
  font-size: .96rem;
  font-weight: 400;
  color: var(--color-ink-mid);
  cursor: pointer;
  transition: color .18s, border-color .18s, transform .2s cubic-bezier(.34,1.56,.64,1);
  letter-spacing: .2px;
  font-family: var(--font-sans);
}
.prod-tab-btn:hover {
  color: var(--color-jjok);
  transform: translateY(-3px);
}
.prod-tab-btn.active {
  color: var(--color-jjok);
  font-weight: 500;
  border-bottom-color: var(--color-jjok);
  transform: translateY(-2px);
}

/* 탭 패널 */
.prod-tab-panel {
  display: none;
}
.prod-tab-panel.active {
  display: block;
  animation: fadeIn .22s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. 상품 카드
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.product-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  /* 기본: 연한 테두리 효과를 box-shadow로 — 하드 라인 없이 부드럽게 */
  box-shadow:
    0 0 0 1px rgba(224,216,204,.75),
    0 2px 10px rgba(60,53,48,.07),
    0 1px 2px rgba(60,53,48,.04);
  transition: box-shadow .28s ease, transform .28s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow:
    0 0 0 1.5px rgba(92,112,172,.22),
    0 10px 30px rgba(44,62,107,.13),
    0 4px 10px rgba(60,53,48,.07);
  transform: translateY(-5px);
}

/* 이미지 영역 */
.product-card__img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #F0EBE3;
}
.product-card__img-link { display: block; }
.product-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform .40s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.06);
}
/* 이미지 위 인셋 레이어: 연한 내부 테두리 + 하단 미세 그라디언트 */
.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.07);
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(30,20,10,.055) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity .28s;
}
.product-card:hover .product-card__img::after {
  opacity: .6;
}

/* 이미지 없을 때 */
.product-card__noimg {
  width: 100%;
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-mosi);
  color: var(--color-ink-lt);
  font-size: 1.6rem;
}
.product-card__noimg span {
  font-size: .7rem;
  letter-spacing: .02em;
}

/* 배지 */
.product-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.product-card__badge {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 7px;
  border-radius: 3px;
  line-height: 1.5;
}
.product-card__badge--best {
  background: var(--color-jjok-dk);
  color: #fff;
}
.product-card__badge--type {
  background: rgba(196,160,80,.18);
  color: var(--color-gold-dk);
  border: 1px solid rgba(196,160,80,.3);
}
.product-card__badge--sale {
  background: rgba(200,144,152,.15);
  color: var(--color-jaju);
  border: 1px solid rgba(200,144,152,.3);
}

/* 찜 버튼 */
.btn-wish {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  font-size: .85rem;
  color: var(--color-ink-lt);
  transition: color .15s, background .15s, transform .15s;
}
.btn-wish:hover { color: var(--color-jaju); transform: scale(1.12); }
.btn-wish .bi-heart-fill { color: var(--color-jaju); }

/* 카드 본문 */
.product-card__body {
  padding: .75rem .75rem .8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: .65rem;
  font-weight: 600;
  color: var(--color-jjok);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-card__name-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin: 0 0 .35rem;
  flex-grow: 1;
}
.product-card__name {
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  min-width: 0;
  color: var(--color-ink);
}
.product-card__name a {
  color: inherit;
  text-decoration: none;
}
.product-card__name a:hover { color: var(--color-jjok-dk); }

.product-card__type-tag {
  display: inline-block;
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.55;
  margin-top: 3px;
  white-space: nowrap;
}
.product-card__type-tag--rental {
  background: rgba(196,160,80,.15);
  color: var(--color-gold-dk);
  border: 1px solid rgba(196,160,80,.28);
}
.product-card__type-tag--sale {
  background: rgba(200,144,152,.13);
  color: var(--color-jaju);
  border: 1px solid rgba(200,144,152,.28);
}

.product-card__summary {
  font-size: .78rem;
  color: var(--color-ink-mid);
  line-height: 1.55;
  margin: 0 0 .45rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .4rem;
  border-top: 1px solid rgba(0,0,0,.05);
}
.product-card__price {
  font-size: .96rem;
  color: var(--color-jjok-dk);
  font-weight: 700;
}
.product-card__unit {
  font-size: .72rem;
  color: var(--color-ink-lt);
  font-weight: 400;
  margin-left: 1px;
}
.product-card__price-sale {
  font-size: .76rem;
  color: var(--color-ink-lt);
  text-decoration: line-through;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   카테고리 쇼케이스 배너 (실사 이미지)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cat-showcase-section {
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .cat-showcase-section { padding-top: 6rem; padding-bottom: 6rem; }
}

.cat-showcase-head {
  margin-bottom: 1.4rem;
}
.cat-showcase-head__en {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-jjok);
  margin: 0 0 4px;
}
.cat-showcase-head__ko {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  .cat-showcase-head__ko { font-size: 1.6rem; }
}

/* 전체 폭 컨테이너 — 브라우저 폭 + 좌우 여백 */
.collection-wide {
  width: 100%;
  padding: 0 clamp(20px, 4.5vw, 80px);
}

/* 분할 레이아웃: 좌 = 항목 세로 / 우 = 이미지 세로 스크롤 */
.collection-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  height: 990px;            /* 섹터 세로 50% 확대 (660→990) */
}
@media (max-width: 767px) {
  .collection-split {
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
  }
}

/* ── 왼쪽: 컬렉션 항목 세로 리스트 (이미지 카드) ── */
.collection-split__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.coll-row {
  position: relative;
  flex: 1;                  /* 3개 카드가 높이를 균등 분할 → 세로로 크게 */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  background-color: #c8c0b8;
  background-image: var(--bg);
  background-size: cover;
  background-position: center 22%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.coll-row:hover {
  transform: scale(1.012);
  box-shadow: 0 12px 30px rgba(60,53,48,.22);
}
@media (max-width: 767px) {
  .coll-row { min-height: 150px; }
}
/* 텍스트 가독성용 다크 그라디언트 */
.coll-row__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,8,6,.78) 0%,
    rgba(10,8,6,.55) 38%,
    rgba(10,8,6,.18) 70%,
    rgba(10,8,6,.05) 100%
  );
  transition: opacity .3s;
  pointer-events: none;
}
.coll-row:hover .coll-row__overlay { opacity: .82; }
.coll-row__text {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.7rem;
  width: 100%;
}
.coll-row__en {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-gold-lt, #e0c178);
  margin: 0 0 7px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.coll-row__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
@media (min-width: 768px) {
  .coll-row__title { font-size: 1.6rem; }
}
.coll-row__desc {
  font-size: .85rem;
  color: rgba(255,255,255,.88);
  margin: 0;
  line-height: 1.45;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.coll-row__arrow {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  color: var(--color-ink, #3C3530);
  font-size: 1.1rem;
  transition: background .2s, color .2s, transform .2s;
}
.coll-row:hover .coll-row__arrow {
  background: var(--color-gold-lt, #e0c178);
  color: #3C3530;
  transform: translateX(3px);
}

/* ── 오른쪽: 이미지 세로 스크롤 (2열 마퀴) ── */
.collection-split__media {
  position: relative;
  height: 100%;             /* 좌측 리스트와 동일 높이 */
  border-radius: 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
}
@media (max-width: 767px) {
  .collection-split__media { height: 420px; }
}
.coll-marquee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  align-items: start;
  height: 100%;
}
.coll-marquee__col {
  display: block;
  will-change: transform;
  animation: coll-scroll-up 34s linear infinite;
}
.coll-marquee__col--down {
  animation-name: coll-scroll-down;
  animation-duration: 28s;
}
/* 균일한 비율(3:4) + margin-bottom → 그룹 2배 복제 시 -50%가 정확히 한 그룹 = 이음매 없음 */
.coll-marquee__col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 12px;
  display: block;
}
.collection-split__media:hover .coll-marquee__col {
  animation-play-state: paused;
}
@keyframes coll-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes coll-scroll-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .coll-marquee__col { animation: none; }
  .collection-split__media { overflow-y: auto; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. 카테고리 배너 그리드
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cat-banner-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .cat-banner-section { padding-top: 7rem; padding-bottom: 7rem; }
}
.cat-banner-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media (min-width: 640px) {
  .cat-banner-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-banner-item--tall {
    grid-row: span 2;
  }
}
@media (min-width: 992px) {
  .cat-banner-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .cat-banner-item--tall {
    grid-row: span 2;
    grid-column: 1;
  }
  .cat-banner-item:nth-child(2) { grid-column: 2; }
  .cat-banner-item:nth-child(3) { grid-column: 3; }
}

.cat-banner-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 3px;
  overflow: hidden;
  min-height: 160px;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cat-banner-item--tall { min-height: 412px; }
  .cat-banner-item:not(.cat-banner-item--tall) { min-height: 196px; }
}
.cat-banner-item__bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.cat-banner-item:hover .cat-banner-item__bg { transform: scale(1.04); }
.cat-banner-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  transition: opacity .3s;
}
.cat-banner-item:hover::after { opacity: .8; }
.cat-banner-item__body {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.2rem;
}
.cat-banner-item__en {
  font-size: .6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-lt);
  opacity: .8;
  margin: 0 0 4px;
  font-weight: 400;
}
.cat-banner-item__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .cat-banner-item--tall .cat-banner-item__title { font-size: 1.5rem; }
}
.cat-banner-item__link {
  font-size: .72rem;
  color: var(--color-gold-lt);
  opacity: .8;
  transition: opacity .2s;
}
.cat-banner-item:hover .cat-banner-item__link { opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. 렌탈 프로세스
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 예약 가이드 2열 (렌탈 + 코디네이션 한 줄) */
.guide-duo-section {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .guide-duo-section { padding: 6rem 0; }
}
.guide-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .guide-duo { grid-template-columns: 1fr; gap: 1rem; }
}
.guide-panel {
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,.12);
}
.guide-panel--rental {
  background: linear-gradient(135deg, #7B8EC4 0%, #9098C8 100%);
}
.guide-panel--coord {
  background: linear-gradient(135deg, #3C3530 0%, #574b41 100%);
}

.rental-process-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.r-step {
  text-align: center;
}
.r-step__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: rgba(184,145,63,.12);
  color: var(--color-gold-lt);
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
}
.r-step__label {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.r-step__arrow {
  color: var(--color-gold);
  opacity: .4;
  font-size: 1rem;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .r-step__num { width: 32px; height: 32px; font-size: .75rem; }
  .r-step__label { font-size: .62rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. 서비스 카드
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.svc-card {
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: #fff;
  transition: box-shadow .2s;
}
.svc-card:hover { box-shadow: 0 4px 16px rgba(44,62,107,.1); }
.svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. 포토 갤러리 — 인터랙티브 뷰어
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.photo-gallery-section {
  background: #f8f6f3;
}

/* ─ 뷰어 레이아웃: 메인 : 썸네일 = 55 : 45 (메인 약 10% 확대) ─ */
/* 높이는 JS(fitRows)가 썸네일 행 단위로 스냅해 인라인 지정. 아래는 폴백값. */
.gallery-viewer {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 10px;
  align-items: stretch;
}

/* ─ 메인 확대 이미지 ─ */
.gallery-viewer__main {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  background: #111;
  height: 480px;            /* JS 미동작 시 폴백 */
}
@media (max-width: 991px) {
  .gallery-viewer__main { height: 360px; }
}
.gallery-viewer__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .2s ease;
}
.gallery-viewer__main-img { cursor: zoom-in; }

/* ─ 플레이어 컨트롤 ─ */
.gallery-player__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, background .2s;
  z-index: 3;
}
.gallery-viewer__main:hover .gallery-player__nav { opacity: 1; }
.gallery-player__nav:hover { background: rgba(0,0,0,.72); }
.gallery-player__nav--prev { left: 12px; }
.gallery-player__nav--next { right: 12px; }

/* 하단 컨트롤 바 */
.gallery-player__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 16px 13px;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
  color: #fff;
  z-index: 3;
}
.gallery-player__btn {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: background .2s;
}
.gallery-player__btn:hover { background: rgba(255,255,255,.2); }
.gallery-player__title {
  flex: 1 1 auto;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-player__count {
  flex: 0 0 auto;
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .3px;
  opacity: .92;
  white-space: nowrap;
}

/* 진행 바 */
.gallery-player__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.22);
  z-index: 4;
  opacity: 0;
  transition: opacity .2s;
}
.gallery-player.is-playing .gallery-player__progress { opacity: 1; }
.gallery-player__progress-fill {
  height: 100%;
  width: 0;
  background: var(--jjok-main, #8b1a2f);
}
.gallery-player.is-playing .gallery-player__progress-fill {
  animation: gallery-player-progress 3500ms linear forwards;
}
@keyframes gallery-player-progress {
  from { width: 0; }
  to { width: 100%; }
}

/* ─ 썸네일 스크롤 래퍼 (행 단위 스냅 높이 → 오버플로 스크롤) ─ */
.gallery-viewer__thumbs-wrap {
  height: 480px;            /* JS 미동작 시 폴백, fitRows가 인라인으로 덮어씀 */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
@media (max-width: 991px) {
  .gallery-viewer__thumbs-wrap { height: 360px; }
}
.gallery-viewer__thumbs-wrap::-webkit-scrollbar { width: 4px; }
.gallery-viewer__thumbs-wrap::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* ─ 썸네일 그리드 (높이 미지정 → 행이 이미지 크기로 자연 결정됨) ─ */
.gallery-viewer__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  align-content: start;
}

.gallery-viewer__thumb {
  display: block;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  background: #111;
  transition: border-color .2s, opacity .2s;
  opacity: .7;
  padding: 0;
}
.gallery-viewer__thumb.is-active {
  border-color: var(--jjok-main, #8b1a2f);
  opacity: 1;
}
.gallery-viewer__thumb:hover { opacity: 1; }
.gallery-viewer__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.gallery-viewer__thumb:hover img { transform: scale(1.06); }

/* ─ 모바일: 세로 스택, 썸네일 가로 스크롤 ─ */
@media (max-width: 767px) {
  .gallery-viewer {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gallery-viewer__main {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .gallery-viewer__thumbs-wrap {
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
  }
  .gallery-viewer__thumbs {
    grid-template-columns: repeat(4, 1fr);
    overflow-x: auto;
    overflow-y: hidden;
    gap: 5px;
    min-width: max-content;
  }
  .gallery-viewer__thumb img {
    aspect-ratio: 4 / 3;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. 룩북 카드
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lookbook-card {
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
}
.lookbook-card:hover { box-shadow: 0 4px 16px rgba(44,62,107,.12); }
.lookbook-card__img {
  height: 220px;
  overflow: hidden;
}
.lookbook-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.lookbook-card:hover .lookbook-card__img img { transform: scale(1.05); }
.lookbook-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-mosi);
  color: var(--color-ink-lt);
  font-size: 2rem;
}
.lookbook-card__body { padding: .9rem 1rem; }
.lookbook-card__title {
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-jjok);
  margin-bottom: 4px;
}
.lookbook-card__desc {
  font-size: .78rem;
  color: var(--color-ink-lt);
  margin: 0;
  line-height: 1.5;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   12. 카카오 배너
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.kakao-banner-section {
  background: linear-gradient(135deg, #C89098 0%, #D8A0AA 100%);
  padding: 1.5rem 0;
}
@media (min-width: 992px) {
  .kakao-banner-section { padding: 4.5rem 0; }
}
.kakao-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .kakao-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.sns-btn {
  background: rgba(255,255,255,.14);
  border: .5px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 2px;
  transition: background .15s;
}
.sns-btn:hover {
  background: rgba(255,255,255,.24);
  color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   13. 리뷰 카드
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.review-card {
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: #fff;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: 0 4px 14px rgba(44,62,107,.1); }
.review-stars {
  color: var(--color-gold);
  font-size: .9rem;
  letter-spacing: 1px;
}
.review-badge {
  font-size: .62rem;
  background: var(--color-jjok);
  color: var(--color-gold-lt);
  padding: 2px 6px;
  border-radius: 1px;
  letter-spacing: .5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WORLD COSTUME 섹션
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.world-section {
  background: #1c2b3a;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .world-section { padding-top: 4.5rem; padding-bottom: 5.5rem; }
}

/* 헤더 */
.world-sec-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .world-sec-head { align-items: flex-end; margin-bottom: 2.5rem; }
}
.world-sec-head__en {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(196,160,80,.9);
  margin: 0 0 6px;
}
.world-sec-head__ko {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  .world-sec-head__ko { font-size: 1.7rem; }
}
.world-sec-head__sub {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.6;
}

/* 더보기 버튼 (다크 배경용) */
.world-more-btn {
  border-color: rgba(196,160,80,.5);
  color: rgba(196,160,80,.9);
}
.world-more-btn:hover {
  background: rgba(196,160,80,.15);
  color: var(--color-gold-lt);
  border-color: var(--color-gold-lt);
}

/* 그리드 */
.world-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 576px) {
  .world-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 992px) {
  .world-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* 카드 다크 테마 */
.world-section .product-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.world-section .product-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.08);
  border-color: rgba(196,160,80,.3);
}
.world-section .product-card__img {
  padding: 0;
  background: transparent;
  border-radius: 14px 14px 0 0;
}
.world-section .product-card__img img {
  border-radius: 14px 14px 0 0;
  outline: 1px solid rgba(255,255,255,.08);
  transition: transform .38s ease;
}
.world-section .product-card:hover .product-card__img img {
  transform: scale(1.04);
}
.world-section .product-card__body {
  background: transparent;
  border-radius: 0 0 14px 14px;
}
.world-section .product-card__cat {
  color: rgba(196,160,80,.85);
}
.world-section .product-card__name {
  color: rgba(255,255,255,.9);
}
.world-section .product-card__name a {
  color: inherit;
}
.world-section .product-card__name a:hover {
  color: var(--color-gold-lt);
}
.world-section .product-card__summary {
  color: rgba(255,255,255,.45);
}
.world-section .product-card__price-row {
  border-top-color: rgba(255,255,255,.08);
}
.world-section .product-card__price {
  color: var(--color-gold-lt);
}
.world-section .product-card__unit {
  color: rgba(255,255,255,.4);
}
.world-section .product-card__noimg {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.3);
  border-radius: 14px 14px 0 0;
}
.world-section .product-card__type-tag--rental {
  background: rgba(196,160,80,.18);
  color: var(--color-gold-lt);
  border-color: rgba(196,160,80,.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BEST ITEM — 가로 슬라이드 섹션
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.best-slide-section {
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .best-slide-section { padding-top: 4rem; padding-bottom: 5rem; }
}

/* 헤더 */
.best-slide-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.best-slide-head__en {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--color-jjok);
  margin: 0 0 4px;
  text-transform: uppercase;
}
.best-slide-head__ko {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  .best-slide-head__ko { font-size: 1.7rem; }
}

/* 슬라이드 화살표 — 뷰포트 좌우 오버레이 */
.best-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;            /* 어떤 배경에서도 버튼을 분리하는 링 */
  background: #2E2A26;               /* 어두운 채움 — 흰 배경에서 고대비 */
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.30), 0 2px 6px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.45rem;               /* chevron 확대 */
  transition: background .16s, color .16s, box-shadow .16s, transform .16s;
  flex-shrink: 0;
}
.best-slide-arrow > i {
  -webkit-text-stroke: 0.5px currentColor;  /* chevron 살짝 굵게 */
}
.best-slide-arrow--prev { left: -16px; }
.best-slide-arrow--next { right: -16px; }
.best-slide-arrow:hover:not(:disabled) {
  background: var(--color-jjok-dk);
  color: #fff;
  box-shadow: 0 6px 22px rgba(60,50,40,.34);
  transform: translateY(-50%) scale(1.1);
}
.best-slide-arrow:focus-visible {
  outline: 3px solid var(--color-jjok);
  outline-offset: 2px;
}
.best-slide-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

/* 슬라이드 뷰포트 — 넘치는 카드 클리핑 + 화살표 기준점 */
.best-slide-viewport {
  position: relative;
  overflow: hidden;
  padding: 0 28px;  /* 화살표가 카드를 가리지 않도록 좌우 여백 */
}

.best-slide-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.best-slide-track::-webkit-scrollbar { display: none; }

/* 모바일: 2개 */
.best-slide-item {
  flex: 0 0 calc((100% - 14px) / 2);
  min-width: 0;
  scroll-snap-align: start;
}
/* 태블릿: 3개 */
@media (min-width: 640px) {
  .best-slide-item { flex: 0 0 calc((100% - 2 * 14px) / 3); }
}
/* 데스크탑: 4개 */
@media (min-width: 992px) {
  .best-slide-item { flex: 0 0 calc((100% - 3 * 16px) / 4); }
  .best-slide-track { gap: 16px; }
}

/* 슬라이드 내 카드 스타일 */
.best-slide-section .product-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow:
    0 1px 4px rgba(60,50,40,.06),
    0 2px 12px rgba(60,50,40,.05);
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
}
.best-slide-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 6px 24px rgba(60,50,40,.11),
    0 2px 8px rgba(60,50,40,.06);
}
.best-slide-section .product-card__img {
  padding: 0;
  background: transparent;
  border-radius: 14px 14px 0 0;
}
.best-slide-section .product-card__img img {
  border-radius: 14px 14px 0 0;
  outline: 1px solid rgba(180,160,130,.15);
  transition: transform .38s ease;
}
.best-slide-section .product-card:hover .product-card__img img {
  transform: scale(1.04);
}
.best-slide-section .product-card__body {
  background: #fff;
  border-radius: 0 0 14px 14px;
}
.best-slide-section .product-card__price-row {
  border-top-color: rgba(0,0,0,.06);
}
.best-slide-section .product-card__noimg {
  border-radius: 8px;
  outline: 1px solid rgba(180,160,130,.18);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   13-C. 카테고리별 추천 섹션
   인기 상품과 동일한 스타일 적용
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   컬렉션 섹션 (HTMX 탭 + 그리드)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.collection-section {
  background: #faf9f7;
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 992px) {
  .collection-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}

/* 섹션 헤더 */
.collection-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.collection-sec-head__en {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--color-jjok);
  margin: 0 0 4px;
  text-transform: uppercase;
}
.collection-sec-head__ko {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  .collection-sec-head__ko { font-size: 1.7rem; }
}

/* 탭 네비게이션 */
.collection-tab-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding-bottom: 0;
  /* 고급스러운 미묘한 그림자 (밑줄 아래로 은은하게) */
  box-shadow: 0 10px 18px -12px rgba(60,53,48,.40);
}
@media (min-width: 768px) {
  .collection-tab-nav { margin-bottom: 2.8rem; gap: 2px; }
}

.collection-tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  padding: .65rem 1.15rem;
  font-size: .9rem;
  font-weight: 400;
  color: var(--color-ink-mid);
  cursor: pointer;
  transition: color .16s, border-color .16s;
  letter-spacing: .01em;
  line-height: 1;
}
.collection-tab-btn:hover {
  color: var(--color-ink);
}
.collection-tab-btn.is-active {
  color: var(--color-jjok-dk);
  font-weight: 600;
  border-bottom-color: var(--color-jjok-dk);
}

/* 로딩 스피너 */
.collection-spinner {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.collection-spinner.htmx-request { display: block; }

/* 그리드 + 좌우 전환 버튼 */
.collection-grid-viewport {
  position: relative;
  padding: 0 64px;          /* 좌우 화살표가 상품 위에 겹치지 않도록 여백 확보 */
}
@media (max-width: 991px) {
  .collection-grid-viewport { padding: 0 52px; }
}
@media (max-width: 767px) {
  .collection-grid-viewport { padding: 0 42px; }
}
.collection-nav-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #2E2A26;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.3), 0 2px 6px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.45rem;
  transition: background .16s, transform .16s, box-shadow .16s;
}
.collection-nav-arrow > i { -webkit-text-stroke: 0.5px currentColor; }
.collection-nav-arrow:hover {
  background: var(--color-jjok-dk);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 22px rgba(60,50,40,.34);
}
.collection-nav-arrow:focus-visible {
  outline: 3px solid var(--color-jjok);
  outline-offset: 2px;
}
.collection-nav-arrow--prev { left: 6px; }
.collection-nav-arrow--next { right: 6px; }
@media (max-width: 767px) {
  .collection-nav-arrow { width: 38px; height: 38px; font-size: 1.15rem; }
  .collection-nav-arrow--prev { left: 2px; }
  .collection-nav-arrow--next { right: 2px; }
}

/* 그리드 */
.collection-section .prod-grid {
  column-gap: 12px;
  row-gap: 20px;
}
@media (min-width: 576px) {
  .collection-section .prod-grid { row-gap: 24px; }
}
@media (min-width: 992px) {
  .collection-section .prod-grid { column-gap: 18px; row-gap: 28px; }
}

/* 상품 카드 */
.collection-section .product-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow:
    0 1px 4px rgba(60,50,40,.06),
    0 2px 10px rgba(60,50,40,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.collection-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 6px 24px rgba(60,50,40,.11),
    0 2px 8px rgba(60,50,40,.06);
}
.collection-section .product-card__img {
  padding: 0;
  background: transparent;
  border-radius: 14px 14px 0 0;
}
.collection-section .product-card__img img {
  border-radius: 14px 14px 0 0;
  outline: 1px solid rgba(180,160,130,.15);
  transition: transform .38s ease;
}
.collection-section .product-card:hover .product-card__img img {
  transform: scale(1.04);
}
.collection-section .product-card__body {
  background: #fff;
  border-radius: 0 0 14px 14px;
}

/* 더보기 버튼 */
.collection-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .7rem 2.2rem;
  border: 1.5px solid var(--color-jjok);
  border-radius: 40px;
  color: var(--color-jjok-dk);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.collection-more-btn:hover {
  background: var(--color-jjok);
  color: #fff;
}

.choice-item-section {
  background: #ffffff;
}

.choice-item-section .product-card {
  background: #ffffff;
  border: none;
  border-radius: 14px;
  box-shadow:
    0 1px 4px rgba(60,50,40,.06),
    0 2px 12px rgba(60,50,40,.05);
}
.choice-item-section .product-card:hover {
  box-shadow:
    0 6px 24px rgba(60,50,40,.11),
    0 2px 8px  rgba(60,50,40,.06);
  transform: translateY(-5px);
}

.choice-item-section .product-card__img {
  padding: 0;
  background: transparent;
  border-radius: 14px 14px 0 0;
}

.choice-item-section .product-card__img img {
  border-radius: 0;
  outline: 1px solid rgba(180,160,130,.18);
  box-shadow:
    0 2px 8px  rgba(60,50,40,.10),
    0 1px 3px  rgba(60,50,40,.06);
  transition: transform .40s ease, box-shadow .28s ease;
}
.choice-item-section .product-card:hover .product-card__img img {
  box-shadow:
    0 6px 20px rgba(60,50,40,.14),
    0 2px 6px  rgba(60,50,40,.08);
  transform: scale(1.04);
}

.choice-item-section .product-card__img::after {
  box-shadow: none;
  background: none;
}

.choice-item-section .product-card__body {
  background: #ffffff;
}

.choice-item-section .product-card__price-row {
  border-top-color: rgba(0,0,0,.06);
}

.choice-item-section .product-card__noimg {
  border-radius: 8px;
  outline: 1px solid rgba(180,160,130,.18);
}

/* 렌탈·판매 배지 가독성 강화 */
.choice-item-section .product-card__badge {
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 4px;
}
.choice-item-section .product-card__badge--type {
  background: rgba(30,52,78,.22);
  color: rgb(30,52,78);
  border: 1px solid rgba(30,52,78,.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 1px 6px rgba(30,52,78,.12);
  font-weight: 700;
  letter-spacing: .06em;
}
.choice-item-section .product-card__badge--sale {
  background: rgba(180,80,100,.22);
  color: rgb(140,45,65);
  border: 1px solid rgba(180,80,100,.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 1px 6px rgba(180,80,100,.12);
  font-weight: 700;
  letter-spacing: .06em;
}

/* 카테고리별 추천: 탭 라인을 cat-bar에 가깝게, 상품과는 넓게 */
.choice-item-section {
  padding-top: 1.4rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .choice-item-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
}

/* 섹션 헤더 ↔ 탭 라인 간격 줄이기 */
.choice-item-section .home-sec-head {
  margin-bottom: .8rem;
}

/* 탭 라인 ↔ 상품 그리드 간격 넓히기 + 하단 그림자 */
.choice-item-section .prod-tab-nav {
  margin-bottom: 2.8rem;
  box-shadow:
    0 6px 20px -4px rgba(60,50,40,.09),
    0 2px 8px  -2px rgba(60,50,40,.05);
}
@media (min-width: 992px) {
  .choice-item-section .prod-tab-nav { margin-bottom: 4rem; }
}

.choice-item-section .prod-grid {
  column-gap: 10px;
  row-gap: 20px;
}
@media (min-width: 576px) {
  .choice-item-section .prod-grid { row-gap: 24px; }
}
@media (min-width: 992px) {
  .choice-item-section .prod-grid { row-gap: 64px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   14. 홈 섹션 공통
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.home-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .home-section { padding-top: 6rem; padding-bottom: 6rem; }
}

/* 섹션 헤더 (타이틀 + 전체보기) */
.home-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.sec-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-jjok-dk);
  text-decoration: none;
  flex-shrink: 0;
  padding: 5px 12px;
  border: 1px solid rgba(92,112,172,.3);
  border-radius: 999px;
  transition: background .15s, border-color .15s;
}
.sec-more-link:hover {
  background: var(--color-jjok-mist);
  border-color: var(--color-jjok);
  color: var(--color-jjok-dk);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   15. 상품 그리드
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 576px) { .prod-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 768px) { .prod-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 992px) { .prod-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

/* 5열 변형 */
.prod-grid--5col { grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 576px) { .prod-grid--5col { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .prod-grid--5col { grid-template-columns: repeat(5, 1fr); gap: 18px; } }

.prod-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-ink-lt);
}
.prod-empty i { font-size: 2rem; opacity: .3; display: block; margin-bottom: .5rem; }
.prod-empty p { font-size: .85rem; margin: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   16. 프로모션 2단 배너
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.promo-split-section { background: #111; }
.promo-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .promo-split-grid { grid-template-columns: 1fr 1fr; }
}

.promo-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2.8rem 2.2rem;
  text-decoration: none;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .4s ease;
}
@media (min-width: 768px)  { .promo-card { min-height: 420px; } }
@media (min-width: 992px)  { .promo-card { min-height: 560px; padding: 4rem 3.5rem; } }

/* 이미지 없을 때 폴백 그라디언트 */
.promo-card--dark  { background-color: #2B3870; }
.promo-card--gold  { background-color: #5A3E22; }

/* 실사 이미지 위 다크 오버레이 */
.promo-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.promo-card--dark .promo-card__overlay {
  background: linear-gradient(
    to top,
    rgba(20,28,70,.88) 0%,
    rgba(20,28,70,.55) 50%,
    rgba(20,28,70,.22) 100%
  );
}
.promo-card--gold .promo-card__overlay {
  background: linear-gradient(
    to top,
    rgba(40,25,10,.88) 0%,
    rgba(40,25,10,.55) 50%,
    rgba(40,25,10,.22) 100%
  );
}

/* 호버 시 이미지 줌 */
.promo-card:hover { transform: scale(1.01); }
.promo-card:hover .promo-card__overlay { opacity: .85; }

.promo-card__inner {
  position: relative;
  z-index: 2;
}
.promo-card__label {
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-lt);
  opacity: .85;
  margin: 0 0 10px;
  font-weight: 600;
}
.promo-card__title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 .9rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
@media (min-width: 992px) { .promo-card__title { font-size: 2.6rem; } }

.promo-card__desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(255,255,255,.78);
  margin: 0 0 1.4rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
@media (min-width: 992px) { .promo-card__desc { font-size: 1rem; } }

.promo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--color-gold-lt);
  border-bottom: 1px solid rgba(196,160,80,.45);
  padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}
.promo-card:hover .promo-card__cta {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   17. 공지사항 목록
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ── 공지사항 섹션 ── */
.notice-section {
  background: var(--color-mosi);
  border-top: 1px solid var(--color-border-trad);
  border-bottom: 1px solid var(--color-border-trad);
  padding: 1rem 0;
}
.notice-section__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.notice-section__icon {
  font-size: .85rem;
  color: var(--color-jaju);
}
.notice-section__title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: -.01em;
}

.notice-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.notice-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .62rem 0;
  border-bottom: 1px dashed var(--color-border-trad);
  gap: 1rem;
}
.notice-list__item:last-child { border-bottom: none; }
.notice-list__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .15s;
}
.notice-list__title:hover { color: var(--color-jjok-dk); }
.notice-pin-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  color: var(--color-jaju);
  background: var(--color-jaju-lt);
  border: 1px solid rgba(200,144,152,.3);
  border-radius: 4px;
  padding: 1px 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.notice-list__date {
  font-size: .75rem;
  color: var(--color-ink-lt);
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(0,0,0,.04);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ── 한 줄 공지 티커 ─────────────────────── */
.notice-ticker {
  display: flex;
  align-items: center;
  height: 42px;
  background: #FFF8E8;
  border-top: none;
  border-bottom: 1px solid rgba(196,160,80,.22);
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(196,160,80,.15);
}
.notice-ticker__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 14px 0 16px;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-right: none;
  height: 100%;
  background: var(--color-jaju);
  white-space: nowrap;
  gap: 5px;
}
.notice-ticker__track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.notice-ticker__track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
  white-space: nowrap;
}
.notice-ticker__track:hover { animation-play-state: paused; }
.notice-ticker__group {
  display: inline-flex;
  align-items: center;
}
/* 공지가 컨테이너를 넘치지 않을 때: 복제본 숨기고 스크롤 정지 (중복 표시 방지) */
.notice-ticker__track.is-static {
  animation: none;
  transform: none;
}
.notice-ticker__track.is-static .notice-ticker__group + .notice-ticker__group {
  display: none;
}
.notice-ticker__track.is-static .notice-ticker__sep:last-child {
  display: none;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.notice-ticker__item {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-ink, #3C3530);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.notice-ticker__item:hover { color: var(--color-jjok-dk, #2E5C71); text-decoration: underline; }
.notice-ticker__pin { margin-right: 4px; font-size: .75rem; }
.notice-ticker__sep {
  color: rgba(0,0,0,.2);
  font-size: .85rem;
  padding: 0 4px;
  flex-shrink: 0;
}
.notice-ticker__more {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 14px 0 12px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--color-jjok-dk, #2E5C71);
  text-decoration: none;
  border-left: 1px solid rgba(196,160,80,.25);
  height: 100%;
  white-space: nowrap;
  transition: background .15s;
}
.notice-ticker__more:hover { background: rgba(196,160,80,.1); }
