@charset "UTF-8";
:root {
  font-family: var(--v-font-sans);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-all;
  overflow-wrap: break-word;
}

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

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

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

button,
input,
select,
textarea,
optgroup,
option {
  font: inherit;
}

:where(button, label) {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

[data-scroll-lock-ignore=true] {
  overflow: auto;
}

:root {
  --v-font-sans: 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;
  --v-font-serif: Gloock, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", serif;
  --v-font-regular: 400;
  --v-font-bold: 700;
  --v-font-black: 900;
  --v-space-0: 0;
  --v-space-1: 4px;
  --v-space-2: 8px;
  --v-space-3: 12px;
  --v-space-4: 16px;
  --v-space-5: 20px;
  --v-space-6: 24px;
  --v-space-7: 32px;
  --v-space-8: 40px;
  --v-space-9: 48px;
  --v-space-10: 52px;
  --v-space-11: 56px;
  --v-space-12: 72px;
  --v-space-13: 80px;
}

:root {
  --v-grid-columns: 12;
  --v-grid-gutter: 24px;
  --v-grid-column-size: calc(
    (100% - (var(--v-grid-columns) - 1) * var(--v-grid-gutter)) /
      var(--v-grid-columns)
  );
  --v-grid-colspan-2: calc(
    var(--v-grid-column-size) * 2 + var(--v-grid-gutter)
  );
  --v-grid-colspan-3: calc(
    var(--v-grid-column-size) * 3 + var(--v-grid-gutter) * 2
  );
  --v-grid-colspan-4: calc(
    var(--v-grid-column-size) * 4 + var(--v-grid-gutter) * 3
  );
  --v-grid-colspan-5: calc(
    var(--v-grid-column-size) * 5 + var(--v-grid-gutter) * 4
  );
  --v-grid-colspan-6: calc(
    var(--v-grid-column-size) * 6 + var(--v-grid-gutter) * 5
  );
  --v-grid-colspan-7: calc(
    var(--v-grid-column-size) * 7 + var(--v-grid-gutter) * 6
  );
  --v-grid-colspan-8: calc(
    var(--v-grid-column-size) * 8 + var(--v-grid-gutter) * 7
  );
  --v-grid-colspan-9: calc(
    var(--v-grid-column-size) * 9 + var(--v-grid-gutter) * 8
  );
  --v-grid-colspan-10: calc(
    var(--v-grid-column-size) * 10 + var(--v-grid-gutter) * 9
  );
  --v-grid-colspan-11: calc(
    var(--v-grid-column-size) * 11 + var(--v-grid-gutter) * 10
  );
  --v-grid-colspan-12: calc(
    var(--v-grid-column-size) * 12 + var(--v-grid-gutter) * 11
  );
  --v-side-margin: 40px;
  --v-default-button-max-width: 908px;
  --v-banner-name-size-small: 40px;
  --v-banner-name-size-semi: 48px;
  --v-banner-name-size-medium: 80px;
  --v-banner-name-size-large: 120px;
  --v-banner-name-size-xlarge: 160px;
  --v-banner-name-line-height: 1;
  --v-small-title-size-small: 16px;
  --v-small-title-size-medium: 20px;
  --v-small-title-size-large: 28px;
  --v-small-title-size-xlarge: 30px;
  --v-banner-sub-name-size-small: 16px;
  --v-banner-sub-name-size-medium: 20px;
  --v-banner-sub-name-size-large: 31px;
  --v-banner-sub-name-size-xlarge: 32px;
  --v-button-height: 48px;
  --v-button-font-size: 16px;
  --v-button-wrap-padding: 0 0 40px;
  --v-item-list-columns: 3;
  --v-item-list-gap-x: var(--v-space-6);
  --v-item-list-gap-y: var(--v-space-6);
  --v-tab-button-padding-bottom: 24px;
  --v-tab-button-font-size: 20px;
  --v-tab-button-font-weight-selected: 700;
  --v-title-padding-top: 40px;
  --v-title-margin-bottom: 20px;
  --v-title-font-size: 44px;
  --v-title-line-height: 0.9;
  --v-title-descender-pad: 5px;
  --v-quick-link-gap: 16px;
  --v-quick-link-font-size: 20px;
  --v-quick-link-line-height: 1.3;
  --v-line-banner-height: 60px;
  --v-range-slider-thumb-size: 16px;
  --v-range-slider-label-font-size: 16px;
  --v-select-trigger-height: 48px;
  --v-select-padding-y: 12px;
  --v-select-padding-x: 20px;
  --v-select-options-padding: 12px 0;
  --v-option-set-font-size: 12px;
}

.v-pc {
  --v-grid-columns: 12;
  --v-grid-gutter: 24px;
  --v-grid-column-size: calc(
    (100% - (var(--v-grid-columns) - 1) * var(--v-grid-gutter)) /
      var(--v-grid-columns)
  );
  --v-grid-colspan-2: calc(
    var(--v-grid-column-size) * 2 + var(--v-grid-gutter)
  );
  --v-grid-colspan-3: calc(
    var(--v-grid-column-size) * 3 + var(--v-grid-gutter) * 2
  );
  --v-grid-colspan-4: calc(
    var(--v-grid-column-size) * 4 + var(--v-grid-gutter) * 3
  );
  --v-grid-colspan-5: calc(
    var(--v-grid-column-size) * 5 + var(--v-grid-gutter) * 4
  );
  --v-grid-colspan-6: calc(
    var(--v-grid-column-size) * 6 + var(--v-grid-gutter) * 5
  );
  --v-grid-colspan-7: calc(
    var(--v-grid-column-size) * 7 + var(--v-grid-gutter) * 6
  );
  --v-grid-colspan-8: calc(
    var(--v-grid-column-size) * 8 + var(--v-grid-gutter) * 7
  );
  --v-grid-colspan-9: calc(
    var(--v-grid-column-size) * 9 + var(--v-grid-gutter) * 8
  );
  --v-grid-colspan-10: calc(
    var(--v-grid-column-size) * 10 + var(--v-grid-gutter) * 9
  );
  --v-grid-colspan-11: calc(
    var(--v-grid-column-size) * 11 + var(--v-grid-gutter) * 10
  );
  --v-grid-colspan-12: calc(
    var(--v-grid-column-size) * 12 + var(--v-grid-gutter) * 11
  );
  --v-side-margin: 40px;
  --v-default-button-max-width: 908px;
  --v-banner-name-size-small: 40px;
  --v-banner-name-size-semi: 48px;
  --v-banner-name-size-medium: 80px;
  --v-banner-name-size-large: 120px;
  --v-banner-name-size-xlarge: 160px;
  --v-banner-name-line-height: 1;
  --v-small-title-size-small: 16px;
  --v-small-title-size-medium: 20px;
  --v-small-title-size-large: 28px;
  --v-small-title-size-xlarge: 30px;
  --v-banner-sub-name-size-small: 16px;
  --v-banner-sub-name-size-medium: 20px;
  --v-banner-sub-name-size-large: 31px;
  --v-banner-sub-name-size-xlarge: 32px;
  --v-button-height: 48px;
  --v-button-font-size: 16px;
  --v-button-wrap-padding: 0 0 40px;
  --v-item-list-columns: 3;
  --v-item-list-gap-x: var(--v-space-6);
  --v-item-list-gap-y: var(--v-space-6);
  --v-tab-button-padding-bottom: 24px;
  --v-tab-button-font-size: 20px;
  --v-tab-button-font-weight-selected: 700;
  --v-title-padding-top: 40px;
  --v-title-margin-bottom: 20px;
  --v-title-font-size: 44px;
  --v-title-line-height: 0.9;
  --v-title-descender-pad: 5px;
  --v-quick-link-gap: 16px;
  --v-quick-link-font-size: 20px;
  --v-quick-link-line-height: 1.3;
  --v-line-banner-height: 60px;
  --v-range-slider-thumb-size: 16px;
  --v-range-slider-label-font-size: 16px;
  --v-select-trigger-height: 48px;
  --v-select-padding-y: 12px;
  --v-select-padding-x: 20px;
  --v-select-options-padding: 12px 0;
  --v-option-set-font-size: 12px;
}

.v-title {
  padding-bottom: var(--v-title-descender-pad, 2px);
  padding-top: var(--v-title-padding-top, 30px);
  margin-bottom: calc(var(--v-title-margin-bottom, 16px) - var(--v-title-descender-pad, 2px));
  margin-inline: var(--v-title-side-margin, var(--v-side-margin));
  font-size: var(--v-title-font-size, 30px);
  line-height: var(--v-title-line-height, 1);
  letter-spacing: var(--v-title-leading, -0.03em);
  text-transform: uppercase;
}
.v-title.v-font-serif {
  --v-title-descender-pad: 3px;
}

.v-title--wide {
  --v-title-side-margin: var(--v-title-wide-side-margin, 0);
}

.v-title:has(~ .v-countdown-timer) {
  --v-title-margin-bottom: 4px;
}

.v-image-title {
  margin-inline: var(--v-title-side-margin, var(--v-side-margin));
}

.v-image-title--wide {
  --v-title-side-margin: 0;
}

.v-corner-header {
  --v-title-padding-top: 0;
  --v-title-margin-bottom: 0;
  --v-title-side-margin: 0;
  --v-timer-margin-top: 0;
  --v-timer-margin-bottom: 0;
  --v-timer-side-margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--v-corner-header-padding-top, 30px);
  padding-inline: var(--v-corner-header-padding-inline, var(--v-side-margin, 24px));
  padding-bottom: var(--v-corner-header-padding-bottom, 16px);
}

.v-corner-header--wide {
  --v-corner-header-padding-inline: 0;
}

.v-image-title {
  overflow: clip;
}
.v-image-title img {
  display: block;
  max-width: 100%;
  height: auto;
}

.v-button {
  background-color: var(--v-button-background-color, transparent);
  color: var(--v-button-text-color, currentColor);
  border-width: var(--v-button-border-width, 0);
  border-style: var(--v-button-border-style, solid);
  border-color: var(--v-button-border-color, currentColor);
  border-radius: var(--v-button-border-radius, 0);
  display: var(--v-button-display, inline-flex);
  align-items: center;
  justify-content: center;
  max-width: var(--v-button-max-width, 100%);
  width: var(--v-button-width);
  height: var(--v-button-height);
  padding: var(--v-button-padding);
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  text-decoration: none;
  font-weight: var(--v-button-font-weight, inherit);
  font-size: var(--v-button-font-size, 1em);
  line-height: var(--v-button-line-height, inherit);
  letter-spacing: var(--v-button-leading, normal);
}

.v-button__text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.v-button--full {
  --v-button-display: flex;
  --v-button-width: 100%;
}

.v-button--outlined {
  height: var(--v-button-height, 40px);
  --v-button-padding: 0.5em;
  --v-button-border-width: 1px;
  font-size: var(--v-button-font-size, 14px);
  --v-button-line-height: 1.3;
  --v-button-leading: -0.01em;
}

.v-button-wrap {
  padding: var(--v-button-wrap-padding, 0 24px 24px);
  margin: var(--v-button-wrap-margin);
}
.v-button-wrap .v-button {
  max-width: var(--v-default-button-max-width);
  margin: 0 auto;
}

.v-checkbox {
  --v-checkbox-width: 20px;
  position: relative;
  display: var(--v-checkbox-display, flex);
  width: var(--v-checkbox-width);
  height: var(--v-checkbox-height, var(--v-checkbox-width));
  align-items: center;
  justify-content: center;
  border-width: var(--v-checkbox-border-width, 1px);
  border-style: var(--v-checkbox-border-style, solid);
  border-color: var(--v-checkbox-border-color, #e0e0e0);
  margin-right: var(--v-checkbox-margin-right, 12px);
  background-color: var(--v-checkbox-bg-color, #fff);
}
.v-checkbox::after {
  content: var(--v-checkbox-after-content, url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="9" viewBox="0 0 12 9" fill="none"><path d="M1 4L5 7.5L11.5 1.5" stroke="%23E0E0E0" stroke-width="1.4"/></svg>'));
  display: var(--v-checkbox-after-display, inline-block);
  line-height: var(--v-checkbox-after-line-height, 9px);
}
.v-checkbox:has(:checked) {
  --v-checkbox-bg-color: #131922;
  --v-checkbox-border-color: var(--v-checkbox-bg-color);
  --v-checkbox-after-content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="9" viewBox="0 0 12 9" fill="none"><path d="M1 4L5 7.5L11.5 1.5" stroke="%23fff" stroke-width="1.4"/></svg>');
}
.v-checkbox input {
  position: absolute;
  inset: 0;
  opacity: 0;
  appearance: none;
}

.v-radio {
  --v-radio-size: 20px;
  --v-radio-check-size: 10px;
  position: relative;
  display: var(--v-radio-display, flex);
  width: var(--v-radio-size);
  height: var(--v-radio-size);
  align-items: center;
  justify-content: center;
  border-width: var(--v-radio-border-width, 1px);
  border-style: var(--v-radio-border-style, solid);
  border-color: var(--v-radio-border-color, #e0e0e0);
  border-radius: var(--v-radio-radius, 50%);
  margin-right: var(--v-radio-margin-right, 12px);
  background-color: var(--v-radio-bg-color, #fff);
}
.v-radio::after {
  content: "";
  opacity: var(--v-radio-check-opacity, 0);
  display: flex;
  width: var(--v-radio-check-size, 10px);
  height: var(--v-radio-check-size, 10px);
  border-radius: var(--v-radio-check-radius, 50%);
  background: var(--v-radio-active-color, #000);
}
.v-radio:has(:checked) {
  --v-radio-check-opacity: 1;
  --v-radio-border-color: var(--v-radio-active-color, #000);
  --v-radio-border-color: var(--v-radio-active-color, #000);
}
.v-radio input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.v-text-field {
  display: flex;
  align-items: center;
  width: var(--v-text-field-width, 100%);
  padding: 12px 16px;
  border: 1px solid var(--v-text-field-border-color, #eee);
  border-radius: 0;
  box-shadow: none;
  background-color: var(--v-text-field-bg-color, #fff);
  color: var(--v-text-field-fg-color, #000);
  font-size: var(--v-text-field-font-size, 14px);
  line-height: var(--v-text-field-line-height, 1.3);
  text-overflow: ellipsis;
}
.v-text-field::placeholder {
  color: var(--v-text-field-placeholder-color, #999);
}
.v-text-field::disabled, .v-text-field:read-only {
  --v-text-field-border-color: #ddd;
  --v-text-field-bg-color: #f6f6f6;
  --v-text-field-fg-color: #c8c8c8;
}
.v-text-field:focus {
  --v-text-field-border-color: #000;
}

:where(video-player) {
  display: block;
}

:where(video) {
  margin: 0 auto;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.v-video-player:is([playing], [paused]),
.v-video-player .vjs-ended {
  --v-big-play-button-opacity: 0;
}
.v-video-player :where(video) {
  width: 100%;
  height: 100%;
}
.v-video-player video {
  object-fit: var(--v-video-fit, var(--v-media-fit, contain));
}
.v-video-player .video-js {
  will-change: transform;
}
.v-video-player .video-js .vjs-icon-placeholder::before {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: var(--v-video-player-icon-size) var(--v-video-player-icon-size);
  background-repeat: no-repeat;
  background-position: 50%;
}
.v-video-player .video-js .vjs-poster {
  opacity: 1;
  transition: opacity 0.1s linear;
  pointer-events: none;
  display: inline-block;
}
.v-video-player .video-js .vjs-poster[hidden] {
  opacity: 0;
  display: inline-block !important;
}
.v-video-player .video-js .vjs-poster img {
  object-fit: cover;
}
.v-video-player .video-js .vjs-big-play-button {
  --v-video-player-icon-size: var(--v-video-player-play-button-size, 40px);
  transition: opacity 0.2s linear;
  opacity: var(--v-big-play-button-opacity, 1);
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
}
.v-video-player .video-js .vjs-big-play-button, .v-video-player .video-js .vjs-big-play-button:hover, .v-video-player .video-js .vjs-big-play-button:focus {
  background: none;
}
.v-video-player .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2220%22%20fill%3D%22%23000%22%20opacity%3D%22.3%22%2F%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M16%2026.929V13.07L28.001%2020%2016%2026.929Z%22%20opacity%3D%22.7%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-current-time {
  pointer-events: none;
  opacity: var(--v-current-time-opacity, 0);
  transition: opacity 0.2s linear;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: var(--v-video-current-time-size, 14px);
}
.v-video-player .video-js .vjs-control-bar {
  --v-video-player-icon-size: var(
    --v-video-player-control-button-size,
    36px
  );
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
}
.v-video-player .video-js .vjs-control-bar .vjs-control {
  width: var(--v-video-player-control-button-size, 36px);
  height: var(--v-video-player-control-button-size, 36px);
}
.v-video-player .video-js .vjs-play-control .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-play:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-opacity%3D%22.7%22%20d%3D%22M25%2018%2013%2024.928V11.072L25%2018Z%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-pause:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M13.5%2011v14m9-14v14%22%20opacity%3D%22.7%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-replay:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cg%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%3E%3Cpath%20d%3D%22M11.5%2018A6.5%206.5%200%201%200%2018%2011.5H13.821%22%2F%3E%3Cpath%20d%3D%22m16.5%209-3%202.5%203%202.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-low:before,
.v-video-player .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-mid:before,
.v-video-player .video-js .vjs-mute-control .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-high:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cg%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%3E%3Cpath%20d%3D%22M10.39%2020.852V14.37h4.248l6.706-3.87V25l-6.706-4-4.247-.148Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24%2014v8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-volume-mute:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cg%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%3E%3Cpath%20d%3D%22M10.398%2020.852V14.37h4.247L21.352%2011v14L15.39%2022.407M10.203%2024.482%2025.76%2011%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.v-video-player .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.v-video-player .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
  width: var(--v-video-player-control-button-size, 36px);
}
.v-video-player .video-js .vjs-volume-horizontal {
  display: none;
}
.v-video-player .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.v-video-player .video-js .vjs-icon-fullscreen-enter:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2036%2036%22%3E%3Cpath%20stroke%3D%22%23fff%22%20opacity%3D%22.7%22%20d%3D%22M11.5%2020.5v4h4M24.5%2020.5v4h-4M11.5%2015.5v-4h4M24.5%2015.5v-4h-4%22%2F%3E%3C%2Fsvg%3E");
}
.v-video-player .video-js .vjs-fullscreen-close-button {
  display: none;
}
.v-video-player .video-js.vjs-fullscreen video {
  --v-video-fit: contain;
}
.v-video-player .video-js.vjs-fullscreen video::-webkit-media-controls-fullscreen-button {
  display: none;
}
.v-video-player .video-js.vjs-fullscreen .vjs-fullscreen-close-button {
  position: absolute;
  top: 0px;
  right: 6px;
  width: 48px;
  height: 56px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-video-player .video-js.vjs-fullscreen .vjs-fullscreen-close-button:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2034%2034%22%3E%0A%20%20%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20d%3D%22m8.868%208.868%2016.264%2016.264m0-16.264L8.868%2025.132%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: cover;
}
.v-video-player[aspect-ratio] {
  position: relative;
}
.v-video-player[aspect-ratio] > .video-js {
  width: 100% !important;
  height: auto !important;
  padding-top: 0 !important;
  aspect-ratio: var(--v-video-player-aspect-ratio, 2/3);
}
.v-video-player[currenttimedisplay]:is([playing], [paused]) {
  --v-current-time-opacity: 1;
  --v-duration-opacity: 0;
}
.v-video-player[duration] .v-video-player__duration {
  pointer-events: none;
  position: absolute;
  opacity: var(--v-duration-opacity, 1);
  top: 0;
  right: 0;
  font-size: 10px;
  line-height: 3em;
  min-width: 2em;
  padding-left: 1em;
  padding-right: 1em;
  color: #fff;
}
.v-video-player[duration] .v-video-player__time {
  transform: translate3d(0, 0, 0);
}
.v-video-player .vjs-fullscreen .vjs-big-play-button,
.v-video-player .vjs-fullscreen .vjs-control-bar,
.v-video-player .vjs-fullscreen .vjs-control {
  display: none !important;
}
.v-video-player .vjs-using-native-controls:not(.vjs-playing, .vjs-has-started) .vjs-big-play-button {
  display: block;
}
.v-video-player .vjs-using-native-controls .vjs-user-inactive {
  opacity: 0;
}
.v-video-player .vjs-using-native-controls .vjs-user-active {
  opacity: 1;
}
.v-video-player .vjs-using-native-controls.vjs-playing:not(.vjs-controls-disabled) .vjs-control-bar, .v-video-player .vjs-using-native-controls.vjs-has-started:not(.vjs-controls-disabled) .vjs-control-bar {
  display: flex !important;
}
.v-video-player .vjs-using-native-controls.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar {
  opacity: 0;
}

.v-media-embed {
  position: relative;
  display: block;
  aspect-ratio: var(--v-media-aspect-ratio);
  width: 100%;
  height: auto;
  overflow: clip;
}

.v-media_aspect_default,
.v-media_aspect_2-3 {
  --v-media-aspect-ratio: 2 / 3;
}

.v-media_aspect_square {
  --v-media-aspect-ratio: 1 / 1;
}

.v-media-embed--cover {
  --v-media-fit: cover;
}

.v-media-embed--dim::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--v-media-dim, rgba(0, 0, 0, 0.03));
}

.v-media-embed__element {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: var(--v-media-aspect-ratio);
  object-fit: var(--v-media-fit, contain);
  object-position: var(--v-media-position, center);
}

.v-item-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--v-item-list-columns, 2), minmax(0, 1fr));
  column-gap: var(--v-item-list-gap-x, var(--v-space-2));
  row-gap: var(--v-item-list-gap-y, var(--v-space-7));
}

.v-item-list_col_1 {
  --v-item-list-columns: 1;
}

.v-item-list_col_2 {
  --v-item-list-columns: 2;
}

.v-item-list_col_3 {
  --v-item-list-columns: 3;
}

.v-item-list_col_4 {
  --v-item-list-columns: 4;
}

.v-item-list_col_5 {
  --v-item-list-columns: 5;
}

:where(.v-bullet-list) {
  display: flex;
  flex-direction: column;
  gap: var(--v-bullet-list-gap, 8px) 0;
  color: var(--v-bullet-list-color, #404040);
  font-size: var(--v-bullet-list-font-size, 14px);
  line-height: var(--v-bullet-list-line-height, 20px);
}
:where(.v-bullet-list) > li {
  position: relative;
  padding-left: var(--v-bullet-list-text-indent, 10px);
  word-break: var(--v-bullet-list-word-break, keep-all);
  overflow-wrap: var(--v-bullet-list-overflow-wrap, break-word);
}
:where(.v-bullet-list) > li::before {
  content: "";
  position: absolute;
  left: var(--v-bullet-x, 0px);
  top: var(--v-bullet-y, calc((var(--v-bullet-list-font-size, 14px) * var(--v-bullet-list-line-height, 1.3) - var(--v-bullet-size, 2px)) / 2));
  width: var(--v-bullet-size, 2px);
  height: var(--v-bullet-size, 2px);
  background: var(--v-bullet-color, currentColor);
  border-radius: 50%;
}

.v-popup-body .v-bullet-list > li > ul {
  margin-top: var(--v-bullet-list-gap, 8px);
}

:where(.v-bullet-list--condensed) {
  --v-bullet-list-gap: 4px;
}

.v-coupon {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--v-coupon-gap, 4px);
  background-color: var(--v-coupon-bg-color, #000);
  color: var(--v-coupon-color, #fff);
  padding-block: var(--v-coupon-padding-block, 15px);
  padding-inline: var(--v-coupon-padding-inline, 20px);
  font-weight: var(--v-coupon-font-weight, 400);
  line-height: var(--v-coupon-line-height, 1.3x);
}
.v-coupon:not(.v-coupon--disabled) {
  padding-right: calc(var(--v-coupon-padding-inline, 20px) + var(--v-coupon-download-size, 32px) + 38px);
}

.v-coupon__name {
  font-size: var(--v-coupon-name-font-size, 12px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-coupon__value {
  display: flex;
  align-items: baseline;
  column-gap: 4px;
}

.v-coupon__amount {
  --v-coupon-name-line-height: 1;
  font-size: var(--v-coupon-amount-font-size, 32px);
  font-weight: var(--v-coupon-amount-font-weight, 700);
}

.v-coupon__unit {
  font-size: var(--v-coupon-unit-font-size, 20px);
  font-weight: var(--v-coupon-unit-font-weight, 700);
}

.v-coupon__period {
  color: var(--v-coupon-muted-color, #999);
  font-size: var(--v-coupon-muted-font-size, 10px);
  opacity: 0.85;
}

.v-coupon__download {
  position: absolute;
  top: 50%;
  right: 20px;
  width: var(--v-coupon-download-size, 32px);
  height: var(--v-coupon-download-size, 32px);
  margin-top: calc(var(--v-coupon-download-size, 32px) / -2);
}

.v-coupon--disabled {
  --v-coupon-bg-color: #999;
  --v-coupon-muted-color: #eee;
}
.v-coupon--disabled .v-coupon__download {
  display: none;
}

countdown-timer {
  display: block;
  font-feature-settings: "tnum";
}

countdown-timer [data-timer] {
  display: flex;
  align-items: center;
}

.v-countdown-timer {
  margin-top: var(--v-timer-margin-top, 0);
  margin-bottom: var(--v-timer-margin-bottom, 16px);
  margin-inline: var(--v-timer-side-margin, var(--v-side-margin));
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.v-wish-button {
  --v-wish-button-icon-base: #999;
  --v-wish-button-icon-fill: #000;
  --v-wish-button-icon-fill-bg: #fff;
  --v-wish-button-icon-fill-bg-opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  width: var(--v-wish-button-width, var(--v-wish-button-size, 36px));
  height: var(--v-wish-button-height, var(--v-wish-button-size, 36px));
  overflow: clip;
  color: var(--v-wish-button-icon-base);
}
.v-wish-button.on {
  color: var(--v-wish-button-icon-fill);
}
.v-wish-button.on path {
  fill: currentColor;
  stroke: currentColor;
  --v-wish-button-icon-fill-bg-opacity: 1;
}
.v-wish-button svg {
  display: block;
  width: var(--v-wish-button-icon-width, var(--v-wish-button-icon-size, 24px));
  height: var(--v-wish-button-icon-height, var(--v-wish-button-icon-size, 24px));
}
.v-wish-button path {
  stroke: var(--v-wish-button-icon-base);
  fill: var(--v-wish-button-icon-fill-bg);
  fill-opacity: var(--v-wish-button-icon-fill-bg-opacity);
}

.v-share-button {
  --v-share-button-icon-stroke: #999;
  --v-share-button-icon-fill: #000;
  --v-icon-size: var(--v-share-button-icon-size, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  width: var(--v-share-button-width, var(--v-share-button-size, 36px));
  height: var(--v-share-button-height, var(--v-share-button-size, 36px));
  overflow: clip;
}
.v-share-button .v-icon_share path,
.v-share-button .v-icon_share circle {
  stroke: var(--v-share-icon-stroke, currentColor);
  vector-effect: non-scaling-stroke;
}
.v-share-button .v-icon_share circle {
  fill: var(--v-share-icon-fill, #fff);
}

pop-over:not(:defined) {
  display: none;
}

.v-has-popover {
  position: relative;
}

.v-popover {
  --popover-max-width: calc(
    min(100vw, 1440px) - var(--popover-left, 0px) - var(
        --popover-right,
        0px
      ) - var(--v-side-margin, 0px) *
      2
  );
  --popover-z-index: calc(var(--v-site-header-z) - 10);
}
.v-popover::part(container) {
  padding: var(--v-popover-padding, 15px 23px 15px 15px);
  margin-top: 8px;
  background-color: #fff;
  color: var(--v-popover-text-color, #6d6d6d);
  border: 1px solid #999;
  font-size: var(--v-popover-font-size, 12px);
  line-height: var(--v-popover-line-height, 1.3);
}

.v-star-rating {
  --v-star-icon-gap: 2px;
  --v-star-icon-size: 12px;
  --v-star-font-size: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.v-star-rating .v-star-icons {
  display: flex;
  gap: var(--v-star-icon-gap);
  width: calc(var(--v-star-icon-size) * var(--v-rating-value, 0) + var(--v-star-icon-gap) * round(var(--v-rating-value, 0.5) - 0.5));
  overflow: hidden;
  overflow: clip;
  color: #131922;
}
.v-star-rating .v-star-icons > svg {
  flex-shrink: 0;
  width: calc(var(--v-star-icon-size) * 5 + var(--v-star-icon-gap) * 4);
}
.v-star-rating .v-star-meta {
  font-size: 12px;
  line-height: 1.5;
  color: #000;
}
.v-star-rating .v-star-rating__review-count {
  color: #808080;
}

spin-button {
  display: flex;
  align-items: center;
  font-family: var(--spin-button-font-family, inherit);
  font-size: var(--spin-button-font-size, 14px);
  width: var(--spin-button-width, 100%);
  height: var(--spin-button-height, 44px);
  border: var(--spin-button-border, 1px solid #ddd);
  border-radius: var(--spin-button-border-radius, 0);
  background: var(--spin-button-bg, #fff);
  overflow: hidden;
}

spin-button > input[type=number] {
  appearance: textfield;
  outline: none;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  transform: scale(0.875);
  /* 필요 시 폭/패딩은 사용자 정의 (컴포넌트 shadow 스타일이 flex 배치 담당) */
}

spin-button > input[type=number]::-webkit-outer-spin-button,
spin-button > input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 비활성 상태 (호스트 disabled 속성 또는 내부 input disabled 둘 다 대응) */
spin-button[disabled],
spin-button:has(> input[type=number][disabled]) {
  opacity: var(--spin-button-disabled-opacity, 0.6);
  pointer-events: none;
}

custom-select:not(:defined) {
  display: inline-block;
}
custom-select:not(:defined).v-select-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--v-select-chevron-size, 24px);
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: var(--v-select-trigger-height, 44px);
  padding: var(--v-select-padding-y, 0) var(--v-select-padding-x, 12px);
  border-width: var(--v-select-border-width, 1px);
  border-style: var(--v-select-border-style, solid);
  border-color: var(--v-select-border-color, #eee);
  margin: 0;
  background-color: var(--v-select-trigger-bg, #fff);
  text-align: left;
  cursor: pointer;
  font-size: inherit;
}
custom-select:not(:defined).v-select-box:before {
  content: attr(label);
}
custom-select:not(:defined) [role=option] {
  display: none;
}

.v-select-box:not(:has([role=option]:nth-of-type(2))) {
  --v-select-options-padding: 0;
}
.v-select-box [role=option] {
  padding: 13px 16px;
  white-space: var(--v-option-white-space, nowrap);
  overflow: clip;
  text-overflow: ellipsis;
}
.v-select-box [role=option]:first-child {
  padding-block: 16px 10px;
}
.v-select-box [role=option]:last-child {
  padding-block: 10px 16px;
}
.v-select-box [role=option]:only-child {
  padding-block: 10px;
}
.v-select-box [role=option]:has(.v-option-name) {
  display: grid;
  grid-template-areas: var(--v-option-grid-areas, "name");
  grid-template-columns: var(--v-option-grid-columns, minmax(0, 1fr));
  grid-template-rows: var(--v-option-grid-rows, auto);
  align-items: var(--v-option-grid-align, center);
  gap: var(--v-option-grid-gap, 0 12px);
}
.v-select-box [role=option]:has(.v-option-colorchip) {
  --v-option-grid-areas: "colorchip name";
  --v-option-grid-columns: auto minmax(0, 1fr);
  --v-option-grid-gap: 0 12px;
  --v-option-grid-align: start;
}
.v-select-box [role=option]:has(.v-option-price) {
  --v-option-grid-areas: "name" "price";
  --v-option-grid-rows: auto auto;
}
.v-select-box [role=option]:has(.v-option-set) {
  --v-option-grid-areas: "name" "set";
  --v-option-grid-rows: auto auto;
}
.v-select-box [role=option]:has(.v-option-tag) {
  --v-option-grid-areas: "name tag";
  --v-option-grid-columns: minmax(0, 1fr) auto;
}
.v-select-box [role=option]:has(.v-option-price):has(.v-option-tag) {
  --v-option-grid-areas: "name tag" "price .";
  --v-option-grid-columns: minmax(0, 1fr) auto;
  --v-option-grid-rows: auto auto;
}
.v-select-box [role=option]:has(.v-option-set):has(.v-option-tag) {
  --v-option-grid-areas: "name tag" "set .";
  --v-option-grid-columns: minmax(0, 1fr) auto;
  --v-option-grid-rows: auto auto;
}
.v-select-box [role=option] > * {
  min-width: 0;
}
.v-select-box [role=option] .v-option-name {
  grid-area: name;
  overflow: clip;
  text-overflow: ellipsis;
}
.v-select-box [role=option] .v-option-name:has(.v-option-name__product-name) {
  display: flex;
  align-items: center;
  gap: 0px 4px;
}
.v-select-box [role=option] .v-option-name__product-name {
  flex: 0 1 auto;
  min-width: 0;
  overflow: clip;
  text-overflow: ellipsis;
}
.v-select-box [role=option] .v-option-tag {
  grid-area: tag;
}
.v-select-box [role=option] .v-option-price {
  grid-area: price;
}
.v-select-box [role=option] .v-option-set {
  grid-area: set;
  color: var(--v-option-set-color, #999);
  font-size: var(--v-option-set-font-size, 14px);
}
.v-select-box [role=option] .v-option-colorchip {
  position: relative;
  grid-area: colorchip;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  overflow: clip;
  background-color: var(--v-option-colorchip-bg);
}
.v-select-box [role=option] .v-option-colorchip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-select-box [role=option]:only-of-type:not([data-value]) {
  background-color: #f6f6f6;
  color: #c8c8c8;
  font-weight: var(--v-font-regular, 400);
}
.v-select-box [role=option][aria-disabled=true] .v-option-colorchip,
.v-select-box [role=option].is-sold-out .v-option-colorchip {
  opacity: 0.4;
}
.v-select-box [role=option][aria-disabled=true] .v-option-colorchip::after,
.v-select-box [role=option].is-sold-out .v-option-colorchip::after {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2032%2032%22%3E%3Crect%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23ddd%22%20fill-opacity%3D%22.4%22%3E%3C%2Frect%3E%3Cpath%20stroke%3D%22%23e0e0e0%22%20d%3D%22M4.68%2027.32%2027.31%204.69%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.v-select-box::part(label) .v-option-colorchip {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: var(--v-option-colorchip-bg);
}

.v-button--info {
  --v-icon-size: 16px;
}

.v-icon_info {
  fill: none;
  width: var(--v-icon-size, 16px);
  height: var(--v-icon-size, 16px);
}
.v-icon_info circle {
  stroke: #c8c8c8;
}
.v-icon_info path {
  fill: #a0a0a0;
}

.v-color-chip {
  position: relative;
  display: inline-flex;
  width: var(--v-color-chip-width, var(--v-color-chip-size, 32px));
  height: var(--v-color-chip-height, var(--v-color-chip-size, 32px));
  padding: 0;
  border: none;
  border-radius: var(--v-color-chip-radius, 50%);
  overflow: clip;
  margin: 0;
  background: none;
  cursor: var(--v-color-chip-pointer, pointer);
}
.v-color-chip[aria-pressed=true] {
  --v-color-chip-check-opacity: 1;
}
.v-color-chip:disabled, .v-color-chip.is-sold-out {
  --v-color-chip-disabled-opacity: 1;
}
.v-color-chip::before {
  opacity: var(--v-color-chip-check-opacity, 0);
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M1.7%208.48%205.24%2012l9.06-9%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--v-color-chip-check-size, 16px);
  height: var(--v-color-chip-check-size, 16px);
  filter: invert(var(--v-color-chip-check-invert, 0));
}
.v-color-chip::after {
  opacity: var(--v-color-chip-disabled-opacity, 0);
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2032%2032%22%3E%3Crect%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23ddd%22%20fill-opacity%3D%22.4%22%3E%3C%2Frect%3E%3Cpath%20stroke%3D%22%23e0e0e0%22%20d%3D%22M4.68%2027.32%2027.31%204.69%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.v-color-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-color-chip span.v-color-chip__hex {
  display: block;
  width: 100%;
  height: 100%;
  overflow: clip;
  text-indent: 110%;
  white-space: nowrap;
}

.v-color-chip--light {
  --v-color-chip-check-invert: 1;
  border: 1px solid #e0e0e0;
}

.v-color-chip--thumbnail {
  --v-color-chip-width: 44px;
  --v-color-chip-height: 64px;
  --v-color-chip-radius: 4px;
  --v-color-chip-check-size: 100%;
}
.v-color-chip--thumbnail::before {
  content: "";
  z-index: 1;
  inset: 0;
  transform: none;
  filter: none;
  border: 1px solid #000;
  border-radius: var(--v-color-chip-radius, 4px);
}
.v-color-chip--thumbnail::after {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2046%2066%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M45%201%201%2065%22%2F%3E%3C%2Fsvg%3E");
  background: rgba(221, 221, 221, 0.9);
}
.v-color-chip--thumbnail[aria-pressed=true]::after {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2046%2066%22%3E%3Cpath%20stroke%3D%22%23000%22%20d%3D%22M45%201%201%2065%22%2F%3E%3C%2Fsvg%3E");
}
.v-color-chip--thumbnail img {
  object-fit: contain;
}

.v-like-button {
  --v-button-height: 16px;
  --v-like-button-gap: 4px;
  --v-like-icon-size: 16px;
  --v-like-font-size: 12px;
  display: flex;
  align-items: center;
  gap: var(--v-like-button-gap);
}
.v-like-button .v-icon_like {
  flex-shrink: 0;
  width: var(--v-like-icon-size);
}
.v-like-button .v-like-score {
  font-size: var(--v-like-font-size);
}
.v-like-button[aria-selected=false] .v-icon_like-path--off-1,
.v-like-button[aria-selected=false] .v-icon_like-path--off-2 {
  --v-icon_like-path-show: block;
}
.v-like-button[aria-selected=false] .v-icon_like-path--on {
  --v-icon_like-path-show: none;
}
.v-like-button[aria-selected=true] .v-icon_like-path--off-1,
.v-like-button[aria-selected=true] .v-icon_like-path--off-2 {
  --v-icon_like-path-show: none;
}
.v-like-button[aria-selected=true] .v-icon_like-path--on {
  --v-icon_like-path-show: block;
}
.v-like-button [class^=v-icon_like-path] {
  display: var(--v-icon_like-path-show);
}

has-dropdown:not(:defined) {
  display: inline-flex;
}
has-dropdown:not(:defined) menu {
  display: none;
}

.v-global-overlay {
  position: relative;
  z-index: var(--v-global-overlay-z, var(--v-bottom-bar-z)1);
}

.video-js {
  --v-video-player-play-button-size: 96px;
}
.video-js *:focus {
  outline: 0;
}
.video-js .vjs-current-time {
  padding-right: 24px;
  --v-video-current-time-size: 18px;
}
.video-js .vjs-control-bar {
  --v-video-player-control-button-size: 64px;
  gap: 24px;
  padding: 16px;
}

:root {
  --v-side-panel-header-height: 75px;
}

.v-side-panel {
  position: fixed;
  inset: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  overflow: clip;
  background: transparent;
}
.v-side-panel:not(:modal) {
  z-index: calc(var(--v-site-header-z, 100) + 10);
  background: rgba(0, 0, 0, var(--v-side-panel-backdrop-o, 0));
  transition: background 0.3s linear;
}
.v-side-panel.is-open {
  --v-side-panel-x: 0%;
  --v-side-panel-backdrop-o: 1;
}
.v-side-panel.is-open:not(:modal) {
  --v-side-panel-backdrop-o: 0.7;
}
.v-side-panel::backdrop {
  transition: opacity 0.3s linear;
  opacity: var(--v-side-panel-backdrop-o, 0);
  background: rgba(0, 0, 0, 0.7);
}
.v-side-panel .v-dialog__container {
  display: grid;
  grid-template-areas: "header" "content";
  grid-template-rows: var(--v-side-panel-header-height) minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translate3d(var(--v-side-panel-x, 100%), 0, 0);
  transition: transform 0.3s ease-in-out;
  width: var(--v-side-panel-width, 433px);
  height: 100%;
  overflow: hidden;
  overflow: clip;
  background: #fff;
  color: #000;
}

.v-side-panel__header {
  grid-area: header;
  display: grid;
  grid-template-areas: ". main close";
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  gap: 8px;
  height: var(--v-side-panel-header-height);
  padding: 22px 40px;
  border-bottom: 1px solid #ddd;
}

.v-side-panel__header__main {
  grid-area: main;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--v-font-regular);
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}
.v-side-panel__header__main :is(h1, h2, h3, h4, h5, h6) {
  font: inherit;
}

.v-side-panel__close {
  --v-button-width: 30px;
  --v-button-height: 30px;
  grid-area: close;
}
.v-side-panel__close svg {
  width: 24px;
  height: 24px;
}

.v-side-panel__content {
  grid-area: content;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
}

.v-well {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--v-well-padding, 40px 24px);
  margin-inline: var(--v-well-side-margin, 0);
  background-color: var(--v-well-bg-color, #f6f6f6);
  color: var(--v-well-fg-color, #000);
  font-size: var(--v-well-font-size, 16px);
  line-height: var(--v-well-line-height, 1.3);
  text-align: center;
}

.v-countdown-timer {
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.v-select-box [role=option] {
  padding: 14px 20px;
}
.v-select-box [role=option]:first-child, .v-select-box [role=option]:last-child, .v-select-box [role=option]:only-child {
  padding-block: var(--v-select-options-padding-block, 14px);
}

.v-popup-layer {
  --v-action-bar-padding: 24px;
  position: fixed;
  z-index: var(--v-popup-layer-z, calc(var(--v-site-header-z) + 10));
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.v-popup-layer:is(dialog) {
  max-width: none;
  max-height: none;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.v-popup-layer:has(.v-popup-layer__footer) {
  --v-popup-layer-areas: "header" "body" "footer";
  --v-popup-layer-rows: var(--v-popup-layer-header-height, 72px)
    minmax(0, 1fr) auto;
}
.v-popup-layer .v-popup-layer__container {
  display: grid;
  grid-template-areas: var(--v-popup-layer-areas, "header" "body");
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: var(--v-popup-layer-rows, var(--v-popup-layer-header-height, 72px) minmax(0, 1fr));
  min-width: var(--v-popup-layer-min-width, 395px);
  min-height: var(--v-popup-layer-min-height, 0px);
  width: var(--v-popup-layer-width, max-content);
  height: var(--v-popup-layer-height, auto);
  max-width: var(--v-popup-layer-max-width, 395px);
  max-height: var(--v-popup-layer-max-height, min(780px, 80vh));
  margin: auto;
  background-color: var(--v-popup-layer-bg-color, #fff);
  color: var(--v-popup-layer-fg-color, #000);
}
.v-popup-layer .v-popup-layer__header {
  grid-area: header;
  display: grid;
  grid-template-areas: "lead title trail";
  grid-template-columns: var(--v-popup-layer-header-lead-width, 24px) minmax(0, 1fr) var(--v-popup-layer-header-trail-width, 24px);
  align-items: center;
  height: var(--v-popup-layer-header-height, 72px);
  padding: var(--v-popup-layer-header-padding, 0 24px);
}
.v-popup-layer .v-popup-layer__title {
  grid-area: title;
  text-align: center;
  font-size: var(--v-popup-layer-title-font-size, 18px);
  line-height: var(--v-popup-layer-title-line-height, 1.3);
}
.v-popup-layer .v-popup-layer__header-trail {
  grid-area: trail;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.v-popup-layer .v-popup-layer__button--close {
  --v-button-width: var(--v-popup-layer-header-trail-button-width, var(--v-popup-layer-header-trail-width, 24px));
  --v-button-height: var(--v-popup-layer-header-trail-button-width, var(--v-popup-layer-header-trail-width, 24px));
  --v-icon-size: 16px;
}
.v-popup-layer .v-popup-layer__button--close svg {
  display: block;
  fill: none;
}
.v-popup-layer .v-popup-layer__button--close path {
  stroke: currentColor;
}
.v-popup-layer .v-popup-layer__body {
  grid-area: body;
  padding: var(--v-popup-layer-body-padding);
  overflow: auto;
}
.v-popup-layer .v-popup-layer__footer {
  grid-area: footer;
}

.v-tooltip {
  display: var(--v-tooltip-display, none);
  position: absolute;
  z-index: var(--v-tooltip-z-index, 10);
  top: var(--v-tooltip-top, 100%);
  right: var(--v-tooltip-right, auto);
  bottom: var(--v-tooltip-bottom, auto);
  left: var(--v-tooltip-left, auto);
  width: var(--v-tooltip-width, max-content);
  transform: translate3d(var(--v-tooltip-x, 0), var(--v-tooltip-y, 0), 0);
  margin: var(--v-tooltip-margin, 7px 0 0);
}
.v-tooltip.is-open {
  --v-tooltip-display: block;
}

.v-tooltip--top {
  --v-tooltip-margin: 0 0 7px;
  --v-tooltip-top: auto;
  --v-tooltip-bottom: 100%;
  --v-tooltip-tip-top: auto;
  --v-tooltip-tip-bottom: -7px;
  --v-tooltip-tip-rotate: 180deg;
}

.v-tooltip_tip_center {
  --v-tooltip-tip-left: calc(50% - 6px);
}

.v-tooltip--center {
  --v-tooltip-tip-left: calc(50% - 6px);
  --v-tooltip-left: 50%;
  --v-tooltip-x: -50%;
}

.v-tooltip__tip {
  position: absolute;
  z-index: 1;
  top: var(--v-tooltip-tip-top, -7px);
  right: var(--v-tooltip-tip-right, auto);
  bottom: var(--v-tooltip-tip-bottom, auto);
  left: var(--v-tooltip-tip-left, auto);
  transform: rotate(var(--v-tooltip-tip-rotate, 0deg));
  width: 12px;
  height: 8px;
  overflow: clip;
}
.v-tooltip__tip path {
  fill: var(--v-tooltip-bg-color, #fff);
  stroke: var(--v-tooltip-border-color, #999);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.v-tooltip__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--v-tooltip-content-gap, 12px);
  padding: var(--v-tooltip-padding, 24px);
  border: 1px solid var(--v-tooltip-border-color, #999);
  background-color: var(--v-tooltip-bg-color, #fff);
  color: var(--v-tooltip-fg-color, #000);
  font-size: var(--v-tooltip-font-size, 14px);
  line-height: var(--v-tooltip-line-height, 1.3);
}

.v-tooltip__close-button {
  --v-button-width: 16px;
  --v-button-height: 16px;
  --v-button-color: #999;
  position: absolute;
  top: 12px;
  right: 12px;
}
.v-tooltip__close-button svg {
  width: 12px;
  height: 12px;
  fill: none;
}
.v-tooltip__close-button path {
  stroke: currentColor;
}

:root {
  --popover-close-button-top: 12px;
  --popover-close-button-right: 12px;
  --v-popover-padding: 19px 31px 19px 19px;
  --v-popover-font-size: 14px;
  --v-title-wide-side-margin: 16px;
}

:root {
  --swiper-navigation-color: #999;
}

swiper-container[slides-offset-before="24"] {
  --v-carousel-offset-before: 24px;
}
swiper-container[slides-offset-after="24"] {
  --v-carousel-offset-after: 24px;
}
swiper-container[slides-offset-before="40"] {
  --v-carousel-offset-before: 40px;
}
swiper-container[slides-offset-after="40"] {
  --v-carousel-offset-after: 40px;
}

swiper-container:not(:defined) {
  display: flex;
  gap: var(--v-carousel-gap, 8px);
  max-width: calc(100% - var(--v-carousel-offset-before, 0) - var(--v-carousel-offset-after, 0) - var(--v-carousel-side-margin, 0) * 2);
  overflow-y: clip;
  overflow-x: auto;
}
swiper-container:not(:defined)[slides-offset-before] {
  padding-left: var(--v-carousel-offset-before);
}
swiper-container:not(:defined)[slides-offset-after] {
  padding-right: var(--v-carousel-offset-after);
}
swiper-container:not(:defined):not([slides-offset-before][slides-offset-after]) {
  padding-inline: var(--v-carousel-root-pad-x, var(--v-side-margin, 24px));
}
swiper-container:not(:defined) .v-carousel_slot_end {
  padding-left: 0;
  padding-right: 0;
}

swiper-slide:not(:defined) {
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  width: var(--v-carousel-slide-width, 100%);
}

.v-carousel {
  --v-carousel-slide-width: var(
    --swiper-slide-size,
    calc(
      (
          100% - (var(--v-carousel-slides-per-view, 1) - 1) *
            var(--v-carousel-gap, 8px)
        ) /
        var(--v-carousel-slides-per-view, 1)
    )
  );
  --swiper-navigation-top-offset: calc(
    (var(--v-carousel-slide-width) * 1.5) / 2
  );
  margin-inline: var(--v-carousel-side-margin, 0px);
}
.v-carousel[slides-per-view="1"] {
  --v-carousel-slides-per-view: 1;
}
.v-carousel[slides-per-view="1.3725"] {
  --v-carousel-slides-per-view: 1.3725;
}
.v-carousel[slides-per-view="2"] {
  --v-carousel-slides-per-view: 2;
}
.v-carousel[slides-per-view="2.7551"] {
  --v-carousel-slides-per-view: 2.7551;
}
.v-carousel[slides-per-view="3"] {
  --v-carousel-slides-per-view: 3;
}
.v-carousel[slides-per-view="3.6"] {
  --v-carousel-slides-per-view: 3.6;
}
.v-carousel[slides-per-view="4"] {
  --v-carousel-slides-per-view: 4;
}
.v-carousel[slides-per-view="4.8"] {
  --v-carousel-slides-per-view: 4.8;
}
.v-carousel[slides-per-view="5.55"] {
  --v-carousel-slides-per-view: 5.55;
}

.v-carousel_slot_end {
  padding-top: var(--v-carousel-slot-end-top, 20px);
  padding-right: var(--v-carousel-offset-after, 0px);
  padding-left: var(--v-carousel-offset-before, 0px);
}
.v-carousel_slot_end:not(:has(*)) {
  display: none;
}

.v-carousel:has(.v-quick-link) {
  --swiper-pagination-area-height: 30px;
}

.v-carousel[css-mode=true]::part(wrapper) {
  padding-left: var(--v-carousel-offset-before, 0);
  padding-right: var(--v-carousel-offset-after, 0);
  box-sizing: border-box;
}

.v-carousel[slides-per-view="1"]:has(.v-media-banner) {
  overflow: hidden;
  padding-inline: var(--v-carousel-side-margin, 0px);
  margin-inline: 0;
}
.v-carousel[slides-per-view="1"]:has(.v-media-banner)::part(container) {
  overflow: visible;
}

.v-product-unit {
  --v-media-aspect-ratio: 1 / 1.5;
  --v-media-fit: contain;
  --v-product-unit-min-col: clamp(100px, 35%, 150px);
  display: flex;
  flex-direction: column;
  gap: var(--v-space-2);
}

.v-product-unit__link {
  display: block;
}

.v-product-unit__media-grid {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template: "tl . tr" ". . ." "bl . br";
  height: fit-content;
}
.v-product-unit__media-grid .v-product-unit__link {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

.v-product-unit__top-left,
.v-product-unit__top-right,
.v-product-unit__bottom-left,
.v-product-unit__bottom-right {
  z-index: 1;
  display: flex;
  width: 100%;
}

.v-product-unit__top-left,
.v-product-unit__bottom-left {
  justify-content: flex-start;
}

.v-product-unit__top-right,
.v-product-unit__bottom-right {
  justify-content: flex-end;
}

.v-product-unit__top-left {
  grid-area: tl;
}

.v-product-unit__top-right {
  grid-area: tr;
}

.v-product-unit__bottom-left {
  grid-area: bl;
}

.v-product-unit__bottom-right {
  grid-area: br;
}

.v-product-unit__content {
  font-size: 12px;
  line-height: 1.3;
}
.v-product-unit__content > * {
  margin-top: 4px;
}
.v-product-unit__content > *:first-child {
  margin-top: 0;
}

.v-product-unit__brand {
  font-weight: var(--v-font-bold);
  line-height: 1.2;
}

.v-product-unit__name {
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  color: #6d6d6d;
}

.v-product-unit__price-group {
  display: flex;
  gap: var(--v-product-unit-tag-row-gap, 4px) var(--v-product-unit-tag-column-gap, 8px);
  flex-wrap: wrap;
  font-size: 13px;
}

.v-product-unit__price {
  font-weight: var(--v-font-bold);
}

.v-product-unit__regular {
  color: #999;
  text-decoration: line-through;
}

.v-product-unit__discount {
  color: #da291c;
}

.v-product-unit__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--v-product-unit-tag-row-gap, 4px) var(--v-product-unit-tag-column-gap, 8px);
  color: #6d6d6d;
}

.v-product-unit__tags {
  --v-product-tags-padding: 6px;
  --v-product-tags-font-size: 12px;
  --v-product-tags-line-height: 1;
  --v-product-tags-letter-spacing: -0.02em;
  --v-product-tags-height: 24px;
  padding-block-start: var(--v-product-tags-padding);
  padding-inline-start: var(--v-product-tags-padding);
  display: grid;
  justify-items: start;
  grid-auto-rows: auto;
  grid-template-columns: 1fr;
  gap: var(--v-product-unit-tag-row-gap, 4px) var(--v-product-unit-tag-column-gap, 8px);
  color: #6d6d6d;
}
.v-product-unit__tags .v-product-unit__tag {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  height: var(--v-product-tags-height);
  font-weight: var(--v-font-bold);
  padding: var(--v-product-tags-padding);
  font-size: var(--v-product-tags-font-size);
  line-height: var(--v-product-tags-line-height);
  letter-spacing: var(--v-product-tags-letter-spacing);
}

.v-product-unit__rank {
  margin: 5px 1px 5px 5px;
  font-size: 20px;
  font-weight: var(--v-font-bold);
  line-height: 1;
  text-align: center;
  color: #6d6d6d;
}

.v-product-unit__colors {
  --v-product-chip-size: 20px;
  margin-block: 4px 12px;
}
@media (width < 355px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(10)) > li:nth-of-type(7) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(10)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 419px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(12)) > li:nth-of-type(9) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(12)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 483px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(14)) > li:nth-of-type(11) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(14)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 547px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(16)) > li:nth-of-type(13) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(16)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 611px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(18)) > li:nth-of-type(15) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(18)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 675px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(20)) > li:nth-of-type(17) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(20)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 739px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(22)) > li:nth-of-type(19) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(22)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
.v-product-unit__colors .v-product-unit__chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 54px;
  overflow: hidden;
}
.v-product-unit__colors .v-product-unit__chip-list > li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 1px;
}
.v-product-unit__colors .v-product-unit__chip-list > li:has(.v-product-unit__chip--more) {
  display: none;
}
.v-product-unit__colors .v-product-unit__chip {
  width: var(--v-product-chip-size);
  height: var(--v-product-chip-size);
  border: 0;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
}
.v-product-unit__colors .v-product-unit__chip[aria-pressed=true] {
  position: relative;
}
.v-product-unit__colors .v-product-unit__chip[aria-pressed=true]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%23fff' stroke-width='1.5' d='M1.2749 6.3587 3.93272 9l6.79218-6.75'/%3E%3C/svg%3E");
}
.v-product-unit__colors .v-product-unit__chip.v-product-unit__chip--light[aria-pressed=true]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%23000' stroke-width='1.5' d='M1.2749 6.3587 3.93272 9l6.79218-6.75'/%3E%3C/svg%3E");
}
.v-product-unit__colors .v-product-unit__chip--more {
  cursor: default;
}
.v-product-unit__colors img,
.v-product-unit__colors span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: inherit;
  text-indent: -9999px;
}

.v-product-unit__state {
  --v-product-state-padding: 2px 5px;
  --v-product-state-font-size: 10px;
}
.v-product-unit__state span {
  background: #6d6d6d;
  color: #fff;
  font-size: var(--v-product-state-font-size);
  font-weight: var(--v-product-state-font-weight);
  padding: var(--v-product-state-padding);
  line-height: var(--v-product-state-line-height);
}

.v-product-unit__ratings:empty, .v-product-unit__ratings:not(:has(*)) {
  display: none;
}
.v-product-unit__tags:not(:has(.v-product-unit__tag)) {
  display: none;
}
.v-product-unit__keywords:not(:has(.v-product-unit__keyword)) {
  display: none;
}

.v-soldout .v-product-unit__price,
.v-soldout .v-product-unit__regular,
.v-soldout .v-product-unit__discount {
  color: #bbb;
}
.v-soldout .v-product-unit__colors img,
.v-soldout .v-product-unit__colors span {
  filter: grayscale(100%);
}
.v-soldout .v-product-unit__tags,
.v-soldout .v-product-unit__keywords {
  display: none;
}

.v-product-unit--gift-wrap:has(.v-product-thumbnail-list > li:first-child [aria-pressed=true]) {
  --v-product-unit-ui-display: flex;
}
.v-product-unit--gift-wrap .v-product-unit__top-right,
.v-product-unit--gift-wrap .v-product-unit__overlay {
  display: var(--v-product-unit-ui-display, none);
}

.v-product-thumbnail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.v-product-thumbnail-button {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  border: none;
  padding: 0;
  background: #f7f7f7;
  font: inherit;
}
.v-product-thumbnail-button[aria-pressed=true] {
  outline: 1px solid #000;
  outline-offset: -1px;
}
.v-product-thumbnail-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
}

.v-product-thumbnail {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: contain;
}

.v-line-banner {
  display: flex;
  gap: var(--v-space-2);
  align-items: center;
  justify-content: space-between;
  height: var(--v-line-banner-height, 36px);
  padding-inline: var(--v-space-6);
  margin-inline: var(--v-line-banner-side-margin, var(--v-side-margin));
  text-decoration: none;
  background-color: var(--v-line-banner-bg, #000);
  color: var(--v-line-banner-text-color, #f8f9fa);
  transition: background 0.3s ease;
  cursor: pointer;
}
.v-line-banner:hover {
  background-color: var(--v-line-banner-bg-hover, #111);
}

.v-line-banner__content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: 16px;
  line-height: 1.3;
}

.v-line-banner__icon {
  flex-grow: 0;
  flex-shrink: 0;
  width: 7px;
  height: auto;
}
.v-line-banner__icon path {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v-line-banner--wide {
  --v-line-banner-side-margin: 0;
}

.v-media-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: var(--v-media-content-gap, 20px);
}

.v-media-banner__media {
  margin-inline: var(--v-media-banner-media-side, var(--v-side-margin));
}
.v-media-banner__media a {
  display: block;
}

.v-media-banner__content,
.v-media-banner__text,
.v-media-banner__header {
  display: flex;
  flex-direction: column;
}

.v-media-banner__content {
  gap: var(--v-text-button-gap, var(--v-space-5));
  padding-inline: var(--v-media-banner-content-side, var(--v-side-margin));
}

.v-media-banner__text {
  gap: var(--v-header-banner-sub-name-gap, var(--v-space-3));
}

.v-media-banner__header {
  gap: var(--v-small-title-banner-name-gap, var(--v-space-2));
}

.v-media-banner__separator {
  height: var(--v-media-banner-separator-height, 2px);
  background: currentColor;
}

.v-media-banner__small-title,
.v-media-banner__name {
  text-transform: uppercase;
}

.v-media-banner__small-title {
  font-size: var(--v-small-title-size, 12px);
  line-height: var(--v-small-title-line-height, 1.3);
  letter-spacing: var(--v-small-title-leading, -0.01em);
}

.v-media-banner__name {
  font-size: var(--v-banner-name-size, 32px);
  line-height: var(--v-banner-name-line-height, 1);
  letter-spacing: var(--v-banner-name-leading, -0.03em);
}

.v-media-banner__sub-name {
  font-size: var(--v-banner-sub-name-size, 14px);
  line-height: var(--v-banner-sub-name-line-height, 1.3);
  letter-spacing: var(--v-banner-sub-name-leading, -0.02em);
}

.v-media-banner--layered {
  --v-media-banner-media-side: 0;
  color: #fff;
}
.v-media-banner--layered .v-media-banner__media {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.v-media-banner--layered .v-media-banner__content {
  z-index: 1;
  grid-column: 1/-1;
  grid-row: auto/-1;
  padding-bottom: 24px;
}
.v-media-banner--layered .v-media-embed--dim:after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.v-media-banner--wide {
  --v-media-banner-media-side: 0;
}

.v-media-banner--hero {
  --v-small-title-size: 14px;
  --v-banner-name-size: 36px;
  --v-banner-sub-name-size: 16px;
}

.v-media-banner--stretched {
  --v-media-banner-media-side: 0;
  --v-media-banner-content-side: 0;
}

.v-carousel[check-height=".v-media-banner__content"] .v-media-banner__content {
  height: var(--swiper-checked-height);
  justify-content: space-between;
}

.v-quick-link {
  --v-media-aspect-ratio: 76 / 76;
  --v-media-fit: cover;
  --v-media-position: center;
  display: flex;
  flex-direction: column;
  gap: var(--v-quick-link-gap, 8px);
  text-decoration: none;
  color: inherit;
}
.v-quick-link .v-media-embed {
  border-radius: var(--v-quick-link-border-radius, 8px);
}

.v-quick-link__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  margin-inline: var(--v-quick-link-font-margin-inline, 0);
  font-size: var(--v-quick-link-font-size, 13px);
  line-height: var(--v-quick-link-line-height, 1.385);
}

.v-html-embed {
  overflow: clip;
  margin-inline: var(--v-html-embed-side, var(--v-side-margin));
}

.v-html-embed--wide {
  --v-html-embed-side: 0;
}

tab-container {
  --swiper-pagination-area-height: 0;
  display: block;
  width: 100%;
}
tab-container swiper-container:not(:defined) {
  display: flex;
  gap: var(--v-tablist-gap, 16px);
  min-width: 100%;
  overflow-y: clip;
  overflow-x: auto;
  padding: 0 var(--v-slides-offset, 24px);
}
tab-container swiper-slide {
  width: auto !important;
}
tab-container swiper-slide:not(:defined) {
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  width: auto !important;
}

.v-tab {
  padding-bottom: var(--v-tab-button-padding-bottom, 20px);
}

.v-tab-button {
  --v-button-max-width: 320px;
  --v-button-font-weight: var(--v-tab-button-font-weight, 400);
  --v-button-font-size: var(--v-tab-button-font-size, 14px);
  --v-button-line-height: var(--v-tab-button-line-height, 1.3);
  --v-button-text-color: var(--v-tab-button-color, #929292);
  display: block;
  text-overflow: ellipsis;
}
.v-tab-button[aria-selected=true] {
  --v-tab-button-color: #000;
  --v-button-font-weight: var(--v-tab-button-font-weight-selected, 900);
}

.v-tab-panel {
  display: none;
}
.v-tab-panel.is-active {
  display: block;
}

.v-video-product {
  display: flex;
  flex-direction: column;
  gap: var(--v-video-product-gap, 16px);
}
.v-video-product .v-media-embed--dim::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.v-video-product__banner {
  position: relative;
}

.v-video-product__live-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow: clip;
  white-space: nowrap;
  text-indent: 110%;
  background: transparent;
  border: none;
}

.v-video-product__link {
  display: block;
  transform: translate3d(0, 0, 0);
}

.v-video-product__product {
  position: absolute;
  right: var(--v-video-product-inset, 12px);
  bottom: var(--v-video-product-inset, 12px);
  left: var(--v-video-product-inset, 12px);
  display: grid;
  grid-template-areas: "thumbnail info";
  grid-template-columns: var(--v-video-product-thumbnail-width, 60px) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: 12px;
  color: var(--v-video-product-text-color, #fff);
  font-size: var(--v-video-product-font-size, 12px);
  line-height: 1.3;
}

.v-video-product__thumbnail {
  grid-area: thumbnail;
  width: 100%;
  --v-media-aspect-ratio: 1/1.5;
  background-color: #fff;
}

.v-video-product__info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: var(--v-video-product-info-gap, 2px);
  margin-top: 12px;
}

.v-video-product__price {
  font-weight: var(--v-font-bold);
}

.v-video-product__text {
  display: flex;
  width: var(--v-video-product-text-width, calc(100% - 21px));
  flex-direction: column;
  gap: var(--v-video-product-text-gap, 3px);
  font-size: var(--v-video-product-text-size, 14px);
  line-height: var(--v-video-product-text-line-height, 1.2857142857);
}

.v-action-bar {
  --v-icon-size: var(--v-action-bar-icon-size, 20px);
  --v-button-font-size: var(--v-action-bar-font-size, 14px);
  display: flex;
  align-items: center;
  gap: var(--v-action-bar-gap, 4px);
  width: 100%;
  padding: var(--v-action-bar-padding, 12px 24px);
  margin: var(--v-action-bar-margin, 0);
  font-size: var(--v-action-bar-font-size, 14px);
  line-height: var(--v-action-bar-line-height, 1);
}
.v-action-bar > * {
  flex: 1 1 auto;
  min-width: 0;
}

.v-action-button {
  width: var(--v-action-button-width);
  height: var(--v-action-button-height, 3.4285714286em);
  padding: var(--v-action-button-padding, 12px 40px);
  background: var(--v-action-button-bg, #fff);
  color: var(--v-action-button-color, #000);
  border: 1px solid var(--v-action-button-border-color, #dadada);
  border-radius: var(--v-action-button-radius, 4px);
}
.v-action-button:disabled, .v-action-button.is-disabled, .v-action-button.v-is-disabled, .v-action-button[aria-disabled=true] {
  --v-action-button-border-color: #ddd;
  --v-action-button-color: #999;
}

.v-action-button--icon-only {
  --v-action-button-padding: 14px;
  --v-active-button-color: #231815;
  flex: 0 0 auto;
  width: var(--v-action-icon-button-width, calc(var(--v-icon-size) * var(--v-action-button-padding) * 2));
}

.v-action-button--primary {
  --v-action-button-bg: #000;
  --v-action-button-border-color: var(--v-action-button-bg);
  --v-action-button-color: #fff;
}
.v-action-button--primary:disabled, .v-action-button--primary.is-disabled, .v-action-button--primary.v-is-disabled, .v-action-button--primary[aria-disabled=true] {
  --v-action-button-bg: #6d6d6d;
  --v-action-button-color: #fff;
}

.v-action-button--secondary {
  --v-action-button-border-color: #000;
}

.v-share-list {
  display: flex;
  justify-content: var(--v-share-list-justify, center);
  gap: var(--v-share-list-gap, 24px);
}
.v-share-list a {
  display: block;
}

.v-share-icon {
  display: block;
  width: var(--v-share-icon-size, 64px);
  height: var(--v-share-icon-size, 64px);
}

:root {
  --v-site-header-z: 100;
  --v-site-header-height: 76px;
  --v-site-header-button-size: 30px;
  --v-site-header-icon-size: 30px;
}

.v-site-header {
  --v-line-banner-side-margin: 0;
  z-index: var(--v-site-header-z);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 1440px;
}

.v-site-header__inner {
  position: relative;
  z-index: var(--v-site-header-z);
  border-bottom: 1px solid #ddd;
  background-color: var(--v-site-header-bg-color, #fff);
}

.v-site-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  grid-template-areas: "lead . trail";
  align-items: center;
  width: 100%;
  min-width: var(--v-site-header-width, 1440px);
  max-width: 1920px;
  height: calc(var(--v-site-header-height) - 1px);
  margin-left: auto;
  margin-right: auto;
  padding-inline: var(--v-site-header-side-margin, 40px);
  color: var(--v-site-header-fg-color, #000);
}

.v-site-header__main {
  grid-column: 1/-1;
  grid-row: 1/-1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.v-site-header__lead {
  grid-area: lead;
  display: flex;
  gap: 24px;
}

.v-site-header__trail {
  grid-area: trail;
  display: flex;
  gap: 24px;
}

.v-site-header__title {
  max-width: var(--v-site-header-title-width, 500px);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-site-header__title :is(h1, h2, h3, h4, h5, h6) {
  font: inherit;
}
.v-site-header__title :is(img) {
  max-width: 600px;
  max-height: 40px;
  vertical-align: top;
}

.v-site-header__title-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-site-header__logo {
  display: grid;
  grid-template-areas: ". logo button";
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
}

.v-logo-shinsegaev {
  grid-area: logo;
  height: 100%;
}
.v-logo-shinsegaev img {
  display: block;
  width: 174px;
  height: 100%;
  max-height: var(--v-site-header-height);
}

.v-main-header__button--mall {
  --v-site-header-button-width: 24px;
  --v-site-header-button-height: 24px;
  --v-site-header-icon-size: 24px;
  grid-area: button;
  color: #999;
  transform: translateY(9px);
}
.v-main-header__button--mall[aria-expanded=true] {
  --v-mall-button-transform: scaleY(-1);
}
.v-main-header__button--mall[aria-expanded=true] .v-main-header__icon {
  transform: var(--v-mall-button-transform, scaleY(1));
  transition: transform 0.3s ease-in-out;
}

.v-main-header__icon {
  width: auto;
  height: var(--v-site-header-icon-size);
}

.v-site-header__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--v-site-header-button-width);
  height: var(--v-site-header-button-height);
}

.v-site-header__lead .v-site-header__button[aria-expanded=true] path {
  d: path("M6 24 24 6M6 6l18 18");
}

.v-site-header__icon {
  width: auto;
  height: var(--v-site-header-icon-size);
  overflow: visible;
}

.v-shopping-bag__count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3em;
  width: 15px;
  overflow: clip;
  font-weight: var(--v-font-bold);
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.v-site-header has-dropdown {
  --dropdown-right: auto;
  --dropdown-left: 50%;
  --dropdown-transform: translateX(-50%);
  --dropdown-offset-top: 21px;
  --dropdown-min-width: 112px;
  --dropdown-padding-top: 10px;
  --dropdown-padding-bottom: 8px;
  --dropdown-padding-inline: 4px;
}
.v-site-header has-dropdown[open-on-hover] *:focus {
  outline: none;
}

.v-site-header__dropdown-menu {
  text-align: center;
}
.v-site-header__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid white;
  z-index: 1;
}
.v-site-header__dropdown-menu::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid black;
  z-index: 0;
}
.v-site-header__dropdown-menu a {
  display: block;
  padding-block: 6px;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.v-site-header__layer {
  position: fixed;
  z-index: calc(var(--v-site-header-z, 100) - 1);
  top: var(--v-site-header-height, 0);
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  max-height: none;
  border: none;
  background: none;
}
.v-site-header__layer::backdrop {
  transition: opacity 0.2s linear;
  opacity: var(--v-site-header-layer-backdrop-o, 0);
  top: var(--v-site-header-height, 0);
  background: rgba(0, 0, 0, 0.7);
}
.v-site-header__layer:not(:modal) {
  height: calc(100vh - var(--v-site-header-height, 0px));
  background: rgba(0, 0, 0, 0.7);
}
.v-site-header__layer.is-open {
  --v-site-header-layer-backdrop-o: 1;
  --v-site-header-layer-y: 0;
}
.v-site-header__layer .v-dialog__container {
  transition: transform 0.3s ease-in-out;
  transform: translate3d(0, var(--v-site-header-layer-y, -100%), 0);
  transform-origin: top center;
}

.v-site-header__layer__inner {
  max-height: var(--v-site-header-layer-max-height, calc(100vh - var(--v-site-header-height, 0px)));
  overflow: hidden;
  overflow: clip;
  overflow-y: auto;
  background: #fff;
  color: #000;
}

.v-site-header__layer-content {
  min-width: var(--v-site-header-width, 1440px);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: var(--v-site-header-side-margin, 40px);
  transform: translate3d(var(--dialog-x-offset, 0), 0, 0);
}

.v-site-header__layer__body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

.v-site-header__layer__feature {
  width: var(--v-site-header-layer-feature-width);
}

.v-site-header__layer__banners {
  --v-side-margin: 0;
  --v-media-content-gap: 12px;
  --v-banner-name-weight: var(--v-font-regular);
  --v-banner-name-size: 20px;
  --v-banner-name-line-height: 1.3;
  --v-banner-name-leading: 0;
  --v-banner-sub-name-size-medium: 14px;
  --v-banner-sub-name-leading: 0;
  --v-media-aspect-ratio: 1 / 1.5;
  --v-item-list-gap-x: 40px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 580px;
}
.v-site-header__layer__banners .v-media-banner {
  --v-banner-name-size: 20px;
  --v-banner-sub-name-size: 14px;
  --v-header-banner-sub-name-gap: 4px;
}
.v-site-header__layer__banners .v-item-list {
  display: flex;
  justify-content: flex-end;
}
.v-site-header__layer__banners .v-item-list > li {
  flex: 0 0 270px;
}

:root {
  --v-footer-side-margin: 40px;
  --v-footer-font-size: 14px;
  --v-footer-line-height: 1.3;
  --v-footer-letter-spacing: 0;
}

.v-footer {
  width: 100%;
  min-width: 1440px;
  background-color: var(--v-footer-bg-color, #f6f6f6);
}
.v-footer svg {
  vertical-align: middle;
}
.v-footer .v-footer__bar {
  border-top: 1px solid #ddd;
  background-color: var(--v-footer-bg-color, #fff);
}
.v-footer .v-footer__lead {
  grid-area: lead;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v-footer .v-footer__tail {
  grid-area: trail;
  display: flex;
  gap: 12px;
}
.v-footer .v-footer__head,
.v-footer .v-footer__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  grid-template-areas: "lead . trail";
  align-items: start;
  color: var(--v-footer-fg-color, #000);
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}
.v-footer .v-footer__head {
  padding: 11px var(--v-footer-side-margin);
  background-color: var(--v-footer-bg-color, #fff);
  color: #000;
  text-align: center;
  align-items: center;
  font-weight: var(--v-font-regular);
  font-size: var(--v-footer-font-size);
  line-height: var(--v-footer-line-height);
  letter-spacing: var(--v-footer-letter-spacing);
}
.v-footer .v-footer__head .v-footer__lead {
  flex-direction: row;
  gap: 28px;
}
.v-footer .v-footer__body {
  padding: 14px var(--v-footer-side-margin, 40px) var(--v-space-8);
}
.v-footer .v-footer__body .v-footer__lead {
  gap: 14px;
  font-size: 12px;
  font-weight: var(--v-font-regular);
  line-height: var(--v-footer-line-height);
  letter-spacing: var(--v-footer-letter-spacing);
  color: #6d6d6d;
}
.v-footer .v-footer__body .v-footer__lead > * {
  vertical-align: middle;
}
.v-footer .v-footer__sns-button {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.v-footer .v-footer__consumer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v-footer .v-footer__consumer strong {
  font-weight: var(--v-font-bold);
  color: #000;
}
.v-footer .v-footer__consumer p {
  color: #999;
}
.v-footer .v-footer__list {
  display: flex;
  gap: 26px;
}
.v-footer .v-footer__sns svg {
  width: 24px;
  height: auto;
}
.v-footer .v-footer__nav {
  display: flex;
  gap: 8px;
}
.v-footer .v-footer__nav a {
  font-weight: var(--v-font-regular);
  font-size: var(--v-footer-font-size);
  line-height: var(--v-footer-line-height);
  letter-spacing: var(--v-footer-letter-spacing);
  color: #000000;
}
.v-footer .v-footer__info {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.v-footer .v-footer__info ul {
  display: flex;
}
.v-footer .v-footer__info li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 8px;
  background-color: #ddd;
  margin: 0 8px;
  line-height: 16px;
}
.v-footer .v-footer__link {
  display: flex;
  gap: 8px;
}
.v-footer .v-footer__link-button {
  display: flex;
  align-items: center;
  gap: 2px;
}
.v-footer .v-footer__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
}
.v-footer .v-footer__mark img {
  display: block;
  width: 38px;
  height: 100%;
  object-fit: contain;
}
.v-footer .footer__app-text {
  font-weight: var(--v-font-regular);
  line-height: var(--v-footer-line-height);
  letter-spacing: var(--v-footer-letter-spacing);
  text-align: right;
}
.v-footer .footer__app-text span {
  font-size: 16px;
  color: #000;
}
.v-footer .footer__app-text p {
  font-size: 12px;
  color: #6d6d6d;
}

.v-mall-selector {
  top: var(--v-site-header-height, 0);
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-width: var(--v-site-header-width, 1440px);
  max-width: none;
  height: calc(100% - var(--v-site-header-height, 0));
  max-height: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.v-mall-selector.is-open {
  --v-mall-selector-o: 1;
  --v-mall-selector-y: 0%;
}
.v-mall-selector::backdrop {
  top: var(--v-site-header-height, 0);
}

.v-mall-selector__container {
  position: absolute;
  top: 0;
  left: calc(50% + var(--dialog-x-offset, 0px));
  opacity: var(--v-mall-selector-o, 0);
  transform: translate3d(-50%, var(--v-mall-selector-y, -100%), 0);
  transition: transform 0.3s ease-in-out, opacity 0.3s linear;
  width: 340px;
  background: #fff;
  color: #000;
}

.v-mall-selector__list {
  padding: 28px 20px;
}
.v-mall-selector__list li + li {
  margin-top: 24px;
  padding-top: 25px;
  background-image: linear-gradient(to right, var(--v-divider-color, rgba(0, 0, 0, 0.1)) 0%, var(--v-divider-color, rgba(0, 0, 0, 0.1)) 100%);
  background-size: calc(100% - 40px) 1px;
  background-position: top center;
  background-repeat: no-repeat;
}
.v-mall-selector__list a {
  display: block;
  width: 100%;
}
.v-mall-selector__list img {
  display: block;
  max-width: 100%;
  width: auto;
  height: 40px;
  margin-inline: auto;
}

.v-media-banner {
  --v-media-content-gap: 24px;
  --v-small-title-banner-name-gap: 8px;
  --v-header-banner-sub-name-gap: 16px;
  --v-text-button-gap: 32px;
  --v-media-fit: cover;
  --v-small-title-size: 16px;
  --v-small-title-line-height: 1.4;
  --v-banner-name-size: 40px;
  --v-banner-sub-name-size: 16px;
}

.v-media-banner--text-left,
.v-media-banner--text-right {
  --v-media-aspect-ratio: 753 / 1130;
}

.v-media-banner--layered {
  --v-media-banner-media-side: 0;
  --v-banner-name-size: 48px;
  --v-banner-sub-name-size: 20px;
  --v-text-button-gap: 16px;
}
.v-media-banner--layered .v-media-banner__content {
  z-index: 1;
  grid-column: 1/-1;
  grid-row: auto/-1;
  padding-bottom: 40px;
  pointer-events: none;
}
.v-media-banner--layered .v-media-banner__content a,
.v-media-banner--layered .v-media-banner__content button {
  pointer-events: auto;
  cursor: pointer;
}

.v-media-banner--hero {
  --v-media-aspect-ratio: 1920 / 1000;
  --v-small-title-banner-name-gap: 12px;
  --v-header-banner-sub-name-gap: 32px;
  --v-text-button-gap: 40px;
  --v-small-title-size: 20px;
  --v-small-title-line-height: 1;
  --v-banner-name-size: 80px;
  --v-banner-sub-name-size: 24px;
}
.v-media-banner--hero .v-media-banner__text {
  width: var(--v-hero-banner-text-width, 908px);
}
.v-media-banner--hero .v-media-banner__button {
  --v-button-width: 600px;
}

.v-carousel--wide .v-media-banner--hero {
  --v-hero-banner-text-width: 1100px;
  --v-small-title-size: 24px;
  --v-banner-name-size: 100px;
  --v-banner-sub-name-size: 28px;
}

.v-media-banner--text-right,
.v-media-banner--text-left {
  --v-media-banner-media-side: 0;
  --v-media-banner-media-width: clamp(688px, 13.5416666667vw + 493px, 753px);
  --v-media-banner-content-side: 0;
  --v-small-title-banner-name-gap: 12px;
  --v-header-banner-sub-name-gap: 40px;
  --v-text-button-gap: 40px;
  --v-small-title-size: 24px;
  --v-small-title-weight: var(--v-font-bold);
  --v-small-title-line-height: 1;
  --v-small-title-leading: 0;
  --v-banner-name-size: clamp(100px, 4.1666666667vw + 40px, 120px);
  --v-banner-name-leading: -0.03em;
  --v-banner-sub-name-size: clamp(24px, 0.8333333333vw + 12px, 28px);
  --v-banner-sub-name-line-height: 1.3;
  --v-banner-sub-name-leading: -0.02em;
  --v-media-banner-separator-height: 4px;
  display: grid;
  grid-template-areas: var(--v-media-banner-areas);
  grid-template-columns: var(--v-media-banner-columns);
  grid-template-rows: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.v-media-banner--text-right .v-media-banner__media,
.v-media-banner--text-left .v-media-banner__media {
  grid-area: media;
}
.v-media-banner--text-right .v-media-banner__content,
.v-media-banner--text-left .v-media-banner__content {
  grid-area: content;
  justify-content: end;
}

.v-media-banner--text-right {
  --v-media-banner-areas: "media content";
  --v-media-banner-columns: var(
      --v-media-banner-media-width,
      calc(753 / 1360 * 100%)
    )
    minmax(0, 1fr);
}

.v-media-banner--text-left {
  --v-media-banner-areas: "content media";
  --v-media-banner-columns: minmax(0, 1fr)
    var(--v-media-banner-media-width, calc(753 / 1840 * 100%));
}
.v-media-banner--text-left .v-media-banner__content {
  height: 100%;
  position: relative;
}
.v-media-banner--text-left .v-media-banner__content::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  position: absolute;
  background: currentColor;
}

.v-media-banner--has-products {
  --v-media-banner-media-width: clamp(688px, 45.8333333333vw + 28px, 908px);
  --v-small-title-size: 24px;
}

body.show-top-button {
  --v-top-button-o: 1;
  --v-floating-buttons-y: 0;
}

.v-floating-buttons {
  position: fixed;
  bottom: var(--v-floating-bottom, 10px);
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: var(--v-floating-z, calc(var(--v-site-header-z, 100) - 1));
  transition: transform 0.3s ease-in-out;
  transform: translateY(var(--v-floating-buttons-y, 48px));
}
.v-floating-buttons .v-button {
  width: 48px;
}
.v-floating-buttons svg,
.v-floating-buttons img {
  width: 100%;
  height: auto;
}

.v-top-button {
  transition: opacity 0.2s linear;
  opacity: var(--v-top-button-o, 0);
}

:root {
  --v-carousel-gap: 24px;
  --v-carousel-side-margin: 40px;
  --swiper-pagination-width: 200px;
  --swiper-navigation-size: 40px;
  --swiper-navigation-icon-size: 40px;
  --swiper-pagination-area-height: 40px;
}

.v-carousel {
  --swiper-navigation-opacity: 0;
  --swiper-navigation-color: #fff;
}
.v-carousel::part(button-prev), .v-carousel::part(button-next) {
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.1);
}
.v-carousel:hover {
  --swiper-navigation-opacity: 1;
}
.v-carousel[slides-per-view="1"] {
  --swiper-navigation-top-offset: calc(
    (var(--v-carousel-slide-width) * (1000 / 1920)) / 2
  );
}
.v-carousel[pagination=true][slides-per-view="1"]:has(swiper-slide:nth-of-type(2)), .v-carousel[pagination=true][slides-per-view="2"]:has(swiper-slide:nth-of-type(3)), .v-carousel[pagination=true][slides-per-view="3"]:has(swiper-slide:nth-of-type(4)), .v-carousel[pagination=true][slides-per-view="4"]:has(swiper-slide:nth-of-type(5)), .v-carousel[pagination=true][slides-per-view="5"]:has(swiper-slide:nth-of-type(6)) {
  --swiper-pagination-area-height: 82px;
}
.v-carousel.v-carousel--wide, .v-carousel[slides-offset-before], .v-carousel[slides-offset-after] {
  --v-carousel-side-margin: 0;
}
.v-carousel[slides-per-group="1"]:has(.v-media-banner--text-right, .v-media-banner--text-left) {
  --slide-media-width: clamp(688px, 13.5416666667vw + 493px, 753px);
}
.v-carousel[slides-per-group="1"]:has(.v-media-banner--text-right) {
  --swiper-navigation-top-offset: calc(
    (var(--slide-media-width, 0) * (1130 / 753)) / 2
  );
}
.v-carousel[slides-per-group="1"]:has(.v-media-banner--text-right.v-media-banner--has-products) {
  --slide-media-width: clamp(688px, 45.8333333333vw + 28px, 908px);
}
.v-carousel[slides-per-group="1"]:has(.v-media-banner--text-left) {
  --swiper-navigation-top-offset: calc(
    (var(--slide-media-width, 0) * (1130 / 753)) / 2
  );
}

.v-carousel_slot_end .v-button {
  max-width: var(--v-default-button-max-width);
  margin: 0 auto;
}

.v-carousel:has(.v-quick-link) {
  --swiper-pagination-area-height: 24px;
}

.v-video-product {
  --v-video-product-gap: 24px;
  --v-video-product-font-size: 14px;
  --v-video-product-thumbnail-width: 67px;
  --v-video-product-info-gap: 4px;
  --v-video-product-inset: 24px;
  --v-video-product-text-width:421px;
  --v-video-product-text-gap: 4px;
  --v-video-product-text-size: 16px;
  --v-video-product-text-line-height: 1.3;
}

.v-product-unit {
  --v-product-unit-base-font-size: 14px;
  gap: var(--v-space-4);
}

.v-product-unit__media-grid {
  position: relative;
}
.v-product-unit__media-grid:hover {
  --v-product-unit-overlay-o: 1;
}

.v-product-unit__overlay {
  transition: opacity 0.2s linear;
  opacity: var(--v-product-unit-overlay-o, 0);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 19px 24px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: var(--v-product-unit-base-font-size);
  line-height: 1;
}

.v-product-unit__overlay__content {
  max-height: calc(var(--v-product-unit-base-font-size) * 2 + var(--v-product-unit-options-row-gap, 4px));
  overflow: hidden;
  overflow: clip;
}

.v-product-unit__options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--v-product-unit-options-row-gap, 4px) 12px;
}

.v-product-unit__content {
  font-size: 14px;
}

.v-product-unit__price-group {
  font-size: 16px;
}

.v-product-unit__tags {
  --v-product-tags-padding: 8px;
  --v-product-tags-font-size: 14px;
  --v-product-tags-height: 30px;
}

.v-product-unit__colors {
  --v-product-chip-size: 24px;
  margin-block: 6px 22px;
}
@media (width < 1486px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(16)) > li:nth-of-type(13) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(16)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 1656px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(18)) > li:nth-of-type(15) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(18)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 1826px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(20)) > li:nth-of-type(17) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(20)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
@media (width < 1996px) {
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(22)) > li:nth-of-type(19) ~ * {
    display: none;
  }
  .v-product-unit__colors .v-product-unit__chip-list:has(> li:nth-of-type(22)) > li:has(.v-product-unit__chip--more) {
    display: block;
  }
}
.v-product-unit__colors .v-product-unit__chip-list {
  gap: 10px;
  max-height: 58px;
}
.v-product-unit__colors .v-product-unit__chip-list > li {
  padding: 0px;
}

.v-product-unit__rank {
  margin: 3px 2px 9px 5px;
  font-size: 24px;
}

.v-product-unit__state {
  --v-product-state-font-size: 12px;
}

.v-carousel:has(.v-product-unit--gift-wrap) {
  --swiper-navigation-top-offset: calc(
    50% - var(--swiper-pagination-area-height, 82px) / 2
  );
}

.v-product-unit--gift-wrap {
  display: grid;
  grid-template-areas: "media info" "media thumbnails";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  overflow: clip;
  gap: 0 24px;
}

.v-product-unit__media-grid {
  grid-area: media;
}

.v-product-unit__link:has(.v-product-unit__content) {
  grid-area: info;
  padding-block: 16px 24px;
}

.v-product-unit__thumbnails {
  grid-area: thumbnails;
}

.v-history-item {
  --v-history-button--delete-width: 12px;
  --v-history-button--delete-height: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--v-space-5);
  min-height: 45px;
  margin-bottom: var(--v-space-3);
}
.v-history-item:has(.v-history-keyword) {
  min-height: unset;
  margin-bottom: var(--v-space-2);
}
.v-history-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--v-media-fit, contain);
  object-position: var(--v-media-position, center);
}
.v-history-item .v-history-button--delete {
  --v-button-display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  width: var(--v-history-button--delete-width);
  height: var(--v-history-button--delete-height);
  color: #999;
}
.v-history-item .v-history-keyword {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-block: var(--v-space-3);
  width: calc(100% - var(--v-space-7));
}
.v-history-item .v-history-keyword a {
  flex: initial;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-history-item .v-history-keyword svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 16px;
}
.v-history-item .v-history-keyword span {
  font-weight: var(--v-font-regular);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.v-history-item .v-history-block {
  flex: 1;
}
.v-history-item .v-history-block a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--v-space-5);
  width: 100%;
}
.v-history-item .v-history-block--product .v-history-block__title {
  font-size: var(--v-history-block-name-size, 14px);
  font-weight: var(--v-history-block-name-weight, var(--v-font-bold));
}
.v-history-item .v-history-block--product .v-history-block__sub-title {
  line-height: 1.2;
}
.v-history-item .v-history-block--product .v-history-block__embed::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--v-media-dim, rgba(0, 0, 0, 0.03));
}
.v-history-item .v-history-block__embed {
  flex: 0 0 70px;
  position: relative;
  display: block;
  aspect-ratio: var(--v-media-aspect-ratio);
  height: 105px;
  overflow: clip;
}
.v-history-item .v-history-block__text {
  display: flex;
  gap: 2px;
  flex-direction: column;
  padding-inline: initial;
}
.v-history-item .v-history-block__sub-title {
  color: #6d6d6d;
  font-weight: var(--v-history-block-name-weight, var(--v-font-regular));
  font-size: var(--v-history-block-sub-name-size, 14px);
  line-height: 1.3;
  letter-spacing: 0;
}
.v-history-item .v-history-block__title {
  font-weight: var(--v-history-block-name-weight, var(--v-font-regular));
  font-size: var(--v-history-block-name-size, 16px);
  line-height: 1.3;
  letter-spacing: 0;
}
.v-history-item .v-history-block__text,
.v-history-item .v-product-unit__link {
  flex: 1;
}
.v-history-item .v-product-selling {
  color: var(--v-product-selling-color, #6C6C6C);
  font-weight: var(--v-product-selling-font-weight, 700);
  margin-right: var(--v-product-selling-margin-right, 0.25em);
}

.v-history-panel section[class^=v-history-] {
  margin: var(--v-title-side-margin, var(--v-side-margin));
}
.v-history-panel section[class^=v-history-][class$=-content]:not(:first-child) {
  margin-top: 0;
}

.v-history-no-data,
.v-history-no-login {
  gap: var(--v-space-6);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  left: 0;
  top: calc(50% - var(--v-side-panel-header-height));
  transform: translateY(-50%);
}
.v-history-no-data p,
.v-history-no-login p {
  font-weight: var(--v-font-regular);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

.v-history-date {
  font-weight: var(--v-font-bold);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  border-bottom: 1px solid #000;
  padding-bottom: var(--v-space-2);
  margin-bottom: var(--v-space-3);
}

.v-wishlist-panel__content {
  --v-item-list-gap-y: 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
}
.v-wishlist-panel__content .v-product-unit__brand {
  line-height: 1.3;
}

.v-side-panel__section-title {
  margin-bottom: 16px;
  font-weight: var(--v-font-bold);
  font-size: 18px;
  line-height: 1.3;
}

.v-side-panel__empty-message {
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}

.v-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: var(--v-search-box-align, flex-end);
  padding-bottom: var(--v-search-box-padding-bottom, 12px);
  border-bottom: var(--v-search-box-border-width, 4px) solid #000;
}

.v-search-box__input input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: var(--v-search-box-font-size, 40px);
  line-height: 1.3;
}
.v-search-box__input input:focus {
  outline: none;
}
.v-search-box__input input::placeholder {
  color: #bbb;
}

.v-search-box__actions {
  display: flex;
  gap: 12px;
}

.v-search-box__button {
  --v-button-width: var(--v-search-box-button-width, 40px);
  --v-button-height: var(--v-search-box-button-height, 40px);
}

.v-search-box__icon {
  width: var(--v-search-box-icon-size, 30px);
  height: auto;
}

.v-search-box__button--reset {
  --v-button-display: var(--v-search-reset-display, inline-flex);
}

.v-search-box:has(input:placeholder-shown) {
  --v-search-reset-display: none;
}

.v-hamburger-menu-layer {
  --v-site-header-layer-feature-width: 1020px;
}
.v-hamburger-menu-layer .v-site-header__layer__inner {
  height: 650px;
}
.v-hamburger-menu-layer .v-site-header__layer__banners {
  padding-block: 40px;
}

.v-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: stretch;
  min-height: 650px;
  margin-left: -40px;
}

.v-menu-grid__item {
  border-right: 1px solid #ddd;
}
.v-menu-grid__item:last-child {
  border-right: none;
}

.v-menu-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  min-height: 100%;
}

.v-menu-container {
  padding: 30px 30px 18px 0;
}

.v-menu-list--category::after {
  content: "";
  display: block;
  border-bottom: 1px solid #dedede;
  margin: 10px 10px 10px 40px;
}

.v-menu-item,
.v-curation-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 10px 0 10px var(--v-side-margin, 0);
  font-size: 18px;
  line-height: 1.3;
}

.v-menu-item {
  height: 43px;
}

.v-menu-item[aria-expanded=true] {
  font-weight: var(--v-category-menu-weight, var(--v-font-bold));
}
.v-menu-item[aria-expanded=true]::after {
  content: var(--v-category-menu-arrow, "");
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16' %3E%3Cpath stroke='%23000' d='m6 4.5 5 4-5 4' /%3E%3C/svg%3E");
  background-position: center;
}

.v-menu-grid__item:last-of-type .v-menu-item:hover {
  font-weight: var(--v-category-menu-weight, --v-font-bold);
}

.v-menu-item__name {
  display: inline-flex;
  align-items: flex-start;
}

.v-menu-item__notification {
  transform: translateY(-1px);
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  overflow: clip;
  text-indent: 200%;
  background: #c40000;
}

.v-menu-list:not(.v-menu-list--category) .v-menu-item:hover,
.v-curation-item:hover {
  font-weight: var(--v-font-bold);
}

.v-menu-grid:has(.v-menu-grid__item_depth_1 .v-menu-list:not(.v-menu-list--category) .v-menu-item:hover,
.v-menu-grid__item_depth_1 .v-curation-item:hover) {
  --v-category-menu-weight: var(--v-font-regular);
  --v-category-menu-arrow: none;
}

.v-recent-search-keyword {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 12px 8px 12px 0;
  font-size: 16px;
  line-height: 1.3;
}

.v-recent-search-keyword__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.v-recent-search-keyword__delete-button {
  --v-button-width: 12px;
  --v-button-height: 12px;
  --v-button-text-color: #999;
  flex-shrink: 0;
}
.v-recent-search-keyword__delete-button svg {
  width: 100%;
  height: auto;
  fill: none;
}

.v-rank-list {
  list-style: none;
}

.v-rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px 12px 0;
  font-size: 16px;
  line-height: 1.3;
}

.v-rank-item__place {
  width: 20px;
  font-weight: var(--v-font-bold);
}

.v-rank-item__keyword {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.v-rank-item__diff-icon {
  width: 12px;
  height: 12px;
}

.v-search-suggestions {
  margin-top: 16px;
}

.v-keyword-list {
  list-style: none;
  max-width: 554px;
  margin: 0;
  padding: 0;
}

.v-keyword-link {
  display: grid;
  gap: 12px;
  width: 100%;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
  line-height: 1.3;
}

.v-keyword-link--has-tag {
  padding: 8px 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.v-keyword-link__tag {
  background: var(--v-keyword-tag-bg-color, #000);
  color: var(--v-keyword-tag-fg-color, #fff);
  padding: 4px 8px;
  font-size: 14px;
  text-box: trim-both;
}

.v-keyword-link__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}
.v-keyword-link__text:has(mark) {
  color: #999;
}
.v-keyword-link__text mark {
  background: none;
  color: #000;
}

.v-keyword-link__chevron {
  flex: 0 0 16px;
  width: 16px;
  height: auto;
  fill: none;
  color: #999;
}

.v-search-layer {
  --v-site-header-layer-feature-width: calc(1144 / 1840 * 100%);
}
.v-search-layer .v-site-header__layer__inner {
  height: 688px;
}
.v-search-layer .v-site-header__layer__banners .v-media-banner__sub-name {
  --v-banner-sub-name-size: 14px;
}

.v-search-layer-content {
  padding-block: 40px;
}
.v-search-layer-content .v-search-box {
  margin-bottom: 40px;
}

.v-search-keywords {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.v-search-keywords .v-section-header {
  --v-button-height: auto;
  --v-button-text-color: #6d6d6d;
  --v-button-font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.v-search-keywords .v-section-header__aside {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.v-search-keywords .v-section-header__aside .v-buutton--remove-all::after {
  content: "";
  display: inline-flex;
  width: 1px;
  height: 12px;
  margin: 0 10px;
  background-color: #ddd;
}
.v-search-keywords .v-section-header__small-text {
  color: #999;
}
.v-search-keywords .v-section-title {
  font-weight: var(--v-font-bold);
  font-size: 20px;
  line-height: 1.3;
}

.v-container {
  container-type: inline-size;
}

.v-tmpl--img-quicklink swiper-slide {
  max-width: clamp(148px, 10.88vw, 209px);
}
.v-tmpl--img-quicklink .v-carousel-centered::part(wrapper) {
  margin: 0 auto;
  justify-content: center;
}
.v-tmpl--img-quicklink .v-carousel-centered swiper-slide:last-child {
  margin-right: 0 !important;
}

.v-quick-link .v-media-embed {
  --v-quick-link-border-radius: 15px;
}

.v-quick-link__text {
  --v-quick-link-font-size: 20px;
  --v-quick-link-line-height: 1.3;
  --v-quick-link-font-margin-inline: 20px;
}

@container (max-width: 1440px) {
  .v-tmpl--img-quicklink swiper-slide {
    max-width: 148px;
  }
}
.v-notice-popup {
  position: fixed;
  top: var(--v-notice-popup-top, 280px);
  width: var(--v-notice-popup-width, 375px);
  left: var(--v-notice-popup-left, 55px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  z-index: 90;
}

.v-notice-popup__content {
  overflow: hidden;
}
.v-notice-popup__content .v-carousel {
  --v-carousel-slide-width: 375px;
  --swiper-navigation-top-offset: calc(
    (var(--v-carousel-slide-width) * (442 / 395)) / 2
  );
  --v-media-aspect-ratio: 750/840;
}
.v-notice-popup__content .v-carousel[pagination=true]:has(swiper-slide) {
  --swiper-pagination-width: 100px;
  --swiper-pagination-progressbar-bg-color: rgba(255, 255, 255, 0.4);
  --swiper-pagination-color: #fff;
  --swiper-pagination-area-height: 58px !important;
}
.v-notice-popup__content .v-carousel::part(root) {
  padding-bottom: 0;
}
.v-notice-popup__content .v-media-embed {
  --v-media-bg: #fff;
  --v-media-fit: cover;
}

.v-notice-popup__footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding-inline: var(--v-notice-popup-footer-side-padding, 20px);
  padding-top: var(--v-notice-popup-footer-top-padding, 12px);
  padding-bottom: var(--v-notice-popup-footer-bottom-padding, 12px);
  border-top: 1px solid #e0e0e0;
}

.v-notice-popup__action--today-close {
  --v-button-height: auto;
}

.v-notice-popup__action--close {
  --v-button-height: auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.pagination {
  --v-pagination-button-gap: 4px;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.pagination ol {
  display: flex;
}
.pagination li {
  margin-left: var(--v-pagination-button-gap);
}
.pagination li:has(.v-pagination__item--nogap) {
  --v-pagination-button-gap: 0;
}
.pagination .v-button {
  --v-button-font-size: 14px;
  --v-button-text-color: #a0a0a0;
  --v-button-width: 24px;
  --v-button-height: 24px;
  vertical-align: top;
}
.pagination .v-button[aria-current=page], .pagination .v-button[aria-disabled=false] {
  --v-button-text-color: #000;
  --v-button-font-weight: 500;
}
.pagination .v-button[aria-disabled=true] {
  cursor: default;
  pointer-events: none;
}

.v-banner-product {
  --v-header-banner-sub-name-gap: var(--v-space-5);
  --v-banner-name-size: 38px;
}

.v-banner-product__products {
  margin-top: var(--v-banner-products-gap, var(--v-space-5));
}

.v-tmpl--silive-product video-player:not([autoplay]) > * {
  pointer-events: none;
}

:root {
  --v-full-height: 100vh;
  --v-full-height: 100dvh;
}

.v-visually-hidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.v-no-scrollbar {
  scrollbar-width: none;
}
.v-no-scrollbar::-webkit-scrollbar {
  display: none;
}

.v-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-wrap: nowrap !important;
}

.v-line-clamp-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.v-line-clamp-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.v-line-clamp-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.v-line-clamp-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.v-line-clamp-6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.v-line-clamp-7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.v-line-clamp-8 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.v-line-clamp-9 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

.v-line-clamp-10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}

.v-side-margin {
  margin-inline: var(--v-side-margin);
}

.v-side-padding,
.v-wide {
  padding-inline: var(--v-side-padding, var(--v-side-margin));
}

.v-grid {
  display: grid;
  grid-template-columns: repeat(var(--v-grid-columns), minmax(0, 1fr));
  column-gap: var(--v-grid-gutter);
}

.v-grid__full {
  grid-column: 1/-1;
}

.v-col-span-1 {
  grid-column: span 1;
}

.v-col-start-1 {
  grid-column-start: 1;
}

.v-col-end-1 {
  grid-column-end: 1;
}

.v-col-span-2 {
  grid-column: span 2;
}

.v-col-start-2 {
  grid-column-start: 2;
}

.v-col-end-2 {
  grid-column-end: 2;
}

.v-col-span-3 {
  grid-column: span 3;
}

.v-col-start-3 {
  grid-column-start: 3;
}

.v-col-end-3 {
  grid-column-end: 3;
}

.v-col-span-4 {
  grid-column: span 4;
}

.v-col-start-4 {
  grid-column-start: 4;
}

.v-col-end-4 {
  grid-column-end: 4;
}

.v-col-span-5 {
  grid-column: span 5;
}

.v-col-start-5 {
  grid-column-start: 5;
}

.v-col-end-5 {
  grid-column-end: 5;
}

.v-col-span-6 {
  grid-column: span 6;
}

.v-col-start-6 {
  grid-column-start: 6;
}

.v-col-end-6 {
  grid-column-end: 6;
}

.v-col-span-7 {
  grid-column: span 7;
}

.v-col-start-7 {
  grid-column-start: 7;
}

.v-col-end-7 {
  grid-column-end: 7;
}

.v-col-span-8 {
  grid-column: span 8;
}

.v-col-start-8 {
  grid-column-start: 8;
}

.v-col-end-8 {
  grid-column-end: 8;
}

.v-col-span-9 {
  grid-column: span 9;
}

.v-col-start-9 {
  grid-column-start: 9;
}

.v-col-end-9 {
  grid-column-end: 9;
}

.v-col-span-10 {
  grid-column: span 10;
}

.v-col-start-10 {
  grid-column-start: 10;
}

.v-col-end-10 {
  grid-column-end: 10;
}

.v-col-span-11 {
  grid-column: span 11;
}

.v-col-start-11 {
  grid-column-start: 11;
}

.v-col-end-11 {
  grid-column-end: 11;
}

.v-col-span-12 {
  grid-column: span 12;
}

.v-col-start-12 {
  grid-column-start: 12;
}

.v-col-end-12 {
  grid-column-end: 12;
}

.v-col-auto {
  grid-column: auto;
}

.v-col-start-auto {
  grid-column-start: auto;
}

.v-col-end-auto {
  grid-column-end: auto;
}

.v-flex-y {
  display: flex;
  flex-direction: column;
  row-gap: var(--v-gap-y);
}

.v-flex-x {
  display: flex;
  flex-direction: row;
  column-gap: var(--v-gap-x);
}

.v-flex-wrap {
  flex-wrap: wrap;
}

.v-gap-0 {
  --v-gap-x: var(--v-space-0);
  --v-gap-y: var(--v-space-0);
}

.v-gap-x-0 {
  --v-gap-x: var(--v-space-0);
}

.v-gap-y-0 {
  --v-gap-y: var(--v-space-0);
}

.v-gap-1 {
  --v-gap-x: var(--v-space-1);
  --v-gap-y: var(--v-space-1);
}

.v-gap-x-1 {
  --v-gap-x: var(--v-space-1);
}

.v-gap-y-1 {
  --v-gap-y: var(--v-space-1);
}

.v-gap-2 {
  --v-gap-x: var(--v-space-2);
  --v-gap-y: var(--v-space-2);
}

.v-gap-x-2 {
  --v-gap-x: var(--v-space-2);
}

.v-gap-y-2 {
  --v-gap-y: var(--v-space-2);
}

.v-gap-3 {
  --v-gap-x: var(--v-space-3);
  --v-gap-y: var(--v-space-3);
}

.v-gap-x-3 {
  --v-gap-x: var(--v-space-3);
}

.v-gap-y-3 {
  --v-gap-y: var(--v-space-3);
}

.v-gap-4 {
  --v-gap-x: var(--v-space-4);
  --v-gap-y: var(--v-space-4);
}

.v-gap-x-4 {
  --v-gap-x: var(--v-space-4);
}

.v-gap-y-4 {
  --v-gap-y: var(--v-space-4);
}

.v-gap-5 {
  --v-gap-x: var(--v-space-5);
  --v-gap-y: var(--v-space-5);
}

.v-gap-x-5 {
  --v-gap-x: var(--v-space-5);
}

.v-gap-y-5 {
  --v-gap-y: var(--v-space-5);
}

.v-gap-6 {
  --v-gap-x: var(--v-space-6);
  --v-gap-y: var(--v-space-6);
}

.v-gap-x-6 {
  --v-gap-x: var(--v-space-6);
}

.v-gap-y-6 {
  --v-gap-y: var(--v-space-6);
}

.v-gap-7 {
  --v-gap-x: var(--v-space-7);
  --v-gap-y: var(--v-space-7);
}

.v-gap-x-7 {
  --v-gap-x: var(--v-space-7);
}

.v-gap-y-7 {
  --v-gap-y: var(--v-space-7);
}

.v-gap-8 {
  --v-gap-x: var(--v-space-8);
  --v-gap-y: var(--v-space-8);
}

.v-gap-x-8 {
  --v-gap-x: var(--v-space-8);
}

.v-gap-y-8 {
  --v-gap-y: var(--v-space-8);
}

.v-gap-9 {
  --v-gap-x: var(--v-space-9);
  --v-gap-y: var(--v-space-9);
}

.v-gap-x-9 {
  --v-gap-x: var(--v-space-9);
}

.v-gap-y-9 {
  --v-gap-y: var(--v-space-9);
}

.v-gap-10 {
  --v-gap-x: var(--v-space-10);
  --v-gap-y: var(--v-space-10);
}

.v-gap-x-10 {
  --v-gap-x: var(--v-space-10);
}

.v-gap-y-10 {
  --v-gap-y: var(--v-space-10);
}

.v-gap-11 {
  --v-gap-x: var(--v-space-11);
  --v-gap-y: var(--v-space-11);
}

.v-gap-x-11 {
  --v-gap-x: var(--v-space-11);
}

.v-gap-y-11 {
  --v-gap-y: var(--v-space-11);
}

.v-gap-12 {
  --v-gap-x: var(--v-space-12);
  --v-gap-y: var(--v-space-12);
}

.v-gap-x-12 {
  --v-gap-x: var(--v-space-12);
}

.v-gap-y-12 {
  --v-gap-y: var(--v-space-12);
}

.v-gap-13 {
  --v-gap-x: var(--v-space-13);
  --v-gap-y: var(--v-space-13);
}

.v-gap-x-13 {
  --v-gap-x: var(--v-space-13);
}

.v-gap-y-13 {
  --v-gap-y: var(--v-space-13);
}

.v-font-sans {
  font-family: var(--v-font-sans) !important;
}

.v-font-serif {
  font-family: var(--v-font-serif) !important;
}

.v-font-regular {
  font-weight: var(--v-font-regular, 400) !important;
}

.v-font-bold {
  font-weight: var(--v-font-bold, 700) !important;
}

.v-font-black {
  font-weight: var(--v-font-black, 900) !important;
}

:where(.v-icon) {
  width: var(--v-icon-width, var(--v-icon-size));
  height: var(--v-icon-height, var(--v-icon-size));
  overflow: visible;
}

.v-layer {
  z-index: calc(var(--v-site-header-z) + 1);
  display: var(--v-layer-display, none);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow: hidden;
  overflow: clip;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}

div.v-layer,
dialog.v-layer[open] {
  --v-layer-display: flex;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

div.v-layer[hidden] {
  --v-layer-display: none;
}

.v-layer__container {
  width: var(--v-layer-width, 395px);
  max-height: var(--v-layer-max-height, 88.33vh);
  display: grid;
  grid-template-areas: "header" "body" "footer";
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
}

.v-layer__header {
  --v-popup-header-justify: center;
  --v-popup-header-bar-padding-inline: 0;
  --v-popup-header-button-width: 24px;
  --v-popup-header-button-padding: 0;
  --v-popup-header-main-padding-left: 0;
  --v-popup-header-main-padding-right: 40px;
  --v-popup-header-bar-margin-inline: 24px;
  --v-popup-header-title-font-size: 18px;
  --v-popup-header-title-font-weight: 400;
  --v-popup-header-title-line-height: 23px;
  grid-area: header;
}

.v-layer__body {
  grid-area: body;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
  padding: var(--v-layer-body-padding, 0);
  font-size: var(--v-layer-body-font-size, 14px);
  font-weight: var(--v-layer-body-font-weight, 400);
  line-height: var(--v-layer-body-line-height, 20px);
  color: var(--v-layer-body-color, #404040);
}

.v-layer__footer {
  --v-popup-footer-padding: 0;
  --v-popup-footer-buttons-gap: 0;
  --v-popup-footer-buttons-line-height: 14px;
  --v-popup-footer-buttons-border-radius: 0;
  grid-area: footer;
}

.v-popup-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  grid-template-areas: "lead . trail";
  align-items: center;
  height: var(--v-popup-header-height, 72px);
  padding-inline: var(--v-popup-header-bar-padding-inline, 24px);
  margin-inline: var(--v-popup-header-bar-margin-inline, 0);
  background-color: var(--v-popup-header-bg-color, #fff);
  color: var(--v-popup-header-fg-color, #000);
}

.v-popup-header__main {
  grid-row: 1/-1;
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: var(--v-popup-header-justify, center);
  padding-left: var(--v-popup-header-main-padding-left, calc(var(--v-popup-header-button-width, 24px) * 1));
  padding-right: var(--v-popup-header-main-padding-right, calc(var(--v-popup-header-button-width, 24px) * 1));
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v-popup-header__title {
  font-size: var(--v-popup-header-title-font-size, 18px);
  font-weight: var(--v-popup-header-title-font-weight, 400);
  line-height: var(--v-popup-header-title-line-height, 1);
}

.v-popup-header__lead {
  grid-area: lead;
  display: flex;
}

.v-popup-header__trail {
  grid-area: trail;
  display: flex;
}

.v-popup-header__button--close {
  --v-button-width: var(--v-popup-header-button-width, 24px);
  --v-button-height: var(--v-popup-header-button-width, 24px);
  --v-button-padding: var(--v-popup-header-button-padding, 5px);
}

.v-popup-footer {
  padding: var(--v-popup-footer-padding, 24px);
}

.v-popup-footer__buttons {
  display: flex;
  gap: var(--v-popup-footer-buttons-gap, 8px);
}
.v-popup-footer__buttons .v-button {
  --v-button-height: var(--v-popup-footer-buttons-height, 48px);
  --v-button-font-size: var(--v-popup-footer-buttons-font-size, 14px);
  --v-button-line-height: var(--v-popup-footer-buttons-line-height, 1);
  flex: 1;
  border-radius: var(--v-popup-footer-buttons-border-radius, 4px);
}
.v-popup-footer__buttons .v-button[aria-disabled=true] {
  opacity: 0.4;
}
.v-popup-footer__buttons .v-button--primary {
  --v-button-background-color: #000;
  --v-button-text-color: #fff;
}
.v-popup-footer__buttons .v-button--secondary {
  --v-button-background-color: #6d6d6d;
  --v-button-text-color: #fff;
}

.v-popup-layer--review-detail {
  --v-popup-layer-max-height: 88.33vh;
  --v-carousel-root-pad-x: 0;
  --swiper-pagination-area-height: 0;
  --v-review-layer-visual-swiper-width: 442px;
  --v-review-layer-thumbnail-swiper-width: 67px;
}
.v-popup-layer--review-detail .v-popup-layer__container {
  padding-bottom: 24px;
}
.v-popup-layer--review-detail .v-popup-header__main .pagination {
  margin-left: 4px;
  color: #999;
}
.v-popup-layer--review-detail .v-review__list {
  --v-carousel-side-margin: 64px;
  --swiper-navigation-button-prev-left: -64px;
  --swiper-navigation-button-next-right: -64px;
  --swiper-navigation-top-offset: calc(
    50% - var(--swiper-navigation-size) / 2
  );
}
.v-popup-layer--review-detail .v-review swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.v-popup-layer--review-detail .v-review__grid-wrap {
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 24px;
}
.v-popup-layer--review-detail .v-review__grid-left {
  grid-area: left;
  display: grid;
  grid-template-areas: "thumbnail visual";
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr);
  gap: 12px;
}
.v-popup-layer--review-detail .v-review__grid-right {
  grid-area: right;
  overflow: auto;
  height: calc(var(--v-review-layer-visual-swiper-width) * 1.5);
  scrollbar-width: thin;
}
.v-popup-layer--review-detail .v-review__thumbnail {
  grid-area: thumbnail;
  overflow: hidden;
  width: var(--v-review-layer-thumbnail-swiper-width);
  height: calc(var(--v-review-layer-visual-swiper-width) * 1.5);
}
.v-popup-layer--review-detail .v-review__thumbnail swiper-slide {
  aspect-ratio: 67/101;
  position: relative;
  border: 1px solid transparent;
  overflow: hidden;
}
.v-popup-layer--review-detail .v-review__thumbnail swiper-slide.swiper-slide-active {
  border-color: #000;
}
.v-popup-layer--review-detail .v-review__thumbnail swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
}
.v-popup-layer--review-detail .v-review__visual {
  --v-carousel-side-margin: 0;
  grid-area: visual;
  width: var(--v-review-layer-visual-swiper-width);
}
.v-popup-layer--review-detail .v-review__visual swiper-slide {
  aspect-ratio: 2/3;
}
.v-popup-layer--review-detail .v-review__comment {
  margin-top: 20px;
}
.v-popup-layer--review-detail .v-review__comment-input {
  line-height: 1.3;
  font-size: 16px;
  color: #000;
}
.v-popup-layer--review-detail .v-like-button {
  --v-button-height: 20px;
  --v-like-icon-size: 20px;
  --v-like-font-size: 14px;
}
.v-popup-layer--review-detail .is-blocked .v-review__visual {
  overflow: hidden;
  aspect-ratio: 2/3;
}
.v-popup-layer--review-detail .is-blocked .v-review__thumbnail swiper-slide,
.v-popup-layer--review-detail .is-blocked .v-review__visual swiper-slide {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.v-popup-layer--review-detail .is-blocked .v-review__thumbnail img,
.v-popup-layer--review-detail .is-blocked .v-review__visual img {
  filter: blur(30px);
}
.v-popup-layer--review-detail .v-no-data-msg {
  margin-top: 20px;
  font-size: 16px;
  color: #999;
}
.v-popup-layer--review-detail .v-no-data-msg + .v-like {
  margin-top: 20px;
}

.v-popup-layer--staff-review {
  --v-popup-layer-max-width: 1115px;
}
.v-popup-layer--staff-review .v-review__thumbnail .swiper-slide-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  box-sizing: border-box;
}
.v-popup-layer--staff-review .v-review__author-info {
  display: flex;
  align-items: center;
  height: 21px;
  margin-top: 24px;
}
.v-popup-layer--staff-review .v-review__author-info .v-nick {
  font-size: 16px;
  color: #000;
}
.v-popup-layer--staff-review .v-review__author-info .v-date {
  margin-left: auto;
  font-size: 14px;
  color: #6d6d6d;
}
.v-popup-layer--staff-review .v-review__order-detail {
  margin-top: 12px;
}
.v-popup-layer--staff-review .v-review__order-detail p {
  line-height: 1.4;
  font-size: 14px;
  color: #6d6d6d;
}
.v-popup-layer--staff-review .v-review__order-detail p:not(:first-child) {
  margin-top: 4px;
}
.v-popup-layer--staff-review .v-review__order-detail span:not(:first-child) {
  position: relative;
  padding-left: 8px;
  margin-left: 8px;
}
.v-popup-layer--staff-review .v-review__order-detail span:not(:first-child)::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #ddd;
}
.v-popup-layer--staff-review .v-review__tags {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.v-popup-layer--staff-review .v-review__tag {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #000;
}
.v-popup-layer--staff-review .v-review__rating-list {
  margin-top: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: max-content 12px 1fr;
  row-gap: 6px;
  background-color: #f6f6f6;
}
.v-popup-layer--staff-review .v-review__rating-list .v-rating-item {
  display: contents;
  font-size: 14px;
  color: #6d6d6d;
}
.v-popup-layer--staff-review .v-review__rating-list .v-rating-item__title {
  grid-column: 1;
  font-weight: var(--v-font-bold);
}
.v-popup-layer--staff-review .v-review__rating-list .v-rating-item__value {
  grid-column: 3;
}

.v-popup-layer--photo-review {
  --v-popup-layer-max-width: 1090px;
  --v-review-layer-thumbnail-swiper-width: 41.59px;
  --v-popup-layer-z: 115;
}
.v-popup-layer--photo-review .v-review__author-info {
  display: flex;
  align-items: center;
  height: 21px;
  margin-top: 25px;
  font-size: 16px;
  color: #6d6d6d;
}
.v-popup-layer--photo-review .v-review__author-info .v-star {
  color: #000;
}
.v-popup-layer--photo-review .v-review__author-info .v-star .v-star-icons {
  --v-rating-value: 1;
}
.v-popup-layer--photo-review .v-review__author-info .v-star .v-star-meta {
  font-size: 16px;
}
.v-popup-layer--photo-review .v-review__author-info .v-id {
  position: relative;
  padding-left: 8px;
  margin-left: 8px;
}
.v-popup-layer--photo-review .v-review__author-info .v-id::before {
  position: absolute;
  left: 0;
  top: 5.5px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #ddd;
}
.v-popup-layer--photo-review .v-review__author-info .v-date {
  margin-left: auto;
  font-size: 14px;
}
.v-popup-layer--photo-review .v-review__order-detail {
  margin-top: 11px;
}
.v-popup-layer--photo-review .v-review__order-detail p {
  line-height: 1.34;
  font-size: 14px;
  color: #6d6d6d;
}
.v-popup-layer--photo-review .v-review__order-detail p:not(:first-child) {
  margin-top: 4px;
}
.v-popup-layer--photo-review .v-review__order-detail svg {
  width: 9.43px;
}
.v-popup-layer--photo-review .v-review__rating-list {
  margin-top: 12px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #f6f6f6;
}
.v-popup-layer--photo-review .v-review__rating-list .v-rating-item {
  display: flex;
  align-items: center;
  height: 18px;
  gap: 8px;
  font-size: 14px;
  color: #6d6d6d;
}
.v-popup-layer--photo-review .v-review__rating-list .v-rating-item__title {
  font-weight: var(--v-font-bold);
}
.v-popup-layer--photo-review .v-review__tags {
  display: flex;
  gap: 4px;
  margin-top: 11px;
}
.v-popup-layer--photo-review .v-review__tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 12px;
}
.v-popup-layer--photo-review .v-review__tag.v-best {
  border-color: #000;
  font-weight: var(--v-font-bold);
  color: #fff;
  background-color: #000;
}
.v-popup-layer--photo-review .v-review__action {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.v-popup-layer--photo-review .v-review__action .v-action-group {
  margin-left: auto;
}
.v-popup-layer--photo-review .v-review__action .v-button {
  --v-button-height: 18px;
  display: inline-flex;
}
.v-popup-layer--photo-review .v-review__action .v-button:not(:first-child) {
  position: relative;
  padding-left: 8px;
  margin-left: 8px;
}
.v-popup-layer--photo-review .v-review__action .v-button:not(:first-child)::before {
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #ddd;
}
.v-popup-layer--photo-review .v-review__action .v-button small {
  font-size: 14px;
}

.v-popup-layer--share {
  --v-popup-layer-body-padding: 16px 0 40px;
  --v-share-list-gap: 40px;
}

.v-popup-layer--coupon-download {
  --v-popup-layer-body-padding: 0 24px;
  --v-bullet-list-color: #999;
  --v-bullet-list-font-size: 12px;
}
.v-popup-layer--coupon-download .v-coupon-section ~ .v-coupon-section {
  margin-top: 24px;
}
.v-popup-layer--coupon-download .v-coupon-section__title {
  color: #000;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: var(--v-font-bold, 700);
  line-height: 1.3;
}
.v-popup-layer--coupon-download .v-coupon-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-popup-layer--coupon-download .v-bullet-list {
  padding: 24px 0 12px;
}

.v-product-bundle .v-bundle-promotion {
  --v-bullet-list-color: #6d6d6d;
  --v-bullet-list-line-height: 1.3;
  --v-bullet-list-gap: 4px;
  padding: 24px;
  background-color: #f6f6f6;
}
.v-product-bundle .v-bundle-promotion__title {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}
.v-product-bundle .v-bundle-promotion__title:has(+ .v-bullet-list) {
  margin-bottom: 4px;
}
.v-product-bundle .v-bundle-promotion__note {
  margin-top: 12px;
  color: #999;
  font-size: 14px;
  line-height: 130%;
}
.v-product-bundle .v-bundle-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-inline: 24px;
  padding: 20px 0 24px;
}
.v-product-bundle .v-bundle-unit {
  --v-media-aspect-ratio: 1 / 1.5;
  --v-media-fit: contain;
  display: flex;
  gap: 12px;
}
.v-product-bundle .v-bundle-unit__embed {
  flex: 0 0 70px;
  position: relative;
  display: block;
  aspect-ratio: var(--v-media-aspect-ratio);
  height: 105px;
  overflow: clip;
}
.v-product-bundle .v-bundle-unit__embed::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--v-media-dim, rgba(0, 0, 0, 0.03));
}
.v-product-bundle .v-bundle-unit__embed img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--v-media-fit, contain);
  object-position: var(--v-media-position, center);
}
.v-product-bundle .v-bundle-unit__text {
  min-width: 0;
  flex-grow: 1;
  display: flex;
  gap: 2px;
  flex-direction: column;
  justify-content: center;
}
.v-product-bundle .v-bundle-unit__brand {
  font-size: 14px;
  font-weight: var(--v-font-bold);
  line-height: 1.3;
  color: #000;
}
.v-product-bundle .v-bundle-unit__name {
  font-size: 14px;
  line-height: 1.3;
  color: #6d6d6d;
}
.v-product-bundle .v-bundle-unit__price-group {
  display: flex;
  gap: var(--v-bundle-unit-tag-row-gap, 4px) var(--v-bundle-unit-tag-column-gap, 8px);
  flex-wrap: wrap;
  font-size: 14px;
}
.v-product-bundle .v-bundle-unit__price {
  font-weight: var(--v-font-bold);
}
.v-product-bundle .v-bundle-unit__regular {
  color: #999;
  text-decoration: line-through;
}
.v-product-bundle .v-bundle-unit__discount {
  color: #da291c;
}
.v-product-bundle .v-bundle-unit__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--v-bundle-unit-tag-row-gap, 4px) var(--v-bundle-unit-tag-column-gap, 8px);
  color: #6d6d6d;
}
.v-product-bundle .v-bundle-unit__state {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6d6d6d;
}
.v-product-bundle .v-bundle-unit__state span {
  color: #fff;
  font-size: 10px;
}

.v-restock-request {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.v-restock-request__description {
  padding: 24px;
}

.v-restock-request__info {
  color: #000;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}

.v-restock-request__contact {
  padding: 12px 24px;
}

.v-restock-request__num-box {
  display: flex;
  min-height: 44px;
  padding: 11px 12px;
  align-items: center;
  border: 1px solid #ddd;
  background: #f6f6f6;
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.v-restock-request__product {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v-restock-request__product small {
  font-size: 14px;
}

.v-restock-request__size-guide {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.v-restock-request__size-guide .v-button--underline {
  --v-button-height: auto;
  --v-button-text-color: #6d6d6d;
  --v-button-font-size: 14px;
  --v-button-line-height: 1.3;
}
.v-restock-request__size-guide .v-button__text {
  text-decoration: underline;
  text-underline-position: from-font;
}

.v-restock-request__name {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.v-restock-request__notes {
  --v-bullet-list-gap: 4px;
  --v-bullet-list-color: #999;
  --v-bullet-list-font-size: 12px;
  --v-bullet-list-line-height: 1.3;
  padding: 24px 24px 0;
}

.v-reck-size-guide {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
}
.v-reck-size-guide > .v-select-box {
  margin-bottom: 20px;
}
.v-reck-size-guide .v-bullet-list {
  margin-bottom: 16px;
  --v-bullet-list-gap: 4px;
  --v-bullet-list-color: #6d6d6d;
  --v-bullet-list-font-size: 12px;
  --v-bullet-list-line-height: 1.3;
}

.v-reck-size-guide__data {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.v-reck-size-guide__data table {
  width: 100%;
  min-width: 100%;
  max-width: none;
  border-top: 1px solid #ddd;
  table-layout: fixed;
  padding: 0;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
}
.v-reck-size-guide__data table legend,
.v-reck-size-guide__data table caption {
  overflow: hidden;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
}
.v-reck-size-guide__data table thead th {
  height: 46px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: #000;
  border: 1px solid #ddd;
  background: transparent;
  box-sizing: border-box;
}
.v-reck-size-guide__data table tbody tr th,
.v-reck-size-guide__data table tbody tr td {
  height: 36px;
  padding: 5px 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  color: #131922;
  border: 1px solid #ddd;
  box-sizing: content-box;
}
.v-reck-size-guide__data table tbody:not(.has-sub-header) tr:nth-of-type(odd) th,
.v-reck-size-guide__data table tbody:not(.has-sub-header) tr:nth-of-type(odd) td {
  background: #f6f6f6;
}
.v-reck-size-guide__data table tbody.has-sub-header .sub-header th,
.v-reck-size-guide__data table tbody.has-sub-header .sub-header td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=INT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=INT]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=INT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=INT]) th,
.v-reck-size-guide__data [data-nation-code=INT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=INT]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=INT] thead th[data-nation-code=INT]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=INT] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header.INT {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header.INT th,
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header.INT td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=KR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=KR]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=KR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=KR]) th,
.v-reck-size-guide__data [data-nation-code=KR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=KR]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=KR] thead th[data-nation-code=KR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=KR] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header.KR {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header.KR th,
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header.KR td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=US] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=US]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=US] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=US]) th,
.v-reck-size-guide__data [data-nation-code=US] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=US]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=US] thead th[data-nation-code=US]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=US] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header.US {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header.US th,
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header.US td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=UK] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=UK]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=UK] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=UK]) th,
.v-reck-size-guide__data [data-nation-code=UK] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=UK]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=UK] thead th[data-nation-code=UK]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=UK] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header.UK {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header.UK th,
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header.UK td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=IT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=IT]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=IT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=IT]) th,
.v-reck-size-guide__data [data-nation-code=IT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=IT]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=IT] thead th[data-nation-code=IT]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=IT] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header.IT {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header.IT th,
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header.IT td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=FR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=FR]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=FR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=FR]) th,
.v-reck-size-guide__data [data-nation-code=FR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=FR]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=FR] thead th[data-nation-code=FR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=FR] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header.FR {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header.FR th,
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header.FR td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=SE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=SE]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=SE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=SE]) th,
.v-reck-size-guide__data [data-nation-code=SE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=SE]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=SE] thead th[data-nation-code=SE]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=SE] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header.SE {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header.SE th,
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header.SE td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=TR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=TR]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=TR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=TR]) th,
.v-reck-size-guide__data [data-nation-code=TR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=TR]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=TR] thead th[data-nation-code=TR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=TR] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header.TR {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header.TR th,
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header.TR td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=EUR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=EUR]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=EUR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=EUR]) th,
.v-reck-size-guide__data [data-nation-code=EUR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=EUR]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=EUR] thead th[data-nation-code=EUR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=EUR] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR th,
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code="FR/EUR"]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code="FR/EUR"]) th,
.v-reck-size-guide__data [data-nation-code="FR/EUR"] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code="FR/EUR"]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] thead th[data-nation-code="FR/EUR"]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR th,
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=JP] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=JP]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=JP] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=JP]) th,
.v-reck-size-guide__data [data-nation-code=JP] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=JP]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=JP] thead th[data-nation-code=JP]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=JP] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header.JP {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header.JP th,
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header.JP td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=DE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=DE]) {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=DE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=DE]) th,
.v-reck-size-guide__data [data-nation-code=DE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=DE]) td {
  display: none;
}
.v-reck-size-guide__data [data-nation-code=DE] thead th[data-nation-code=DE]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.v-reck-size-guide__data [data-nation-code=DE] thead th[colspan="3"] {
  width: 50%;
}
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header th,
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header.DE {
  display: table-row;
}
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header.DE th,
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header.DE td {
  display: table-cell;
}
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n) th,
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n-1) th,
.v-reck-size-guide__data [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.v-reck-size-guide__data tbody [data-nation-code=INT] + [data-nation-code=INT] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=KR] + [data-nation-code=KR] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=US] + [data-nation-code=US] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=UK] + [data-nation-code=UK] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=IT] + [data-nation-code=IT] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=FR] + [data-nation-code=FR] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=SE] + [data-nation-code=SE] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=TR] + [data-nation-code=TR] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=EUR] + [data-nation-code=EUR] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code="FR/EUR"] + [data-nation-code="FR/EUR"] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=JP] + [data-nation-code=JP] {
  border-left-color: transparent;
}
.v-reck-size-guide__data tbody [data-nation-code=DE] + [data-nation-code=DE] {
  border-left-color: transparent;
}
.v-reck-size-guide__data .data__wrap ~ .data__wrap {
  margin-top: 90px;
}
.v-reck-size-guide__data .data__wrap .data__item {
  padding: 0;
  overflow: visible;
}
.v-reck-size-guide__data .data__wrap .data__item .data_title {
  padding: 24px 0 0 0;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}
.v-reck-size-guide__data .data__wrap .data__item .data_info {
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.3;
  color: #131922;
}
.v-reck-size-guide__data .v-reck-size-no-data {
  min-height: 300px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.v-reck-measure-guide {
  display: flex;
  flex-direction: column;
  margin-inline: 24px;
  padding: 20px 0 24px;
}
.v-reck-measure-guide .measuringWrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 28px;
}
.v-reck-measure-guide .measuringWrap ~ .measuringWrap {
  margin-top: 60px;
}
.v-reck-measure-guide .measuringImg {
  width: 188px;
  margin: 0 auto;
}
.v-reck-measure-guide .measuringImg .measure-size {
  display: none;
}
.v-reck-measure-guide .measuringImg img {
  width: 100%;
  vertical-align: top;
}
.v-reck-measure-guide .measuringinfo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-reck-measure-guide .measuringinfo li {
  display: flex;
}
.v-reck-measure-guide .measuringinfo li p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #000;
  border-radius: 100%;
  flex-shrink: 0;
}
.v-reck-measure-guide .measuringinfo li dl {
  display: flex;
  flex-grow: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.42px;
  color: #6d6d6d;
}
.v-reck-measure-guide .measuringinfo li dl dt {
  display: block;
  white-space: nowrap;
  width: 80px;
  flex-shrink: 0;
}
.v-reck-measure-guide .measuringinfo li dl dd {
  flex-grow: 1;
  min-width: 0;
  color: #000;
}
.v-reck-measure-guide .measuringinfo li dl span {
  font-weight: 500;
  letter-spacing: 0;
  margin-left: auto;
}

.v-nav-tabs {
  display: flex;
}
.v-nav-tabs [role=tab] {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  padding: 12px 0 10px;
  border: 0;
  border-bottom: 2px solid var(--v-tab-underline-color, transparent);
  background: none;
  color: var(--v-tab-text-color, #929292);
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
  overflow: hidden;
}
.v-nav-tabs [role=tab][aria-selected=true] {
  --v-tab-underline-color: #000;
  --v-tab-text-color: #000;
}

.v-popup-layer--card-benefit {
  --v-popup-layer-height: 780px;
}
.v-popup-layer--card-benefit .v-tab-panel:has(.v-card-benefit-no-data) {
  height: calc(100% - var(--v-nav-tabs-height, 47px));
}

.v-card-benefit-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.v-card-benefit-container .v-card-benefit ~ .v-card-benefit {
  margin-top: 20px;
  border-top: 1px solid #ddd;
}

.v-card-benefit-line-banner {
  margin: 12px 24px 0;
}

.v-card-benefit-notice {
  --v-bullet-list-gap: 3px;
  --v-bullet-list-color: #999;
  padding: 20px 24px;
  background-color: #f6f6f6;
}

.v-card-benefit {
  margin-inline: var(--v-side-margin, 24px);
  padding: 0 0 16px;
}
.v-card-benefit:not(.v-card-benefit:has(.v-card-benefit__title)) {
  padding-top: 24px;
}
.v-card-benefit__title {
  padding-block: 24px 16px;
  color: #000;
  font-size: 16px;
  font-weight: var(--v-font-bold, 700);
  line-height: 130%;
}

.v-card-benefit-no-data {
  height: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.v-card-benefit__list {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

.v-card-benefit__item {
  display: flex;
  align-items: center;
  gap: 0 var(--v-spacing-md, 20px);
}

.v-card-benefit__logo {
  align-self: flex-start;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 24px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.v-card-benefit__logo img {
  width: 40px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.v-card-benefit__details {
  flex: 1;
  min-width: 0;
}
.v-card-benefit__details .v-bullet-list {
  --v-bullet-list-gap: 4px;
  --v-bullet-list-color: #000;
  --v-bullet-list-line-height: 1.3;
}

.v-popup-layer--gift-wrap-info {
  --v-popup-layer-body-padding: 20px 24px 28px;
  --v-bullet-list-line-height: 1.3;
  --v-bullet-list-gap: 12px;
  --v-bullet-list-color: #6d6d6d;
  --v-bullet-list-text-indent: 14px;
}

.v-review-qna-write {
  margin-inline: 24px;
}
.v-review-qna-write .v-review-qna__subject {
  padding-top: 20px;
}
.v-review-qna-write .v-review-qna__subject li {
  display: flex;
  gap: 20px;
  padding-bottom: 12px;
}
.v-review-qna-write .v-review-qna__subject .v-review-qna__title {
  flex: 0 0 auto;
  min-width: 41px;
}
.v-review-qna-write .v-review-qna__title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  display: inline-flex;
  align-items: flex-start;
}
.v-review-qna-write .v-review-qna__contents {
  --v-form-control-block-margin: 12px 0;
  margin-bottom: 24px;
}
.v-review-qna-write .v-review-qna__contents span {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.v-review-qna-write .v-review-qna__contents .v-form-control-list {
  --v-text-field-font-size: 16px;
}
.v-review-qna-write .v-review-qna__contents .v-form-control-list .v-form-label {
  position: relative;
  min-height: 20px;
  padding: 1px 0 1px 28px;
  font-size: 14px;
  font-weight: 400;
}
.v-review-qna-write .v-review-qna__contents .v-form-control-list .v-checkbox {
  position: absolute;
  top: 0;
  left: 0;
}
.v-review-qna-write .v-review-qna__contents textarea {
  height: 240px;
  padding: 11px 12px;
  margin-top: 20px;
  font-size: 16px;
}
.v-review-qna-write .v-review-qna__contents .v-charCount {
  color: #999;
  font-size: 12px;
  text-align: right;
  margin-block: 8px 12px;
}
.v-review-qna-write .v-bullet-list.v-text-small {
  font-size: 12px;
}

.v-popup-layer--photo-review-thumbs {
  --v-popup-layer-max-width: 1048px;
  --v-popup-layer-max-height: 97.29vh;
  --v-popup-layer-body-padding: 0 24px;
  --v-media-aspect-ratio: 1 / 1.5;
}
.v-popup-layer--photo-review-thumbs .v-popup-layer__container {
  padding-bottom: 24px;
}
.v-popup-layer--photo-review-thumbs .v-photo-review-thumbs__list {
  --v-item-list-columns: 4;
  --v-item-list-gap-x: 8px;
  --v-item-list-gap-y: 8px;
}
.v-popup-layer--photo-review-thumbs .v-photo-review-thumbs__item .v-button {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-areas: "media";
  position: relative;
}
.v-popup-layer--photo-review-thumbs .v-photo-review-thumbs__item .v-button::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.v-popup-layer--photo-review-thumbs .v-photo-review-thumbs__item .v-media-embed {
  grid-area: media;
}
.v-popup-layer--photo-review-thumbs .v-photo-review-thumbs__item svg {
  width: 24px;
  height: 24px;
  color: #fff;
  grid-area: media;
  justify-self: end;
  align-self: end;
  margin-inline-end: 8px;
  margin-block-end: 8px;
  z-index: 1;
}
.v-popup-layer--photo-review-thumbs .v-photo-review-thumbs__item .is-blocked {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(30px);
}

.v-popup-layer--review-benefit {
  --v-bullet-list-font-size: 12px;
  --v-bullet-list-color: #6d6d6d;
}
.v-popup-layer--review-benefit .v-nav-tabs {
  border-bottom: 1px solid #ddd;
}
.v-popup-layer--review-benefit .v-review-benefit {
  padding-block: 24px 0;
  padding-inline: 24px;
  font-size: 14px;
  line-height: 1.3;
}
.v-popup-layer--review-benefit .v-review-benefit p {
  padding-block: 12px 24px;
}
.v-popup-layer--review-benefit .v-review-benefit__table {
  margin-top: 20px;
}
.v-popup-layer--review-benefit .v-review-benefit__table:first-child {
  margin-top: 0;
}
.v-popup-layer--review-benefit .v-review-benefit__table dl {
  padding-bottom: 12px;
  color: #000;
  background: #f6f6f6;
  font-size: inherit;
  line-height: inherit;
}
.v-popup-layer--review-benefit .v-review-benefit__table dt {
  background: #eee;
  padding-block: 12px;
  padding-inline: 20px;
  font-weight: 700;
}
.v-popup-layer--review-benefit .v-review-benefit__table dd {
  padding-top: 12px;
  padding-inline: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.v-popup-layer--review-benefit .v-review-benefit__table dd strong {
  font-weight: 700;
}
.v-popup-layer--review-benefit .v-bullet-list {
  padding-block: 40px;
}
.v-popup-layer--review-benefit .v-bullet-list__accent {
  color: #000;
}

.v-popup-layer--review-filter-sheet {
  --v-popup-layer-header-lead-width: 60px;
  --v-popup-layer-header-trail-width: 60px;
  --v-popup-layer-header-trail-button-width: 24px;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet {
  padding: 0 24px 40px;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__item {
  margin-top: 20px;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__item:first-child {
  margin-top: 0;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__sub-title {
  margin: 0 0 12px;
  padding-block: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__option-input-box {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__option-input-box .v-separator svg {
  width: 20px;
  height: auto;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__option-input-box .v-input {
  position: relative;
  min-width: 0;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__option-input-box .v-input::after {
  position: absolute;
  right: 20px;
  top: 14px;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__option-input-box .v-input.v-metric-cm::after {
  content: "cm";
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__option-input-box .v-input.v-metric-kg::after {
  content: "kg";
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__option-input-box .v-input input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  padding-left: 20px;
  padding-right: 44px;
  text-align: right;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__form-list ::part(trigger) {
  padding-inline-end: 16px;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__form-list li {
  --v-filter-sheet-inner-padding-top: 0;
  display: flex;
  align-items: center;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__form-list li:has(range-slider) + li {
  margin-top: 16px;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__form-list.v-list-2cols {
  display: flex;
  flex-wrap: wrap;
}
.v-popup-layer--review-filter-sheet .v-filter-sheet__form-list.v-list-2cols li {
  width: 50%;
  margin-block: 14px;
}
.v-popup-layer--review-filter-sheet label {
  position: relative;
  min-height: 20px;
  padding: 1px 0 1px 28px;
  font-size: 14px;
  font-weight: 400;
}
.v-popup-layer--review-filter-sheet .v-checkbox {
  position: absolute;
  top: 0;
  left: 0;
}

.v-popup-layer__button--refresh {
  --v-button-width: var(--v-popup-layer-header-trail-button-width);
  --v-button-height: var(--v-popup-layer-header-trail-button-width);
  --v-icon-width: 13px;
  --v-icon-size: 16px;
}

.v-layer--recommend-combination {
  --v-bottom-bar-z: 1;
  --v-button-height: auto;
}
.v-layer--recommend-combination .v-layer__container {
  width: 395px;
}
.v-layer--recommend-combination .v-recommendations {
  margin-top: 0;
}
.v-layer--recommend-combination .v-carousel {
  margin-bottom: 24px;
}
.v-layer--recommend-combination .v-item-list {
  margin-inline: 24px;
}

:where(.popup-bg) {
  display: none;
}

:where(html),
:where(body) {
  overscroll-behavior: none;
}

:where(main) {
  min-width: 1440px;
  max-width: 1920px;
  margin-inline: auto;
}

*:focus {
  outline: none;
}

.v-container {
  min-width: 1440px;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}

.v-has-dropdown {
  --v-button-display: flex;
}
.v-has-dropdown .v-menu-button {
  --v-button-width: 100%;
  --v-button-padding: 6px 16px;
  --v-button-font-size: 14px;
  --v-button-line-height: 1.3;
  --v-button-text-color: var(--v-menu-button-text-color, #6d6d6d);
  --v-button-font-weight: var(
    --v-menu-button-font-weight,
    var(--v-font-normal)
  );
  text-align: left;
  justify-content: flex-start;
}