@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  padding: 4px 12px;
  border-radius: 4px;
}
.badge--soldout {
  width: 67px;
  height: 27px;
  font-weight: 700;
  color: #ffffff;
  background-color: #5c6677;
  opacity: 0.8;
}
.badge--restock {
  width: 100%;
  height: 32px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  background-color: rgba(27, 30, 35, 0.06);
  backdrop-filter: blur(5px);
  transition: color 0.2s ease, background-color 0.2s ease;
}

ㅇ .badge-group:hover .badge--restock {
  background-color: #000000;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.05em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--small {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
}
.btn--medium {
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
}
.btn--large {
  height: 48px;
  padding: 0 24px;
  font-size: 16px;
}
.btn--full {
  width: 100%;
}
.btn--filled {
  background-color: #1b1e23;
  color: #ffffff;
}
.btn--filled:hover {
  background-color: #2b2f35;
}
.btn--filled:active {
  background-color: #16181d;
}
.btn--outlined {
  background-color: transparent;
  color: #1b1e23;
  border-color: #dde0e5;
}
.btn--outlined:hover {
  border-color: #c7cbd3;
}
.btn--outlined:active {
  border-color: #b4b9c4;
}
.btn--text {
  background-color: transparent;
  color: #1b1e23;
  border-color: transparent;
}
.btn--text:hover {
  background-color: #f4f5f7;
}
.btn--text:active {
  background-color: #e9ebef;
}
.btn--elevated {
  background-color: #ffffff;
  color: #1b1e23;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.btn--elevated:hover {
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.12);
}
.btn--elevated:active {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.btn--tonal {
  background-color: #f4f5f7;
  color: #1b1e23;
}
.btn--tonal:hover {
  background-color: #e9ebef;
}
.btn--tonal:active {
  background-color: #dde0e5;
}
.btn--gradient {
  color: #ffffff;
  background-image: linear-gradient(90deg, #ea2869 0%, #5a3ff2 100%);
}
.btn--gradient:hover {
  opacity: 0.9;
}
.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hash-tag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.05em;
  padding: 6px 12px;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hash-tag-btn:hover {
  opacity: 0.8;
}
.hash-tag-btn:focus-visible {
  outline: 2px solid #1b1e23;
  outline-offset: 2px;
}
.hash-tag-btn--active {
  background-color: #1b1e23;
  color: #ffffff;
  font-weight: 500;
}
.hash-tag-btn--inactive {
  background-color: #ffffff;
  color: #5c6677;
  font-weight: 400;
  border-color: #dde0e5;
}
.hash-tag-btn__label {
  display: inline-block;
}
.hash-tag-btn__icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  flex-shrink: 0;
}

.quantity-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.quantity-button__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  box-sizing: border-box;
  border: none;
  background-color: #ffffff;
  color: #1b1e23;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.quantity-button__control:hover {
  background-color: #f4f5f7;
}
.quantity-button__control:active {
  background-color: #e9ebef;
}
.quantity-button__control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quantity-button__control:focus-visible {
  outline: 2px solid #1b1e23;
  outline-offset: 2px;
}
.quantity-button__icon {
  width: 16px;
  height: 16px;
}
.quantity-button__value {
  min-width: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: -0.05em;
  color: #1b1e23;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
  background-color: transparent;
  color: #1B1E23;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.icon-button:hover {
  background-color: #F4F5F7;
}
.icon-button:active {
  background-color: #E9EBEF;
}
.icon-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.icon-button--sm {
  width: 24px;
  height: 24px;
}
.icon-button--md {
  width: 32px;
  height: 32px;
}
.icon-button--lg {
  width: 40px;
  height: 40px;
}
.icon-button__icon {
  width: 16px;
  height: 16px;
}

.dropdown {
  position: relative;
  display: inline-block;
  font-size: 13px;
}
.dropdown__button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: transparent;
  color: #5C6677;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.dropdown__button:hover {
  color: #3D444F;
}
.dropdown__button:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.dropdown__value {
  color: #1B1E23;
}
.dropdown__icon {
  font-size: 10px;
}
.dropdown__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 120px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #1B1E23;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
  padding: 4px 0;
  z-index: 50;
  display: none;
}
.dropdown__menu--open {
  display: block;
}
.dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown__option {
  width: 100%;
  padding: 8px 12px;
  text-align: left;
  border: none;
  background: transparent;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: #3D444F;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dropdown__option:hover, .dropdown__option:focus-visible {
  background-color: #F4F5F7;
  outline: none;
}
.dropdown__option--selected {
  color: #1B1E23;
  font-weight: 500;
  text-decoration: underline;
}

.switch {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 999px;
  border: none;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.switch:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.switch:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background-color: #ffffff;
  transition: transform 0.2s ease;
}
.switch--on {
  background-color: #1B1E23;
}
.switch--on .switch__thumb {
  transform: translateX(14px);
}
.switch--off {
  background-color: #DDE0E5;
}
.switch--off .switch__thumb {
  transform: translateX(0);
}

.toast {
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 18px;
  background-color: rgba(92, 102, 119, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.toast__message {
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.46;
  letter-spacing: -0.05em;
  text-align: center;
  white-space: nowrap;
}
.toast--show {
  animation: toastFadeInDown 0.3s ease-out;
}
.toast--hide {
  animation: toastFadeOutUp 0.3s ease-in;
}

@keyframes toastFadeInDown {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes toastFadeOutUp {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
}
.search-bar {
  position: relative;
  width: 100%;
  height: 60px;
}
.search-bar__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.search-bar__back, .search-bar__search {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.search-bar__back:focus-visible, .search-bar__search:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.search-bar__back {
  margin-right: 16px;
}
.search-bar__search {
  margin-left: 16px;
  margin-right: 20px;
}
.search-bar__icon {
  width: 24px;
  height: 24px;
}
.search-bar__input {
  flex: 1;
  height: 24px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #abb2be;
}
.search-bar__input::placeholder {
  color: #abb2be;
}
.search-bar__input:focus {
  color: #1B1E23;
}
.search-bar__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  border: none;
  border-top: 2px solid #1B1E23;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.05em;
}
.tag--event {
  height: 24px;
  padding: 3px 12px;
  border-radius: 20px;
  background-color: #5998d7;
  color: #ffffff;
}
.tag--gift {
  padding: 2px 8px;
  border-radius: 8px 0 8px 0;
  background-color: #b1a59a;
  color: #ffffff;
}
.tag--flag {
  padding: 1px 6px 2px;
  border-radius: 4px;
  border: 1px solid #ccd1d8;
  background-color: #ffffff;
  color: #5c6677;
  font-size: 11px;
  line-height: 1.55em;
}

.add-to-cart {
  position: relative;
  border-top: 1px solid #DDE0E5;
  height: 88px;
  width: 100%;
}
.add-to-cart__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 42px;
  height: 100%;
}

.product-price-cart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 47px;
}
.product-price-cart-bar__price {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.product-price-cart-bar__label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.product-price-cart-bar__label-text {
  color: #1B1E23;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.462em;
  letter-spacing: -0.05em;
}
.product-price-cart-bar__original-price {
  color: #abb2be;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  text-decoration: line-through;
}
.product-price-cart-bar__value {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.product-price-cart-bar__discount-rate {
  color: #1B1E23;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
}
.product-price-cart-bar__discount-price {
  color: #ea2829;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
}
.product-price-cart-bar__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 12px 7px 14px;
  background-color: #1B1E23;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.product-price-cart-bar__button:hover {
  background-color: #2b2f35;
}
.product-price-cart-bar__button:active {
  background-color: #16181d;
}
.product-price-cart-bar__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-price-cart-bar__icon {
  width: 16px;
  height: 16px;
}
.product-price-cart-bar__button-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.462em;
  letter-spacing: -0.05em;
}

.product-set-thumbnail-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 32px;
  cursor: pointer;
}
.product-set-thumbnail-bar__title {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-set-thumbnail-bar__icon {
  width: 12px;
  height: 12px;
}
.product-set-thumbnail-bar__title-text {
  color: #3d444f;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
}
.product-set-thumbnail-bar__thumbnails {
  display: flex;
  align-items: center;
  gap: 1px;
}
.product-set-thumbnail-bar__thumbnail {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.product-set-thumbnail-bar__thumbnail--first {
  border-radius: 4px 0 0 4px;
}
.product-set-thumbnail-bar__thumbnail--last {
  border-radius: 0 4px 4px 0;
}
.product-set-thumbnail-bar__thumbnail-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-set-thumbnail-bar__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 30, 35, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 4px 4px 0;
}
.product-set-thumbnail-bar__overlay-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.545em;
  letter-spacing: -0.05em;
}

.sort-filter {
  position: relative;
  width: 100%;
  height: 48px;
  background-color: #ffffff;
}
.sort-filter__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6.54px 20px;
  height: 100%;
}
.sort-filter__count {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-right: auto;
}
.sort-filter__count-label, .sort-filter__count-value {
  color: #1B1E23;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714286em;
  letter-spacing: -0.05em;
}
.sort-filter__soldout {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}
.sort-filter__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.sort-filter__soldout-text {
  color: #3d444f;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4285714286em;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.sort-filter__divider {
  width: 0;
  height: 16px;
  border-left: 1px solid #DDE0E5;
  margin: 0;
  flex-shrink: 0;
}
.sort-filter__dropdown {
  margin-left: 16px;
}
.sort-filter__filter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.sort-filter__filter-button:hover {
  opacity: 0.7;
}
.sort-filter__filter-button:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.sort-filter__filter-icon {
  width: 32px;
  height: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.product-card__image {
  position: relative;
  width: 100%;
  background-color: #f5f7fa;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 16px 0;
  aspect-ratio: 1/1;
}
.product-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 247, 250, 0.1);
  backdrop-filter: blur(6.71px);
  border-radius: 8px;
  pointer-events: none;
  display: none;
  z-index: 5;
}
.product-card__image:has(.product-card__adult-button)::after {
  display: block;
}
.product-card__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  display: block;
}
.product-card__adult-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: 0.6px solid #ccd1d8;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}
.product-card__adult-button:hover {
  background-color: #ffffff;
}
.product-card__adult-button:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.product-card__adult-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.product-card__video-button {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}
.product-card__video-button:hover {
  background-color: #000;
}
.product-card__video-button:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.product-card__video-icon {
  width: 16px;
  height: 16px;
  display: block;
}
.product-card__cart-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 30, 35, 0.3);
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}
.product-card__cart-button:hover {
  background-color: #000;
}
.product-card__cart-button:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.product-card--compact .product-card__cart-button {
  width: 26px;
  height: 26px;
}
.product-card--medium .product-card__cart-button {
  width: 29px;
  height: 29px;
}
.product-card__cart-icon {
  width: 16px;
  height: 16px;
  margin-left: 2px;
  display: block;
}
.product-card__restock-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.product-card__restock-button:focus-visible {
  outline: 2px solid #1B1E23;
  outline-offset: 2px;
}
.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-card__brand {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.46em;
  letter-spacing: -0.05em;
  color: #1B1E23;
}
.product-card__md-keyword {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.46em;
  letter-spacing: -0.05em;
  color: #ea2869;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__name {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.46em;
  letter-spacing: -0.05em;
  color: #3d444f;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  display: flex;
  flex-direction: column;
}
.product-card__discount {
  display: flex;
  gap: 4px;
  align-items: center;
}
.product-card__discount-rate {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #1B1E23;
}
.product-card__original-price {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #abb2be;
}
.product-card__login-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #788497;
}
.product-card__login-link {
  text-decoration: underline;
  color: #ea2869;
}
.product-card__price-row {
  display: flex;
  gap: 4px;
  align-items: center;
}
.product-card__discount-price {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.47em;
  letter-spacing: -0.05em;
  color: #ea2829;
}
.product-card__price-won {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #3d444f;
}
.product-card__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.product-card[data-sold-out=true] .product-card__cart-button {
  display: none;
}

.header__nav {
  border-bottom: 1px solid #DDE0E5;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header__title {
  flex: 1;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #1B1E23;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  margin: 0;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer {
  width: 100%;
  margin-top: 64px;
}
.footer__notice {
  position: relative;
  background-color: #ffffff;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #eef0f2;
  text-decoration: none;
  cursor: pointer;
}
.footer__notice-text {
  color: #5C6677;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  flex: 1;
}
.footer__notice-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.footer__guide {
  display: flex;
  align-items: center;
  height: 52px;
  gap: 38px;
  background-color: #282c34;
  padding: 0 22px;
  margin: 0;
  list-style: none;
}
.footer__guide-link {
  color: #abb2be;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__guide-link:hover {
  color: #ffffff;
}
.footer__info {
  background-color: #1B1E23;
  padding: 20px;
}
.footer__info-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer__link:last-child {
  margin-bottom: 0;
}
.footer__link-text {
  color: #788497;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  transition: color 0.2s ease;
}
.footer__link:hover .footer__link-text {
  color: #ffffff;
}
.footer__link-icon {
  width: 8px;
  height: 8px;
}
.footer__divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #5C6677;
  opacity: 0.28;
  margin: 0;
}
.footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer__languages {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__language-link {
  color: #788497;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__language-link:hover {
  color: #ffffff;
}
.footer__language-divider {
  width: 0;
  height: 12px;
  border-left: 1px solid #5C6677;
}
.footer__exchange {
  display: flex;
  gap: 4px;
  align-items: center;
}
.footer__exchange-label, .footer__exchange-value {
  color: #abb2be;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
}
.footer__exchange-label {
  font-weight: 400;
}
.footer__exchange-value {
  font-weight: 700;
}
.footer__policies {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__policies li {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer__policy-link {
  color: #788497;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.462em;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__policy-link:hover {
  color: #ffffff;
}
.footer__policy-link--highlight {
  color: #eef0f2;
}
.footer__policy-divider {
  width: 0;
  height: 12px;
  border-left: 1px solid #424956;
}
.footer__copyright {
  color: #788497;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  margin: 0;
}

.notice {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  width: 100%;
}
.notice__divider {
  width: 100%;
  height: 0;
  border: none;
  margin-bottom: 20px;
  border-top: 1px dashed #DDE0E5;
}
.notice__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.notice__icon {
  width: 16px;
  height: 16px;
}
.notice__title {
  color: #3d444f;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  margin: 0;
}
.notice__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}
.notice__item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.notice__bullet {
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  margin-top: 8px;
  background-color: #abb2be;
}
.notice__bullet--important {
  background-color: #ea2829;
}
.notice__text {
  flex: 1;
  color: #788497;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  margin: 0;
}
.notice__text--important {
  color: #ea2829;
}
@media (min-width: 1024px) {
  .notice__button {
    display: none;
  }
}
.notice__button {
  height: 48px;
  font-size: 16px;
}

.tabs {
  background-color: #ffffff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
  height: 56px;
  border-bottom: 1px solid #dde0e5;
}
.tabs__list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  position: relative;
}
.tabs--secondary .tabs__list {
  gap: 24px;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: flex-start;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs--secondary .tabs__list::-webkit-scrollbar {
  display: none;
}
.tabs--secondary .tabs__item {
  flex: 0 0 auto;
}
.tabs--secondary .tabs__button {
  width: auto;
}
.tabs__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs__item:first-child {
  width: 111px;
}
.tabs__item:nth-child(2) {
  width: 111px;
}
.tabs__item:nth-child(3) {
  width: 111px;
}
.tabs__item--active .tabs__button {
  color: #1B1E23;
  font-weight: 700;
}
.tabs__button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #abb2be;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  transition: color 0.2s ease, font-weight 0.2s ease;
  text-align: center;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs__button--active {
  color: #1B1E23;
  font-weight: 700;
}
.tabs__button:hover {
  color: #1B1E23;
}
.tabs__active-bar {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 111px;
  height: 2px;
  background-color: #1B1E23;
  transition: left 0.2s ease, width 0.2s ease;
}

.hash-tag-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 8px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hash-tag-tabs::-webkit-scrollbar {
  display: none;
}
.hash-tag-tabs__item {
  flex: 0 0 auto;
  cursor: pointer;
}

.tabs-carousel {
  background-color: #ffffff;
  border-bottom: 1px solid #dde0e5;
  position: relative;
  width: 100%;
}
.tabs-carousel__swiper {
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs-carousel__swiper::-webkit-scrollbar {
  display: none;
}
.tabs-carousel__wrapper {
  padding: 0 20px;
}
.tabs-carousel__item {
  position: relative;
  height: 100%;
  width: auto;
  flex-shrink: 0;
}
.tabs-carousel__item:not(:first-child) {
  padding-left: 24px;
}
.tabs-carousel__button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease, font-weight 0.2s ease;
  white-space: nowrap;
}
.tabs-carousel__button--p2 {
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  color: #788497;
  font-weight: 400;
}
.tabs-carousel__button--h4 {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #abb2be;
  font-weight: 400;
}
.tabs-carousel__button--active.tabs-carousel__button--p2 {
  color: #1B1E23;
  font-weight: 700;
}
.tabs-carousel__button--active.tabs-carousel__button--h4 {
  color: #1B1E23;
}
.tabs-carousel__button:hover {
  color: #1B1E23;
}
.tabs-carousel__active-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #1B1E23;
  transition: all 0.2s ease;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0;
}
.brand:focus-visible {
  outline: 2px solid #1b1e23;
  outline-offset: 2px;
  border-radius: 12px;
}
.brand__image {
  width: 100%;
  aspect-ratio: 100/100;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 4px 0;
}
.brand__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.brand__name {
  color: #3d444f;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 101px;
  height: 22px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-list-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.brand-list-section__title {
  color: #1B1E23;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 0 0 20px 0;
}
@media (min-width: 1024px) {
  .brand-list-section__title {
    display: none;
  }
}
.brand-list-section__description {
  color: #5c6677;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  margin: 0 0 24px 0;
}
@media (min-width: 1024px) {
  .brand-list-section__description {
    display: none;
  }
}
.brand-list-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .brand-list-section__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.brand-list-section__grid > li:last-child:nth-child(3n+1) {
  grid-column-start: 2;
}
@media (min-width: 1024px) {
  .brand-list-section__grid > li:last-child:nth-child(3n+1) {
    grid-column-start: auto;
  }
}
@media (min-width: 1024px) {
  .brand-list-section__grid > li:last-child:nth-child(6n+1) {
    grid-column: span 6;
    width: calc((100% - 80px) / 6);
  }
}

.brand-carousel {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
.brand-carousel__title {
  color: #1B1E23;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 0 0 20px 0;
}
.brand-carousel__description {
  color: #5c6677;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  margin: 0 0 24px 0;
}
.brand-carousel__container {
  position: relative;
}
.brand-carousel__swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.brand-carousel__wrapper {
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.brand-carousel__slide {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
  flex-shrink: 0;
}
.brand-carousel__slide:last-child {
  margin-right: 0;
}
@media (min-width: 1024px) {
  .brand-carousel__slide {
    width: calc((100% - 80px) / 6);
  }
}
.brand-carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: -16px;
}
.brand-carousel__button:disabled {
  opacity: 0;
  cursor: default;
}
.brand-carousel__button--prev {
  left: -20px;
}
.brand-carousel__button--next {
  right: -20px;
}
.brand-carousel__button svg {
  display: block;
}

.dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 335px;
  height: auto;
  max-height: 90vh;
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #DDE0E5;
}
.dialog__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}
.dialog__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dialog__close:hover {
  background-color: #F4F5F7;
}
.dialog__close:active {
  background-color: #E9EBEF;
}
.dialog__close:focus {
  outline: none;
}
.dialog__close-icon {
  width: 20px;
  height: 20px;
  color: #5C6677;
}
.dialog__content {
  padding: 16px 20px;
  overflow-y: auto;
  max-height: 60vh;
}
.dialog__content-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #3D444F;
  margin: 0;
}
.dialog__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid #DDE0E5;
  justify-content: flex-end;
}
.dialog__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dialog__action-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #1B1E23;
}
.dialog__action-button--cancel {
  background-color: transparent;
  color: #000000;
  border: 1px solid transparent;
}
.dialog__action-button--cancel:hover {
  background-color: #F4F5F7;
}
.dialog__action-button--cancel:active {
  background-color: #E9EBEF;
}
.dialog__action-button--confirm {
  background-color: #1B1E23;
  color: #ffffff;
}
.dialog__action-button--confirm:hover {
  background-color: #2B2F35;
}
.dialog__action-button--confirm:active {
  background-color: #16181D;
}

.dialog-indicator {
  width: 40px;
  height: 4px;
  background-color: #DDE0E5;
  border-radius: 2px;
  margin: 8px auto;
}
.dialog-indicator--top {
  margin-top: 8px;
  margin-bottom: 0;
}
.dialog-indicator--bottom {
  margin-top: 0;
  margin-bottom: 8px;
}

.add-to-cart-dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  z-index: 1000;
}
.add-to-cart-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.add-to-cart-dialog__container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 80vh;
  background-color: #ffffff;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .add-to-cart-dialog__container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 16px;
  }
}
.add-to-cart-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #DDE0E5;
  flex-shrink: 0;
}
.add-to-cart-dialog__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.455em;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}
.add-to-cart-dialog__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.add-to-cart-dialog__close:hover {
  opacity: 0.7;
}
.add-to-cart-dialog__close:active {
  opacity: 0.5;
}
.add-to-cart-dialog__close-icon {
  width: 24px;
  height: 24px;
}
.add-to-cart-dialog__info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  flex-shrink: 0;
}
.add-to-cart-dialog__discount-rate {
  font-family: "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.833em;
  letter-spacing: 0;
  color: #ea2829;
  flex-shrink: 0;
  margin-top: 10px;
}
.add-to-cart-dialog__product-name {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  color: #1b1e23;
  margin: 0;
  flex: 1;
}
.add-to-cart-dialog__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  max-height: 40vh;
}
.add-to-cart-dialog__product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.add-to-cart-dialog__product-item {
  width: 100%;
}
.add-to-cart-dialog__product-item .product-card {
  display: flex;
  gap: 12px;
  padding: 0;
  border: none;
  background-color: transparent;
}
.add-to-cart-dialog__product-item .product-card__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.add-to-cart-dialog__product-item .product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.add-to-cart-dialog__product-item .product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.add-to-cart-dialog__product-item .product-card__info {
  margin: 0;
}
.add-to-cart-dialog__product-item .product-card__brand {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.462em;
  letter-spacing: -0.05em;
  color: #5C6677;
  margin-bottom: 4px;
}
.add-to-cart-dialog__product-item .product-card__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  color: #000000;
  margin: 0;
}
.add-to-cart-dialog__footer {
  display: flex;
  gap: 42px;
  padding: 20px;
  border-top: 1px solid #DDE0E5;
  flex-shrink: 0;
}
.add-to-cart-dialog__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.add-to-cart-dialog__quantity-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  color: #000000;
}
.add-to-cart-dialog__button {
  width: 100%;
}

.image-banner-dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  z-index: 1000;
}
.image-banner-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.image-banner-dialog__container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80vh;
  max-height: 80vh;
  background-color: #ffffff;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .image-banner-dialog__container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
  }
}
.image-banner-dialog__content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.image-banner-dialog__search {
  padding: 16px 20px;
  flex-shrink: 0;
  border-bottom: 1px solid #DDE0E5;
}
.image-banner-dialog__tabs {
  height: 52px;
  flex-shrink: 0;
  border-bottom: 1px solid #DDE0E5;
}
.image-banner-dialog__banners {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  min-height: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.image-banner-dialog__banners::-webkit-scrollbar {
  display: none;
}
.image-banner-dialog__actions {
  flex-shrink: 0;
  border-top: 1px solid #DDE0E5;
}

.image-banner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.image-banner-list__item {
  width: 100%;
}
.image-banner-list__banner {
  width: 100%;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.image-banner-list__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-banner-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  width: 100%;
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  margin: 0;
}
.image-banner-item__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.image-banner-item__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-banner-item__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.image-banner-item__title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  margin: 0;
}
.image-banner-item__description {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.46em;
  letter-spacing: -0.05em;
  margin: 0;
}
.image-banner-item--dark .image-banner-item__title {
  color: #1B1E23;
}
.image-banner-item--dark .image-banner-item__description {
  color: #5C6677;
}

.event-banner-list {
  position: relative;
  width: 100%;
  background-color: #FAF9F7;
  border-radius: 8px;
  padding: 8px;
}
.event-banner-list__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.event-banner-list__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-banner-item {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
  list-style: none;
  margin: 0;
}
.event-banner-item__image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.event-banner-item__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.event-banner-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: center;
  margin: 0;
}
.event-banner-item__condition {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.46em;
  letter-spacing: -0.05em;
  color: #A58768;
  margin: 0;
}
.event-banner-item__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43em;
  letter-spacing: -0.05em;
  color: #3D444F;
  margin: 0;
}
.event-banner-item__divider {
  height: 0;
  border: 0;
  border-top: 1px solid #EEF0F2;
  width: 100%;
  margin: 0;
}

.banner-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 335px;
  margin: 0;
  padding: 0;
}

.banner-item {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.banner-item__container {
  display: flex;
  width: 100%;
  height: 130px;
}
.banner-item__image {
  flex-shrink: 0;
  width: 98px;
  height: 98px;
  margin: 16px 0 0 12px;
  border-radius: 50%;
  background-color: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.banner-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 18px;
  margin-right: 12px;
  flex: 1;
  min-width: 0;
}
.banner-item__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43em;
  letter-spacing: -0.05em;
  color: #1B1E23;
  margin: 0 0 4px 0;
}
.banner-item__description {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.46em;
  letter-spacing: -0.05em;
  color: #5C6677;
  margin: 0;
}
.banner-item__divider {
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid #EEF0F2;
  margin: 0;
}

.kv-banner {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  outline: none;
}
.kv-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background-color: #c9e1fd;
}
@media (min-width: 1024px) {
  .kv-banner__background {
    height: 540px;
  }
}
.kv-banner__header {
  position: relative;
  padding: 48px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.kv-banner__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.kv-banner__period {
  color: #3D444F;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.46em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  margin: 0;
}
.kv-banner__title {
  color: #1b1e23;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.43em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  margin: 0;
}
.kv-banner__subtitle {
  color: #5c6677;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  margin: 0 0 32px 0;
}
.kv-banner__image-container {
  position: relative;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
}
.kv-banner__image {
  width: 100%;
  aspect-ratio: 804/512;
  max-width: 900px;
  margin: 0 auto;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}
.kv-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.kv-banner[data-onclick] {
  cursor: pointer;
}

.product-list {
  width: 100%;
}
.product-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 9px;
  row-gap: 32px;
}
@media (min-width: 1024px) {
  .product-list__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 24px;
    row-gap: 48px;
  }
}

.product-list-compact {
  width: 100%;
}
.product-list-compact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 8px;
  row-gap: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.product-grid__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product-grid__item > * {
  width: 100%;
  height: 100%;
}

.product-grid-carousel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.product-grid-carousel__swiper {
  width: 100%;
  height: auto;
}
.product-grid-carousel__wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-grid-carousel__slide {
  width: 100%;
}
.product-grid-carousel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-grid-carousel__item {
  width: 100%;
}
.product-grid-carousel__pagination {
  position: relative;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-grid-carousel__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dde0e5;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.product-grid-carousel__bullet--active {
  background-color: #1B1E23;
}

.product-carousel {
  position: relative;
  width: 100%;
}
.product-carousel__swiper {
  width: 100%;
}
.product-carousel__wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-carousel__slide {
  width: 33.333%;
  flex-shrink: 0;
}
.product-carousel__button {
  display: none;
  position: absolute;
  top: 33.333%;
  transform: translateY(-33.333%);
  z-index: 10;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.product-carousel__button:disabled {
  opacity: 0;
  cursor: default;
}
@media (min-width: 1024px) {
  .product-carousel__button {
    display: flex;
  }
}
.product-carousel__button--prev {
  left: -20px;
}
.product-carousel__button--next {
  right: -20px;
}

.product-set-detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
}
.product-set-detail__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.product-set-detail__tag {
  margin-bottom: 8px;
}
.product-set-detail__title {
  color: #1B1E23;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.455em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  margin: 0 0 8px 0;
}
.product-set-detail__subtitle {
  color: #5c6677;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429em;
  letter-spacing: -0.05em;
  text-align: center;
  width: 100%;
  margin: 0 0 24px 0;
}
.product-set-detail__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.product-set-detail__swiper {
  width: 100%;
  height: 100%;
}
.product-set-detail__wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-set-detail__slide {
  width: 100%;
  flex-shrink: 0;
}
.product-set-detail__image {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.product-set-detail__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.product-set-detail__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to top, rgb(115, 115, 115) 0%, rgba(115, 115, 115, 0) 100%);
  pointer-events: none;
  z-index: 5;
}
.product-set-detail__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.product-set-detail__content {
  padding: 0 16px 16px 16px;
  border: 1px solid #dde0e5;
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.product-set-detail__thumb-bar {
  margin: 16px 0;
}
.product-set-detail__thumbnail-bar {
  cursor: pointer;
}
.product-set-detail__divider {
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid #eef0f2;
  margin: 0 0 16px 0;
}

/*# sourceMappingURL=main.css.map */
