/* =============================================================
   Dilliart — site styles
   Built on the official design system (colors_and_type.css + UI kit).
   Single file, imported by every page.
   ============================================================= */

/* --- Fonts ---------------------------------------------------- */
@font-face {
  font-family: "Rethink Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/RethinkSans-Variable.ttf") format("truetype-variations"),
       url("fonts/RethinkSans-Variable.ttf") format("truetype");
}
@font-face {
  font-family: "Rethink Sans";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/RethinkSans-Italic-Variable.ttf") format("truetype-variations"),
       url("fonts/RethinkSans-Italic-Variable.ttf") format("truetype");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("fonts/Pretendard-Regular.ttf") format("truetype");
}
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");

/* =============================================================
   TOKENS
   ============================================================= */
:root {
  /* Surfaces */
  --da-paper:        rgb(242, 237, 227);  /* #F2EDE3 */
  --da-white:        rgb(255, 255, 255);

  /* Ink — one tone. Hierarchy = size/weight/alpha, never another black. */
  --da-ink:          rgb(0, 0, 0);

  /* Neutrals as opacity of ink */
  --da-rule:         rgb(0 0 0 / 0.08);
  --da-mute:         rgb(0 0 0 / 0.52);
  --da-placeholder:  rgb(0 0 0 / 0.32);

  /* Warm palette (editorial accents) */
  --da-wood:         rgb(86, 38, 24);     /* #562618 */
  --da-wood-2:       rgb(158, 83, 62);
  --da-tan:          rgb(197, 159, 121);
  --da-stone:        rgb(209, 195, 179);

  /* Semantic aliases */
  --fg-1:            var(--da-ink);
  --fg-muted:        var(--da-mute);
  --bg-page:         var(--da-paper);
  --bg-warm:         var(--da-wood);
  --border:          var(--da-rule);
  --border-strong:   var(--da-ink);

  /* Type */
  --font-display: "Rethink Sans", "Pretendard", system-ui, sans-serif;
  --font-body:    "DM Sans", "Pretendard", system-ui, sans-serif;
  --font-korean:  "Pretendard", "Rethink Sans", system-ui, sans-serif;
  --font-ui:      "Rethink Sans", "Pretendard", system-ui, sans-serif;

  --track-display: -0.04em;
  --track-ui:      -0.03em;
  --track-body:     0.03em;
  --track-korean:  -0.03em;

  /* Spacing */
  --s-1:  4px;  --s-2:  8px;  --s-3: 10px;  --s-4: 20px;
  --s-5: 28px;  --s-6: 40px;  --s-7: 60px;  --s-8: 80px;
  --gutter:       20px;
  --section-gap:  24px;
  --section-pad:  48px;

  --radius-1:  2px;
  --radius-2:  5px;

  --hairline: 1px solid var(--border);
  --hairline-strong: 1px solid var(--border-strong);

  --ease: cubic-bezier(.2, .6, .2, 1);
  --dur-1: 120ms;
  --dur-2: 220ms;
  --dur-3: 420ms;
}

/* =============================================================
   BASE
   ============================================================= */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-page);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: var(--track-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--da-ink); color: var(--da-paper); }

/* =============================================================
   SEMANTIC TYPE — .da-*
   ============================================================= */
.da-eyebrow {
  font-family: var(--font-body); font-weight: 300;
  font-size: 12px; line-height: 1; letter-spacing: var(--track-body);
}
/* Display headings — capped at .dk-title size (16px) for a quiet,
   minimal hierarchy. Keep the family/tracking; only the size changes. */
.da-display-l {
  font-family: var(--font-display); font-size: 16px;
  line-height: 1.2; letter-spacing: -0.03em; font-weight: 400;
}
.da-display-m {
  font-family: var(--font-display); font-size: 16px;
  line-height: 1.2; letter-spacing: -0.03em; font-weight: 400;
}
.da-h1 {
  font-family: var(--font-display); font-size: 16px; line-height: 1.2;
  letter-spacing: -0.03em; color: var(--fg-1); font-weight: 400;
}
.da-h2 {
  font-family: var(--font-display); font-size: 16px; line-height: 1.2;
  letter-spacing: -0.03em; color: var(--fg-1); font-weight: 400;
}
.da-price {
  font-family: var(--font-display); font-size: 26px; line-height: 1;
  letter-spacing: var(--track-display); color: var(--fg-1); font-weight: 400;
}
.da-meta {
  font-family: var(--font-display); font-size: 12px; line-height: 1;
  letter-spacing: var(--track-display); color: var(--fg-1); font-weight: 400;
}
.da-meta-strong {
  font-family: var(--font-display); font-weight: 500; font-size: 12px;
  line-height: 1.2; letter-spacing: -0.045em; color: var(--fg-1);
}
.da-body {
  font-family: var(--font-body); font-weight: 300; font-size: 16px;
  line-height: 1.4; letter-spacing: var(--track-body); color: var(--fg-1);
}
.da-body-l {
  font-family: var(--font-body); font-weight: 300; font-size: 36px;
  line-height: 1.2; letter-spacing: var(--track-body); color: var(--fg-1);
}
.da-button-label {
  font-family: var(--font-ui); font-size: 16px; line-height: 1;
  letter-spacing: var(--track-ui);
}
.da-link, .da-link-plain {
  font-family: var(--font-ui); font-size: 12px; line-height: 1;
  letter-spacing: var(--track-ui); color: #000;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px; cursor: pointer;
}
.da-korean {
  font-family: var(--font-korean); font-weight: 400;
  letter-spacing: var(--track-korean);
}

/* =============================================================
   NAV
   ============================================================= */
.dk-nav {
  height: 56px; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--da-paper); position: sticky; top: 0; left: 0; right: 0;
  z-index: 40;
}
.dk-nav--transparent {
  background: transparent;
  position: fixed; top: 0; left: 0; right: 0;
  transition: background 240ms cubic-bezier(.2,.6,.2,1);
}
/* Transparent nav over a hero — paper-colored text/icons. */
.dk-nav--transparent .dk-nav__link,
.dk-nav--transparent .dk-nav__brand {
  color: var(--da-paper);
  transition: color 240ms cubic-bezier(.2,.6,.2,1);
}
.dk-nav--transparent .dk-nav__icon {
  filter: brightness(0) invert(1);
  transition: filter 240ms cubic-bezier(.2,.6,.2,1);
}
/* Once scrolled past the hero, body gets .is-scrolled.
   The transparent nav fills with paper and switches to ink type. */
body.is-scrolled .dk-nav--transparent {
  background: var(--da-paper);
}
body.is-scrolled .dk-nav--transparent .dk-nav__link,
body.is-scrolled .dk-nav--transparent .dk-nav__brand {
  color: var(--da-ink);
}
body.is-scrolled .dk-nav--transparent .dk-nav__icon {
  filter: none;
}
.dk-nav__group { display: flex; gap: 18px; align-items: center; }
.dk-nav__link {
  font-family: var(--font-ui); font-size: 13px;
  letter-spacing: var(--track-ui); color: var(--da-ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.dk-nav__link:hover { text-decoration: underline; }
.dk-nav__link.is-active { text-decoration: underline; text-underline-offset: 3px; }
.dk-nav__brand {
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: -0.05em; color: var(--da-ink); font-weight: 400;
}
.dk-nav__icon { width: 16px; height: 16px; stroke: currentColor; }
.dk-nav__btn { display: inline-flex; background: transparent; border: 0; padding: 0; color: inherit; }
.dk-nav__menu {
  display: none; width: 24px; height: 24px;
  align-items: center; justify-content: center;
  background: transparent; border: 0; padding: 0; cursor: pointer; color: inherit;
}
.dk-drawer__menu-link {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: -0.04em; color: #000;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: block; text-decoration: none;
}
.dk-drawer__menu-link:last-child { border-bottom: 0; }

/* =============================================================
   PAGE SHELL & SECTIONS
   ============================================================= */
.dk-page { padding: 0 var(--gutter); }
.dk-section {
  padding: var(--section-pad) 0;
  display: flex; flex-direction: column; gap: 24px;
}
.dk-section + .dk-section { border-top: 1px solid var(--border); }
.dk-section--tight { padding: 40px 0; gap: 40px; }
.dk-section--noborder + .dk-section,
.dk-section + .dk-section--noborder { border-top: 0; }

.dk-section__title {
  display: flex; justify-content: space-between; align-items: flex-end;
}

/* =============================================================
   HERO — full-bleed image, text overlaid bottom-left
   ============================================================= */
.dk-hero {
  position: relative; width: 100%; overflow: hidden;
  margin-top: -56px; /* tuck behind the transparent nav */
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  min-height: 640px;
  aspect-ratio: 16 / 9;
}
.dk-hero__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.dk-hero__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.10) 40%, transparent 70%);
}
.dk-hero__content {
  position: relative; z-index: 1; max-width: 720px;
  display: flex; flex-direction: column; align-items: flex-start;
  color: var(--da-paper);
}
.dk-hero__eyebrow {
  font-family: var(--font-body); font-weight: 300; font-size: 14px;
  letter-spacing: 0.02em; color: var(--da-paper);
  opacity: 0.85; margin-bottom: 12px;
}
.dk-hero__title {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1.2;
  letter-spacing: -0.03em; color: var(--da-paper);
  margin: 0; font-weight: 400;
}
.dk-hero__cta {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-ui); font-size: 12px;
  letter-spacing: -0.03em; color: var(--da-paper);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.dk-hero__cta-arrow { display: none; }

/* =============================================================
   PRODUCT GRID / CARD
   ============================================================= */
.dk-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px 21px; }
.dk-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 64px 21px; }

.dk-card { display: flex; flex-direction: column; gap: 10px; cursor: pointer; color: inherit; }
.dk-card__img {
  aspect-ratio: 599 / 672;
  background-size: cover; background-position: center;
  border-radius: 2px; background-color: #ececec;
  transition: opacity var(--dur-2) var(--ease);
}
.dk-card:hover .dk-card__img { opacity: .88; }
.dk-card__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.dk-card__col { display: flex; flex-direction: column; gap: 4px; }
.dk-card__col--r { text-align: right; }
.dk-card__title {
  font-family: var(--font-display); font-size: 14px;
  letter-spacing: -0.03em; color: #000; line-height: 1.2; font-weight: 400;
}
.dk-card__sub {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  letter-spacing: 0.02em; color: var(--da-mute); line-height: 1.4;
}

/* =============================================================
   TITLES & LINKS
   ============================================================= */
.dk-title {
  font-family: var(--font-display); font-size: 16px; line-height: 1.2;
  letter-spacing: -0.03em; color: #000; font-weight: 400; margin: 0;
}
.dk-title--display { font-size: 16px; }
.dk-link, .dk-link-plain {
  font-family: var(--font-ui); font-size: 12px; letter-spacing: -0.03em;
  color: #000; text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
  cursor: pointer; background: transparent; border: 0;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.dk-btn {
  height: 60px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 16px; letter-spacing: -0.03em;
  border: 1px solid #000; background: #000; color: #fff;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
  border-radius: 0;
}
.dk-btn:hover { background: var(--da-paper); color: #000; }
.dk-btn--ghost { background: transparent; color: #000; }
.dk-btn--ghost:hover { background: #000; color: #fff; }
.dk-btn--block { width: 100%; }
.dk-btn--sm { height: 48px; font-size: 15px; }
.dk-btn--warm {
  background: var(--da-wood); border-color: var(--da-wood); color: var(--da-paper);
}
.dk-btn--warm:hover { background: var(--da-wood-2); border-color: var(--da-wood-2); color: var(--da-paper); }

/* =============================================================
   FORMS
   ============================================================= */
.dk-field { display: flex; flex-direction: column; gap: 10px; }
.dk-field__label {
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: -0.04em; color: #000;
}
.dk-input,
.dk-text-input {
  width: 100%;
  border: 1px solid var(--da-placeholder); background: transparent;
  color: var(--da-ink); border-radius: 0;
}
.dk-input {
  height: 60px; padding: 0 20px;
  font-family: var(--font-display); font-size: 26px; letter-spacing: -0.04em;
}
.dk-text-input {
  height: 44px; padding: 0 14px;
  font-family: var(--font-body); font-weight: 300; font-size: 13px;
  letter-spacing: 0.03em;
}
.dk-input::placeholder,
.dk-text-input::placeholder { color: var(--da-placeholder); }
.dk-input:focus,
.dk-text-input:focus { outline: none; border-color: #000; }

.dk-form { display: flex; flex-direction: column; gap: 10px; }

/* Bid input composite */
.dk-bid { display: flex; gap: 0; }
.dk-bid__input {
  flex: 1; border: 1px solid var(--da-placeholder);
  display: flex; align-items: center; padding: 0 10px 0 20px; gap: 6px;
  height: 60px;
}
.dk-bid__won {
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: -0.04em; color: var(--da-ink);
}
.dk-bid__field {
  flex: 1; border: 0; background: transparent; outline: none;
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: -0.04em; color: var(--da-ink);
}
.dk-bid__field::placeholder { color: var(--da-placeholder); }
.dk-bid__stepper { display: flex; flex-direction: column; gap: 2px; }
.dk-bid__stepper button {
  font-family: var(--font-ui); font-size: 14px; line-height: 1;
  color: #000; width: 20px; height: 20px; background: transparent; border: 0;
}
.dk-bid__submit {
  height: 60px; width: 200px; border: 1px solid #000;
  background: #000; color: #fff; border-radius: 0;
  font-family: var(--font-ui); font-size: 16px; letter-spacing: -0.03em;
}
.dk-bid__submit:hover { background: var(--da-paper); color: #000; }

/* =============================================================
   TABS
   ============================================================= */
.dk-tabs { display: flex; gap: 30px; align-items: center; }
.dk-tab {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.03em; color: var(--da-mute);
  padding: 4px 0; border: 0; background: transparent;
}
.dk-tab--on {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* =============================================================
   LIST META (count + filter link under tabs)
   ============================================================= */
.dk-list-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px;
}

/* =============================================================
   ACCORDION (product detail)
   ============================================================= */
.dk-accordion__item { border-bottom: 1px solid var(--border); }
.dk-accordion__btn {
  width: 100%; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: -0.03em; color: #000; background: transparent;
  text-align: left;
}
.dk-accordion__icon {
  position: relative; width: 12px; height: 12px; display: inline-block;
}
.dk-accordion__icon::before,
.dk-accordion__icon::after {
  content: ""; position: absolute; background: #000;
  transition: transform var(--dur-2) var(--ease);
}
.dk-accordion__icon::before { top: 5.5px; left: 0; right: 0; height: 1px; }
.dk-accordion__icon::after  { left: 5.5px; top: 0; bottom: 0; width: 1px; }
.dk-accordion__item.is-open .dk-accordion__icon::after { transform: scaleY(0); }
.dk-accordion__body {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  letter-spacing: 0.03em; color: var(--da-ink);
  line-height: 1.6;
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-2) var(--ease), padding var(--dur-2) var(--ease);
}
.dk-accordion__item.is-open .dk-accordion__body {
  max-height: 800px; padding: 0 0 20px 0;
}

/* =============================================================
   MODAL / DRAWER
   ============================================================= */
.dk-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 90;
  display: none; justify-content: flex-end;
}
.dk-scrim.is-open { display: flex; animation: dk-fade 200ms var(--ease); }
@keyframes dk-fade { from { opacity: 0; } to { opacity: 1; } }

.dk-drawer {
  /* ~1/3 of viewport — scales with window, capped sensibly */
  width: 33vw; min-width: 380px; max-width: 640px;
  background: var(--da-paper); height: 100vh;
  display: flex; flex-direction: column;
  animation: dk-slide 280ms var(--ease);
}
@keyframes dk-slide { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.dk-drawer__head {
  height: 64px; flex-shrink: 0;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
}
.dk-drawer__title {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.03em; color: var(--da-ink); font-weight: 400;
}
.dk-drawer__close {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer; color: #000;
}
.dk-drawer__close svg { width: 20px; height: 20px; }
.dk-drawer__body {
  flex: 1 1 auto; overflow-y: auto;
  padding: 8px var(--gutter) 24px;
}

.dk-modal {
  width: 560px; max-width: 100%; background: var(--da-paper);
  margin: auto; animation: dk-fade 220ms var(--ease);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 80px); overflow-y: auto;
}
.dk-scrim--center { align-items: center; justify-content: center; }

/* =============================================================
   CART LINE — list of items in cart drawer
   ============================================================= */
.dk-cart-line {
  display: grid; grid-template-columns: minmax(120px, 38%) 1fr; gap: 20px;
  padding-bottom: 28px;
}
.dk-cart-line__img {
  aspect-ratio: 1/1; background-size: cover; background-position: center;
  background-color: #ececec;
}
.dk-cart-line__body {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2px 0;
}
.dk-cart-line__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.dk-cart-line__title {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.03em; color: #000; line-height: 1.2;
  text-transform: uppercase;
}
.dk-cart-line__sub {
  font-family: var(--font-body); font-weight: 300; font-size: 13px;
  letter-spacing: 0.02em; color: var(--da-mute); margin-top: 6px;
  text-transform: none;
}
.dk-cart-line__price {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.03em; color: #000; line-height: 1.2;
  white-space: nowrap;
}
.dk-cart-line__remove {
  align-self: flex-end; font-family: var(--font-ui); font-size: 13px;
  letter-spacing: -0.02em; color: var(--da-mute); background: transparent;
  border: 0; cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================================
   CART FOOT — subtotal + checkout button + continue link
   ============================================================= */
.dk-cart-foot {
  flex-shrink: 0;
  padding: 0 var(--gutter) 24px;
}

/* Search drawer — large input + popular searches list */
.dk-search-input {
  width: 100%;
  border: 0; border-bottom: 1px solid var(--da-rule);
  background: transparent;
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: -0.03em; color: var(--da-ink);
  padding: 8px 0 14px;
  font-weight: 400;
}
.dk-search-input::placeholder { color: var(--da-mute); }
.dk-search-input:focus {
  outline: none;
  border-bottom-color: var(--da-ink);
}
/* Hide native search clear button (blue X) */
.dk-search-input::-webkit-search-cancel-button,
.dk-search-input::-webkit-search-decoration { -webkit-appearance: none; display: none; }
.dk-search-input::-ms-clear { display: none; width: 0; height: 0; }
.dk-search-section { margin-top: 28px; }
.dk-search-label {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  letter-spacing: 0.03em; color: var(--da-ink);
  margin: 0 0 14px;
}
.dk-search-list {
  list-style: none; padding: 0 0 0 18px;
  display: flex; flex-direction: column; gap: 6px;
  margin: 0;
}
.dk-search-list a {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  letter-spacing: 0.03em; color: var(--da-ink);
  display: inline-block;
}
.dk-search-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Filter option — radio + label row inside filter drawer */
.dk-filter-option {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-body); font-weight: 300; font-size: 14px;
  letter-spacing: 0.03em; color: var(--da-ink);
  cursor: pointer;
}

/* Radio buttons — paper background, no white fill */
.dk-drawer input[type="radio"],
.dk-radio {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px; flex-shrink: 0;
  border: 1px solid var(--da-mute);
  border-radius: 50%;
  background: var(--da-paper);
  cursor: pointer; margin: 0;
  transition: border-color var(--dur-1) var(--ease);
}
.dk-drawer input[type="radio"]:hover,
.dk-radio:hover { border-color: var(--da-ink); }
.dk-drawer input[type="radio"]:checked,
.dk-radio:checked {
  border-color: var(--da-ink);
  box-shadow: inset 0 0 0 3px var(--da-ink);
}
.dk-cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0 22px;
  border-top: 1px solid var(--border);
}
.dk-cart-subtotal__label {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.03em; color: #000;
}
.dk-cart-subtotal__value {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.03em; color: #000;
}
.dk-btn--checkout {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 28px;
  background: #000; color: #fff; border: 0; border-radius: 0;
  font-family: var(--font-ui); font-size: 13px; letter-spacing: -0.03em;
  cursor: pointer;
}
.dk-btn--checkout:hover { background: #1a1a1a; }
/* When inside cart-foot drawer, full-width edge-to-edge */
.dk-cart-foot .dk-btn--checkout {
  width: 100%; padding: 0;
}

/* Outlined CTA — same dimensions as checkout, transparent fill */
.dk-btn--outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 28px;
  background: transparent; color: #000;
  border: 1px solid #000; border-radius: 0;
  font-family: var(--font-ui); font-size: 13px; letter-spacing: -0.03em;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.dk-btn--outline:hover { background: #000; color: #fff; }
.dk-btn--block { width: 100%; }
.dk-cart-continue {
  display: block; text-align: center;
  padding: 18px 0 22px;
  font-family: var(--font-ui); font-size: 13px; letter-spacing: -0.02em;
  color: #000; text-decoration: underline; text-underline-offset: 3px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.dk-footer {
  padding: 48px var(--gutter); display: flex; justify-content: space-between;
  margin-top: 28px; position: relative;
}
.dk-footer::before {
  content: "";
  position: absolute; top: 0;
  left: var(--gutter); right: var(--gutter);
  height: 1px; background: var(--border);
}
.dk-footer__brand {
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.05em; color: #000; font-weight: 400;
}
.dk-footer__cols { display: flex; gap: 60px; }
.dk-footer__col { display: flex; flex-direction: column; gap: 10px; }
.dk-footer__col a, .dk-footer__col span {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  letter-spacing: 0.03em; color: #000;
}
.dk-footer__col a:hover { text-decoration: underline; }

/* =============================================================
   LOGIN
   ============================================================= */
.dk-login {
  max-width: 560px; margin: 60px auto;
  display: flex; flex-direction: column; gap: 20px;
}

/* =============================================================
   WARM SECTION — terracotta editorial block
   ============================================================= */
.da-on-warm {
  background: var(--bg-warm); color: var(--da-paper);
}
.da-on-warm .da-h1,
.da-on-warm .da-h2,
.da-on-warm .da-display-l,
.da-on-warm .da-display-m,
.da-on-warm .da-price,
.da-on-warm .da-meta,
.da-on-warm .da-meta-strong,
.da-on-warm .da-body,
.da-on-warm .da-body-l,
.da-on-warm .dk-title { color: var(--da-paper); }
.da-on-warm .da-link-plain,
.da-on-warm .dk-link-plain,
.da-on-warm .dk-link { color: var(--da-paper); }

/* =============================================================
   PRODUCT DETAIL LAYOUT
   ============================================================= */
.dk-product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.dk-product__media {
  aspect-ratio: 932/988; background-size: cover; background-position: center;
  border-radius: 2px; background-color: #ececec;
}
.dk-product__info {
  padding: 20px var(--gutter);
  display: flex; flex-direction: column; gap: 32px;
}
.dk-product__stat {
  display: flex; gap: 10px;
}
.dk-product__stat > div {
  flex: 1; padding-left: 16px; border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.dk-product__facts {
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.dk-product__facts > div {
  display: flex; justify-content: space-between;
}

/* =============================================================
   BRAND SILHOUETTES
   "실루엣은 가장 정직한 형태." Black solid shapes only.
   ============================================================= */
.dk-silhouette {
  display: inline-block; color: var(--da-ink);
  vertical-align: middle;
}
.dk-silhouette img,
.dk-silhouette svg { display: block; width: 100%; height: auto; }

.dk-silhouette--xs { width: 14px; }
.dk-silhouette--sm { width: 28px; }
.dk-silhouette--md { width: 64px; }
.dk-silhouette--lg { width: 120px; }
.dk-silhouette--xl { width: 240px; }
.dk-silhouette--hero { width: clamp(180px, 28vw, 360px); }

/* Empty state — silhouette + caption stack */
.dk-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 48px 0 32px; text-align: center;
}
.dk-empty p { margin: 0; color: var(--da-mute); font-size: 13px; }

/* Footer brand mark — small silhouette next to wordmark */
.dk-footer__mark {
  display: inline-flex; align-items: center; gap: 10px;
}
.dk-footer__mark .dk-silhouette { width: 22px; flex-shrink: 0; }

/* =============================================================
   UTILITIES
   ============================================================= */
.u-center { text-align: center; }
.u-mt-16 { margin-top: 16px; }
.u-mt-24 { margin-top: 24px; }
.u-mt-40 { margin-top: 40px; }
.u-small { font-size: 14px; }
.u-muted { color: var(--da-mute); }
.u-divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .dk-grid-3 { grid-template-columns: 1fr 1fr; }
  .dk-product { grid-template-columns: 1fr; }
  .dk-product__info { padding: 20px 0; }
  .dk-hero { min-height: 460px; aspect-ratio: 4 / 3; }
  .dk-hero__title { font-size: 22px; }
  .dk-footer { flex-direction: column; gap: 40px; }
}
@media (max-width: 560px) {
  .dk-grid-3 { grid-template-columns: 1fr; }
  .dk-nav { padding: 0 var(--gutter); height: 56px; }
  .dk-footer { padding: 40px var(--gutter); }
  .dk-drawer { width: 100vw; min-width: 0; max-width: 100vw; }
  /* Hide desktop menu links + user icon; show hamburger */
  .dk-nav__link[href$=".html"] { display: none; }
  .dk-nav__menu { display: inline-flex; }
}
