@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: 6;
  --v-grid-gutter: 8px;
  --v-side-margin: 24px;
}

.v-mo {
  --v-grid-columns: 6;
  --v-grid-gutter: 8px;
  --v-side-margin: 24px;
}

.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);
}

.v-bottom-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s linear;
  z-index: calc(var(--v-bottom-bar-z, 100) + 10);
}
.v-bottom-sheet.is-open {
  --v-bottom-sheet-y: 0;
  background: rgba(0, 0, 0, 0.7);
}

.v-bottom-sheet__container {
  position: fixed;
  inset: auto 0 0;
  transition: transform 0.3s ease-in-out;
  padding-bottom: var(--v-bottom-sheet-container-padding-bottom, env(safe-area-inset-bottom));
  transform: translate3d(0, var(--v-bottom-sheet-y, 100%), 0);
  width: 100%;
  background: #fff;
  color: #000;
  max-height: var(--v-bottom-sheet-max-height, calc(var(--v-full-height, 100vh) - var(--v-site-header-height, 56px)));
  display: grid;
  grid-template-areas: var(--v-bottom-sheet-grid-areas, "handle" "content");
  grid-template-rows: var(--v-bottom-sheet-grid-rows, auto minmax(0, 1fr));
  grid-template-columns: minmax(0, 1fr);
}
.v-bottom-sheet__container:has(.v-bottom-sheet__content + .v-bottom-sheet__footer) {
  --v-bottom-sheet-container-padding-bottom: 0px;
  --v-bottom-sheet-grid-areas: "handle" "content" "footer";
  --v-bottom-sheet-grid-rows: auto minmax(0, 1fr) auto;
}
.v-bottom-sheet__container:has(.v-bottom-sheet__content + .v-bottom-sheet__footer) .v-bottom-sheet__footer {
  grid-area: footer;
  padding-bottom: calc(var(--v-bottom-sheet-footer-padding-bottom, 0px) + env(safe-area-inset-bottom));
}

.v-bottom-sheet__handle {
  grid-area: handle;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 16px;
}
.v-bottom-sheet__handle::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background-color: #b7b7b7;
}

.v-bottom-sheet__content {
  grid-area: content;
}

.v-bottom-sheet__content .v-bottom-sheet__title {
  margin-inline: var(--v-side-margin);
  margin-bottom: 8px;
  font-weight: var(--v-font-bold, 700);
  font-size: 16px;
  line-height: 1.3;
}
.v-bottom-sheet__content .v-bottom-sheet__footer {
  margin-top: var(--v-bottom-sheet-footer-top-margin, 48px);
  padding-inline: var(--v-bottom-sheet-footer-side-padding, var(--v-side-margin));
  padding-bottom: var(--v-bottom-sheet-footer-bottom-padding, 24px);
}

.v-well {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--v-well-padding, 24px);
  margin-inline: var(--v-well-side-margin, var(--v-side-margin));
  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-panel {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: var(--v-panel-z, calc(var(--v-bottom-bar-z) - 1));
}
.v-panel.is-open {
  --v-panel-x: 0;
}

.v-panel__inner {
  pointer-events: auto;
  transition: transform 0.3s ease-in-out;
  transform: translate3d(var(--v-panel-x, 100vw), 0, 0);
  position: absolute;
  inset: 0;
  padding-bottom: var(--v-bottom-bar-height, 0);
  background: #fff;
}

.v-panel__header {
  position: sticky;
  top: var(--v-panel-header-top, 0);
  right: 0;
  left: 0;
  width: 100%;
}

.v-panel__body {
  height: calc(var(--v-full-height, 100vh) - var(--v-panel-header-height, var(--v-site-header-height, 0)));
  padding-bottom: var(--v-panel-body-padding-bottom, 56px);
  overflow: auto;
  overflow-x: hidden;
}

.v-full-layer {
  position: fixed;
  z-index: calc(max(var(--v-site-header-z), var(--v-bottom-bar-z)) + 1);
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow: hidden;
  overflow: clip;
  display: var(--v-full-layer-display, none);
  grid-template-areas: "header" "body" "footer";
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  color: #000;
}

div.v-full-layer,
dialog.v-full-layer[open] {
  --v-full-layer-display: grid;
}

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

.v-full-layer__header {
  --v-sub-header-position: relative;
  grid-area: header;
}

.v-full-layer__body {
  grid-area: body;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
  padding: var(--v-full-layer-body-padding, 0);
}

.v-full-layer__footer {
  grid-area: footer;
}

.v-mini-layer {
  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);
  display: var(--v-mini-layer-display, none);
  z-index: calc(max(var(--v-site-header-z), var(--v-bottom-bar-z)) + 1);
}

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

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

.v-mini-layer__container {
  width: var(--v-mini-layer-width, 312px);
  max-height: var(--v-mini-layer-max-height, calc(100% - (var(--v-site-header-height, 56px) + var(--v-bottom-bar-height, 56px))));
  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-mini-layer__header {
  --v-sub-header-position: relative;
  --v-popup-header-justify: flex-start;
  --v-popup-header-bar-padding-inline: 0;
  --v-popup-header-button-width: 20px;
  --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: 16px;
  --v-popup-header-title-font-weight: 700;
  --v-popup-header-title-line-height: 22px;
  grid-area: header;
}
.v-mini-layer__header .v-popup-header {
  border-bottom: 1px solid #f0f0f0;
}

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

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

.v-mini-layer--default {
  --v-mini-layer-body-padding: 20px 20px 28px;
}

:root {
  --v-title-wide-side-margin: 8px;
}

: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: 56px;
  --v-site-header-button-width: 36px;
  --v-site-header-button-height: 46px;
  --v-site-header-icon-size: 24px;
}

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

.v-main-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  grid-template-areas: "lead main trail";
  align-items: center;
  width: 100%;
  height: var(--v-site-header-height);
  padding-inline: 18px;
  background-color: var(--v-site-header-bg-color, #fff);
  color: var(--v-site-header-fg-color, #000);
}

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

.v-main-header__lead {
  grid-area: lead;
}

.v-main-header__trail {
  grid-area: trail;
}

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

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

.v-main-header__button--mall {
  --v-site-header-button-width: 24px;
  grid-area: button;
  color: #999;
}
.v-main-header__button--mall .v-main-header__icon {
  transform: translateY(7px);
}

.v-main-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-shopping-bag__count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  width: 12px;
  overflow: clip;
  font-weight: var(--v-font-bold);
  font-size: 8px;
  line-height: 1.3;
}

.v-main-header__icon {
  flex-shrink: 0;
  width: var(--v-site-header-icon-size);
  height: var(--v-site-header-icon-size);
  overflow: visible;
}

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

.v-sub-header--dark {
  --v-site-header-bg-color: #999;
  --v-site-header-fg-color: #fff;
}

.v-sub-header__bar {
  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-site-header-height);
  padding-inline: var(--v-site-header-bar-padding-inline, 18px);
  background-color: var(--v-site-header-bg-color, #fff);
  color: var(--v-site-header-fg-color, #000);
}

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

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

.v-sub-header__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--v-site-header-button-width, 36px);
  height: var(--v-site-header-button-height, 46px);
}
.v-sub-header__button.on::after {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: 8px;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #da291c;
}

.v-sub-header__icon {
  width: auto;
  height: 24px;
}

.v-sub-header__main {
  grid-row: 1/-1;
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: var(--v-site-header-justify, center);
  padding-left: var(--v-site-header-main-padding-left, calc(var(--v-site-header-button-width) * 2));
  padding-right: var(--v-site-header-main-padding-right, calc(var(--v-site-header-button-width) * 2));
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-sub-header__main :is(h1, h2, h3, h4, h5, h6) {
  font: inherit;
}
.v-sub-header__main :is(img) {
  max-width: 170px;
  max-height: 35px;
}

.v-sub-header--freeform {
  --v-site-header-justify: flex-start;
  --v-site-header-main-padding-left: 0;
  --v-site-header-main-padding-right: 0;
}
.v-sub-header--freeform .v-sub-header__main {
  grid-column: 2/-2;
}

.v-sub-header--transparent {
  --v-site-header-position: fixed;
  --v-site-header-top: calc(-1 * var(--v-site-header-height));
  --v-site-header-bg-color: transparent;
}
.v-sub-header--transparent .v-sub-header__bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transition: background-color var(--v-sub-header-transition-duration, 0.2s) linear;
}
.v-sub-header--transparent:not(.is-above) .v-sub-header__main img {
  filter: invert(1);
}
.v-sub-header--transparent.is-above {
  --v-site-header-bg-color: #fff;
}
.body-scroll-up .v-sub-header--transparent {
  --v-site-header-top: 0;
}

.v-sub-header--offline {
  --v-site-header-justify: flex-start;
  --v-site-header-bar-padding-inline: 24px;
  --v-site-header-main-padding-left: 0;
  --v-site-header-main-padding-right: 0;
}
.v-sub-header--offline .v-sub-header__trail {
  font-size: 18px;
}

.v-sub-header__search-bar {
  width: calc(100% - 7px);
  padding-block: 6px 8px;
  border-bottom: 2px solid var(--v-header-search-bar-fg-color, currentColor);
  margin-inline: 2px 5px;
}
.v-sub-header__search-bar input {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  font-size: 16px;
  line-height: 1;
}
.v-sub-header__search-bar input::placeholder {
  color: var(--v-header-search-bar-placeholder-color, #999);
}

.v-shopping-bag__count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  width: 12px;
  overflow: clip;
  font-size: 8px;
  line-height: 1.3;
}

body:has(.v-sub-header--autohide).scroll-up {
  --v-sub-header-y: 0px;
}
body:has(.v-sub-header--autohide).scroll-up .v-sub-header--transparent {
  --v-site-header-bg-color: #fff;
  --v-site-header-fg-color: #000;
}
body:has(.v-sub-header--autohide) .v-sub-header--transparent.is-scrolled {
  --v-site-header-bg-color: #fff;
  --v-site-header-fg-color: #000;
}
body:has(.v-sub-header--autohide).scroll-down {
  --v-sub-header-y: calc(var(--v-site-header-height, 0px) * -1);
}
body:has(.v-sub-header--autohide) .v-sub-header {
  height: var(--v-site-header-height);
}
body:has(.v-sub-header--autohide) .v-sub-header__inner {
  position: fixed;
  transition: transform var(--v-sub-header-transition-duration, 0.2s) var(--v-sub-header-transition-easing, ease-in-out);
  top: 0;
  right: 0;
  left: 0;
  transform: translate3d(0, var(--v-sub-header-y, 0px), 0);
}

:root {
  --v-bottom-bar-z: calc(var(--v-site-header-z, 100) + 20);
  --v-bottom-bar-height: 56px;
}

body:has(.v-bottom-bar):not(:has(.v-footer)) {
  padding-bottom: calc(env(safe-area-inset-bottom, 0) + var(--v-bottom-bar-height));
}

.v-bottom-bar {
  z-index: var(--v-bottom-bar-z);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.v-bottom-bar__inner {
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--v-bottom-bar-bg-color, #fff);
  color: var(--v-bottom-bar-fg-color, #000);
}

.v-bottom-bar__nav {
  display: flex;
  min-width: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: var(--v-bottom-bar-height);
}

.v-bottom-bar__button {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-bottom-bar__icon {
  width: auto;
  height: 24px;
}

:root {
  --v-footer-height: 310px;
}

.v-footer {
  width: 100%;
  padding-bottom: var(--v-bottom-bar-height);
  background: var(--v-bottom-bar-bg-color, #f6f6f6);
}

.v-footer__inner {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + var(--v-side-margin));
  color: var(--v-bottom-bar-fg-color, #000);
  font-size: 12px;
  font-weight: var(--v-font-regular, 400);
  line-height: 1.3;
  color: #6d6d6d;
}
.v-footer__inner > * {
  padding-inline: var(--v-side-padding, var(--v-side-margin));
}

.v-footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  padding-inline: var(--v-side-padding, calc(var(--v-side-margin) - 10px));
}
.v-footer__nav .v-footer__nav-button {
  height: 100%;
  padding: 16px 10px;
  font-size: 14px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-footer__folder .v-footer__folder-title {
  width: 100%;
  padding: 15px 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.v-footer__folder .v-footer__folder-title::-webkit-details-marker {
  display: none;
}
.v-footer__folder .v-footer__folder-title span {
  font-size: 16px;
  font-weight: var(--v-font-bold, 700);
  font-family: var(--v-font-sans);
  color: #000000;
}
.v-footer__folder .v-footer__folder-icon {
  width: 24px;
  height: 24px;
}
.v-footer__folder .v-footer__folder-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.v-footer__folder .v-footer__folder-info {
  --v-footer-info-gap: 4px;
  --v-footer-info-Space: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--v-footer-info-gap);
  padding-bottom: var(--v-footer-info-Space);
}
.v-footer__folder .v-footer__folder-info span:last-child {
  margin-top: calc(var(--v-footer-info-Space) - var(--v-footer-info-gap));
}
.v-footer__folder .v-footer__folder-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 20px;
}
.v-footer__folder .v-footer__folder-link-button {
  font-size: 12px;
  line-height: 1.2;
  position: relative;
  padding-right: 14px;
}
.v-footer__folder .v-footer__folder-link-button::after {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" ><path d="M4 3L8 6L4 9" stroke="currentColor" stroke-linecap="square"/></svg>');
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

details[open] .v-footer__folder-content {
  max-height: 10000px;
  opacity: 1;
}
details[open] .v-footer__folder-icon {
  transform: rotate(180deg);
  transition: 0.2s;
}

.v-footer__link {
  border-top: 1px solid #dddddd;
  padding: var(--v-side-margin);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v-footer__link .v-footer__link-list .v-footer__link-list__button {
  line-height: 1.3;
  color: #000;
}
.v-footer__link .v-footer__link-list .v-footer__link-list__button::after {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  margin: 0 10px;
  background-color: #eeeeee;
  position: relative;
  top: -1px;
}
.v-footer__link .v-footer__link-list .v-footer__link-list__button:last-child::after {
  display: none;
}
.v-footer__link .v-footer__link-sns {
  display: flex;
  gap: 8px;
}
.v-footer__link .v-footer__link-sns svg {
  width: 24px;
  height: auto;
}

.v-footer__copyright {
  letter-spacing: -0.01em;
}

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

.v-floating-buttons {
  position: fixed;
  right: 13px;
  bottom: var(--v-floating-bottom, calc(var(--v-bottom-bar-height) + 20px));
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  flex-direction: column;
  touch-action: manipulation;
  gap: 12px;
  z-index: var(--v-floating-z, calc(var(--v-bottom-bar-z, 120) - 2));
  transition: transform 0.3s ease-in-out;
  transform: translateY(var(--v-floating-buttons-y, calc(env(safe-area-inset-bottom) + var(--v-bottom-bar-height))));
}
.v-floating-buttons .v-button {
  width: 44px;
  overflow: visible;
}
.v-floating-buttons svg,
.v-floating-buttons img {
  width: 100%;
  height: auto;
  overflow: visible;
}
.v-floating-buttons .v-top-button {
  transition: opacity 0.2s linear;
  opacity: var(--v-top-button-o, 0);
}

swiper-container:not(:defined)[slides-per-view="1"] {
  --swiper-slide-size: calc(
    100vw - var(--v-carousel-root-pad-x, var(--v-side-margin, 24px)) * 2
  );
}

.v-carousel::part(root) {
  padding-inline: var(--v-carousel-root-pad-x, var(--v-side-margin, 24px));
}
.v-carousel.v-carousel--wide, .v-carousel[slides-offset-before], .v-carousel[slides-offset-after] {
  --v-carousel-root-pad-x: 0px;
}
.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: 56px;
}
.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.v-carousel--wide {
  --swiper-navigation-color: #fff;
}
.v-carousel:has(.v-quick-link) {
  --swiper-pagination-area-height: 30px;
}

.v-tmpl--img-quicklink swiper-slide {
  max-width: calc(100% / var(--slide-count, 4.302));
}
.v-tmpl--img-quicklink .v-carousel {
  --swiper-pagination-area-height: 24px;
}
.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;
}

[class*=v-tmpl--img-1-text-out] .v-media-banner {
  --v-media-aspect-ratio: 375 / 562;
  --v-media-fit: cover;
}

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

.v-mall-selector {
  padding: 0 var(--v-side-margin, 0) 40px;
}
.v-mall-selector p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.1428571429;
}

.v-mall-selector__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v-mall-selector__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #eee;
}
.v-mall-selector__banner img {
  display: block;
  width: 100%;
  max-width: 327px;
  height: auto;
  aspect-ratio: 327/70;
  object-fit: contain;
}

.v-mall-selector-unit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 17px 24px;
  background: #f1f1f1;
}

.v-mall-selector-unit__name {
  font-size: 18px;
  line-height: 0.8888888889;
}

.v-mall-selector-unit__subline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.v-mall-selector-unit__subline::after {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 12'%3E%3Cpath stroke='%233F3F3F' stroke-linecap='square' d='M2 9.5 6 6 2 2.5' opacity='.7'/%3E%3C/svg%3E");
}

.v-wish-list-frame {
  --swiper-slide-size: 131px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: var(--v-full-height, 100vh);
}
.v-wish-list-frame .v-wish-list {
  --v-bottom-sheet-footer-top-margin: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.v-wish-list-frame swiper-slide {
  width: var(--swiper-slide-size, 131px);
}

.v-wish-list {
  --v-bottom-sheet-footer-top-margin: 28px;
  --swiper-pagination-area-height: 0;
}
.v-wish-list .v-product-unit__keywords {
  display: flex;
  min-height: 15.6px;
}
.v-wish-list .v-product-unit__brand {
  line-height: 1.3;
}

.v-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-block: 16px 8px;
  margin-inline: 24px;
  border-bottom: 2px solid #000;
}

.v-search-box__input input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 16px;
  line-height: 1.3;
}
.v-search-box__input input:focus {
  outline: none;
}
.v-search-box__input input::placeholder {
  color: #999;
}

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

.v-search-box__button {
  --v-button-width: 24px;
  --v-button-height: 24px;
}

.v-search-box__icon {
  width: 18px;
  height: auto;
}

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

.v-search-box__button--image-search {
  --v-button-display: var(--v-search-image-display, none);
}
.v-search-box__button--image-search svg {
  width: 24px;
  height: auto;
}

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

.v-recent-search-keywords {
  --v-delete-button-display: none;
  --v-dropdown-button-display: flex;
  position: relative;
}
.v-recent-search-keywords .v-section-header {
  position: relative;
  z-index: 10;
}
.v-recent-search-keywords .v-dropdown-button {
  --v-button-display: var(--v-dropdown-button-display);
}
.v-recent-search-keywords .v-menu-button {
  --v-menu-button-text-color: #000;
  --v-menu-button-font-weight: var(--v-font-bold);
}
.v-recent-search-keywords .v-menu-button:disabled {
  --v-menu-button-text-color: #6d6d6d;
  --v-menu-button-font-weight: var(--v-font-normal);
}

.v-recent-search-keywords_mode_delete {
  --v-delete-button-display: flex;
  --v-dropdown-button-display: none;
}

.v-recent-search-keyword-list {
  --swiper-pagination-area-height: 0;
}
.v-recent-search-keyword-list::part(container), .v-recent-search-keyword-list::part(wrapper) {
  height: fit-content;
}
.v-recent-search-keyword-list swiper-slide {
  width: auto;
  height: fit-content;
}

.v-recent-search-keyword {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 1.3;
}

.v-section-header__text-button {
  --v-button-display: var(--v-delete-button-display);
}

.v-recent-search-keyword__delete-button {
  --v-button-display: var(--v-delete-button-display);
  --v-button-width: 12px;
  --v-button-text-color: #999;
  margin-right: -4px;
}
.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: 8px;
  padding-block: 12px;
  font-size: 16px;
  line-height: 1.3;
}

.v-rank-item__place {
  width: 18px;
}

.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: auto;
}

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

.v-keyword-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.v-keyword-link--has-tag {
  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: 3px 6px;
  font-size: 12px;
  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;
}

:root {
  --v-search-box-height: 50px;
}

.v-search-layer {
  --v-section-margin-top: 40px;
  --v-section-header-margin-bottom: 16px;
  --v-sub-header-position: relative;
  --v-full-layer-body-padding: 0 0 56px;
  --v-search-width: 100dvw;
  --v-search-height: var(--v-full-height, 100vh);
  --v-search-position: fixed;
  --v-search-z-index: calc(
    max(var(--v-site-header-z), var(--v-bottom-bar-z)) + 1
  );
  position: var(--v-search-position);
  z-index: var(--v-search-z-index);
  inset: 0;
  width: var(--v-search-width);
  height: var(--v-search-height);
  overflow: hidden;
  overflow: clip;
  background: #fff;
}
.v-search-layer.v-search-app {
  --v-search-width: 100%;
  --v-search-height: 100%;
  --v-search-position: relative;
  --v-search-z-index: 0;
}
.v-search-layer.v-search-app .v-search-app__header {
  position: sticky;
  top: var(--v-site-header-height);
  z-index: var(--v-site-header-z);
  background-color: #fff;
}

.v-search-layer .v-full-layer__header {
  position: relative;
  z-index: var(--v-site-header-z);
}

.v-image-search-options-layer {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(var(--v-full-height, 100vh) - var(--v-layer-header-height, 106px));
  overflow: hidden;
  overflow: clip;
  background: rgba(0, 0, 0, 0.7);
}

.v-image-search-options {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2px;
  padding: 0 12px;
  background: #fff;
}

.v-image-search-options__button {
  --v-button-padding: 24px;
  gap: 6px;
}
.v-image-search-options__button .v-button__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.v-image-search-options__button .v-button__label {
  font-size: 14px;
  line-height: 1.3;
}

.v-select-box [role=option] .v-option-name {
  line-height: 1.286;
}

.v-sorting-sheet__content {
  padding: 0 24px;
}
.v-sorting-sheet__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}
.v-sorting-sheet__item button {
  width: 100%;
  justify-content: start;
  color: #6d6d6d;
}
.v-sorting-sheet__item button[aria-selected=true] {
  font-weight: 700;
  color: #000;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M5 9.30769L8.80952 13L15 7" stroke="black" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
}

.v-viewtype-button svg {
  display: none;
  width: 24px;
  height: 24px;
}

.v-viewtype-button[data-viewtype=gallery] .v-viewtype-icon-gallery {
  display: inline-block;
}
.v-viewtype-button[data-viewtype=thumbnail] .v-viewtype-icon-thumbnail {
  display: inline-block;
}
.v-viewtype-button[data-viewtype=zoom] .v-viewtype-icon-zoom {
  display: inline-block;
}

.v-item-list[data-viewtype=gallery] {
  grid-template-columns: repeat(2, 1fr);
}
.v-item-list[data-viewtype=zoom] {
  grid-template-columns: 1fr;
}
.v-item-list[data-viewtype=thumbnail] {
  --v-item-list-gap-x: 6px;
  --v-item-list-gap-y: 6px;
  grid-template-columns: repeat(4, 1fr);
}
.v-item-list[data-viewtype=thumbnail] .v-product-unit *:not(.v-product-unit__media-grid,
.v-product-unit__media-grid .v-product-unit__link,
.v-media-embed,
.v-media-embed__element) {
  display: none;
}
.v-item-list[data-viewtype=thumbnail] .v-product-unit .v-product-unit__media-grid {
  display: block;
}
.v-item-list[data-viewtype=thumbnail] .v-product-unit .v-product-unit__link {
  width: 100%;
}
.v-item-list[data-viewtype=thumbnail] .v-product-unit .v-media-embed__element {
  width: 100%;
  height: auto;
}

.v-list-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr);
  padding: var(--v-list-control-padding, 10.5px 24px);
}
.v-list-control__button-group {
  --list-control-trail-button-icon-width: 24px;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 12px;
}
.v-list-control__button-group .v-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.v-list-control__button-group svg {
  width: var(--list-control-trail-button-icon-width);
  height: var(--list-control-trail-button-icon-height, var(--list-control-trail-button-icon-width));
}

.v-bottom-sheet--notice-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s linear;
}
.v-bottom-sheet--notice-popup.is-open {
  z-index: 140;
  background: rgba(0, 0, 0, 0.7);
}

.v-notice-popup {
  max-height: calc(var(--v-full-height, 100vh) - var(--v-notice-popup-top-spacing, 56px));
  overflow: auto;
}

.v-notice-popup__content .v-carousel {
  --v-media-aspect-ratio: 750/840;
  --swiper-pagination-progressbar-bg-color: rgba(255, 255, 255, 0.4);
  --swiper-pagination-color: #fff;
  --swiper-pagination-area-height: 58px;
}
.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, var(--v-side-margin));
  padding-top: var(--v-notice-popup-footer-top-padding, 16px);
  padding-bottom: var(--v-notice-popup-footer-bottom-padding, 16px);
  border-top: 1px solid #e0e0e0;
}

.v-notice-popup__action--close {
  --v-button-font-size: 14px;
  --v-button-line-height: 24px;
  margin-left: auto;
}

.v-product-unit--gift-wrap {
  display: grid;
  grid-template-areas: "media" "thumbnails" "info";
  grid-template-columns: 100%;
  overflow: clip;
  gap: 0;
}

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

.v-product-unit__link:has(.v-product-unit__content) {
  grid-area: info;
  margin-top: 8px;
}

.v-product-unit__thumbnails {
  grid-area: thumbnails;
  margin-top: 7px;
}

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

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

.v-tmpl--img-1-text-out-product .v-carousel::part(wrapper) {
  align-items: stretch;
}
.v-tmpl--img-1-text-out-product swiper-slide {
  height: auto;
  align-self: stretch;
}
.v-tmpl--img-1-text-out-product swiper-slide .v-banner-product {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-columns: 1fr;
  grid-template-areas: "banner" "products";
  height: 100%;
}
.v-tmpl--img-1-text-out-product swiper-slide .v-banner-product__banner {
  grid-area: banner;
}
.v-tmpl--img-1-text-out-product swiper-slide .v-banner-product__products {
  grid-area: products;
  height: var(--swiper-checked-height);
}
.v-tmpl--img-1-text-out-product swiper-slide .v-media-banner {
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}
.v-tmpl--img-1-text-out-product swiper-slide .v-media-banner__content {
  justify-content: space-between;
}

.v-tmpl--img-1-text-in-product-peakaboo .v-banner-product__banner {
  --v-media-aspect-ratio: 375 / 562;
  --v-media-fit: cover;
  margin-inline: var(--v-side-margin);
}
.v-tmpl--img-1-text-in-product-peakaboo .v-banner-product__banner:has(.v-media-banner--wide) {
  margin-inline: 0;
}

: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-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, 56px);
  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));
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-popup-header__main .pagination,
.v-popup-header__main .v-content-count {
  margin-left: 6px;
  color: #999;
}

.v-popup-header__title {
  font-size: var(--v-popup-header-title-font-size, 20px);
  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, 12px 24px);
}

.v-popup-footer__buttons {
  display: flex;
  gap: var(--v-popup-footer-buttons-gap, 4px);
}
.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-toast-message {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: var(--v-toast-position-bottom, 0);
  transform: translateY(20px);
  max-width: none;
  max-height: none;
  width: 100%;
  border: none;
  border-radius: var(--v-toast--border-radius, 1px);
  background-color: var(--v-toast--background, rgba(0, 0, 0, 0.7));
  padding-block: var(--v-toast--padding-block, 11px);
  padding-inline: var(--v-toast--padding-inline, 24px);
  color: var(--v-toast--font-color, #fff);
  text-align: center;
  font-size: var(--v-toast--font-size, 14px);
  font-weight: var(--v-toast--font-weight, 400);
  line-height: var(--v-toast--line-height, 1.3);
  opacity: 0;
  z-index: var(--v-toast--z-index, 1000);
  transition: opacity 0.3s ease, transform 0.1s 0.2s ease-in-out;
  pointer-events: none;
}
.v-toast-message::backdrop {
  display: none;
}
.v-toast-message.is-visible {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.2s 0.1s ease, transform 0.3s ease-in-out;
}
.v-full-layer:has(.v-full-layer__footer) {
  --v-toast-position-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.v-bottom-sheet:has(.v-bottom-sheet__footer) {
  --v-toast-position-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

body:has(.v-bottom-action-bar) {
  --v-toast-position-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.v-nav-tabs {
  display: flex;
}
.v-nav-tabs [role=tab] {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  padding: 12px 0;
  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: 1.3;
  white-space: nowrap;
  overflow: hidden;
}
.v-nav-tabs [role=tab][aria-selected=true] {
  --v-tab-underline-color: #000;
  --v-tab-text-color: #000;
}

.v-full-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 {
  padding: 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: flex-start;
  gap: 0 var(--v-spacing-md, 20px);
}

.v-card-benefit__logo {
  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-product-price-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v-product-price-info .v-price-table {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v-product-price-info .v-price-table__description {
  color: #131922;
  font-size: 14px;
  line-height: 20px; /* 142.857% */
}
.v-product-price-info .v-price-table__description strong {
  font-weight: 700;
}
.v-product-price-info .v-price-table__price {
  display: inline-flex;
  align-items: baseline;
  font-size: 18px;
  color: #131922;
}
.v-product-price-info .v-price-table__price strong {
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}
.v-product-price-info .v-price-table__currency {
  font-size: 0.78em;
  line-height: 20px; /* 142.857% */
}
.v-product-price-info .v-price-note {
  color: #787878;
  font-size: 12px;
  line-height: 1.5;
  min-height: 36px;
}

.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 60px;
  position: relative;
  display: block;
  aspect-ratio: var(--v-media-aspect-ratio);
  height: 90px;
  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: 12px;
  font-weight: var(--v-font-bold);
  line-height: 1.3;
  color: #000;
}
.v-product-bundle .v-bundle-unit__name {
  font-size: 12px;
  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: 13px;
}
.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: 40px 24px;
  border-bottom: 1px solid #ddd;
}

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

.v-restock-request__contact {
  margin-top: 20px;
  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: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.v-restock-request__notes {
  --v-bullet-list-color: #6d6d6d;
  --v-bullet-list-font-size: 12px;
  --v-bullet-list-line-height: 1.3;
  margin-top: auto;
  padding: 32px 24px;
  background-color: #f6f6f6;
}

.v-reck-size-guide {
  padding: 20px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.v-reck-size-guide > .v-select-box {
  margin-bottom: 20px;
  font-size: 14px;
}
.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-popup-message-textbox {
  padding: 42px 20px;
  color: var(--v-popup-message-color, #131922);
  text-align: var(--v-popup-message-text-align, center);
}

.v-popup-useable-coupon-sheet {
  --v-bottom-sheet-max-height: 70vh;
}
.v-popup-useable-coupon-sheet .v-bottom-sheet__container {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.v-scroll-lock-ignore {
  overflow: auto;
  overflow-x: hidden;
}

.v-useable-coupon-sheet {
  --v-bullet-list-color: #999;
  --v-bottom-sheet-footer-top-margin: 0;
  --v-bottom-sheet-footer-side-padding: 0;
  --v-bottom-sheet-footer-bottom-padding: 0;
  height: 100%;
}
.v-useable-coupon-sheet .v-coupon-section {
  margin-inline: var(--v-useable-coupon-margin-inline, 24px);
}
.v-useable-coupon-sheet .v-coupon-section ~ .v-coupon-section {
  margin-top: 16px;
}
.v-useable-coupon-sheet .v-coupon-section__title {
  color: #000;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: var(--v-font-bold, 700);
  line-height: 130%;
}
.v-useable-coupon-sheet .v-coupon-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-useable-coupon-sheet .v-bullet-list {
  margin-inline: var(--v-useable-coupon-margin-inline, 24px);
  padding: 24px 0 12px;
}

.popup__gifts {
  position: relative;
  width: 100%;
  padding: 18px 20px 28px;
  box-sizing: border-box;
}
.popup__gifts-head {
  position: relative;
}
.popup__gifts-head-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 0;
  color: #141a23;
  text-align: left;
}
.popup__gifts-close {
  position: absolute;
  top: 1px;
  right: 0;
  width: 20px;
  height: 20px;
}
.popup__gifts-close img {
  width: 100%;
}
.popup__gifts-wrap img {
  width: 100%;
}
.popup__gifts-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #131922;
  text-align: left;
}

.v-full-layer--review {
  --v-carousel-root-pad-x: 0;
  --swiper-pagination-area-height: 0;
}
.v-full-layer--review .inner {
  padding: 0 24px 24px;
}
.v-full-layer--review .v-review__visual-wrap {
  padding: 0 24px;
}
.v-full-layer--review .v-review__visuals .visual {
  overflow: hidden;
}
.v-full-layer--review .v-review__visuals .visual:not(:first-child) {
  margin-top: 8px;
}
.v-full-layer--review .v-review__visuals img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.v-full-layer--review .is-blocked .v-review__visuals {
  overflow: hidden;
  aspect-ratio: 2/3;
}
.v-full-layer--review .is-blocked .v-review__visuals img {
  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-full-layer--review .no-data-msg {
  margin-top: 16px;
  font-size: 14px;
  color: #999;
}

.v-full-layer--staff-review .v-staff-review__author-info {
  display: flex;
  align-items: center;
  height: 18px;
  margin-top: 24px;
}
.v-full-layer--staff-review .v-staff-review__author-info .nick {
  font-size: 14px;
}
.v-full-layer--staff-review .v-staff-review__author-info .date {
  margin-left: auto;
  font-size: 12px;
  color: #6d6d6d;
}
.v-full-layer--staff-review .v-staff-review__order-detail {
  margin-top: 8px;
}
.v-full-layer--staff-review .v-staff-review__order-detail p {
  line-height: 1.34;
  font-size: 12px;
  color: #6d6d6d;
}
.v-full-layer--staff-review .v-staff-review__order-detail p:not(:first-child) {
  margin-top: 2px;
}
.v-full-layer--staff-review .v-staff-review__order-detail span:not(:first-child) {
  position: relative;
  padding-left: 8px;
  margin-left: 8px;
}
.v-full-layer--staff-review .v-staff-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-full-layer--staff-review .v-staff-review__comment {
  margin-top: 13px;
}
.v-full-layer--staff-review .v-staff-review__comment-input {
  line-height: 1.25;
  font-size: 14px;
}
.v-full-layer--staff-review .v-staff-review__tags {
  display: flex;
  gap: 8px;
  margin-top: 11px;
}
.v-full-layer--staff-review .v-staff-review__tag {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border: 1px solid #ddd;
  font-size: 12px;
}
.v-full-layer--staff-review .v-staff-review__rating-list {
  margin-top: 12px;
  padding: 14px;
  background-color: #f6f6f6;
  display: grid;
  grid-template-columns: max-content 12px 1fr;
  row-gap: 8px;
}
.v-full-layer--staff-review .v-staff-review__rating-list .rating-item {
  height: 16px;
  font-size: 12px;
  color: #6d6d6d;
  display: contents;
}
.v-full-layer--staff-review .v-staff-review__rating-list .rating-item:not(.v-full-layer--staff-review .v-staff-review__rating-list .rating-item:first-child) {
  margin-top: 4px;
}
.v-full-layer--staff-review .v-staff-review__rating-list .rating-item__title {
  grid-column: 1;
  font-weight: var(--v-font-bold);
}
.v-full-layer--staff-review .v-staff-review__rating-list .rating-item__value {
  grid-column: 3;
}

.v-full-layer--photo-review .v-photo-review__author-info {
  display: flex;
  align-items: center;
  height: 16px;
  margin-top: 24px;
  font-size: 12px;
  color: #6d6d6d;
}
.v-full-layer--photo-review .v-photo-review__author-info .v-star-rating {
  color: #000;
}
.v-full-layer--photo-review .v-photo-review__author-info .v-star-rating .v-star-icons {
  --v-rating-value: 1;
}
.v-full-layer--photo-review .v-photo-review__author-info .id {
  margin-left: 16px;
}
.v-full-layer--photo-review .v-photo-review__author-info .date {
  position: relative;
  padding-left: 8px;
  margin-left: 8px;
}
.v-full-layer--photo-review .v-photo-review__author-info .date::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #ddd;
}
.v-full-layer--photo-review .v-photo-review__author-info .like {
  margin-left: auto;
}
.v-full-layer--photo-review .v-photo-review__order-detail {
  margin-top: 8px;
}
.v-full-layer--photo-review .v-photo-review__order-detail p {
  line-height: 1.34;
  font-size: 12px;
  color: #6d6d6d;
}
.v-full-layer--photo-review .v-photo-review__order-detail p:not(:first-child) {
  margin-top: 4px;
}
.v-full-layer--photo-review .v-photo-review__order-detail svg {
  width: 7.5px;
}
.v-full-layer--photo-review .v-photo-review__tags {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.v-full-layer--photo-review .v-photo-review__tag {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 6px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 10px;
}
.v-full-layer--photo-review .v-photo-review__tag.best {
  border-color: #000;
  font-weight: var(--v-font-bold);
  color: #fff;
  background-color: #000;
}
.v-full-layer--photo-review .v-photo-review__rating-list {
  margin-top: 8px;
  padding: 14px;
  background-color: #f6f6f6;
  display: grid;
  grid-template-columns: max-content 12px 1fr;
  row-gap: 8px;
}
.v-full-layer--photo-review .v-photo-review__rating-list .rating-item {
  height: 16px;
  font-size: 12px;
  color: #6d6d6d;
  display: contents;
}
.v-full-layer--photo-review .v-photo-review__rating-list .rating-item:not(.v-full-layer--photo-review .v-photo-review__rating-list .rating-item:first-child) {
  margin-top: 4px;
}
.v-full-layer--photo-review .v-photo-review__rating-list .rating-item__title {
  grid-column: 1;
  font-weight: var(--v-font-bold);
}
.v-full-layer--photo-review .v-photo-review__rating-list .rating-item__value {
  grid-column: 3;
}
.v-full-layer--photo-review .v-photo-review__comment {
  margin-top: 16px;
}
.v-full-layer--photo-review .v-photo-review__comment-input {
  line-height: 1.25;
  font-size: 14px;
}
.v-full-layer--photo-review .v-photo-review__action {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.v-full-layer--photo-review .v-photo-review__action .button {
  --v-button-height: 16px;
  display: inline-flex;
}
.v-full-layer--photo-review .v-photo-review__action .button:not(:first-child) {
  position: relative;
  padding-left: 8px;
  margin-left: 8px;
}
.v-full-layer--photo-review .v-photo-review__action .button:not(:first-child)::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #ddd;
}
.v-full-layer--photo-review .v-photo-review__action .button small {
  font-size: 12px;
}

.v-full-layer--review-bnefit .v-nav-tabs {
  border-bottom: 1px solid #ddd;
}
.v-full-layer--review-bnefit .v-review-benefit {
  margin-inline: var(--v-side-margin);
  padding-block: 24px 0;
  font-size: 14px;
  line-height: 1.3;
}
.v-full-layer--review-bnefit .v-review-benefit p {
  padding-block: 12px 24px;
}
.v-full-layer--review-bnefit .v-review-benefit__table {
  margin-top: 20px;
}
.v-full-layer--review-bnefit .v-review-benefit__table:first-child {
  margin-top: 0;
}
.v-full-layer--review-bnefit .v-review-benefit__table dl {
  padding-bottom: 12px;
  color: #000;
  background: #f6f6f6;
  font-size: inherit;
  line-height: inherit;
}
.v-full-layer--review-bnefit .v-review-benefit__table dt {
  background: #eee;
  padding-block: 12px;
  padding-inline: 20px;
  font-weight: 700;
}
.v-full-layer--review-bnefit .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-full-layer--review-bnefit .v-review-benefit__table dd strong {
  font-weight: 700;
}

.v-full-layer--review-bnefit .v-review-benefit {
  margin-inline: var(--v-side-margin);
}
.v-full-layer--review-bnefit .v-bullet-list {
  padding-block: 40px;
}
.v-full-layer--review-bnefit .v-bullet-list__accent {
  color: #000;
}

.v-full-layer--review-all {
  z-index: var(--v-bottom-bar-z, 100);
}

.v-full-layer--photo-review-thumbs {
  --v-media-aspect-ratio: 1 / 1.5;
}
.v-full-layer--photo-review-thumbs .v-photo-review-thumbs {
  margin-inline: var(--v-side-margin);
}
.v-full-layer--photo-review-thumbs .v-photo-review-thumbs__list {
  --v-item-list-columns: 2;
  --v-item-list-gap-x: 7px;
  --v-item-list-gap-y: 7px;
}
.v-full-layer--photo-review-thumbs .v-photo-review-thumbs__item .v-button {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-areas: "media";
  position: relative;
}
.v-full-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: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.v-full-layer--photo-review-thumbs .v-photo-review-thumbs__item .v-button:not(:has(svg))::after {
  background: none;
}
.v-full-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-full-layer--photo-review-thumbs .v-photo-review-thumbs__item .v-media-embed {
  grid-area: media;
}
.v-full-layer--photo-review-thumbs .v-photo-review-thumbs__item img {
  width: 100%;
  height: auto;
  display: block;
}
.v-full-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-full-layer--photo-review-thumbs .v-button.v-button--full {
  margin-block: 20px;
}

.v-full-layer--report-service .v-review-report-service {
  margin-inline: var(--v-side-margin);
}
.v-full-layer--report-service .v-review-report-service .v-form-label,
.v-full-layer--report-service .v-review-report-service .v-form-label_has_form-control {
  position: relative;
  min-height: 20px;
  padding: 1px 0 1px 28px;
  font-size: 14px;
  font-weight: 400;
}
.v-full-layer--report-service .v-review-report-service .v-required {
  transform: translate(2px, 0px);
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  overflow: clip;
  text-indent: 200%;
  background: #c40000;
}
.v-full-layer--report-service .v-review-report-service .v-bullet-list {
  padding-block: 20px;
}
.v-full-layer--report-service .v-review-report__title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  display: inline-flex;
  align-items: flex-start;
}
.v-full-layer--report-service .v-review-report__contents span {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.v-full-layer--report-service .v-review-report__contents .v-radio,
.v-full-layer--report-service .v-review-report__contents .v-checkbox {
  position: absolute;
  top: 0;
  left: 0;
}
.v-full-layer--report-service .v-review-report__contents .v-charCount {
  color: #999;
  font-size: 12px;
  text-align: right;
  margin-top: 6px;
}
.v-full-layer--report-service .v-review-report__subject {
  padding-top: 20px;
}
.v-full-layer--report-service .v-review-report__subject li {
  display: flex;
  gap: 20px;
  margin-block: 8px;
  padding-bottom: 20px;
}
.v-full-layer--report-service .v-review-report__subject li:last-child {
  padding-bottom: 0px;
}
.v-full-layer--report-service .v-review-report__subject .v-review-report__title {
  flex: 0 0 auto;
  min-width: 41px;
}
.v-full-layer--report-service .v-review-report__subject .v-review-report__contents {
  overflow: hidden;
}
.v-full-layer--report-service .v-review-report__reason {
  padding-top: 20px;
}
.v-full-layer--report-service .v-review-report__reason .v-form-control-list {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-full-layer--report-service .v-review-report__reason .v-radio ~ .v-form-block {
  margin-top: 12px;
}
.v-full-layer--report-service .v-review-report__reason .v-form-label:has(input:checked) {
  --v-form-block-display: block;
}
.v-full-layer--report-service .v-review-report__reason .v-form-label .v-form-block {
  display: var(--v-form-block-display, none);
}
.v-full-layer--report-service .v-review-report__inquirer {
  padding-block: 20px;
}
.v-full-layer--report-service .v-review-report__inquirer .v-form-control-list {
  margin-top: 12px;
}
.v-full-layer--report-service .v-review-report__inquirer li + li {
  margin-top: 24px;
}
.v-full-layer--report-service .v-review-report__inquirer .v-form-control-block p {
  margin-top: 8px;
}
.v-full-layer--report-service .v-review-report__inquirer .v-form-block + p {
  margin-top: 16px;
}
.v-full-layer--report-service .v-review-report__inquirer .v-form-flex {
  display: flex;
  align-items: flex-start;
}
.v-full-layer--report-service .v-review-report__inquirer .v-form-flex .v-select-box {
  max-width: 100px;
  margin-right: 8px;
}
.v-full-layer--report-service .v-review-report__inquirer .v-form-flex .v-text-field {
  width: 100%;
  margin-bottom: 0;
}

.v-review-filter-sheet .v-filter-sheet__content {
  grid-area: content;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 24px;
}
.v-review-filter-sheet .v-filter-sheet__sub-title {
  margin: 0;
  padding-block: 8px;
  font-size: 16px;
  line-height: 1.32;
}
.v-review-filter-sheet .v-filter-sheet__option-input-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: #999;
}
.v-review-filter-sheet .v-filter-sheet__option-input-box .v-separator svg {
  width: 20px;
  height: auto;
}
.v-review-filter-sheet .v-filter-sheet__option-input-box .v-input {
  position: relative;
  min-width: 0;
}
.v-review-filter-sheet .v-filter-sheet__option-input-box .v-input::after {
  position: absolute;
  right: 8px;
  top: 9px;
}
.v-review-filter-sheet .v-filter-sheet__option-input-box .v-input.v-metric-cm::after {
  content: "cm";
}
.v-review-filter-sheet .v-filter-sheet__option-input-box .v-input.v-metric-kg::after {
  content: "kg";
}
.v-review-filter-sheet .v-filter-sheet__option-input-box .v-input input {
  width: 100%;
  height: 37px;
  border: 1px solid #ddd;
  padding-left: 8px;
  padding-right: 32px;
  text-align: right;
}
.v-review-filter-sheet .v-filter-sheet__form-list {
  margin-bottom: 20px;
}
.v-review-filter-sheet .v-filter-sheet__form-list .v-select-box {
  font-size: 14px;
}
.v-review-filter-sheet .v-filter-sheet__form-list li {
  --v-filter-sheet-inner-padding-top: 0;
  display: flex;
  align-items: center;
}
.v-review-filter-sheet .v-filter-sheet__form-list li:has(range-slider) + li {
  margin-top: 12px;
}
.v-review-filter-sheet .v-filter-sheet__form-list.v-list-2cols {
  display: flex;
  flex-wrap: wrap;
}
.v-review-filter-sheet .v-filter-sheet__form-list.v-list-2cols li {
  width: 50%;
  margin-block: 10px;
}
.v-review-filter-sheet label {
  position: relative;
  min-height: 20px;
  padding: 1px 0 1px 28px;
  font-size: 14px;
  font-weight: 400;
}
.v-review-filter-sheet .v-checkbox {
  position: absolute;
  top: 0;
  left: 0;
}

.v-full-layer--qna-write .v-review-qna-write {
  margin-inline: var(--v-side-margin);
}
.v-full-layer--qna-write .v-review-qna-write .v-review-qna__subject {
  padding-top: 20px;
}
.v-full-layer--qna-write .v-review-qna-write .v-review-qna__subject li {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}
.v-full-layer--qna-write .v-review-qna-write .v-review-qna__subject .v-review-qna__title {
  flex: 0 0 auto;
  min-width: 41px;
}
.v-full-layer--qna-write .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-full-layer--qna-write .v-review-qna-write .v-review-qna__contents {
  margin-bottom: 40px;
}
.v-full-layer--qna-write .v-review-qna-write .v-review-qna__contents span {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.v-full-layer--qna-write .v-review-qna-write .v-review-qna__contents .v-review-qna__title {
  margin-bottom: 12px;
}
.v-full-layer--qna-write .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-full-layer--qna-write .v-review-qna-write .v-review-qna__contents .v-form-control-list .v-checkbox {
  position: absolute;
  top: 0;
  left: 0;
}
.v-full-layer--qna-write .v-review-qna-write .v-review-qna__contents textarea {
  height: 264px;
  padding: 11px 12px;
  margin-top: 20px;
}
.v-full-layer--qna-write .v-review-qna-write .v-review-qna__contents .v-charCount {
  color: #999;
  font-size: 12px;
  text-align: right;
  margin-top: 8px;
}
.v-full-layer--qna-write .v-review-qna-write .v-bullet-list {
  --v-bullet-list-font-size: 12px;
  margin-bottom: 40px;
}

.v-bottom-sheet--share .v-bottom-sheet__content {
  padding: 24px 24px 48px;
}

.v-layer-info-well {
  padding: 24px;
  color: #000;
  font-size: 14px;
  line-height: 1.3;
}

.v-layer-info-section {
  --v-bullet-list-font-size: 12px;
  --v-bullet-list-line-height: 1.3;
}
.v-layer-info-section + .v-layer-info-section {
  --v-layer-info-section-title-pad-top: 24px;
}

.v-layer-info-section__title {
  padding: var(--v-layer-info-section-title-pad-top, 16px) 24px 16px;
  font-weight: var(--v-font-bold, 700);
  line-height: 1.3;
}

.v-layer-info-section__body {
  padding-inline: 24px;
}

:where(body) {
  width: 100%;
}

body:has(.v-main-header, .v-sub-header) {
  --v-main-start: var(--v-site-header-height, 0px);
}

body:has(.v-footer) {
  --v-main-end: var(--v-footer-height, 0px);
}

main {
  min-height: calc(var(--v-full-height, 100vh) - var(--v-main-start, 0px) - var(--v-main-end, 0px) - env(safe-area-inset-bottom, 0px));
}

*:focus {
  outline: none;
}

a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}

.v-section {
  margin-top: var(--v-section-margin-top);
  margin-bottom: var(--v-section-margin-bottom);
}

.v-section-title {
  font-weight: var(--v-font-bold);
  font-size: 16px;
  line-height: 1.3;
}

.v-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: var(--v-section-header-side-margin, var(--v-side-margin));
  margin-bottom: var(--v-section-header-margin-bottom);
}

.v-section-header__main {
  flex: 1;
  min-width: 0;
}

.v-section-header__aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.v-section-header__button {
  --v-button-width: 24px;
  --v-button-height: 24px;
}

.v-section-header__text-button {
  --v-button-text-color: #6d6d6d;
  --v-button-font-size: 14px;
  --v-button-line-height: 24px;
}

.v-section-header__icon {
  width: 24px;
  height: auto;
}

.v-section-header__small-text {
  font-size: 12px;
  color: #999;
}

.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;
}