/* fonts.css — Pretendard 셀프호스팅 (원본: style.00.font.css) */
/* 원본과 동일한 8종 웨이트 + Thin 보강. woff fallback은 원본 CDN 참조라 제외하고 woff2만 사용 */

@charset "UTF-8";

@font-face {
  font-family: Pretendard;
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../../assets/fonts/pretendard/woff2/Pretendard-Black.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../../assets/fonts/pretendard/woff2/Pretendard-ExtraBold.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../../assets/fonts/pretendard/woff2/Pretendard-Bold.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../../assets/fonts/pretendard/woff2/Pretendard-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../../assets/fonts/pretendard/woff2/Pretendard-Medium.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../../assets/fonts/pretendard/woff2/Pretendard-Regular.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../../assets/fonts/pretendard/woff2/Pretendard-Light.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../../assets/fonts/pretendard/woff2/Pretendard-ExtraLight.woff2") format("woff2");
}

@font-face {
  font-family: Pretendard;
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../../assets/fonts/pretendard/woff2/Pretendard-Thin.woff2") format("woff2");
}

/* 가변 폰트(원본 Next.js next/font). 정적 웨이트 운용 시 미사용 — Bricks 전환 시 활용 가능 */
@font-face {
  font-family: "Pretendard Variable";
  font-weight: 45 920;
  font-display: swap;
  src: url("../../assets/fonts/pretendard/woff2/PretendardVariable.woff2") format("woff2-variations");
}


/* tokens.css — 전역 디자인 토큰 (원본: style.00.variables.css + Next.js :root) */
/* Bricks 전환 시 이 파일의 변수를 글로벌 색상/타이포 프리셋으로 이식 */

@charset "UTF-8";

:root {
  /* 브랜드/강조 */
  --color-primary: #006bff;          /* 링크·할인율·강조 (tile-rate 등) */

  /* 회원 등급 색 */
  --color-grade-friend: #37c2c2;
  --color-grade-silver: #ADB1B8;
  --color-grade-gold: #FBA82E;
  --color-grade-vip: #FF3366;
  --color-grade-vvip: #BA72F6;
  --color-grade-etc: #000000;

  /* CI 브랜드 컬러 */
  --color-ci-kakao: #FEE500;
  --color-ci-naver: #09D133;

  /* 레이아웃 */
  --header-height: 111px;            /* sticky 헤더 높이 */
  --tt-gutter-x: 8px;                /* Bootstrap형 그리드 거터 (row/gx-*) */
  --tt-gutter-y: 8px;

  /* 타이포 스택 (원본 body 인라인 스타일 정리) */
  --font-body: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto,
    "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;

  /* 자주 사용하는 무채색 (원본 하드코딩 값 정리 — 참고용) */
  --gray-eee: #eee;                  /* 기본 보더 */
  --gray-ddd: #ddd;                  /* 연한 보더 */
  --gray-ccc: #ccc;                  /* 비활성 */
  --gray-aaa: #aaa;                  /* 원가(취소선) */
  --gray-999: #999;                  /* 보조 텍스트 */
  --gray-666: #666;                  /* 설명 텍스트 */
  --gray-333: #333;                  /* 강본문 */
  --bg-footer: #f8f8f8;              /* 푸터 배경 */
  --accent-red: #e8133a;             /* 경고·품절·강조 액센트 */
}


@charset "UTF-8";

/* base.css — 리셋/전역 타이포/유틸리티
출처: 원본 style.01.normalize.css, style.02.jqueryui.css, style.css 요소 셀렉터/유틸리티 */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  color: inherit;
}

button {
  border-radius: 0;
  border: none;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

[type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
}

.ui-draggable-handle {
  touch-action: none;
}

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: visible;
}

.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

input.ui-button::-moz-focus-inner, button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus, .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

.ui-controlgroup-vertical .ui-spinner-input {
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: 700;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

.ui-datepicker {
  min-width: 254px;
  background-color: #fff;
  border: 1px solid #666;
  padding: 20px 15px 15px;
  margin-top: 10px;
}

.ui-datepicker .ui-datepicker-header {
  padding: 0;
  margin-bottom: 15px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev, .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  width: 24px;
  height: 24px;
  cursor: pointer;
  top: 0;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon, .ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon {
  display: none;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 8px;
  background: transparent url("../../assets/img/icons/icon-chevron-calendar-prev__black.png") 0 0 no-repeat;
  background-size: 100%;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 8px;
  background: transparent url("../../assets/img/icons/icon-chevron-calendar-next__black.png") 0 0 no-repeat;
  background-size: 100%;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  font-size: 14px;
  line-height: 24px;
}

.ui-datepicker table.ui-datepicker-calendar {
  width: 224px;
  table-layout: fixed;
}

.ui-datepicker table.ui-datepicker-calendar th {
  text-align: center;
  width: 32px;
  font-size: 13px;
  line-height: 32px;
  color: #000;
  padding: 0;
  font-weight: 400;
}

.ui-datepicker table.ui-datepicker-calendar td {
  padding: 0;
  width: 32px;
}

.ui-datepicker table.ui-datepicker-calendar td .ui-state-default {
  text-align: center;
  width: 32px;
  font-size: 13px;
  line-height: 32px;
  color: #000;
  padding: 0;
}

.ui-datepicker table.ui-datepicker-calendar td.ui-datepicker-week-end:first-child .ui-state-default {
  color: red;
}

.ui-datepicker table.ui-datepicker-calendar td.ui-datepicker-week-end:last-child .ui-state-default {
  color: #2170d8;
}

.ui-datepicker table.ui-datepicker-calendar td.ui-datepicker-other-month .ui-state-default.ui-priority-secondary {
  color: #ccc;
}

.ui-datepicker table.ui-datepicker-calendar td.ui-datepicker-current-day .ui-state-default.ui-state-active {
  background-color: #000;
  color: #fff;
}

.ui-datepicker.st-modal {
  z-index: 10000 !important;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -ms-touch-action: none;
}

body {
  overflow-anchor: none;
  background-color: #fff; /* 원본은 브라우저 기본 흰 배경 — 다크 캔버스 환경 대응 명시 */
  font-family:
    Pretendard,
    AppleSDGothicNeo,
    Apple SD Gothic Neo,
    SamsungOne,
    맑은 고딕,
    Malgun Gothic,
    Arial,
    sans-serif,
    serif,
    돋움,
    Dotum;
  font-size: 13px;
  line-height: normal;
  color: #000;
  word-break: keep-all;
}

.heading {
  padding: 8px 0;
  font-weight: 600;
}

.heading.st-light {
  font-weight: 400;
}

.heading.st-lg {
  font-size: 32px;
  line-height: 38px;
}

.heading.st-xlg {
  font-size: 36px;
  line-height: 42px;
}

.heading.st-sm {
  font-size: 24px;
  line-height: 32px;
}

.heading.st-group {
  display: flex;
}

.heading.st-group.st-lg {
  font-size: 16px;
  line-height: 24px;
}

.heading.st-group.st-sm {
  font-size: 14px;
  line-height: 20px;
}

.heading.st-group.st-xs {
  font-size: 13px;
  line-height: 19px;
}

.heading.st-group.st-xlg {
  font-size: 20px;
  line-height: 24px;
}

.heading.st-group .text-require {
  color: #006bff;
  line-height: 16px;
  margin-left: 4px;
}

.heading .label-live {
  position: absolute;
  bottom: 5px;
  right: -16px;
  transform: translate(100%);
}

[data-tt-toggle="modal"] {
  cursor: pointer;
}

.order-panel .order-row .heading {
  padding: 0;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
}

.order-panel .order-row .heading + .heading {
  margin-left: 148px;
}

.order-panel .order-row .heading + .helper {
  margin-left: 10px;
}

.order-address .heading + .shipping-info {
  margin-top: 8px;
}

[data-tt-toggle="collapse"] {
  cursor: pointer;
}

[data-tt-toggle="collapse"] .text-truncate br {
  display: none;
}

[data-tt-toggle="collapse"].active .text-truncate {
  white-space: normal;
  text-overflow: clip;
  overflow: visible;
  max-height: none;
  -webkit-line-clamp: none;
  -webkit-box-orient: horizontal;
}

[data-tt-toggle="collapse"].active .text-truncate br {
  display: block;
}

.module-page-heading .heading {
  font-size: 32px;
  font-weight: 600;
}

.module-page-heading .heading-text {
  font-size: 14px;
  color: #aaa;
  margin-top: 16px;
}

.module-page-heading .heading-addon {
  font-size: 16px;
  color: #006bff;
  margin-top: 24px;
}

.module-heading .heading {
  padding: 0;
  line-height: 42px;
}

.module-heading .heading + .heading-timer {
  margin-top: 16px;
}

.module-heading .heading + .heading-text {
  margin-top: 8px;
  line-height: 30px;
}

.module-heading .heading-text {
  font-size: 18px;
  line-height: 24px;
}

.module-heading .heading-text + .heading-text.till-timer {
  margin-top: 24px;
}

.module-heading .heading-text + .heading-timer {
  margin-top: 16px;
}

.module-heading .heading-timer {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #006bff;
}

.module-heading .heading-group {
  margin-top: 32px;
}

section:has(.module-carousel-text):has(+ .favorite-brand) {
  --tt-gutter-y: 65px;
}

section:has(.brand-men-lookbook) .heading > .text-inner {
  display: -webkit-box;
  max-height: 2880px;
  font-size: 36px;
  line-height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

section:has(.brand-men-lookbook) .heading-text {
  margin-top: 8px;
}

section:has(.brand-men-lookbook) .heading-text .text-inner {
  display: -webkit-box;
  max-height: 476px;
  font-size: 14px;
  line-height: 17px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

section:has(.brand-men-video) .heading {
  display: -webkit-box;
  max-height: 2880px;
  font-size: 36px;
  line-height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

section:has(.brand-men-video) .heading-text {
  margin-top: 8px;
  display: -webkit-box;
  max-height: 476px;
  font-size: 14px;
  line-height: 17px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.newproduct-content .heading-text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.archive-corner .heading {
  padding: 0;
}

.archive-corner .heading + .heading-text {
  margin-top: 16px;
}

.archive-corner .heading-text {
  font-size: 18px;
  line-height: 1.5555555556;
  font-weight: 400;
  letter-spacing: 0;
}

.heading + .update-info {
  margin-left: 20px;
}

.rich-section .heading {
  line-height: 44px;
}

[data-component-pin="spc-mgz-evt-view"] grfk-sstm-code-box {
  width: 100% !important;
}

[data-component-pin="spc-mgz-evt-view"] grfk-sstm-wrapper {
  height: auto !important;
}

[data-component-pin="spc-mgz-evt-view"] grfk-sstm[id$="-bd"] {
  position: relative;
  width: auto !important;
  height: auto !important;
  left: unset !important;
  top: unset !important;
}

[data-component-pin="spc-mgz-evt-view"] [id^="cnr_"] .module-heading .heading {
  padding: unset !important;
  margin: unset !important;
}

[data-component-pin="spc-mgz-evt-view"] [id^="cnr_DSP_CMMN_NOTI"] {
  margin-top: 40px !important;
  margin-bottom: 112px !important;
}

[data-component-pin="spc-mgz-evt-view"] [id^="cnr_DSP_CMMN_NOTI"]:last-child {
  margin-bottom: 0 !important;
}

[data-component-pin="spc-mgz-evt-view"] [id^="cnr_DSP_CMMN_ETC_CONTT_VIDEO_D"] [class^="module-movie"] {
  margin-bottom: 20px !important;
}

[data-component-pin="spc-mgz-evt-view"] [id^="cnr_MGZ_MORE_CONTT"] {
  margin-top: 40px !important;
}

[data-component-pin="spc-mgz-evt-view"] [id^="attention"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_MGZ_GOD_TYPE_A"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_MGZ_GOD_TYPE_B"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_MGZ_GOD_TYPE_C"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_PROMT_SALES_GOOD_DEAL"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_PROMT_SALES_DEAL_GOD"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_PROMT_ITEMS_ITEM_TAB"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_PROMT_SALES_SALE_PICK"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_PROMT_ITEMS_ITEM_PICK"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_MGZ_TAB_GRP"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_MGZ_MORE_CONTT"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_DSP_CMMN_ETC_CONTT_BRND"],
[data-component-pin="spc-mgz-evt-view"] [id^="cnr_DSP_CMMN_ETC_CMMN_CONTT_IMG_SLIDE_A"] {
  margin-top: 112px !important;
  margin-bottom: 112px !important;
}

section:has(#recommendProducts),
section:has(#livePopularProducts),
section:has(.cnr-margin) {
  margin-top: 112px;
}

.magazine-contents .module-heading .heading {
  padding: 0;
  line-height: 42px;
}

.magazine-contents .module-heading .heading .text-inner {
  word-break: break-all;
  display: -webkit-box;
  max-height: 2688px;
  font-size: 32px;
  line-height: 42px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.magazine-contents .module-heading .heading + .heading-text {
  margin-top: 0;
  line-height: 30px;
}

[data-component-pin="mypage-report"] dl,
[data-component-pin="mypage-report"] dt,
[data-component-pin="mypage-report"] dd,
[data-component-pin="mypage-report"] figure,
[data-component-pin="mypage-report"] figcaption {
  margin: 0;
  padding: 0;
}

[data-component-pin="mypage-report"] section {
  margin-top: 56px;
}

[data-component-pin="mypage-report"] section:first-of-type {
  margin-top: 0;
}

#newGoodsPage .module-heading .heading + .heading-text {
  font-size: 14px;
  line-height: 17px;
  margin-top: 8px;
}

@layer properties {
  @supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {
    *,::backdrop,:after,:before {
      --tw-rotate-x:initial;
      --tw-rotate-y:initial;
      --tw-rotate-z:initial;
      --tw-skew-x:initial;
      --tw-skew-y:initial;
      --tw-space-y-reverse:0;
      --tw-border-style:solid;
      --tw-font-weight:initial;
      --tw-shadow:0 0 #0000;
      --tw-shadow-color:initial;
      --tw-shadow-alpha:100%;
      --tw-inset-shadow:0 0 #0000;
      --tw-inset-shadow-color:initial;
      --tw-inset-shadow-alpha:100%;
      --tw-ring-color:initial;
      --tw-ring-shadow:0 0 #0000;
      --tw-inset-ring-color:initial;
      --tw-inset-ring-shadow:0 0 #0000;
      --tw-ring-inset:initial;
      --tw-ring-offset-width:0px;
      --tw-ring-offset-color:#fff;
      --tw-ring-offset-shadow:0 0 #0000;
      --tw-blur:initial;
      --tw-brightness:initial;
      --tw-contrast:initial;
      --tw-grayscale:initial;
      --tw-hue-rotate:initial;
      --tw-invert:initial;
      --tw-opacity:initial;
      --tw-saturate:initial;
      --tw-sepia:initial;
      --tw-drop-shadow:initial;
      --tw-drop-shadow-color:initial;
      --tw-drop-shadow-alpha:100%;
      --tw-drop-shadow-size:initial;
      --tw-ease:initial;
    }
  }
}

@layer theme {
  :host,:root {
    --font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --color-red-50:oklch(97.1% .013 17.38);
    --color-red-800:oklch(44.4% .177 26.899);
    --color-yellow-100:oklch(97.3% .071 103.193);
    --color-yellow-500:oklch(79.5% .184 86.047);
    --color-yellow-700:oklch(55.4% .135 66.442);
    --color-green-600:oklch(62.7% .194 149.214);
    --color-blue-600:oklch(54.6% .245 262.881);
    --color-gray-50:oklch(98.5% .002 247.839);
    --color-gray-100:oklch(96.7% .003 264.542);
    --color-gray-200:oklch(92.8% .006 264.531);
    --color-gray-300:oklch(87.2% .01 258.338);
    --color-gray-400:oklch(70.7% .022 261.325);
    --color-gray-500:oklch(55.1% .027 264.364);
    --color-gray-600:oklch(44.6% .03 256.802);
    --color-gray-700:oklch(37.3% .034 259.733);
    --color-gray-900:oklch(21% .034 264.665);
    --color-black:#000;
    --color-white:#fff;
    --spacing:.25rem;
    --container-md:28rem;
    --text-xs:.75rem;
    --text-xs--line-height:calc(1/.75);
    --text-sm:.875rem;
    --text-sm--line-height:calc(1.25/.875);
    --text-lg:1.125rem;
    --text-lg--line-height:calc(1.75/1.125);
    --text-xl:1.25rem;
    --text-xl--line-height:calc(1.75/1.25);
    --text-2xl:1.5rem;
    --text-2xl--line-height:calc(2/1.5);
    --text-3xl:1.875rem;
    --text-3xl--line-height:calc(2.25/1.875);
    --text-4xl:2.25rem;
    --text-4xl--line-height:calc(2.5/2.25);
    --font-weight-medium:500;
    --font-weight-semibold:600;
    --font-weight-bold:700;
    --radius-lg:.5rem;
    --ease-out:cubic-bezier(0,0,.2,1);
    --ease-in-out:cubic-bezier(.4,0,.2,1);
    --animate-spin:spin 1s linear infinite;
    --default-transition-duration:.15s;
    --default-transition-timing-function:cubic-bezier(.4,0,.2,1);
    --default-mono-font-family:var(--font-mono);
  }
}

@layer base {
  *,::backdrop,:after,:before {
    box-sizing:border-box;
    border:0 solid;
    margin:0;
    padding:0;
  }

  ::file-selector-button {
    box-sizing:border-box;
    border:0 solid;
    margin:0;
    padding:0;
  }

  :host,html {
    -webkit-text-size-adjust:100%;
    -moz-tab-size:4;
    -o-tab-size:4;
    tab-size:4;
    line-height:1.5;
    font-family:var(--font-pretendard,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"),Pretendard,-apple-system,BlinkMacSystemFont,system-ui,Roboto,"Helvetica Neue","Segoe UI","Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol",sans-serif;
    font-feature-settings:normal;
    font-variation-settings:normal;
    -webkit-tap-highlight-color:transparent;
  }

  hr {
    height:0;
    color:inherit;
    border-top-width:1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration:underline dotted;
    text-decoration:underline dotted;
  }

  h1,h2,h3,h4,h5,h6 {
    font-size:inherit;
    font-weight:inherit;
  }

  a {
    color:inherit;
    -webkit-text-decoration:inherit;
    text-decoration:inherit;
  }

  b,strong {
    font-weight:bolder;
  }

  code,kbd,pre,samp {
    font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);
    font-feature-settings:var(--default-mono-font-feature-settings,normal);
    font-variation-settings:var(--default-mono-font-variation-settings,normal);
    font-size:1em;
  }

  small {
    font-size:80%;
  }

  sub,sup {
    vertical-align:baseline;
    font-size:75%;
    line-height:0;
    position:relative;
  }

  sub {
    bottom:-.25em;
  }

  sup {
    top:-.5em;
  }

  table {
    text-indent:0;
    border-color:inherit;
    border-collapse:collapse;
  }

  :-moz-focusring {
    outline:auto;
  }

  progress {
    vertical-align:baseline;
  }

  summary {
    display:list-item;
  }

  menu,ol,ul {
    list-style:none;
  }

  audio,canvas,embed,iframe,img,object,svg,video {
    vertical-align:middle;
    display:block;
  }

  img,video {
    max-width:100%;
    height:auto;
  }

  button,input,optgroup,select,textarea {
    font:inherit;
    font-feature-settings:inherit;
    font-variation-settings:inherit;
    letter-spacing:inherit;
    color:inherit;
    opacity:1;
    background-color:#0000;
    border-radius:0;
  }

  ::file-selector-button {
    font:inherit;
    font-feature-settings:inherit;
    font-variation-settings:inherit;
    letter-spacing:inherit;
    color:inherit;
    opacity:1;
    background-color:#0000;
    border-radius:0;
  }

  :where(select:is([multiple],[size])) optgroup {
    font-weight:bolder;
  }

  :where(select:is([multiple],[size])) optgroup option {
    padding-inline-start:20px;
  }

  ::file-selector-button {
    margin-inline-end:4px;
  }

  ::-moz-placeholder {
    opacity:1;
  }

  ::placeholder {
    opacity:1;
  }

  @supports (not (-webkit-appearance:-apple-pay-button)) or (contain-intrinsic-size:1px) {
    ::-moz-placeholder {
      color:currentColor;
    }

    ::placeholder {
      color:currentColor;
    }

    @supports (color:color-mix(in lab,red,red)) {
      ::-moz-placeholder {
        color:color-mix(in oklab,currentcolor 50%,transparent);
      }

      ::placeholder {
        color:color-mix(in oklab,currentcolor 50%,transparent);
      }
    }
  }

  textarea {
    resize:vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance:none;
  }

  ::-webkit-date-and-time-value {
    min-height:1lh;
    text-align:inherit;
  }

  ::-webkit-datetime-edit {
    display:inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding:0;
  }

  ::-webkit-datetime-edit,::-webkit-datetime-edit-year-field {
    padding-block:0;
  }

  ::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field {
    padding-block:0;
  }

  ::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field {
    padding-block:0;
  }

  ::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-second-field {
    padding-block:0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block:0;
  }

  :-moz-ui-invalid {
    box-shadow:none;
  }

  button,input:where([type=button],[type=reset],[type=submit]) {
    -webkit-appearance:button;
    -moz-appearance:button;
    appearance:button;
  }

  ::file-selector-button {
    -webkit-appearance:button;
    -moz-appearance:button;
    appearance:button;
  }

  ::-webkit-inner-spin-button,::-webkit-outer-spin-button {
    height:auto;
  }

  [hidden]:where(:not([hidden=until-found])) {
    display:none!important;
  }

  html {
    scrollbar-gutter:stable;
  }

  h1,h2,h3,h4,h5,h6 {
    font-size:revert;
    font-weight:revert;
    margin:revert;
    line-height:revert;
  }
}

@layer components;@layer utilities {
  .sr-only {
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border-width:0;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    overflow:hidden;
  }

  .absolute,.sr-only {
    position:absolute;
  }

  .\!container {
    width:100%!important;
  }

  @media (min-width:40rem) {
    .\!container {
      max-width:40rem!important;
    }
  }

  @media (min-width:48rem) {
    .\!container {
      max-width:48rem!important;
    }
  }

  @media (min-width:64rem) {
    .\!container {
      max-width:64rem!important;
    }
  }

  @media (min-width:80rem) {
    .\!container {
      max-width:80rem!important;
    }
  }

  @media (min-width:96rem) {
    .\!container {
      max-width:96rem!important;
    }
  }

  :where(.space-y-1>:not(:last-child)) {
    --tw-space-y-reverse:0;
    margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));
    margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-6>:not(:last-child)) {
    --tw-space-y-reverse:0;
    margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));
    margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-8>:not(:last-child)) {
    --tw-space-y-reverse:0;
    margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));
    margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)));
  }
}

@property --tw-rotate-x {
  syntax:"*";
  inherits:false;
}

@property --tw-rotate-y {
  syntax:"*";
  inherits:false;
}

@property --tw-rotate-z {
  syntax:"*";
  inherits:false;
}

@property --tw-skew-x {
  syntax:"*";
  inherits:false;
}

@property --tw-skew-y {
  syntax:"*";
  inherits:false;
}

@property --tw-space-y-reverse {
  syntax:"*";
  inherits:false;
  initial-value:0;
}

@property --tw-border-style {
  syntax:"*";
  inherits:false;
  initial-value:solid;
}

@property --tw-font-weight {
  syntax:"*";
  inherits:false;
}

@property --tw-shadow {
  syntax:"*";
  inherits:false;
  initial-value:0 0 #0000;
}

@property --tw-shadow-color {
  syntax:"*";
  inherits:false;
}

@property --tw-shadow-alpha {
  syntax:"<percentage>";
  inherits:false;
  initial-value:100%;
}

@property --tw-inset-shadow {
  syntax:"*";
  inherits:false;
  initial-value:0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax:"*";
  inherits:false;
}

@property --tw-inset-shadow-alpha {
  syntax:"<percentage>";
  inherits:false;
  initial-value:100%;
}

@property --tw-ring-color {
  syntax:"*";
  inherits:false;
}

@property --tw-ring-shadow {
  syntax:"*";
  inherits:false;
  initial-value:0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax:"*";
  inherits:false;
}

@property --tw-inset-ring-shadow {
  syntax:"*";
  inherits:false;
  initial-value:0 0 #0000;
}

@property --tw-ring-inset {
  syntax:"*";
  inherits:false;
}

@property --tw-ring-offset-width {
  syntax:"<length>";
  inherits:false;
  initial-value:0;
}

@property --tw-ring-offset-color {
  syntax:"*";
  inherits:false;
  initial-value:#fff;
}

@property --tw-ring-offset-shadow {
  syntax:"*";
  inherits:false;
  initial-value:0 0 #0000;
}

@property --tw-blur {
  syntax:"*";
  inherits:false;
}

@property --tw-brightness {
  syntax:"*";
  inherits:false;
}

@property --tw-contrast {
  syntax:"*";
  inherits:false;
}

@property --tw-grayscale {
  syntax:"*";
  inherits:false;
}

@property --tw-hue-rotate {
  syntax:"*";
  inherits:false;
}

@property --tw-invert {
  syntax:"*";
  inherits:false;
}

@property --tw-opacity {
  syntax:"*";
  inherits:false;
}

@property --tw-saturate {
  syntax:"*";
  inherits:false;
}

@property --tw-sepia {
  syntax:"*";
  inherits:false;
}

@property --tw-drop-shadow {
  syntax:"*";
  inherits:false;
}

@property --tw-drop-shadow-color {
  syntax:"*";
  inherits:false;
}

@property --tw-drop-shadow-alpha {
  syntax:"<percentage>";
  inherits:false;
  initial-value:100%;
}

@property --tw-drop-shadow-size {
  syntax:"*";
  inherits:false;
}

@property --tw-ease {
  syntax:"*";
  inherits:false;
}

._root_1c6cz_1 .heading-img {
  max-width:100%;
  height:auto;
  display:block;
}

._root_1c6cz_1[data-device=PC] .heading-img {
  margin:0 auto;
}

._root_1c6cz_1[data-device=PC] .heading-main {
  position:relative;
  width:-moz-fit-content;
  width:fit-content;
  max-width:100%;
  margin-inline:auto;
}

._root_1c6cz_1[data-device=MOBILE] .heading-main {
  margin-bottom:3.3333333333vw;
}

._root_1c6cz_1[data-device=MOBILE] .heading-main:has(.live-time) {
  display:flex;
}

._root_1c6cz_1 .heading-main .text-inner {
  font-weight:600;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
}

._root_1c6cz_1[data-device=PC] .heading-main .text-inner {
  display:inline-flex;
  position:relative;
  margin:0;
  font-size:36px;
  color:var(--heading-color,#000);
}

._root_1c6cz_1[data-device=MOBILE] .heading-main .text-inner {
  font-size:5vw;
  line-height:6.1111111111vw;
}

._root_1c6cz_1 .heading-main .live-time {
  color:#999;
  font-weight:400;
}

._root_1c6cz_1[data-device=PC] .heading-main .live-time {
  font-size:14px;
  line-height:1;
  white-space:nowrap;
  position:absolute;
  bottom:5px;
  right:-16px;
  transform:translate(100%);
}

._root_1c6cz_1[data-device=MOBILE] .heading-main .live-time {
  margin-left:2.2222222222vw;
  margin-bottom:.8333333333vw;
  font-size:2.7777777778vw;
  align-self:end;
}

._root_1c6cz_1[data-device=PC] .heading-sub {
  margin:8px 0 0;
}

._root_1c6cz_1[data-device=MOBILE] .heading-sub {
  margin-bottom:5.5555555556vw;
}

._root_1c6cz_1 .heading-sub .text-inner {
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
}

._root_1c6cz_1[data-device=PC] .heading-sub .text-inner {
  font-size:16px;
}

._root_1c6cz_1[data-device=MOBILE] .heading-sub .text-inner {
  font-size:4.4444444444vw;
  font-weight:400;
}

.is-mo-heading-center ._root_1c6cz_1[data-device=MOBILE] .heading-main:has(.live-time) {
  justify-content:center;
}

.is-mo-heading-center ._root_1c6cz_1[data-device=MOBILE] .heading-img {
  margin-inline:auto;
}
