/* =============================================
   ASSO — Design System v4
   Tone: Upscale Serif × Kitsch Charm
   Ref: Simone Rocha, Sandy Liang, Miu Miu SS26
   Palette: Ivory · Beige · Black (+ rose accent)
   ============================================= */

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ── Core Palette ── */
  --ivory:       #F8F5F0;   /* warm parchment */
  --ivory-2:     #EFE9E1;
  --ivory-3:     #E4DDD3;
  --stone:       #B8A99A;
  --stone-light: #D6CBBE;
  --stone-mid:   #9A8C7E;
  --black:       #171412;
  --black-soft:  #2C2926;

  /* ── Accent: dusty rose — kitsch signature ── */
  --rose:        #C8A0A8;
  --rose-light:  #EAD5D8;
  --rose-dark:   #9C6B74;

  /* ── Typography ── */
  --serif:  'EB Garamond', 'Noto Sans KR', Georgia, serif;
  --sans:   'Inter', 'Noto Sans KR', sans-serif;
  --logo:   'Libre Baskerville', Georgia, serif;

  /* ── Layout ── */
  --max-w:      1320px;
  --nav-h:      58px;
  --announce-h: 36px;

  /* ── Motion ── */
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:        0.3s;
  --t-fast:   0.18s;
  --t-slow:   0.65s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--ivory);
  color: var(--black);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

a  { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 2px; height: 2px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--stone-light); }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
/* ── 띠배너 (중앙 고정 flip 전환) ── */
.announce-bar {
  width: 100%;
  height: var(--announce-h);
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 110;
  transform: translateY(0);
  transition: transform 0.36s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  cursor: default;
}
.announce-bar.hide {
  transform: translateY(-100%);
}

/* 슬롯 — 한 줄만 보이도록 클리핑 */
.announce-track-wrap {
  position: relative;
  width: 100%;
  height: var(--announce-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 개별 텍스트 아이템 */
.announce-item {
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Jost', 'Noto Sans KR', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8e4de;
  opacity: 0;
  transform: translateY(100%);
  transition: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
  box-sizing: border-box;
}

/* 모바일: 글자 크기·자간 줄이기 */
@media (max-width: 480px) {
  .announce-item {
    font-size: 9px;
    letter-spacing: 0.06em;
    padding: 0 8px;
  }
}
.announce-item.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.announce-item.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.55,0,0.45,1);
}

/* 마퀴 관련 구버전 클래스 (혹시 남아있을 경우 숨김) */
.announce-track { display: none; }
.announce-seg   { display: none; }
.announce-sep   { display: none; }

/* =============================================
   NAVIGATION — 3-column layout (logo | menu | utils)
   index.html: hero 사진 위에 absolute 오버레이
   other pages: 일반 sticky 상단 고정
   ============================================= */

/* ── 기본(다른 페이지): sticky 흰 배경 ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(23,20,18,0.08);
  transition: background 0.4s ease,
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 24px rgba(23,20,18,0.06);
}

/* ── hero-header: fixed로 항상 상단 고정 ── */
.hero > .site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  z-index: 200;
}
/* 공지바가 숨으면 헤더도 위로 올라옴 */
.announce-bar.hide ~ * .site-header,
body.announce-hidden .hero > .site-header {
  top: 0;
}
/* 스크롤 시 흰 배경으로 전환 */
.hero > .site-header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(23,20,18,0.08);
  box-shadow: 0 1px 24px rgba(23,20,18,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* hero 위 헤더일 때 모든 텍스트/아이콘 흰색 (로고 제외) */
.hero > .site-header .nav-link,
.hero > .site-header .nav-util-link,
.hero > .site-header .nav-util-btn,
.hero > .site-header .user-nickname-btn,
.hero > .site-header .user-logout-btn,
.hero > .site-header .user-sep,
.hero > .site-header .hamburger-btn span {
  color: #fff;
  transition: color 0.4s ease;
}
.hero > .site-header .nav-icon-btn svg {
  stroke: #fff;
  transition: stroke 0.4s ease;
}
.hero > .site-header .hamburger-btn span {
  background: #fff;
}
/* SS26 강조는 핑크 유지 */
.hero > .site-header .nav-link--accent {
  color: #f0c0c0;
}
/* 스크롤 후 원래 색으로 복귀 */
.hero > .site-header.scrolled .nav-link,
.hero > .site-header.scrolled .nav-util-link,
.hero > .site-header.scrolled .nav-util-btn,
.hero > .site-header.scrolled .user-nickname-btn,
.hero > .site-header.scrolled .user-logout-btn,
.hero > .site-header.scrolled .user-sep,
.hero > .site-header.scrolled .hamburger-btn span {
  color: var(--black);
}
.hero > .site-header.scrolled .nav-icon-btn svg {
  stroke: var(--black);
}
.hero > .site-header.scrolled .hamburger-btn span {
  background: var(--black);
}
.hero > .site-header.scrolled .nav-link--accent {
  color: var(--rose-dark);
}

/* ── nav wrapper: 3-col flex ── */
.nav-wrap {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 0;
}

/* ── 좌측: 로고 ── */
.nav-logo {
  flex-shrink: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  text-indent: 0;
  color: var(--black);
  white-space: nowrap;
  margin-right: auto;
  line-height: 1;
}
.nav-logo a {
  color: var(--black) !important;
  text-decoration: none;
}

/* ── 중앙: 메인 메뉴 링크 ── */
.nav-center-links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: opacity var(--t-fast);
}
.nav-link:hover { opacity: 0.5; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.22s var(--ease);
}
.nav-link:hover::after { width: 100%; }

/* SS26 — rose 강조 */
.nav-link--accent {
  color: var(--rose-dark);
}
.nav-link--accent::after { background: var(--rose-dark); }

/* ── 우측: 유틸리티 ── */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;  /* 오른쪽 끝으로 */
}

/* 검색 아이콘 버튼 */
.nav-icon-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: opacity var(--t-fast);
  flex-shrink: 0;
}
.nav-icon-btn:hover { opacity: 0.45; }
.nav-icon-btn svg {
  width: 15px; height: 15px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.4;
}

/* 텍스트 유틸 링크 (LOGIN · BAG · KR) */
.nav-util-link {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: opacity var(--t-fast);
  position: relative;
}
.nav-util-link:hover { opacity: 0.45; }
.nav-util-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 장바구니 카운트 뱃지 */
.cart-badge {
  position: relative;
  top: auto; right: auto;
  display: none;
  width: 14px; height: 14px;
  background: var(--rose);
  color: #fff;
  font-size: 7px;
  font-weight: 500;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  line-height: 1;
  flex-shrink: 0;
}
.cart-badge.show { display: flex; }

/* ── 모바일 햄버거 (≤900px만 표시) ── */
.hamburger-btn {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 18px; height: 1px;
  background: var(--black);
  transition: transform var(--t-fast), opacity var(--t-fast), width var(--t-fast);
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── 반응형 ── */
/* 900px 이하: 중앙 메뉴 숨기고 햄버거 표시 */
@media (max-width: 900px) {
  .nav-center-links { display: none; }
  .hamburger-btn { display: flex; order: -1; margin-right: 12px; }
  .nav-util-link:not(.nav-util-btn):not(.nav-login-btn) { display: none; } /* KR만 숨김, LOGIN은 유지 */
  .nav-wrap { padding: 0 16px; }
  .nav-logo { font-size: 20px; }
  /* 로그인 후 닉네임·로그아웃 폰트 축소 */
  .user-nickname-btn { font-size: 10px; max-width: 60px; }
  .user-logout-btn { font-size: 10px; }
}
/* 1100px 이하: 메뉴 간격 줄이기 */
@media (max-width: 1100px) and (min-width: 901px) {
  .nav-center-links { gap: 20px; }
  .nav-right-group { gap: 14px; }
  .nav-wrap { padding: 0 20px; }
}

/* =============================================
   SHOP DROPDOWN
   ============================================= */

/* 트리거 래퍼 — position 기준점 */
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* 드롭다운 패널 */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  padding-top: 8px;
}

/* 호버 시 표시 */
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* SHOP 드롭다운 — left 고정, 트리거 기준 자연 정렬 */
#shopDropdown .nav-dropdown {
  left: -12px;
  transform: translateY(-4px);
}
#shopDropdown:hover .nav-dropdown {
  transform: translateY(0);
}

/* hero 위 흰 텍스트 상태에서도 드롭다운은 흰 배경 */
.nav-dropdown-inner {
  background: #fff;
  border: 1px solid rgba(23,20,18,0.08);
  box-shadow: 0 8px 32px rgba(23,20,18,0.1);
  padding: 18px 24px 20px;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 투명 배경 드롭다운 (SHOP, COMMUNITY 등) */
.nav-dropdown-inner--transparent {
  background: rgba(240,238,235,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: none;
  box-shadow: none;
}

/* 드롭다운 타이틀 */
.nav-dropdown-head {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  display: block;
}

/* 각 링크 항목 */
.nav-dd-link {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--black);
  padding: 5px 0;
  display: block;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.nav-dd-link:hover { opacity: 0.45; }

/* 26SS — 레드 강조 */
.nav-dd-link--accent {
  color: #c0392b;
  font-weight: 400;
}
.nav-dd-link--accent:hover { opacity: 0.7; }

/* FLASH SALE — 볼드 대문자 */
.nav-dd-link--sale {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(23,20,18,0.07);
}

/* hero 위 흰 텍스트 상태에서 SHOP 트리거도 흰색으로 */
.hero > .site-header .nav-dropdown-trigger {
  color: #fff;
  transition: color 0.4s ease;
}
.hero > .site-header.scrolled .nav-dropdown-trigger {
  color: var(--black);
}

/* COMMUNITY 드롭다운 — 투명 배경 */
.nav-dropdown-inner--transparent {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 14px 20px 16px;
  min-width: 120px;
}

/* 기본(일반 페이지 흰 헤더) → 검정 텍스트 */
.nav-dropdown-inner--transparent .nav-dropdown-head,
.nav-dropdown-inner--transparent .nav-dd-link {
  color: var(--black);
  transition: opacity 0.15s, color 0.3s;
}
.nav-dropdown-inner--transparent .nav-dd-link:hover {
  opacity: 0.45;
}

/* hero 위(투명 헤더, not scrolled) → 흰 텍스트 */
.hero > .site-header:not(.scrolled) .nav-dropdown-inner--transparent .nav-dropdown-head,
.hero > .site-header:not(.scrolled) .nav-dropdown-inner--transparent .nav-dd-link {
  color: #fff;
}

/* =============================================
   SIDE DRAWER — notyourrose style
   ============================================= */
.drawer-overlay {
  position: fixed; inset: 0;
  background: #e8e8e8;
  z-index: 490;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.side-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 78%;
  max-width: 380px;
  background: #ffffff;
  z-index: 500;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.drawer-overlay.open .side-drawer { transform: translateX(0); }

/* ── 드로어 상단바: X | 로고(중앙) | BAG ── */
.drawer-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 52px;
  flex-shrink: 0;
}
.drawer-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  color: #111;
}
.drawer-close svg {
  width: 16px; height: 16px;
  stroke: #111; stroke-width: 1.5;
}
.drawer-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: #111;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.drawer-bag-btn {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  color: #111;
  text-decoration: none;
  flex-shrink: 0;
}
.drawer-bag-btn svg {
  width: 15px; height: 15px;
  stroke: #111; stroke-width: 1.4; fill: none;
}
.drawer-bag-btn span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #111;
}

/* ── 메인 내비 ── */
.drawer-nav {
  padding: 12px 0 0;
  flex: 1;
}
.drawer-nav-item {
  display: block;
  padding: 7px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  color: #111;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.4;
  transition: opacity 0.15s;
}
.drawer-nav-item:hover { opacity: 0.5; }

/* 신상품 강조 (빨간색) */
.drawer-nav-item.drawer-nav-accent {
  color: #e00000;
}
.drawer-nav-item.drawer-nav-accent:hover { opacity: 0.7; }

/* ── 드로어 하단 영역 ── */
.drawer-bottom {
  padding: 24px 22px 36px;
}
.drawer-bottom-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}
.drawer-bottom-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #111;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 2.2;
  transition: opacity 0.15s;
}
.drawer-bottom-links a:hover { opacity: 0.5; }

/* 언어 선택 */
.drawer-lang {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #111;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 0;
}
.drawer-lang a {
  color: #111;
  text-decoration: none;
  transition: opacity 0.15s;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.drawer-lang a:hover { opacity: 0.5; }
.drawer-lang-sep {
  margin: 0 6px;
  color: #bbb;
  font-size: 11px;
}

/* SNS 아이콘 */
.drawer-sns {
  display: flex; align-items: center; gap: 10px;
  margin-top: 2px;
}
.drawer-sns a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  color: #111;
  transition: opacity 0.15s;
}
.drawer-sns a:hover { opacity: 0.5; }
.drawer-sns svg {
  width: 22px; height: 22px;
  stroke: #111; stroke-width: 1.4; fill: none;
}

/* 구분선 (사용 안 함 — notyourrose에 없음) */
.drawer-divider { display: none; }
/* 기존 footer 클래스 하위 호환 */
.drawer-footer { display: none; }

/* =============================================
   HERO — Full screen, 2-panel split
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 520px;
  max-height: 1080px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* hero 내 헤더는 absolute이므로 grid row에서 제외 */
  grid-template-rows: 1fr;
  gap: 0;
}
/* hero 안의 헤더는 absolute — grid 흐름에서 빠져나옴 */
.hero > .site-header {
  grid-column: 1 / -1;
}

/* ── 인디케이터 도트 (기본 숨김) ── */
.hero-dots {
  display: none;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* 모바일: 히어로 슬라이드 */
@media (max-width: 768px) {
  .hero {
    display: block;        /* grid 해제 → position:absolute 기준점 */
    position: relative;
    height: 100svh;
    min-height: 480px;
    overflow: hidden;
  }

  /* 두 패널 모두 절대 위치로 전체 화면 덮기 */
  .hero-panel-left,
  .hero-panel-right {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  /* 활성 패널만 보임 */
  .hero-panel-left.hero-active,
  .hero-panel-right.hero-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* 도트 표시 */
  .hero-dots {
    display: flex;
  }
}

/* ── 좌측 패널 ── */
.hero-panel-left {
  position: relative;
  overflow: hidden;
  background: var(--ivory-2);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
/* ── 우측 패널 ── */
.hero-panel-right {
  position: relative;
  overflow: hidden;
  background: var(--ivory-3);
  cursor: pointer;
  display: block;
  text-decoration: none;
}

/* 실제 이미지 */
.hero-panel-left img,
.hero-panel-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease);
  display: block;
}


/* 좌측 패널 이미지 - 어둡게 */
.hero-panel-left::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(23,20,18,0.38) 0%,
    rgba(23,20,18,0.06) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* 우측 패널 오버레이 - 텍스트 가독성 */
.hero-panel-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(23,20,18,0.58) 0%,
    rgba(23,20,18,0.18) 45%,
    transparent 72%
  );
  z-index: 1;
  pointer-events: none;
}

/* 이미지 없을 때 폴백 플레이스홀더 */
.hero-panel-left .hero-placeholder,
.hero-panel-right .hero-placeholder {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.hero-panel-left .hero-placeholder {
  background: linear-gradient(155deg, var(--ivory) 0%, var(--ivory-3) 60%, var(--stone-light) 100%);
}
.hero-panel-right .hero-placeholder {
  background: linear-gradient(155deg, var(--ivory-3) 0%, var(--stone-light) 55%, var(--stone) 100%);
}

/* 사이 구분선 (1px) - 사진 위 밝은 선 */
.hero-panel-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: rgba(248,245,240,0.2);
  z-index: 4;
}

/* 텍스트는 우측 패널 하단에 배치 — 실제 사진 위 */
.hero-text {
  position: absolute;
  bottom: 36px; right: 20px;
  text-align: right;
  color: var(--ivory);
  z-index: 5;
}
.hero-text .season-label {
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(248,245,240,0.75);
}
.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 9vw, 96px);
  font-weight: 300; font-style: italic;
  line-height: 0.88;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(23,20,18,0.3);
}
/* Kitsch: rose tint on first word */
.hero-text h1 .kitsch { color: var(--rose-light); }

/* 좌측 패널 하단 레이블 — 사진 위 */
.hero-panel-left .hero-label {
  position: absolute;
  bottom: 36px; left: 20px;
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(248,245,240,0.68);
  z-index: 5;
}

/* Hero CTA 버튼 강화 */
.hero-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9.5px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid rgba(248,245,240,0.55);
  padding-bottom: 4px;
  transition: border-color var(--t-fast), color var(--t-fast), letter-spacing var(--t-fast);
}
.hero-btn:hover {
  border-color: var(--rose-light);
  color: var(--rose-light);
  letter-spacing: 0.36em;
}

/* 데스크탑: 텍스트 위치 조정 */
@media (min-width: 768px) {
  .hero-text { bottom: 56px; right: 44px; }
  .hero-panel-left .hero-label { bottom: 56px; left: 44px; }
}
@media (min-width: 1024px) {
  .hero-text { bottom: 72px; right: 64px; }
  .hero-panel-left .hero-label { bottom: 72px; left: 64px; }
}

/* =============================================
   CATEGORY TABS
   ============================================= */
.category-tabs-wrap {
  border-bottom: 1px solid var(--ivory-3);
  background: var(--ivory);
  position: sticky; top: var(--nav-h);
  z-index: 90;
}
.category-tabs {
  display: flex; overflow-x: auto;
  padding: 0 16px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
  flex-shrink: 0;
  display: flex; align-items: center;
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 10.5px; font-weight: 300;
  color: var(--stone-mid);
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.category-tab:hover { color: var(--black); }
/* Kitsch: rose underline on active tab */
.category-tab.active {
  color: var(--black);
  border-bottom-color: var(--rose);
  font-weight: 400;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  padding: 52px 20px 24px;
}
/* Kitsch: section title with large italic serif */
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 300; font-style: italic;
  color: var(--black);
  letter-spacing: -0.015em;
  line-height: 1;
}
.section-more {
  font-family: var(--sans);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-mid);
  border-bottom: 1px solid var(--stone-light);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.section-more:hover { color: var(--black); border-color: var(--black); }

/* =============================================
   PRODUCT GRID — 2col mobile / 4col desktop
   ============================================= */
.product-grid-section { padding: 0 12px 56px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 10px;
}

/* PRODUCT CARD */
.product-card { cursor: pointer; }
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ivory-2);
  margin-bottom: 13px;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-card-img .img-placeholder {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  background: var(--ivory-2);
}

/* ── 피팅 이미지 (hover시 나타남) ── */
.product-card-img .img-alt {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.42s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: opacity, transform;
}

/* hover: 기본 이미지 살짝 zoom + 흐려짐, 피팅 이미지 선명하게 */
.product-card:hover .product-card-img img:first-child {
  transform: scale(1.04);
  opacity: 0;
}
.product-card:hover .img-alt {
  opacity: 1;
  transform: scale(1);
}

/* Badges */
.badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--sans);
  font-size: 7.5px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 8px;
  z-index: 1;
}
.badge-new { background: var(--black); color: var(--ivory); }
/* Kitsch: rose badge for sale/best */
.badge-sale {
  background: var(--rose-light);
  color: var(--rose-dark);
  border: 1px solid rgba(200,160,168,0.5);
}

/* Quick add */
.quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(248,245,240,0.97);
  padding: 10px 12px;
  transform: translateY(100%);
  transition: transform var(--t-fast) var(--ease);
  text-align: center;
  border-top: 1px solid var(--ivory-3);
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add button {
  width: 100%;
  font-family: var(--sans);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black);
  padding: 9px;
  border: 1px solid var(--black);
  transition: background var(--t-fast), color var(--t-fast);
}
.quick-add button:hover { background: var(--black); color: var(--ivory); }

/* Product info */
.product-info { padding: 0 2px; }
.product-sub {
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  color: var(--stone-mid);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 5px;
}
/* Upscale: italic serif product name */
.product-name {
  font-family: var(--serif);
  font-size: 14.5px; font-weight: 400; font-style: italic;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  transition: opacity var(--t-fast);
}
.product-card:hover .product-name { opacity: 0.55; }
.product-price {
  font-family: var(--serif);
  font-size: 13.5px; font-weight: 300;
  color: var(--black);
  letter-spacing: 0.02em;
}
.product-price .orig {
  color: var(--stone);
  text-decoration: line-through;
  font-size: 12px;
  margin-right: 5px;
}
/* Kitsch: rose sale price */
.product-price .sale { color: var(--rose-dark); }

/* Color swatches */
.color-swatches { display: flex; gap: 5px; margin-top: 9px; }
.swatch {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(23,20,18,0.12);
  cursor: pointer;
  transition: transform 0.2s;
}
.swatch:hover { transform: scale(1.5); }

/* =============================================
   PRODUCT SLIDER (homepage sections)
   ============================================= */
.product-slider-wrap {
  position: relative;
  padding: 0 0 52px;
}
.product-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px 2px;
  cursor: grab;
}
.product-slider:active { cursor: grabbing; }
.product-slider::-webkit-scrollbar { display: none; }
.product-slider .product-card {
  flex: 0 0 calc(50% - 14px);
  scroll-snap-align: start;
  min-width: 0;
}

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}
.slider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--stone-light);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none; padding: 0;
}
/* Kitsch: rose active dot */
.slider-dot.active {
  background: var(--rose);
  transform: scale(1.5);
}

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider {
  height: 1px;
  background: var(--ivory-3);
  margin: 0 20px;
}

/* =============================================
   BEST SECTION — 히어로 바로 아래, 참고 이미지 스타일
   ============================================= */
/* =============================================
   BEST SELLERS
   ============================================= */
.best-section {
  background: #fff;
  padding: 72px 0 80px;
}

/* 헤더 */
.best-section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding: 0 24px;
}
.best-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--black);
}
.best-more {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-mid);
  border-bottom: 1px solid var(--stone-light);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.best-more:hover { color: var(--black); border-color: var(--black); }

/* 래퍼 */
.best-slider-wrap { position: relative; }
.best-arrow { display: none; }
.best-slider-viewport { overflow: visible; cursor: default; }

/* 그리드 — 카드 사이 간격 있음, 테두리 없음 */
.best-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 40px;
  user-select: none;
}

/* 카드 */
.best-card {
  flex: none;
  min-width: 0;
  cursor: pointer;
  background: #fff;
  box-sizing: border-box;
  border: none;
  text-decoration: none;
  color: inherit;
  display: block;
}

/* 이미지 영역 — 내부 여백으로 상품이 떠 있는 느낌 */
.best-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #fff;
  position: relative;
  padding: 16px 12px 8px;
  box-sizing: border-box;
}
.best-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* 호버 두 번째 이미지 */
.best-card-img .img-alt {
  position: absolute;
  inset: 16px 12px 8px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.38s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: opacity, transform;
}
.best-card:hover .best-card-img img:first-child {
  opacity: 0;
  transform: scale(1.03);
}
.best-card:hover .best-card-img .img-alt {
  opacity: 1;
  transform: scale(1);
}

/* 하단 아이콘 행 — 이미지와 텍스트 사이 */
.best-card-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 4px 4px;
  gap: 8px;
}
.best-card-actions {
  display: flex;
  gap: 10px;
}
.best-icon-btn {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.45;
  transition: opacity 0.18s;
}
.best-icon-btn:hover { opacity: 1; }
.best-icon-btn svg { width: 15px; height: 15px; }

/* 상품명 / 가격 텍스트 */
.best-card-info {
  text-align: center;
  padding: 4px 4px 0;
}
.best-card-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.best-card-price {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--stone-mid);
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.best-orig {
  text-decoration: line-through;
  color: var(--stone);
  font-size: 10px;
}
.best-sale { color: var(--black); font-size: 11px; }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .best-slider { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 20px; }
  .best-section { padding-top: 56px; }
}
@media (max-width: 480px) {
  .best-section { padding-top: 40px; }
  .best-slider { gap: 8px; padding: 0 16px; }
}

/* =============================================
   SS26 COLLECTION EDITORIAL
   ============================================= */
.ss26-editorial {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 120px 80px 120px 140px;
  min-height: 780px;
  overflow: hidden;
}

/* 좌측 텍스트 */
.ss26-text {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 60px;
}
.ss26-season {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-mid);
  margin-bottom: 18px;
}
.ss26-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 28px;
}
.ss26-desc {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 2.2;
  color: rgba(23,20,18,0.42);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
}
.ss26-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.ss26-cta:hover { opacity: 0.45; }

/* 우측 이미지 */
.ss26-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 500px;
}
.ss26-img-wrap {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #e8e6e3;
  position: relative;
}
.ss26-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
}
.ss26-image:hover .ss26-img-wrap img { transform: scale(1.03); }
.ss26-with {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone-mid);
  text-align: center;
  margin-top: 4px;
}

/* 모바일 */
@media (max-width: 768px) {
  .ss26-editorial {
    flex-direction: column;
    padding: 56px 24px 48px;
    gap: 40px;
    min-height: auto;
  }
  .ss26-text {
    flex: none;
    width: 100%;
    padding-right: 0;
    text-align: center;
    align-items: center;
  }
  .ss26-image {
    max-width: 100%;
    width: 100%;
  }
  .ss26-img-wrap {
    max-width: 260px;
  }
  .ss26-cta { align-self: center; }
}

/* =============================================
   LOOKBOOK GRID
   ============================================= */
.lookbook-section { padding: 0 12px 56px; }
.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
  background: var(--ivory-2);
  cursor: pointer;
}
.lookbook-item.tall { aspect-ratio: 3/4; }
.lookbook-item.sq   { aspect-ratio: 1/1; }
.lookbook-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform var(--t-slow) var(--ease);
  display: block;
}
.lookbook-placeholder { width: 100%; height: 100%; transition: transform var(--t-slow) var(--ease); }
.lookbook-item:hover .lookbook-placeholder { transform: scale(1.04); }
.lookbook-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
}
/* Kitsch: serif italic caption with subtle rose */
.lookbook-caption h3 {
  font-family: var(--serif);
  font-size: 15px; font-weight: 300; font-style: italic;
  color: var(--ivory);
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
  letter-spacing: 0.04em;
}
.lookbook-caption h3 em {
  font-style: normal;
  color: var(--rose-light);
}

/* =============================================
   세계 최고 디자이너 개선 10가지 추가 CSS
   ============================================= */

/* 1. 인스타 시선유도 톤 오버레이 */
.insta-item {
  position: relative;
  overflow: hidden;
}
.insta-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(23,20,18,0);
  transition: background var(--t) var(--ease);
  pointer-events: none;
  z-index: 1;
}
.insta-item:hover::after {
  background: rgba(23,20,18,0.18);
}

/* 2. 제품 카드 호버 이름 연브레이 제거 (텔츠 기기 UX) */
@media (hover: none) {
  .product-card:hover .quick-add { transform: translateY(100%); }
  .product-card:hover .product-name { opacity: 1; }
}

/* 3. 성능 - 히어로 이미지 GPU 레이어 */
.hero-panel-left img,
.hero-panel-right img,
.lookbook-item > img,
.product-card-img > img {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* 4. 보더 선 일관성 - 주요 컨테이너 최대 */
.pdp-layout, .cart-page, .footer-grid {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

/* 5. 카테고리 탭 스크롤 힌트 */
.category-tabs-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(to right, transparent, var(--ivory));
  pointer-events: none;
}
.category-tabs-wrap { position: sticky; top: var(--nav-h); z-index: 90; }

/* 6. 뉴스레터 섹션 배경 - 반전 배상 */
.newsletter-section {
  background: transparent;
}
section:has(.newsletter-section) {
  background: var(--ivory-3);
  border-top: 1px solid var(--ivory-2);
}

/* 7. 푸터 소셜 아이콘 스타일링 */
.footer-social a {
  position: relative;
  padding-bottom: 1px;
}
.footer-social a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--ivory);
  transition: width var(--t-fast);
}
.footer-social a:hover::after { width: 100%; }

/* 8. 스크롤하면 헤더 배경 교체 */
.site-header {
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: box-shadow var(--t) var(--ease), backdrop-filter var(--t) var(--ease);
}
.site-header.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(248,245,240,0.94);
}

/* =============================================
   INSTAGRAM / COMMUNITY GRID
   ============================================= */
.insta-section {
  background: var(--ivory-2);
  padding: 52px 0 56px;
}
.insta-section .section-header {
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding-bottom: 4px;
}
.insta-handle {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--stone-mid);
  margin-bottom: 28px;
  text-align: center;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
@media (min-width: 600px) {
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
}
.insta-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img, .insta-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.insta-item:hover img,
.insta-item:hover .insta-placeholder {
  transform: scale(1.07);
  opacity: 0.82;
}

/* =============================================
   COMMUNITY (홈 섹션 — FAQ 아코디언)
   ============================================= */
.community-section {
  background: #fff;
  padding: 80px 0 88px;
}
.community-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .community-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
}

/* 왼쪽 타이틀 */
.community-left {
  position: sticky;
  top: 100px;
}
.community-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-mid);
  margin-bottom: 12px;
}
.community-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}
.community-sub {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.8;
  color: var(--stone-mid);
  margin-bottom: 28px;
}
.community-contact-btn {
  display: inline-block;
  border: 1px solid #1a1a1a;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.community-contact-btn:hover {
  background: #1a1a1a;
  color: #fff;
}
@media (max-width: 900px) {
  .community-left { position: static; }
}

/* FAQ 그룹 */
.community-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-group {
  border-top: 1px solid #e8e8e8;
  padding: 28px 0 4px;
}
.faq-group:last-of-type {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 28px;
}
.faq-group-title {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone-mid);
  margin-bottom: 16px;
}

/* FAQ 아이템 */
.faq-item {
  border-bottom: 1px solid #f0f0f0;
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 16px 0;
  cursor: pointer;
  text-align: left;
}
.faq-q span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-q:hover span { color: var(--stone-mid); }

.faq-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #999;
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: #1a1a1a;
}
.faq-item.is-open .faq-q span { color: #1a1a1a; }

.faq-a {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.85;
  color: #666;
  padding: 0 24px 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding-bottom 0.38s ease;
}
.faq-item.is-open .faq-a {
  max-height: 200px;
  padding-bottom: 16px;
}

.faq-more-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--stone-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--stone-light);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.faq-more-link:hover { color: #1a1a1a; border-color: #1a1a1a; }

/* =============================================
   WITH ASSO (홈 섹션)
   ============================================= */
.with-asso-section {
  padding: 72px 0 0;
  background: #fff;
}
.with-asso-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 40px 28px;
}
.with-asso-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.with-asso-more {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--stone-mid);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.with-asso-more:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.with-asso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.with-asso-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}
.with-asso-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.with-asso-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}
.with-asso-item:hover img {
  transform: scale(1.05);
}
.with-asso-item:hover .with-asso-overlay {
  background: rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
  .with-asso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .with-asso-header {
    padding: 0 20px 20px;
  }
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  padding: 80px 24px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
/* Kitsch: rose eyebrow label */
.newsletter-section .eyebrow {
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.newsletter-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 6.5vw, 56px);
  font-weight: 300; font-style: italic;
  color: var(--black);
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.newsletter-section p {
  font-family: var(--sans);
  font-size: 11px; font-weight: 300;
  color: var(--stone-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
.newsletter-form {
  display: flex;
  border: 1px solid rgba(23,20,18,0.15);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 15px 14px;
  background: none; border: none;
  font-family: var(--sans);
  font-size: 11px; font-weight: 300;
  color: var(--black);
  outline: none; min-width: 0;
}
.newsletter-form input::placeholder {
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.newsletter-form button {
  padding: 15px 22px;
  background: var(--black); color: var(--ivory);
  font-family: var(--sans);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  transition: background var(--t-fast);
}
/* Kitsch: hover turns rose-dark */
.newsletter-form button:hover { background: var(--rose-dark); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #fff;
  border-top: 1px solid rgba(23,20,18,0.08);
  padding: 32px 28px 28px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 860px;
}

/* 법적 링크 */
.footer-legal-links {
  display: flex;
  gap: 20px;
  margin-bottom: 2px;
}
.footer-legal-links a {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
  transition: opacity 0.18s;
}
.footer-legal-links a:hover { opacity: 0.45; }

/* 사업자 정보 */
.footer-biz {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-biz p {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  color: rgba(23,20,18,0.52);
  letter-spacing: 0.03em;
  line-height: 1.7;
}

/* 소셜 아이콘 */
.footer-icons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.footer-icon-btn {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  opacity: 0.55;
  transition: opacity 0.18s;
}
.footer-icon-btn:hover { opacity: 1; }
.footer-icon-btn svg { width: 18px; height: 18px; }

/* =============================================
   CART DRAWER
   ============================================= */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(23,20,18,0.44);
  z-index: 400;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--ivory);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t) var(--ease);
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--ivory-3);
}
.cart-head h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--black);
  letter-spacing: 0.05em;
}
.cart-head-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--stone-mid);
  transition: color var(--t-fast);
}
.cart-head-close:hover { color: var(--black); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-body::-webkit-scrollbar { width: 0; }
.cart-empty-state {
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; text-align: center;
}
.cart-empty-state p {
  font-family: var(--serif);
  font-size: 18px; font-style: italic; font-weight: 300;
  color: var(--stone-mid);
}
.cart-empty-state span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone);
}
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px; padding: 14px 0;
  border-bottom: 1px solid rgba(23,20,18,0.05);
  align-items: start;
}
.cart-line-img {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--ivory-2);
}
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cart-line-info h4 {
  font-family: var(--serif);
  font-size: 13px; font-weight: 400; font-style: italic;
  color: var(--black);
  line-height: 1.35; margin-bottom: 3px;
}
.cart-line-info .variant {
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-ctrl button {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 200;
  color: var(--stone-mid);
  border: 1px solid var(--stone-light);
  transition: all var(--t-fast);
}
.qty-ctrl button:hover { background: var(--black); color: var(--ivory); border-color: var(--black); }
.qty-ctrl span {
  font-family: var(--sans);
  font-size: 12px; font-weight: 300;
  color: var(--black);
  min-width: 16px; text-align: center;
}
.cart-line-price {
  font-family: var(--serif);
  font-size: 13px; font-weight: 300;
  color: var(--black);
  text-align: right; padding-top: 2px;
}
.cart-remove-btn {
  display: block;
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  color: var(--stone);
  cursor: pointer; letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 6px;
  background: none; border: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--stone-light);
  transition: color var(--t-fast);
}
.cart-remove-btn:hover { color: var(--black); }
.cart-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--ivory-3);
}
.cart-subtotal-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.cart-subtotal-row span:first-child {
  font-family: var(--sans);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-mid);
}
.cart-subtotal-row span:last-child {
  font-family: var(--serif);
  font-size: 18px; font-weight: 300;
  color: var(--black);
}
.checkout-link {
  display: block; width: 100%; padding: 15px;
  background: var(--black); color: var(--ivory);
  font-family: var(--sans);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase; text-align: center;
  transition: background var(--t-fast);
  margin-bottom: 10px;
}
.checkout-link:hover { background: var(--rose-dark); }
.cart-continue-btn {
  display: block; width: 100%; text-align: center;
  font-family: var(--sans);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone);
  background: none; border: none; padding: 6px;
  transition: color var(--t-fast);
}
.cart-continue-btn:hover { color: var(--black); }

/* =============================================
   TOAST
   ============================================= */
.toast-msg {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--black); color: var(--ivory);
  font-family: var(--sans);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 12px 30px;
  z-index: 9999; opacity: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
  pointer-events: none; white-space: nowrap;
}
.toast-msg.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =============================================
   SCROLL FADE-UP
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Kitsch: rose divider bar */
.divider {
  width: 32px; height: 1px;
  background: var(--rose-light);
  margin: 24px auto;
}

/* =============================================
   IMAGE PLACEHOLDERS
   ============================================= */
/* ── 제품카드 실사진 ── */
.product-card-img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease);
  display: block;
}
.product-card:hover .product-card-img > img { transform: scale(1.05); }

/* Kitsch: subtle grain texture on placeholders */
.img-placeholder {
  width: 100%; height: 100%;
  background: var(--ivory-2);
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 32px,
      rgba(184,169,154,0.055) 32px,
      rgba(184,169,154,0.055) 33px
    );
}
/* Kitsch: tiny rose dot watermark in center */
.img-placeholder::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: rgba(200,160,168,0.28);
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(155deg, var(--ivory) 0%, var(--ivory-3) 50%, var(--stone-light) 100%);
  position: absolute; inset: 0;
}
.hero-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent, transparent 28px,
      rgba(184,169,154,0.065) 28px, rgba(184,169,154,0.065) 29px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 28px,
      rgba(184,169,154,0.065) 28px, rgba(184,169,154,0.065) 29px
    );
}

.editorial-placeholder {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--ivory-3) 0%, var(--ivory-2) 55%, var(--stone-light) 100%);
}
.lookbook-placeholder { width: 100%; height: 100%; }
.insta-placeholder    { width: 100%; height: 100%; }

/* ── 룩북 실사진 ── */
.lookbook-item > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease);
  display: block;
}
.lookbook-item:hover > img { transform: scale(1.05); }
.lookbook-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(23,20,18,0.52) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 1;
}
.lookbook-caption { z-index: 2; }

/* ── 인스타 실사진 ── */
.insta-item > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t) var(--ease), opacity var(--t);
  display: block;
}
.insta-item:hover > img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* =============================================
   SHOP PAGE — sort bar, count, grid toggle
   ============================================= */
.shop-page-header {
  padding: 40px 20px 12px;
  border-bottom: 1px solid var(--ivory-3);
}
.shop-page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300; font-style: italic;
  color: var(--black);
  letter-spacing: -0.01em;
}
.shop-page-count {
  font-family: var(--sans);
  font-size: 10px; font-weight: 300;
  color: var(--stone-mid);
  letter-spacing: 0.14em;
  margin-top: 6px;
}
.sort-bar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--ivory-3);
}
.sort-bar select {
  font-family: var(--sans);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black);
  background: none; border: none; outline: none;
  cursor: pointer;
}
.grid-toggle {
  display: flex; gap: 6px;
}
.grid-toggle button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ivory-3);
  color: var(--stone-mid);
  font-size: 12px;
  transition: all var(--t-fast);
}
.grid-toggle button.active {
  border-color: var(--black);
  color: var(--black);
  background: var(--black);
  color: var(--ivory);
}

/* Shop pagination */
.pagination {
  display: flex; justify-content: center;
  gap: 4px; padding: 40px 20px 60px;
}
.pagination button {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 11px; font-weight: 300;
  color: var(--stone-mid);
  border: 1px solid var(--ivory-3);
  transition: all var(--t-fast);
}
.pagination button.active {
  background: var(--black); color: var(--ivory);
  border-color: var(--black);
}
.pagination button:hover:not(.active) {
  border-color: var(--black); color: var(--black);
}
.no-results { display: none; }

/* =============================================
   PDP — Product Detail Page
   ============================================= */
.breadcrumb {
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 10px; font-weight: 300;
  color: var(--stone-mid);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--ivory-3);
}
.breadcrumb a { transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { color: var(--stone-light); margin: 0 6px; }

.pdp-layout {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pdp-name {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300; font-style: italic;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pdp-sku {
  font-family: var(--sans);
  font-size: 9.5px; font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.pdp-price {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  color: var(--black);
  margin-bottom: 24px;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-page {
  max-width: 1100px; margin: 0 auto;
  padding: 40px 20px 80px;
}
.cart-page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300; font-style: italic;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  position: relative;
  height: 72vh; min-height: 460px;
  overflow: hidden;
  background: var(--ivory-2);
}
.about-hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(155deg, var(--ivory) 0%, var(--ivory-3) 50%, var(--stone-light) 100%);
}
.about-hero-text {
  position: absolute; bottom: 40px; left: 24px;
  color: var(--black);
}
.about-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 76px);
  font-weight: 300; font-style: italic;
  line-height: 0.95; letter-spacing: -0.02em;
}
.about-hero-text p {
  font-family: var(--sans);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.5; margin-top: 12px;
}

/* =============================================
   DESKTOP OVERRIDES
   ============================================= */
@media (min-width: 768px) {
  :root { --nav-h: 62px; --announce-h: 36px; }

  .hero-text h1 { font-size: 88px; }

  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 32px 18px; }
  .product-grid-section { padding: 0 40px 72px; }
  .section-header { padding: 56px 40px 30px; }
  .lookbook-section { padding: 0 40px 72px; }
  .newsletter-section { padding: 96px 40px; }
  .site-footer { padding: 36px 48px 32px; }
  .section-divider { margin: 0 40px; }
  .category-tabs { padding: 0 40px; }
  .category-tab { padding: 17px 24px; font-size: 10.5px; }
  .product-slider { gap: 18px; padding: 0 40px 2px; }
  .product-slider .product-card { flex: 0 0 calc(25% - 14px); }

  .shop-page-header { padding: 48px 40px 14px; }
  .sort-bar { padding: 13px 40px; }
  .breadcrumb { padding: 14px 40px; }
  .about-hero-text { bottom: 60px; left: 60px; }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid-section { padding: 0 60px 88px; }
  .section-header { padding: 64px 60px 34px; }
  .lookbook-section { padding: 0 60px 88px; }
  .section-divider { margin: 0 60px; }
  .product-slider { padding: 0 60px 2px; }
  .product-slider .product-card { flex: 0 0 calc(25% - 14px); }

  .shop-page-header { padding: 56px 60px 16px; }
  .sort-bar { padding: 14px 60px; }
  .breadcrumb { padding: 16px 60px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
