/* BASIC css start */
@font-face { font-family: 'Pretendard'; src: url('fonts/Pretendard-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('fonts/Pretendard-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('fonts/Pretendard-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Pretendard'; src: url('fonts/Pretendard-Black.woff2') format('woff2'); font-weight: 900; font-display: swap; }

:root {
  --ink: #000;
  --paper: #fff;
  --rule: #eee;
  --rule-mid: #d4d4d4;
  --muted: #8a8a8a;
  --gutter: 56px;
  --max-w: 1480px;
  --headline: 72px;
  --density: clamp(72px, 9vw, 140px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Centered max-width containers   text/content sections live inside this width;
   banner & brands marquee remain full-bleed for visual rhythm. */
.header-row,
.category-bar,
.hero,
.section > .section-head,
.section > .bestsellers-track-wrap,
.section > .story,
.section > .why-grid,
.section > .faq,
.brands > .section-head,
.cta-black,
.footer-top,
.footer-bottom {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

html, body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02";
  letter-spacing: -0.01em;
}

/* Unify all serif italic accents to Pretendard */
.logo-mark,
.hero-title .accent,
.banner-num,
.banner-counter,
.section-num,
.section-title .accent,
.product-image::after,
.why-num,
.story-title .accent,
.story-photo-counter,
.brands-track .brand .num,
.faq-q .num,
.cta-black h2 .accent {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif !important;
  font-style: normal !important;
}
.hero-title .accent,
.section-title .accent,
.story-title .accent,
.cta-black h2 .accent {
  font-weight: 900 !important;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img { display: block; max-width: 100%; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  gap: 32px;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-img {
  height: 96px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo-text .ko {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.logo-text .en {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--muted);
}
.logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--muted);
  border-left: 1px solid var(--rule);
  padding-left: 14px;
  margin-left: 4px;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 14px;
}
.utility-box {
  display: flex;
  border: 1px solid var(--rule);
}
.utility-box a {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-right: 1px solid var(--rule);
  color: #333;
  transition: background 0.15s, color 0.15s;
}
.utility-box a:last-child { border-right: none; }
.utility-box a:hover { background: var(--ink); color: var(--paper); }
.wholesale-link {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
}
.wholesale-link::after { content: "¡æ"; font-size: 13px; }
.wholesale-link:hover { background: var(--ink); color: var(--paper); }

/* category bar */
.category-bar {
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--gutter);
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  position: relative;
  z-index: 50;
}
.category-bar > a,
.category-bar .cat-brands-wrap > a,
.category-bar .cat-wrap > a {
  padding: 16px 0;
  margin-right: 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #444;
  position: relative;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.category-bar a.cat-home {
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.category-bar a.cat-home::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--ink);
}
.category-bar a:hover { color: var(--ink); }

/* Brands dropdown */
.cat-brands-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.cat-wrap > a.brands,
.cat-brands-wrap > a.brands {
  font-weight: 500;
}
.cat-brands-wrap .caret,
.cat-wrap .caret {
  font-size: 16px;
  margin-left: 4px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.15s;
}
.cat-brands-wrap:hover .caret,
.cat-wrap:hover .caret { transform: rotate(180deg); }

.brands-dropdown {
  position: absolute;
  top: 100%;
  left: -24px;
  min-width: 720px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--ink);
  padding: 28px 32px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.12);
  z-index: 60;
}
.cat-brands-wrap:hover .brands-dropdown,
.cat-brands-wrap:focus-within .brands-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.bd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(7, auto);
  grid-auto-flow: column;
  gap: 0;
}
.bd-grid > a {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-areas:
    "num name"
    ".   ko";
  align-items: start;
  gap: 0 6px;
  padding: 12px 14px;
  margin: 0;
  font-size: 13px;
  border-radius: 0;
  transition: background 0.12s;
}
.bd-grid > a:hover { background: #f6f6f6; }
.bd-grid .bd-num {
  grid-area: num;
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-size: 11px;
  color: #999;
  font-weight: 400;
  padding-top: 2px;
}
.bd-grid .bd-name {
  grid-area: name;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: 14px;
  display: block;
  white-space: nowrap;
  line-height: 1.2;
}
.bd-grid .bd-ko {
  grid-area: ko;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 3px;
  white-space: nowrap;
  line-height: 1.2;
}
.bd-all {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 14px 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  color: var(--ink) !important;
  border-top: 1px solid var(--rule);
  margin-right: 0 !important;
}

/* ============ CATEGORY DROPDOWNS ============ */
.cat-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.cat-wrap > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px;
}
.cat-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--ink);
  padding: 14px 0 16px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 60;
}
.cat-wrap:hover .cat-dropdown,
.cat-wrap:focus-within .cat-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.cat-dropdown > a {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: baseline;
  gap: 6px;
  padding: 12px 14px !important;
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  letter-spacing: -0.005em;
  font-family: 'Pretendard', sans-serif !important;
  transition: background 0.12s;
  white-space: nowrap;
}
.cat-dropdown > a:hover { background: #f6f6f6; }
.cat-dropdown .cd-num {
  font-family: 'Pretendard', sans-serif;
  font-style: normal;
  font-size: 11px;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cat-dropdown .cd-en {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #999;
  margin-top: 3px;
  font-family: 'Pretendard', sans-serif;
}


/* BASIC css end */

