@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+TC:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --color-primary: #8A785A;
  --color-secondary: #AF9C7E;
  --color-text: #333333;
  --color-placeholder: #8e8e8e;
  --color-disable: #D6D6D6;
  --color-header-bg: #3D3D3E;
  --color-header-text: #FFFFFF;
  /* Assuming this should be different than the background */
  --color-header-cart-bg: #FFFFFF;
  --color-header-cart-text: #3D3D3E;
  --color-line:#D6D6D6;
  --color-bg: $FFFFFF;
}

label {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera, and Edge */
}

a:hover {
  cursor: pointer;
}

:root {
  --icon-loading-url: url(../images/icon/icon_loading_grey_color.svg);
}

.invisible {
  visibility: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

@keyframes headerFixedDrop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .checkbox-list {
    gap: 17px;
  }
}

div.checker {
  display: flex !important;
}

.checkbox-inline {
  display: flex;
  flex-direction: row;
  gap: 13px;
  color: var(--color-text);
  text-wrap: nowrap;
}
.checkbox-inline * {
  text-wrap: nowrap;
}
@media screen and (max-width: 992px) {
  .checkbox-inline {
    gap: 20px;
  }
}
.checkbox-inline .div.checker, .checkbox-inline div.checker span, .checkbox-inline div.checker input {
  height: 0px;
}

.checkbox-inline input[type=checkbox] {
  display: none;
  /* Hide the default checkbox */
}

/* Create a custom checkbox appearance */
.checkbox-inline .checker span::after {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 3px;
  /* Add a slight curve to the borders */
  border: 2px solid #cacece;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  line-height: 20px;
}

.checkbox-inline .checker span.checked::after {
  content: "✓";
  /* Unicode character for check mark */
  font-size: 20px;
  color: #FFFFFF !important;
  background-color: var(--color-secondary);
  /* Checked state background color */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .form-group .control-label {
    margin: 0px;
  }
}
.form-group .control-label.hide {
  display: none;
}

label, label span {
  letter-spacing: 0.51px;
  line-height: 24px;
}
label span, label span span {
  font-weight: 700;
}

input, textarea, select {
  padding: 0.8rem 1rem;
  border: 1px solid #D6D6D6;
  border-radius: 5px;
  outline: none;
  background-color: #ffffff;
  width: calc(100% - min(7rem, 8vw));
  min-width: 12rem;
  width: 100%;
}

.quantity-button-group {
  --height: 45px;
  --border-color: #888888;
  display: inline-flex;
  flex-direction: row;
  height: var(--height);
}
.quantity-button-group .quantity {
  width: calc(var(--height) - 1px);
  height: calc(var(--height) - 1px);
  min-width: auto;
  border: solid 1px var(--color-primary);
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
  font-weight: bold;
  padding: 5px 5px !important;
  text-align: center;
}
.quantity-button-group .quantity-btn {
  width: calc(var(--height) - 1px) !important;
  height: calc(var(--height) - 1px) !important;
  border: solid 1px var(--border-color);
  background-color: #FFFFFF;
  cursor: pointer;
}
.quantity-button-group .quantity-btn:hover {
  transform: unset;
  background-color: var(--color-primary);
  border: solid 1px var(--color-primary);
  color: #FFFFFF;
}
.promo-code-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.promo-code-group .btn {
  height: 48px;
  width: auto;
}
.promo-code-group input {
  width: 100%;
}
.promo-code-group .form-group {
  width: 100%;
  margin-bottom: 0px;
}

select {
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  background-image: url("../images/icon/icon-dropdown-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  /* Position the arrow with some padding from the right edge */
  background-size: 18px 16px !important;
}
select.empty {
  color: var(--color-placeholder);
}

input.datepicker {
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  background-image: url("../images/icon/icon_calendar.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  /* Position the arrow with some padding from the right edge */
  background-size: 18px 16px !important;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.promo-code-group {
  width: 100%;
}

.discount_code .remark {
  margin: 10px 0px;
}
.discount_code .discount-error {
  margin-top: 10px;
  color: red;
}

.discount-form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.discount-form-group #discount_code_formdiscount_code {
  width: 100%;
}
.discount-form-group .form-group {
  margin-bottom: 0px;
  width: 100%;
}
.discount-form-group .btn {
  height: 48px;
  width: auto;
  min-width: auto;
}
.discount-form-group .discount-form-group-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group.col-md-9 > div {
  display: flex;
  flex-direction: column;
}

.help-block {
  margin-top: 10px;
}
.help-block-error {
  color: red;
}

#ui-datepicker-div {
  --header-font-size: 16px;
  height: auto;
  display: block;
  height: auto;
  width: 100%;
  background: #F9F9F9;
  border: 0px;
  max-width: 400px;
}
#ui-datepicker-div .ui-datepicker .th {
  font-weight: 700 !important;
  padding: 0px !important;
  margin: 0px !important;
  padding-bottom: 0.9vw !important;
  font-size: 1.11vw !important;
}
#ui-datepicker-div .ui-datepicker-inline {
  background-color: #F6F6F6;
  width: 100%;
  padding: 0px;
  margin: 0px;
  font-weight: 400;
  border: 0px;
  margin: 0px auto;
}
#ui-datepicker-div .ui-datepicker-header {
  margin-top: 22px;
  margin-bottom: 18px;
  height: 24px;
  padding: 0px !important;
  background: transparent;
  border: 0px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  color: var(--color-primary);
  font-size: var(--header-font-size);
  font-weight: bold;
  letter-spacing: 0.51px;
  line-height: 24px;
  height: 24px;
  width: auto;
  margin: auto;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title * {
  color: var(--color-primary);
  font-size: var(--header-font-size);
  font-weight: bold;
  letter-spacing: 0.51px;
  line-height: 24px;
  height: 24px;
  width: auto;
  margin: auto;
}
#ui-datepicker-div .ui-datepicker-calendar {
  margin: auto;
  margin-bottom: 20px;
}
#ui-datepicker-div .ui-datepicker-prev {
  height: 21px;
  width: 21px;
  left: 20px;
}
#ui-datepicker-div .ui-datepicker-next {
  height: 21px;
  width: 21px;
  right: 20px;
}
#ui-datepicker-div .ui-datepicker .ui-widget-header {
  border: 0px;
  background-color: transparent;
}
#ui-datepicker-div .ui-state-default {
  text-align: center;
  height: 35px;
  width: 35px;
  border: 0px;
  margin: auto;
  font-weight: 300;
  line-height: 35px;
  padding: 0px;
  margin: 0px auto;
  font-size: 16px;
  color: var(--color-text);
  background: transparent;
}
#ui-datepicker-div .ui-state-active {
  background: var(--color-primary);
  color: #FFFFFF;
  border: 5px;
  border-radius: 50%;
  color: #FFFFFF;
}
#ui-datepicker-div .ui-icon-circle-triangle-e {
  background-image: url(../images/icon/icon_arrow_with_grey_stroke_right.svg);
  background-position: unset;
  height: 21px;
  width: 21px;
  background-size: 21px 21px;
  position: static;
  margin: 0px;
}
#ui-datepicker-div .ui-icon-circle-triangle-w {
  height: 21px;
  width: 21px;
  background-image: url(../images/icon/icon_arrow_with_grey_stroke_left.svg);
  background-position: unset;
  position: static;
  background-size: 21px 21px;
  margin: 0px;
}

.page {
  display: flex;
  flex-direction: column;
}
.page__header {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 50px 0px 50px 0px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .page__header {
    width: 92vw;
  }
}
@media screen and (max-width: 992px) {
  .page__header {
    padding: 30px 0px 30px 0px;
  }
}
.page__title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 46px;
  color: var(--color-primary);
}
@media screen and (max-width: 992px) {
  .page__title {
    font-size: 22px;
    line-height: 32px;
  }
}
.page__content {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  gap: 25px;
  padding: 0px 0px 50px 0px;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .page__content {
    width: 92vw;
  }
}
@media screen and (max-width: 992px) {
  .page__content {
    flex-direction: column;
    gap: 30px;
  }
}

.swiper {
  width: 100%;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 0px;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 0px;
}

.swiper {
  --swiper-pagination-bottom: min(6rem, 4vw);
  --swiper-pagination-bullet-size: min(1rem, 2.5vw);
  --swiper-pagination-bullet-horizontal-gap: min(1rem, 2.5vw);
  --swiper-pagination-bullet-inactive-opacity: 0.7;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  border: 1px solid #D6D6D6;
  background-color: rgba(255, 255, 255, 0.4);
  width: var(--swiper-navigation-size);
}
.swiper-button-next:hover, .swiper-button-next:focus, .swiper-rtl .swiper-button-prev:hover, .swiper-rtl .swiper-button-prev:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.swiper-button-next:after, .swiper-button-prev:after {
  --swiper-navigation-size: 0.8rem;
  color: #3D3D3E;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  border: 1px solid #D6D6D6;
  background-color: rgba(255, 255, 255, 0.4);
  width: var(--swiper-navigation-size);
}
.swiper-button-prev:hover, .swiper-button-prev:focus, .swiper-rtl .swiper-button-next:hover, .swiper-rtl .swiper-button-next:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.swiper .swiper-slide {
  overflow: hidden;
}
.swiper .swiper-pagination {
  user-select: none;
}
@media (min-width: 768px) {
  .swiper .swiper-pagination {
    text-align: center;
  }
}
.swiper-pagination-bullet {
  border: 2px solid #FFFFFF;
}
.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .swiper .swiper-horizontal > .swiper-pagination-bullets, .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper .swiper-pagination-custom, .swiper .swiper-pagination-fraction {
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    margin-inline: auto;
  }
}

html {
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  * {
    font-size: 14px;
    line-height: 16px;
  }
}

.line {
  height: 1px;
  background: var(--color-line);
  width: 100%;
  margin-bottom: 1px;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-text);
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

body {
  transition: overflow 0.35s ease;
  -webkit-text-size-adjust: none;
}
body.no-scroll {
  overflow: hidden;
}
body.is-fixed {
  overflow: hidden;
}
body.is-fixed-ios {
  overflow: hidden;
  height: 100vh;
  height: 100vh;
}
body.is-fixed-ios .blog__content {
  overflow: hidden;
  height: 100vh;
  height: 100vh;
}
body.is-fixed-ios .blog__content > *:not(dialog) {
  pointer-events: none;
  overflow: hidden;
}
body.is-fixed-ios dialog {
  z-index: 999;
}

[lang=en] {
  --font-primary: "Noto Sans HK", sans-serif;
  --font-secondary: "Noto Sans HK", sans-serif;
}

[lang=tc], [lang=tw] {
  --font-primary: "Noto Sans HK", sans-serif;
  --font-secondary: "Noto Sans HK", sans-serif;
}

[lang=sc] {
  --font-primary: "Noto Sans HK", sans-serif;
  --font-secondary: "Noto Sans HK", sans-serif;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: normal;
  color: var(--color-text);
  font-weight: bold;
  letter-spacing: 0;
}

h1 {
  font-size: 28px;
  line-height: 40px;
}

h2 {
  font-size: 22px;
  line-height: 32px;
}

h3 {
  font-size: 18px;
  line-height: 26px;
}

h4 {
  font-size: 16px;
  line-height: 24px;
}

h5 {
  font-size: 15px;
  line-height: 21px;
}

p, span, ul li, ol li, div {
  font-family: var(--font-primary);
  color: var(--color-text);
}

a span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
}

p {
  line-height: 1.6;
}
@media (max-width: 480px) {
  p {
    line-height: 1.9;
  }
}

a, button, input, label {
  font-family: var(--font-primary);
  font-weight: normal;
  color: var(--color-primary);
}

input, textarea {
  font-family: var(--font-primary);
  font-weight: normal;
  color: var(--color-text);
}

a:hover span[class^=g-icon], a:focus-visible span[class^=g-icon] {
  transform: scale(1.2) var(--_transform, translate(0));
}
a span[class^=g-icon] {
  transition: 0.4s ease;
}

[data-template] {
  display: none !important;
}

button, .button {
  transition: 0.4s ease;
}
button:hover, button:focus-visible, .button:hover, .button:focus-visible {
  transform: scale(1.08);
}
button.is-open .g-icon-arrow--down, .button.is-open .g-icon-arrow--down {
  transform: rotate(-135deg);
  margin-bottom: 0;
}
button .no-animate, .button .no-animate {
  transform: unset !important;
}

.button--outline {
  cursor: pointer;
  transition: 0.4s ease;
  font-size: 16px;
  text-wrap: nowrap;
  white-space: nowrap;
  font-weight: bold;
  position: relative;
  padding: 12px 26px;
  text-align: center;
  border: 1px solid var(--color-secondary);
  border-radius: 0px;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  color: var(--color-secondary) !important;
}
.button--outline.loading:after {
  content: "";
  --url: var(--icon-loading-url);
  --size: 60px;
  font-size: 0;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: var(--size);
  background-position: center;
  z-index: 50;
  background-color: var(--color-bg);
}
.button--outline.loading {
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 important;
  font-size: 0px;
  pointer-events: none;
  cursor: not-allowed;
}
.button--outline.loading:after {
  background-color: transparent;
  width: 30px;
  height: 30px;
  z-index: 999;
  background-size: 30px 30px;
  position: static;
}
.button--outline.disable {
  pointer-events: none;
  cursor: not-allowed;
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 !important;
}
.button--outline:hover {
  background-color: var(--color-secondary) !important;
  color: #FFFFFF !important;
}
.button--full {
  cursor: pointer;
  transition: 0.4s ease;
  font-size: 16px;
  text-wrap: nowrap;
  white-space: nowrap;
  font-weight: bold;
  position: relative;
  padding: 12px 26px;
  text-align: center;
  border: 1px solid var(--color-secondary);
  border-radius: 0px;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary) !important;
  color: #FFFFFF !important;
}
.button--full.loading:after {
  content: "";
  --url: var(--icon-loading-url);
  --size: 60px;
  font-size: 0;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: var(--size);
  background-position: center;
  z-index: 50;
  background-color: var(--color-bg);
}
.button--full.loading {
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 important;
  font-size: 0px;
  pointer-events: none;
  cursor: not-allowed;
}
.button--full.loading:after {
  background-color: transparent;
  width: 30px;
  height: 30px;
  z-index: 999;
  background-size: 30px 30px;
  position: static;
}
.button--full.disable {
  pointer-events: none;
  cursor: not-allowed;
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 !important;
}
.button--full:hover {
  background-color: #FFFFFF !important;
  color: var(--color-secondary) !important;
}

ul, ol {
  margin: 0;
  padding-left: 1.18rem;
  line-height: 1.6;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.3);
}

dialog[data-backdrop=false]::backdrop {
  background-color: transparent;
}

.d-none {
  display: none !important;
}

.g-icon--close {
  cursor: pointer;
  transition: 0.4s ease;
}
.g-icon--close:hover, .g-icon--close:focus-visible {
  transform: scale(1.2);
}

.font--TC-500 {
  font-family: var(--font-primary);
  font-weight: 500;
}

.font-500 {
  font-weight: 500;
}

.page-title {
  font-size: clamp(2rem, 4.5vw, 2.55rem);
}

.image-zoom {
  position: relative;
  overflow: hidden;
}
.image-zoom:hover img, .image-zoom:hover div.image {
  transform: scale(1.08);
}
.image-zoom img, .image-zoom div.image {
  transition: 0.4s ease;
}

.link {
  cursor: pointer;
  position: relative;
  z-index: 2;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1px;
}

.animateslide [data-animate] {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.animateslide [data-animate=bottom] {
  transform: translate3d(0, 3rem, 0);
}
.animateslide [data-animate=left] {
  transform: translate3d(-3rem, 0, 0);
}
.animateslide.swiper-active-2 .swiper-slide-next [data-animate] {
  opacity: 1;
  transform: none;
}
.animateslide.swiper-active-2 .swiper-slide-next .animateslide__item-1 {
  transition-delay: var(--delay, 0.2s);
}
.animateslide.swiper-active-2 .swiper-slide-next .animateslide__item-2 {
  transition-delay: var(--delay, 0.4s);
}
.animateslide.swiper-active-2 .swiper-slide-next .animateslide__item-3 {
  transition-delay: var(--delay, 0.6s);
}
.animateslide__slide.swiper-slide-active [data-animate] {
  opacity: 1;
  transform: none;
}
.animateslide__slide.swiper-slide-active .animateslide__item-1 {
  transition-delay: var(--delay, 0.2s);
}
.animateslide__slide.swiper-slide-active .animateslide__item-2 {
  transition-delay: var(--delay, 0.4s);
}
.animateslide__slide.swiper-slide-active .animateslide__item-3 {
  transition-delay: var(--delay, 0.6s);
}
.animateslide__item-1 {
  transition-delay: 3s;
}
.animateslide__item-2 {
  transition-delay: 3s;
}

.select {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera, and Edge */
  position: relative;
  list-style-type: none;
}
.select__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0.3rem;
  text-transform: uppercase;
}
.select__button.no-animate {
  transform: none;
}
.select__list {
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 100%;
  background-color: var(--bg-color, #FFFFFF);
  box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 0px;
  transform: scaleY(0);
  transition: all 0.3s ease-in-out;
  transform-origin: top;
  z-index: 3;
  display: none;
  min-width: 6rem;
}
.select__list-dropdown {
  list-style-type: none;
}
.select__list.is-open {
  display: block;
  transform: scaleY(1);
}
.select__list.on-left {
  left: -100%;
}
.select__list.on-center {
  left: -50%;
}
.select__list-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
}
@media screen and (max-width: 993px) {
  .select__list-title {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 24px;
  }
}
.select__list-header-container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.select__list-header-title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
}
@media screen and (max-width: 993px) {
  .select__list-header-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.select__list-header-btn {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  text-decoration: underline;
  color: var(--color-secondary);
}
@media screen and (max-width: 993px) {
  .select__list-header-btn {
    font-size: 14px;
    line-height: 24px;
  }
}
.select__item:not(:has(a)) {
  cursor: pointer;
}
.select__item a {
  cursor: pointer;
}
.select__item > * {
  padding-inline: 0.5rem;
}

.swiper {
  -webkit-text-size-adjust: none;
}
.swiper img {
  -moz-user-select: none;
  /* firefox */
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE*/
  user-select: none;
  /* Standard syntax */
}

.slider {
  --swiper-navigation-size: 4rem;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-horizontal-gap: 1rem;
  --swiper-pagination-bottom: min(2.5rem, 4vw);
  --swiper-navigation-sides-offset: 0;
}
.slider__item, .slider__item-click {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider__item-title {
  font-size: clamp(3rem, 6.86vw, 4rem);
  margin-bottom: 1rem;
  text-wrap: balance;
  text-wrap: pretty;
}
.slider__item-text-wrap {
  margin-bottom: 2.67rem;
}

.banner {
  width: clamp(335px, 90%, 1595px);
  margin: 0 auto;
}
.banner.section {
  padding-top: 0;
}
.banner__button--outline {
  cursor: pointer;
  transition: 0.4s ease;
  font-size: 16px;
  text-wrap: nowrap;
  white-space: nowrap;
  font-weight: bold;
  position: relative;
  padding: 12px 26px;
  text-align: center;
  border: 1px solid var(--color-secondary);
  border-radius: 0px;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  color: var(--color-secondary) !important;
}
.banner__button--outline.loading:after {
  content: "";
  --url: var(--icon-loading-url);
  --size: 60px;
  font-size: 0;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: var(--size);
  background-position: center;
  z-index: 50;
  background-color: var(--color-bg);
}
.banner__button--outline.loading {
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 important;
  font-size: 0px;
  pointer-events: none;
  cursor: not-allowed;
}
.banner__button--outline.loading:after {
  background-color: transparent;
  width: 30px;
  height: 30px;
  z-index: 999;
  background-size: 30px 30px;
  position: static;
}
.banner__button--outline.disable {
  pointer-events: none;
  cursor: not-allowed;
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 !important;
}
.banner__button--outline:hover {
  background-color: var(--color-secondary) !important;
  color: #FFFFFF !important;
}
.banner__button--full {
  cursor: pointer;
  transition: 0.4s ease;
  font-size: 16px;
  text-wrap: nowrap;
  white-space: nowrap;
  font-weight: bold;
  position: relative;
  padding: 12px 26px;
  text-align: center;
  border: 1px solid var(--color-secondary);
  border-radius: 0px;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary) !important;
  color: #FFFFFF !important;
}
.banner__button--full.loading:after {
  content: "";
  --url: var(--icon-loading-url);
  --size: 60px;
  font-size: 0;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: var(--size);
  background-position: center;
  z-index: 50;
  background-color: var(--color-bg);
}
.banner__button--full.loading {
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 important;
  font-size: 0px;
  pointer-events: none;
  cursor: not-allowed;
}
.banner__button--full.loading:after {
  background-color: transparent;
  width: 30px;
  height: 30px;
  z-index: 999;
  background-size: 30px 30px;
  position: static;
}
.banner__button--full.disable {
  pointer-events: none;
  cursor: not-allowed;
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 !important;
}
.banner__button--full:hover {
  background-color: #FFFFFF !important;
  color: var(--color-secondary) !important;
}
.banner__button--full, .banner__button--outline {
  width: min(214px, 100%);
}
.banner__button-wrap {
  display: flex;
  gap: min(2rem, 4vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.banner__content--left-img {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .banner__content--left-img {
    flex-direction: column;
  }
}
.banner__content--left-img > * {
  flex: 1;
}
.banner__content--right-img {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .banner__content--right-img {
    flex-direction: column;
  }
}
.banner__content--right-img > * {
  flex: 1;
}
.banner__description {
  font-size: clamp(0.94rem, 1.2vw, 1rem);
  margin-bottom: 1rem;
}
.banner__image-wrap {
  max-width: 612px;
  margin: 0 auto;
}
.banner__text-content {
  display: grid;
  gap: 1rem;
  width: min(460px, 100% - min(5rem, 10vw));
  margin: 0 auto;
  text-align: left;
}
.banner__text-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.banner__title {
  font-size: clamp(2rem, 4.5vw, 2.55rem);
}

.banner-image__content {
  width: clamp(335px, 90%, 1595px);
  margin: 0 auto;
}
.banner-image__image {
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(335px, 90%, 1595px);
  height: var(--height);
  display: block;
  max-width: 100%;
}

.section-brand {
  background-color: hsl(344deg, 31%, 96%);
}
.section-brand.homepage-brand {
  width: clamp(335px, 90%, 1595px);
  margin-inline: auto;
}
.section-brand__content {
  background-color: hsl(344deg, 31%, 96%);
}
.section-brand__title-wrap {
  width: min(819px, 100% - min(5rem, 10vw));
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1rem;
}
.section-brand__button {
  min-width: 210px;
  margin-top: 1rem;
}
.section-brand__list.top {
  display: flex;
  list-style-type: none;
  padding: 0;
  animation: scrolltoleft 18s linear infinite;
  width: 153rem;
}
.section-brand__list.bottom {
  display: flex;
  list-style-type: none;
  padding: 0;
  animation: scrolltoright 18s linear infinite;
  width: 153rem;
}
.section-brand__list-wrap {
  padding-block: 1rem;
}
@keyframes scrolltoleft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-76.5rem);
  }
}
@keyframes scrolltoright {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(76.5rem);
  }
}
.section-brand__item img {
  min-width: min(7.5rem, 22vw);
}

.section-back {
  padding: 0;
  width: min(1820px, 100% - 40px);
  margin: 0 auto;
  padding-top: 1.5rem;
}
.section-back .section__wrap, .section-back .slider__content {
  text-align: left;
}
.section-back__link {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  background-color: transparent;
  border: none;
  outline: none;
  width: fit-content;
}
.section-back__link span {
  --size: 0.6rem;
  margin: 0;
}

.modal {
  position: fixed;
  z-index: 2;
  border: none;
  margin: auto;
  background-color: transparent;
  padding: min(2rem, 4vw);
  transition: 0.35s ease;
  transform: translateX(0);
}
.modal.is-close {
  transform: translateY(-200%);
}
.modal.is-close::backdrop {
  opacity: 0;
  transition: 0.35s ease;
}
.modal .modal__box {
  display: flex;
  position: relative;
  background-color: #ffffff;
  border-radius: calc(0px + 0.5rem);
  overflow: hidden;
}
@media (max-width: 769px) {
  .modal .modal__box {
    flex-wrap: wrap;
  }
}
.modal .modal__close {
  position: absolute;
  right: min(1rem, 2vw);
  top: min(1rem, 2vw);
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  outline: none;
  padding: min(1rem, 2vw);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  --size: min(1.5rem, 3.5vw);
  z-index: 1;
  cursor: pointer;
}
.modal .modal__image-wrap {
  max-width: 480px;
  margin: auto;
  background-image: var(--bg-image);
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 480px) {
  .modal .modal__image-wrap {
    min-height: 10rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .modal .modal__image-wrap img {
    min-height: 10rem;
    width: 100%;
    object-fit: cover;
  }
}
.modal .modal__text-wrap {
  text-align: center;
  width: min(34rem, 100%);
  padding: 2rem min(4rem, 8vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .modal .modal__text-wrap {
    padding-inline: 1rem;
  }
}
@media (min-width: 1024px) {
  .modal .modal__text-wrap {
    width: 34rem;
  }
}
.modal .modal__text {
  font-weight: normal;
}
.modal .modal__text + .modal__button {
  margin-block: 2rem 0.5rem;
}
.modal .modal__title {
  margin-bottom: 1rem;
  text-wrap: balance;
  text-wrap: pretty;
}
.modal .modal__time-countdown {
  display: flex;
  align-items: baseline;
}
.modal .modal__time-countdown, .modal .modal__time-countdown > * {
  font-size: clamp(2rem, 4.5vw, 2.55rem);
  font-weight: 500;
  font-family: var(--font-primary);
  margin-block: min(1rem, 1vw);
  line-height: 1.6;
}
.modal .modal__time-countdown span {
  width: 4rem;
}
.modal .modal__time-countdown span::after {
  content: var(--_text);
  display: block;
  margin: -5px auto 1rem;
  font-size: clamp(0.94rem, 1.2vw, 1rem);
  font-weight: normal;
}
.modal .modal__time-text {
  display: flex;
  justify-content: space-between;
  margin-top: -1rem;
  margin-bottom: 1.25rem;
}
.modal .modal__time-text span {
  font-size: 12px;
}
.modal .modal__button {
  margin-block: 0.5rem;
  width: min(12rem, 24vw);
}
@media (max-width: 768px) {
  .modal .modal__button {
    width: calc(100% - 2rem);
  }
}

.notification {
  position: fixed;
  inset: auto 0 2rem 0;
  z-index: 4;
  padding: 1rem;
  width: min(1200px, 100% - 40px);
  margin: auto;
  background-color: #ffffff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.08), 0 2px 10px 5px rgba(0, 0, 0, 0.08);
  border-radius: 0px;
  border: none;
  transition: 0.35s ease;
}
@media (max-width: 480px) {
  .notification {
    max-width: 100%;
    width: 100%;
    margin: 0;
    inset: auto 0 0 0;
  }
}
.notification.is-close {
  transform: translateY(200%);
}
.notification.is-close::backdrop {
  opacity: 0;
  transition: 0.35s ease;
}
.notification__button {
  width: 163px;
  justify-self: center;
  align-self: flex-end;
  margin: 0 auto;
}
.notification__content {
  display: grid;
}
.notification__close {
  justify-self: flex-end;
  background-color: transparent;
  border: none;
  outline: none;
}
@media (min-width: 1024px) {
  .notification__close {
    margin-bottom: -0.5rem;
  }
}
.notification__link {
  font-size: clamp(0.94rem, 1.2vw, 1rem);
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  text-decoration-skip-ink: none;
}
.notification__text-content {
  display: flex;
  gap: 1rem;
}
.notification__text-wrap {
  display: flex;
  gap: 1rem;
  padding: 0 1rem 1rem;
  display: grid;
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 768px) {
  .notification__text-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
.notification__text {
  font-size: clamp(0.94rem, 1.2vw, 1rem);
}
.notification .g-icon--cookie {
  --_icon-size: min(3rem, 9vw);
}
.notification .g-icon--close {
  --_icon-size: 1.25rem ;
}

.scroller {
  padding-block: 1rem;
}
.scroller[data-animated=true] {
  width: 100%;
  overflow: hidden;
}
.scroller[data-animated=true] .scroller__inner {
  flex-wrap: nowrap;
  animation: scrollBrand var(--_animation-duration, 20s) var(--_animation-direction, forwards) linear infinite;
}
.scroller[data-direction=right] {
  --_animation-direction: reverse;
}
.scroller[data-direction=left] {
  --_animation-direction: forwards;
}
.scroller[data-speed=fast] {
  --_animation-duration: 20s;
}
.scroller[data-speed=slow] {
  --_animation-duration: 60s;
}
.scroller__inner {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  width: max-content;
}
.scroller__item {
  width: min(8rem, 24vw);
}
@keyframes scrollBrand {
  to {
    transform: translateX(calc(-50% - 0.2rem));
  }
}

.page-elem {
  user-select: none;
}
@media (max-width: 1024px) {
  .page-elem {
    display: none;
  }
}
.page-elem#scrolldown.is-down .page-elem__wrap {
  animation: fadeOut 1s ease forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.page-elem__button {
  cursor: pointer;
}
.page-elem__content {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-elem__scrolldown {
  width: 14rem;
  height: 11rem;
  margin-inline: auto;
}
.page-elem__wrap {
  height: auto;
  background-image: linear-gradient(0deg, rgba(138, 120, 90, 0.7), transparent);
  position: fixed;
  inset: auto 0 0;
  width: 100%;
  z-index: 4;
  margin: 0 auto;
}

.share-link {
  cursor: pointer;
}

#copySuccess {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#copySuccess img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.loading-inner-container {
  position: relative;
}

[data-loading] {
  position: relative;
}

[data-loading=true] {
  visibility: hidden;
}
[data-loading=true]::before {
  display: inline-block;
  content: "";
  width: 10%;
  aspect-ratio: 1/1;
  max-width: 100px;
  background-image: url(../images/icon/icon_loading_grey.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 999999999;
  visibility: visible;
  margin-top: 50px;
  margin: 0px auto;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  [data-loading=true]::before {
    width: 20%;
  }
}

[data-loading=false] {
  visibility: visible;
}

.hide-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
}
.hide-scrollbar::-webkit-scrollbar {
  background-color: white;
  border-radius: 10px;
  width: 15px;
}
.hide-scrollbar::-webkit-scrollbar-thumb {
  background-color: grey;
  border-radius: 10px;
  border: 5px solid white;
}
.hide-scrollbar::-webkit-scrollbar-thumb:vertical {
  background-color: grey;
  border-radius: 10px;
  border: 5px solid white;
}

.g-icon.inline {
  margin: auto;
  background-image: none !important;
}
.g-icon--custom-icon {
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-bg {
  --_icon-bg: #000000;
  background-color: var(--_icon-bg);
  border-radius: 50%;
}
.g-icon--calendar {
  --_icon: url(../images/icon/icon_calendar.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--card-gift {
  --_icon: url(../images/icon/icon_gift.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--close {
  --_icon: url(../images/icon/icon_close.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--close.g-icon-bg {
  --_icon: url(../images/icon/icon_close-white.svg);
}
.g-icon--cookie {
  --_icon: url(../images/icon/icon_cookie.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--email {
  --_icon: url(../images/icon/icon_email.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--fail {
  --_icon: url(../images/icon/icon_fail.svg?v=2);
  --_icon-size: 1.4rem;
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--global {
  --_icon: url(../images/icon/icon_global.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--member {
  --_icon: url(../images/icon/icon_member_blue.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--giftbox-offer {
  --_icon: url(../images/icon/icon_beauty_fest_offers.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--location {
  --_icon: url(../images/icon/icon_location.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--makeup {
  --_icon: url(../images/icon/icon_beauty_fest_cosmetic.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--menu {
  --_icon: url(../images/icon/icon_menu.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--search {
  --_icon: url(../images/icon/icon_search.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--share {
  --_icon: url(../images/icon/icon_share.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--shoppingbag-get1free {
  --_icon: url(../images/icon/icon_beauty_fest_buy1get1free.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--star-hot {
  --_icon: url(../images/icon/icon_beauty_fest_hot.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--store {
  --_icon: url(../images/icon/icon_estore.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--success {
  --_icon: url(../images/icon/icon_submitted.svg);
  --_icon-size: 1.4rem;
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--tel {
  --_icon: url(../images/icon/icon_tel.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--time {
  --_icon: url(../images/icon/icon_time.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--filter {
  --_icon: url(../images/icon/icon_filter.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--prev {
  --_icon: url(../images/icon/icon_arrow_left.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--next {
  --_icon: url(../images/icon/icon_arrow_right.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--remove {
  --_icon: url(../images/icon/icon_delete_grey.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon--checkbox-square {
  display: flex;
  --size: 1.3rem;
  width: var(--size);
  height: var(--size);
  border-radius: 0px;
  border: 1px solid rgba(105, 35, 37, 0.1);
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}
.g-icon--checkbox-square::after {
  content: "";
  width: 12px;
  height: 6px;
  display: block;
  position: absolute;
  border: solid #ffffff;
  border-width: 0 0 2.5px 2.5px;
  transform: rotate(-45deg);
  margin-bottom: 4px;
}
.g-icon-social--fb {
  --_icon: url(../images/icon/icon_social_fb.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--fb.g-icon-bg {
  --_icon: url(../images/icon/icon_social_fb-white.svg);
}
.g-icon-social--ig {
  --_icon: url(../images/icon/icon_social_ig.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--ig.g-icon-bg {
  --_icon: url(../images/icon/icon_social_ig-white.svg);
}
.g-icon-social--wechat {
  --_icon: url(../images/icon/icon_social_wechat.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--wechat.g-icon-bg {
  --_icon: url(../images/icon/icon_social_wechat-white.svg);
}
.g-icon-social--xhs {
  --_icon: url(../images/icon/icon_social_xhs.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--xhs.g-icon-bg {
  --_icon: url(../images/icon/icon_social_xhs-white.svg);
}
.g-icon-social--youtube {
  --_icon: url(../images/icon/icon_social_youtube.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--kuaishou {
  --_icon: url(../images/icon/icon_social_kuaishou.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--bilibili {
  --_icon: url(../images/icon/icon_social_bilibili.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--tiktok {
  --_icon: url(../images/icon/icon_social_tiktok.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--weibo {
  --_icon: url(../images/icon/icon_social_weibo.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-social--lesfanmily {
  --_icon-bg: transparent!important;
  --_icon: url(../images/icon/icon_brand_logo_2.svg);
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
  width: 64px;
  height: 50px;
}
@media (max-width: 1024px) {
  .g-icon-social--lesfanmily {
    width: 51.2px;
    height: 35.2px;
  }
}
.g-icon-social--lesfanmily.g-icon-bg {
  --_icon: url(../images/icon/icon_brand_logo_2.svg);
}
.g-icon-arrow-tail--right {
  --_icon: url(../images/icon/icon_arrow_with_tail_right.svg);
  --_icon-size: 1.5rem;
  width: var(--_icon-size, 2rem);
  height: var(--_icon-size, 2rem);
  display: block;
  background-image: var(--_icon);
  background-size: cover;
  background-repeat: no-repeat;
}
.g-icon-arrow--up {
  width: var(--size);
  height: var(--size);
  display: block;
  border: solid #8A785A;
  border-width: 2.5px 0 0 2.5px;
  transform: rotate(45deg);
  border-radius: 2px;
  margin: 0 auto;
}
.g-icon-arrow--down {
  --size: 2rem;
  width: var(--size);
  height: var(--size);
  display: block;
  border: solid #8A785A;
  border-width: 0 var(--border-width, 1px) var(--border-width, 1px) 0;
  transform: rotate(45deg);
  border-radius: 2px;
  margin: 0 auto;
}
.g-icon-arrow--left {
  --size: 2rem;
  --_transform: rotate(45deg);
  width: var(--size);
  height: var(--size);
  display: block;
  border: solid #8A785A;
  border-width: 0 0 var(--border-width, 1px) var(--border-width, 1px);
  transform: var(--_transform);
  border-radius: 2px;
  margin: 0 auto;
}

.layui-layer-hui {
  bottom: 10vh !important;
  top: unset !important;
}
.layui-layer-hui .layui-layer-content {
  z-index: 999;
  color: #FFFFFF;
}
.layui-layer-hui .layui-layer-content p {
  color: #FFFFFF;
}

header {
  position: sticky;
  top: 0px;
  z-index: 11;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-header-bg);
  padding: 10px 0px;
}
.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--color-header-bg);
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
}
@media screen and (max-width: 992px) {
  .header__container {
    width: 92vw;
  }
}
.header__title {
  color: var(--color-header-text);
}
@media screen and (max-width: 992px) {
  .header__title {
    display: none;
  }
}
.header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.header__logo {
  width: auto;
  height: 100px;
}
@media screen and (max-width: 992px) {
  .header__logo {
    width: auto;
    height: 60px;
  }
}

.select-filter.select .select__list {
  display: flex;
  flex-direction: column;
  left: -200%;
  min-width: 11rem;
  padding: 0px;
  border: 1px solid #D6D6D6;
  border-radius: 5px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .select-filter.select .select__list {
    width: 100%;
    height: calc(100% - 80px);
    top: 0px;
    right: unset;
    left: 0px;
    position: fixed;
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: right;
    transform: translateX(-100%);
    top: 80px;
  }
  .select-filter.select .select__list.is-open {
    opacity: 1;
    transform: translateX(0);
    transform-origin: left;
  }
}
.select-filter.select .select__list-header {
  padding: 12px 13px;
  border-bottom: solid 1px #D6D6D6;
}
.select-filter.select .select__list-content {
  padding: 7.5px 13px;
}
@media screen and (max-width: 768px) {
  .select-filter.select .select__list-content {
    padding: 25px 13px;
    height: 100%;
  }
}
.select-filter.select .select__list-dropdown {
  padding: 0px;
}
.select-filter.select .select__list-dropdown .select__item {
  padding: 6px 0px;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .select-filter.select .select__list-dropdown .select__item {
    padding: 7.5px 0px;
    font-size: 14px;
    line-height: 16px;
  }
}
.select-filter.select .select__list-footer {
  padding: 3px 13px;
}
@media screen and (max-width: 768px) {
  .select-filter.select .select__list-footer {
    padding: 22.5px 45.5px;
  }
}
.select-filter.select .select__list-footer-btn {
  font-weight: bold;
  letter-spacing: 0.48px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .select-filter.select .select__list-footer-btn {
    padding: 10px 10px;
    line-height: 30px;
  }
}
.select-filter.select .js-back-filter {
  display: none;
}
@media screen and (max-width: 768px) {
  .select-filter.select .js-back-filter {
    display: block;
  }
}

.select-language {
  color: var(--color-header-text);
}
.select-language * {
  font-size: 14px;
}
.select-language .select__button-text {
  color: var(--color-header-text);
}
.select-language .g-icon--global {
  --_icon-size: min(2rem, 7vw);
}
.select-language .g-icon--global #Group {
  fill: var(--color-header-text);
}
@media screen and (max-width: 992px) {
  .select-language .g-icon--global {
    display: none;
  }
}
.select-language .g-icon-arrow--down {
  --size: 0.4rem;
  --border-width: 1px;
  border-radius: 0;
  margin-bottom: 3px;
  margin-inline: 0.4rem;
  transition: 0.35s ease;
  border-color: var(--color-header-text);
}
@media screen and (max-width: 992px) {
  .select-language .g-icon-arrow--down {
    --size: 0.8rem;
  }
}

.eshop-btn {
  display: flex;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-header-cart-bg);
}
@media screen and (max-width: 992px) {
  .eshop-btn {
    width: 35px;
    height: 35px;
  }
}
.eshop-btn span.g-icon--cart {
  display: flex;
}
.eshop-btn #Group-2 {
  stroke: var(--color-header-cart-text);
}
.eshop-btn .quantity {
  --icon-size: 30px;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: red;
  color: #FFFFFF;
  border-radius: 50%;
  width: var(--icon-size);
  height: var(--icon-size);
  text-align: center;
  line-height: var(--icon-size);
}
@media screen and (max-width: 992px) {
  .eshop-btn .quantity {
    --icon-size: 18px;
    font-size: 12px;
    top: -5px;
    right: -8px;
  }
}
.eshop-btn svg {
  --icon-size: 24px;
  width: var(--icon-size);
  height: var(--icon-size);
}
@media screen and (max-width: 992px) {
  .eshop-btn svg {
    --icon-size: 19px;
  }
}

.select-language .select__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#banner-swiper-container {
  scroll-padding-top: 0;
}
#banner-swiper-container:hover .swiper-button-next, #banner-swiper-container:hover .swiper-rtl .swiper-button-prev, #banner-swiper-container:hover .swiper-button-prev, #banner-swiper-container:hover .swiper-rtl .swiper-button-next {
  opacity: 1;
}
#banner-swiper-container .swiper-button-next, #banner-swiper-container .swiper-rtl .swiper-button-prev, #banner-swiper-container .swiper-button-prev, #banner-swiper-container .swiper-rtl .swiper-button-next {
  z-index: 999;
}
#banner-swiper-container .slider__content {
  width: 100%;
  max-width: 1920px;
  margin: 0px auto;
}
#banner-swiper-container .slider__item-description {
  font-size: 24px;
  line-height: 40px;
}
#banner-swiper-container .slider__item-elem-center {
  position: absolute;
  inset: auto;
}
#banner-swiper-container .slider__item-elem-center .slider__item-image {
  width: 100%;
  margin: 0 auto;
}
#banner-swiper-container .slider__item-image {
  object-fit: cover;
  width: 100%;
  max-width: 1920px;
}
@media (max-width: 480px) {
  #banner-swiper-container .slider__item-image {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}
#banner-swiper-container .slider__item-text-wrap {
  position: absolute;
  text-align: center;
  inset: auto auto min(12rem, 18vw) auto;
  width: min(690px, 100% - 80px);
  margin: 0 auto;
  align-self: auto;
}
#banner-swiper-container .slider__video {
  aspect-ratio: 16/9;
  width: 100%;
  background-color: #eee;
}
#banner-swiper-container .slider__video-button {
  position: absolute;
  bottom: 10%;
  right: 6%;
  z-index: 999;
  background-color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.3rem 1rem 1rem;
  width: 3rem;
  height: 3rem;
}
@media (min-width: 768px) {
  #banner-swiper-container .slider__video-button {
    display: none;
  }
}
#banner-swiper-container .slider__video-button span {
  border-bottom: 0.5rem solid transparent;
  border-left: 1rem solid var(--color-primary);
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid transparent;
  background-color: transparent;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  display: block;
}
#banner-swiper-container .slider__video-button.is-play {
  padding: 1rem;
}
#banner-swiper-container .slider__video-button.is-play span {
  border: transparent;
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  width: 1rem;
  height: 1rem;
  display: block;
}

.section__wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.section__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(846px, 92vw);
  padding: 40px 0px 50px 0px;
  align-items: center;
}
@media (max-width: 768px) {
  .section__header {
    padding: 20px 0px 30px 0px;
  }
}
.section__title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}
@media (max-width: 768px) {
  .section__title {
    display: flex;
    font-size: 20px;
    line-height: 29px;
  }
}
.section__desc {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
}
.section__grid {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .section__grid {
    width: 92vw;
  }
}
@media (max-width: 992px) {
  .section__grid {
    margin-bottom: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.section__wrap[type="2"] {
  width: 100%;
  justify-content: start;
  align-items: start;
  padding-bottom: 50px;
  margin-bottom: 80px;
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
}
@media screen and (max-width: 992px) {
  .section__wrap[type="2"] {
    width: 92vw;
  }
}
@media screen and (max-width: 992px) {
  .section__wrap[type="2"] {
    width: 100% !important;
  }
}
.section__wrap[type="2"] .section__header {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
  align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .section__wrap[type="2"] .section__header {
    width: 92vw;
  }
}
@media screen and (max-width: 768px) {
  .section__wrap[type="2"] .section__header {
    padding: 50px 0px 25px 0px;
  }
}
.section__wrap[type="2"] .swiper-container {
  position: relative;
  width: 100%;
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
}
@media screen and (max-width: 992px) {
  .section__wrap[type="2"] .swiper-container {
    width: 92vw;
  }
}
@media screen and (max-width: 560px) {
  .section__wrap[type="2"] .swiper-container {
    width: 100%;
  }
}
.section__wrap[type="2"] .swiper {
  position: static;
}
.section__wrap[type="2"] .swiper .swiper-slide {
  overflow: visible;
}
.section__wrap[type="2"] .swiper-wrapper {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
}
@media screen and (max-width: 992px) {
  .section__wrap[type="2"] .swiper-wrapper {
    width: 92vw;
  }
}
.section__wrap[type="2"] .swiper-button-prev, .section__wrap[type="2"] .swiper-rtl .swiper-button-next {
  left: -20px;
}
@media screen and (max-width: 560px) {
  .section__wrap[type="2"] .swiper-button-prev, .section__wrap[type="2"] .swiper-rtl .swiper-button-next {
    left: 0px;
  }
}
.section__wrap[type="2"] .swiper-button-next, .section__wrap[type="2"] .swiper-rtl .swiper-button-prev {
  right: -20px;
}
@media screen and (max-width: 560px) {
  .section__wrap[type="2"] .swiper-button-next, .section__wrap[type="2"] .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
}

#suggestion-list .swiper-slide {
  padding-bottom: 5px;
}

#product-list {
  position: relative;
  min-height: min(400px, 50vh);
}
#product-list.loading:after {
  content: "";
  --url: var(--icon-loading-url);
  --size: 60px;
  font-size: 0;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: var(--size);
  background-position: center;
  z-index: 50;
  background-color: var(--color-bg);
}

.product-detail {
  width: 100%;
}
.product-detail-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: clamp(20px, 2.78vw, 40px);
}
@media screen and (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    gap: 30px;
  }
}
.product-detail-image {
  display: flex;
  flex-direction: column;
  width: clamp(50%, 26.38vw, 380px);
  height: 100%;
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .product-detail-image {
    width: 100%;
    max-width: 100%;
  }
}
.product-detail-content {
  display: flex;
  flex-direction: column;
  width: clamp(50%, 35.4vw, 472px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .product-detail-content {
    width: 100%;
  }
}
.product-detail .product__brand {
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .product-detail .product__brand {
    font-size: 14px;
    line-height: 20px;
  }
}
.product-detail .product__name {
  font-size: 24px;
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  .product-detail .product__name {
    font-size: 18px;
    line-height: 26px;
  }
}
.product-detail .product__desc-content {
  max-height: 450px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .product-detail .product__desc-content {
    max-height: none;
  }
}

.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

#product-detail-image-swiper {
  height: 80%;
  width: 100%;
}

#product-detail-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

#product-detail-image-swiper-thumbs {
  height: 20%;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
}

#product-detail-image-swiper-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

#product-detail-image-swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.quantity-submit-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .quantity-submit-group {
    margin-bottom: 20px;
  }
}
.quantity-submit-group .form-group {
  margin-bottom: 0;
}
.quantity-submit-group .product__btn {
  height: 45px;
}

.product__card-wrap {
  display: flex;
  flex-direction: column;
}
.product__card-wrap.hide {
  display: none;
  opacity: 1;
}
.product__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 20px;
}
.product__status {
  --color-bg: rgba(17,17,17,0.4);
  --color-text: #FFFFFF;
  background-color: var(--color-bg);
  color: var(--color-text);
  position: absolute;
  bottom: 0px;
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.55px;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0px 5px;
  background-color: rgba(17, 17, 17, 0.4);
  height: 60px;
  z-index: 3;
}
@media screen and (max-width: 1140px) {
  .product__status {
    font-size: 15px;
    line-height: 18px;
    height: 45px;
  }
}
@media screen and (max-width: 560px) {
  .product__status {
    font-size: 12px;
    line-height: 13px;
    height: 30px;
  }
}
.product__tag-list {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.product__tag {
  --color-bg: #619DD5;
  --color-text: #FFFFFF;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.58px;
  line-height: 26px;
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 10px 16.5px;
}
@media screen and (max-width: 1441px) {
  .product__tag {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.39px;
    line-height: 17px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 568px) {
  .product__tag {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.39px;
    line-height: 17px;
    padding: 5px 10px;
  }
}
.product__image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 500/333;
}
.product__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
.product__image .image-1 {
  opacity: 1;
  z-index: 1;
}
.product__image .image-2 {
  opacity: 0;
}
.product__image:hover .image-1 {
  opacity: 0;
}
.product__image:hover .image-2 {
  opacity: 1;
  z-index: 2;
}
.product__brand {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product__brand {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 5px;
  }
}
.product__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product__title {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 8px;
  }
}
.product__message {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .product__message {
    font-size: 16px;
    line-height: 24px;
  }
}
.product__price-container {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 560px) {
  .product__price-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
.product__price-container.single .prefix, .product__price-container.single .suffix {
  display: none;
}
.product__price * {
  font-size: 18px;
  line-height: 26px;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .product__price * {
    font-size: 16px;
    line-height: 24px;
  }
}
.product__price-old * {
  font-size: 15px;
  line-height: 21px;
  color: var(--color-disable);
  text-decoration: line-through;
}
@media screen and (max-width: 768px) {
  .product__price-old * {
    font-size: 12px;
    line-height: 17px;
  }
}
.product__desc {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 24px;
  color: var(--color-disable);
}
@media screen and (max-width: 768px) {
  .product__desc {
    font-size: 14px;
    line-height: 24px;
  }
}
.product__desc-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .product__desc-title {
    font-size: 14px;
    line-height: 24px;
  }
}
.product__btn {
  font-size: 16px;
  padding: 5px 26px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .product__btn {
    font-size: 15px;
    width: 100%;
    padding: 4px 10px;
    line-height: 20px;
  }
}

.field_message-group {
  display: flex;
  flex-direction: column;
  position: relative;
}
.field_message-group #word_count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: var(--color-disable);
}

.product-list__container.undefined .product-list {
  display: none;
}
.product-list__container.undefined .product-list__undefined {
  display: flex;
}
.product-list__undefined {
  display: none;
  height: 30vh;
  width: 100%;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 30px;
  width: 92vw;
  margin: 0px auto;
  margin-bottom: 50px;
}
.product-list__bottom-desc {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
  padding-bottom: 40px;
}

#product-list {
  padding-bottom: 40px;
}

#page-productDetail .content-container {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
}
@media screen and (max-width: 992px) {
  #page-productDetail .content-container {
    width: 92vw;
  }
}
#page-productDetail .product__short-desc {
  margin-bottom: 13px;
}
#page-productDetail .product-detail-container {
  padding: 0px;
}
#page-productDetail .product-detail-container.loading:after {
  content: "";
  --url: var(--icon-loading-url);
  --size: 60px;
  font-size: 0;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: var(--size);
  background-position: center;
  z-index: 50;
  background-color: var(--color-bg);
}

.card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 20px;
}
.card__status {
  --color-bg: rgba(17,17,17,0.4);
  --color-text: #FFFFFF;
  background-color: var(--color-bg);
  color: var(--color-text);
  position: absolute;
  bottom: 0px;
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.55px;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0px 5px;
  background-color: rgba(17, 17, 17, 0.4);
  height: 60px;
  z-index: 3;
}
@media screen and (max-width: 1140px) {
  .card__status {
    font-size: 15px;
    line-height: 18px;
    height: 45px;
  }
}
@media screen and (max-width: 560px) {
  .card__status {
    font-size: 12px;
    line-height: 13px;
    height: 30px;
  }
}
.card__tag-list {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.card__tag {
  --color-bg: #619DD5;
  --color-text: #FFFFFF;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.58px;
  line-height: 26px;
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 10px 16.5px;
}
@media screen and (max-width: 1441px) {
  .card__tag {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.39px;
    line-height: 17px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 568px) {
  .card__tag {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.39px;
    line-height: 17px;
    padding: 5px 10px;
  }
}
.card__image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 500/333;
}
.card__image img {
  aspect-ratio: 500/333;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
.card__image .image-1 {
  opacity: 1;
  z-index: 1;
}
.card__image .image-2 {
  opacity: 0;
}
.card__image:hover .image-1 {
  opacity: 0;
}
.card__image:hover .image-2 {
  opacity: 1;
  z-index: 2;
}
.card__name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .card__name {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 8px;
  }
}
.card__desc {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 34px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .card__desc {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 15px;
  }
}
.card__message {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .card__message {
    font-size: 16px;
    line-height: 24px;
  }
}
.card__price-container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 560px) {
  .card__price-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
.card__price * {
  font-size: 18px;
  line-height: 26px;
  color: var(--font-primary);
}
@media screen and (max-width: 768px) {
  .card__price * {
    font-size: 16px;
    line-height: 24px;
  }
}
.card__price-old * {
  font-size: 15px;
  line-height: 21px;
  color: var(--color-disable);
  text-decoration: line-through;
}
@media screen and (max-width: 768px) {
  .card__price-old * {
    font-size: 12px;
    line-height: 17px;
  }
}
.card__btn {
  font-size: 16px;
  padding: 5px 26px;
  line-height: 24px;
  transform: none !important;
}
.card__btn:hover {
  background-color: var(--color-primary) !important;
  color: #FFFFFF !important;
}
@media screen and (max-width: 768px) {
  .card__btn {
    font-size: 14px;
    width: 100%;
    padding: 4px 10px;
    line-height: 20px;
  }
}

.select-filter {
  display: flex;
}

.section__filter-tag-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  align-items: center;
}
@media (max-width: 768px) {
  .section__filter-tag-list {
    width: 100%;
    display: flex;
  }
}
.section__filter-btn {
  padding: 5px;
}
@media (max-width: 768px) {
  .section__filter-btn {
    padding: 5px;
  }
}
.section__filter-btn span {
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .section__filter-btn span {
    padding: 3px;
    width: 25px;
    height: 25px;
  }
}
.section__filter-btn-tag {
  --_icon-outline:#000000;
  border: solid 1px var(--_icon-outline);
  border-radius: 50%;
  margin-right: 20px;
  transition: 0.4s ease;
}
.section__filter-tag-wrap {
  width: 88vw;
  max-width: 1280px;
  margin: 0px auto;
  padding-top: 48px;
  padding-bottom: 40px;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  display: flex;
  align-items: center;
  position: sticky;
  top: 120px;
  z-index: 5;
  background: var(--color-bg);
}
@media screen and (max-width: 992px) {
  .section__filter-tag-wrap {
    width: 92vw;
  }
}
@media screen and (max-width: 1441px) and (min-width: 769px) {
  .section__filter-tag-wrap {
    padding-top: 22px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .section__filter-tag-wrap {
    padding-top: 22px;
    padding-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .section__filter-tag-wrap {
    top: 80px;
  }
}
.section__filter-tag-wrap::-webkit-scrollbar {
  display: none;
}
.section__filter-tag-wrap-inner {
  width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar for Internet Explorer 10+ */
}
.section__filter-tag-item {
  padding-inline: 1rem;
  -webkit-user-select: none;
  /* Chrome, Safari, Opera */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by modern browsers */
}
.section__filter-tag-item, .section__filter-tag-item span {
  font-family: var(--_font-serif);
  color: var(--color-text);
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section__filter-tag-item, .section__filter-tag-item span {
    font-size: 14px;
  }
}
.section__filter-tag-item span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.8px;
  background-color: var(--color-primary);
  transition: transform 0.35s ease-out;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.section__filter-tag-item.active, .section__filter-tag-item.active > * {
  font-weight: bold;
  color: var(--color-primary);
}
.section__filter-tag-item.active span::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media (max-width: 768px) {
  .section__filter-tag-item:first-child {
    padding-left: 20px;
  }
  .section__filter-tag-item:last-child {
    padding-right: 20px;
  }
}
.section__filter-nav-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 0.3rem;
  width: 100vw;
  height: 100vh;
}
@media (min-width: 1025px) {
  .section__filter-nav-list {
    justify-content: center;
    align-items: center;
    padding-block: 1.2rem 0.8rem;
    flex-wrap: wrap;
    row-gap: 0;
  }
}
@media (max-width: 1024px) {
  .section__filter-nav-list {
    flex-direction: column;
    padding-block: 2.5rem;
    border-top: 1px solid rgba(105, 35, 37, 0.1);
  }
}
.section__filter-nav-item {
  text-transform: uppercase;
  transition: 0.35s ease;
}
.section__filter-nav-link {
  padding-block: 0;
  text-decoration: none;
  display: block;
}
.section__filter-nav-link, .section__filter-nav-link > * {
  font-weight: 300;
}
@media (max-width: 1024px) {
  .header__nav-item .section__filter-nav-link {
    padding-block: 0.25rem;
  }
  .select-promotion .select__item .section__filter-nav-link {
    padding-block: 0;
  }
}
.section__filter-nav-link:hover {
  transform: unset;
}
.section__filter-nav-link > span {
  border-radius: 0.3rem;
  padding-inline: 1.2rem;
  padding-block: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.section__filter-nav-link.is-current, .section__filter-nav-link.is-current > *, .section__filter-nav-link.is-current .current {
  font-weight: bold !important;
  width: fit-content;
}
.section__filter-sidebar {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.product-detail {
  width: 100%;
}
.product-detail-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: clamp(20px, 2.78vw, 40px);
}
@media screen and (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    gap: 30px;
  }
}
.product-detail-image {
  display: flex;
  flex-direction: column;
  width: clamp(50%, 26.38vw, 380px);
  height: 100%;
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .product-detail-image {
    width: 100%;
    max-width: 100%;
  }
}
.product-detail-content {
  display: flex;
  flex-direction: column;
  width: clamp(50%, 35.4vw, 472px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .product-detail-content {
    width: 100%;
  }
}
.product-detail .product__brand {
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .product-detail .product__brand {
    font-size: 14px;
    line-height: 20px;
  }
}
.product-detail .product__name {
  font-size: 24px;
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  .product-detail .product__name {
    font-size: 18px;
    line-height: 26px;
  }
}
.product-detail .product__desc-content {
  max-height: 200px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .product-detail .product__desc-content {
    max-height: none;
  }
}

.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  z-index: 9;
}
.swiper .swiper-button-next, .swiper .swiper-button-prev {
  z-index: 11;
}

#product-modal {
  max-width: 1280px;
  border-radius: 0px;
}
@media screen and (max-width: 768px) {
  #product-modal {
    top: 80px;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
  }
}
#product-modal .content-container {
  padding: clamp(25px, 3.47vw, 50px);
}
@media screen and (max-width: 768px) {
  #product-modal .content-container {
    padding: 70px 0vw;
  }
}
#product-modal .product__title {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #product-modal .product__title {
    font-size: 18px;
    line-height: 26px;
  }
}
#product-modal .product__short-desc {
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  #product-modal .product__price-container {
    flex-direction: row;
    align-items: end;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #product-modal .product__price {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  #product-modal .product__price * {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  #product-modal .product__price-old {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  #product-modal .product__price-old * {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  #product-modal .close-btn {
    top: 25px;
    right: 15px;
  }
}
#product-modal .product__desc {
  display: none;
}
#product-modal .product__desc.show {
  display: flex;
  flex-direction: column;
}
#product-modal #js-add-to-cart {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#product-modal #js-add-to-cart span {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #product-modal .swiper-button-next, #product-modal .swiper-button-prev {
    display: none;
  }
}

#product-detail-image-swiper {
  height: 80%;
  width: 100%;
}

#product-detail-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

#product-detail-image-swiper-thumbs {
  height: 20%;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
}

#product-detail-image-swiper-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

#product-detail-image-swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.quantity-submit-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .quantity-submit-group {
    flex-direction: column;
    margin-bottom: 20px;
    align-items: flex-start;
  }
}
.quantity-submit-group .form-group {
  margin-bottom: 0;
}
.quantity-submit-group .product__btn {
  height: 45px;
}

.btn-next {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .btn-next {
    display: none;
  }
}
.btn-next.mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  .btn-next.mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .btn-next.mobile button, .btn-next.mobile a {
    width: 100%;
    margin: 0px;
  }
}
.btn-next .mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  #page-checkout .page__content {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 992px) {
  #page-cart .page__content {
    flex-direction: column;
  }
}

.cart-item__container {
  width: 62.5%;
}
@media screen and (max-width: 992px) {
  .cart-item__container {
    width: 100%;
  }
}
.cart-item__section {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  padding: 34.5px 36.5px 0px 36.5px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .cart-item__section {
    padding: 20px 36.5px 0px 36.5px;
  }
}
.cart-item__title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06px;
  line-height: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .cart-item__title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.cart-item__content {
  display: flex;
  flex-direction: column;
}
.cart-item-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 15px;
  padding: 22.5px 0px;
  border-top: 1px solid var(--color-line);
}
.cart-item-card__info-btn-group {
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: center;
}
.cart-item-card__info-btn-group .form-group {
  margin-bottom: 0px;
}
.cart-item-card__info-btn-group .form-group label {
  display: none;
}
.cart-item-card__info-btn-group a {
  width: 24px;
  height: 24px;
}
.cart-item-card__info-btn-group a span {
  width: 100%;
  height: 100%;
}
.cart-item-card .form-group:last-child {
  margin-bottom: 0px;
}
.cart-item-card .product__brand {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .cart-item-card .product__title {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 19px;
  }
}
@media screen and (max-width: 992px) {
  .cart-item-card .product__price-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}
@media screen and (max-width: 568px) {
  .cart-item-card .product__price-container {
    flex-direction: column;
    gap: 0px;
  }
}
@media screen and (max-width: 992px) {
  .cart-item-card .product__price {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 992px) {
  .cart-item-card .product__price-old {
    font-size: 14px;
    line-height: 20px;
  }
}
.cart-item-card .product__name {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
  font-weight: 700;
}
.cart-item-card .product__price *, .cart-item-card .product__price-old * {
  font-size: 16px;
  line-height: 26px;
}
.cart-item-card .product__message {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 10px;
}
.cart-item-card .product__message.null {
  display: none;
}
.cart-item-card .product__message-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cart-item-card .product__message-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cart-item-card .product__text {
  font-size: 14px;
  line-height: 19px;
}
.cart-item-card .product__message-content {
  font-size: 14px;
  line-height: 19px;
}
.cart-item-card .light {
  font-weight: 300;
}
.cart-item-card__action {
  margin-right: 10px;
}
.cart-item-card__image {
  width: 135px;
  height: 135px;
  min-width: 135px;
}
.cart-item-card__info {
  width: 100%;
}
.cart-item-card__info .product__price {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 26px;
}
.cart-item-card__info .product__price * {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .cart-item-card__info .product__price {
    font-size: 16px;
    line-height: 24px;
  }
}
.cart-item-card__info .product-quantity {
  margin-right: 10px;
  font-size: 14px;
}
.cart-item-card__message {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-text);
}
.cart-item-card__remove {
  cursor: pointer;
}
.cart-item-card__action .g-icon {
  width: 18px;
  height: 18px;
}
.cart-item-card .quantity-button-group {
  --height: 37.5px;
}
.cart-item-card.loading:after {
  content: "";
  --url: url(../images/icon/icon_loading_grey_color.svg);
  --size: 60px;
  font-size: 0px;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: var(--size);
  background-position: center;
  z-index: 50;
  background-color: var(--color-bg);
}
.cart-item__empty {
  --url: url(../images/icon/icon_loading_grey_color.svg);
  color: #FFFFFF !important;
  background-color: #D9D9D9 !important;
  border-color: #D9D9D9 !important;
  font-size: 0px;
  pointer-events: none;
  cursor: not-allowed;
}

.cart-item-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.cart-item-list__undefined {
  display: flex;
  display: none;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 40vw;
  gap: 20px;
}
.cart-item-list__undefined p {
  font-size: 21px;
  line-height: 30px;
}
.cart-item-list__container.undefined .cart-item-list__undefined {
  display: flex;
}
.cart-item-list.loading {
  min-height: 40vw;
  z-index: 13;
}
.cart-item-list.loading:after {
  content: "";
  --url: url(../images/icon/icon_loading_grey_color.svg);
  --size: 60px;
  font-size: 0px;
  pointer-events: none;
  cursor: not-allowed;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--url);
  background-repeat: no-repeat;
  background-size: 60px 60px;
  background-position: center;
  background-color: var(--color-bg);
  z-index: 50;
}

@media screen and (max-width: 992px) {
  #page-cart .cart-item-card__action {
    display: none;
  }
}
@media screen and (min-width: 993px) {
  #page-cart .cart-item-card__info-btn-group .cart-item-card__remove {
    display: none;
  }
}

.modal {
  display: flex;
  /* This will be overridden by the dialog's default display when open */
  flex-direction: row;
  position: fixed;
  justify-content: center;
  padding: 12px;
  width: 85vw;
  z-index: 14;
  gap: 0.4rem;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  height: auto;
  box-sizing: border-box;
  /* Add this to include padding in width calculations */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  max-height: 90vh;
}

.modal:not([open]) {
  /* When the dialog is not open, it should not be visible.
     This negates the need for a "modal-hidden" class on the dialog itself. */
  display: none !important;
  /* Override any other display settings */
}

.modal .content-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.modal.gallery-modal {
  background-color: transparent;
  border: none;
  color: #FFFFFF;
}

.modal.gallery-modal .close-btn {
  background-image: url("../images/icon/icon_close-white.svg");
}

.modal.fullsize-modal {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 28px;
  height: 28px;
  background-image: url("../images/icon/icon_close.svg");
  background-size: cover;
  cursor: pointer;
  /* Make it clear it's clickable */
}

.overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  /* Use rgba for opacity instead */
  backdrop-filter: blur(3px);
  z-index: 998;
  display: none;
  /* Initially hidden */
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  display: none;
  z-index: 10;
  /* Ensure it sits below the modal */
}

/* When the overlay should be shown */
.overlay:not(.hidden) {
  display: block;
}

@media only screen and (min-width: 1024px) {
  .modal.gallery-modal .close-btn {
    top: -28px;
    right: -20px;
  }

  .modal.fullsize-modal {
    max-width: 1232px;
    height: auto;
    border-radius: 15px;
  }
}
#field-message-group {
  display: none;
}
#field-message-group.show {
  display: flex;
}
#field-message-group.mandatory .control-label::after {
  content: "*";
  /* Unicode for star symbol */
  color: red;
  /* Change color as needed */
  margin-left: 5px;
  /* Space between input and star */
}

.hint__container {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  padding: clamp(25px, 3.47vw, 50px);
}
.hint__title {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
}
.hint__content {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
}

.order-summary__section {
  width: 42.5%;
  padding: 30px 36px 30px 28px;
  background-color: #F9F9F9;
}
@media screen and (max-width: 992px) {
  .order-summary__section {
    padding-left: 0px;
    width: 100%;
    padding: 20px 15px 20px 15px;
  }
}
.order-summary__content {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  padding: 30px 0px;
}
@media screen and (max-width: 992px) {
  .order-summary__content {
    padding: 30px 0px 30px 0px;
  }
}
.order-summary__footer {
  padding: 32.5px 0px 0px 0px;
}
@media screen and (max-width: 992px) {
  .order-summary__footer {
    padding: 20px 0px 0px 0px;
  }
}
.order-summary__footer .order-summary__item-title {
  font-weight: bold;
}
.order-summary__footer .order-summary__item-desc {
  font-weight: bold;
}
.order-summary__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}
.order-summary__item.discount-price .order-summary__item-desc * {
  color: #D83914;
}
.order-summary__item.hide {
  display: none;
}
.order-summary__item:last-child {
  margin-bottom: 0px;
}
.order-summary__item-title {
  color: var(--color-text);
  font-size: 16px;
  letter-spacing: 0.04px;
  line-height: 19px;
}
@media screen and (max-width: 768px) {
  .order-summary__item-title {
    font-size: 14px;
  }
}
.order-summary__item-desc {
  color: var(--color-text);
  font-size: 16px;
  letter-spacing: 0.04px;
  line-height: 19px;
}
@media screen and (max-width: 768px) {
  .order-summary__item-desc {
    font-size: 14px;
  }
}
.order-summary__item-desc * {
  font-size: 16px;
  letter-spacing: 0.04px;
  line-height: 19px;
}
@media screen and (max-width: 768px) {
  .order-summary__item-desc * {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .order-summary__item-desc.total {
    font-size: 18px;
  }
}
.order-summary__item-desc.total * {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .order-summary__item-desc.total * {
    font-size: 18px;
  }
}
.order-summary__item .product__title {
  margin-bottom: 0px;
}
.order-summary__title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06px;
  line-height: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .order-summary__title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.order-summary__checkout-btn {
  margin-top: 50px;
  padding: 13px 58px;
  line-height: 24px;
}
.order-summary__discount-code-input {
  display: flex;
  flex-direction: row;
}

.delivery-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  max-width: 262px;
  border: 2px solid var(--color-line);
  cursor: pointer;
}
.delivery-method__label {
  text-align: center;
}
@media screen and (max-width: 992px) {
  .delivery-method {
    width: 100%;
  }
}
.delivery-method:hover {
  border: 2px solid var(--color-primary);
}
.delivery-method:hover p {
  color: var(--color-primary);
}
.delivery-method.active {
  border: 2px solid var(--color-primary);
}
.delivery-method.active p {
  color: var(--color-primary);
}
.delivery-method__section {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
}
.delivery-method__group {
  max-width: 554px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .delivery-method__group {
    justify-content: space-between;
  }
}
.delivery-method__icon {
  --width:74px;
  width: var(--width);
  height: var(--width);
}
.delivery-method form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.delivery-method form__input {
  width: 100%;
}

.checkout__form {
  display: flex;
  flex-direction: column;
  max-width: 45.2vw;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .checkout__form {
    max-width: 100%;
  }
}
.checkout__form textarea {
  max-width: 100%;
}
.checkout__form .delivery-method__section {
  margin-bottom: 30px;
}

#page-checkout .order-summary__section {
  max-width: 36.1vw;
}
@media screen and (max-width: 992px) {
  #page-checkout .order-summary__section {
    max-width: 100%;
  }
}
#page-checkout #payment-selection,
#page-checkout .payment-tab .payment-option {
  box-shadow: 0px 8px 9px 0px #b6b6b6;
  box-shadow: unset !important;
}
#page-checkout .payment-tab {
  text-align: left;
}
#page-checkout #page-checkout .payment-tab {
  margin: unset;
}
#page-checkout .payment-info {
  clear: both;
}

#page-checkout checkout__detail {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  #page-checkout checkout__detail {
    flex-direction: column;
    gap: 0px;
  }
}
#page-checkout .payment {
  display: flex;
  flex-direction: column;
}
#page-checkout .payment-tab {
  display: inline-block;
  margin: 0px auto;
}
#page-checkout .cart-item-list__container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#page-checkout .cart-item-card__image {
  width: 100%;
  height: 100%;
  min-width: 135px;
  max-width: 135px;
}
#page-checkout .payment {
  width: 88vw;
  margin: 0px auto 30px auto;
  max-width: 1280px;
}
@media screen and (max-width: 992px) {
  #page-checkout .payment {
    width: 92vw;
  }
}
#page-checkout .checkout__detail {
  width: 88vw;
  margin: 0px auto 30px auto;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  #page-checkout .checkout__detail {
    width: 92vw;
    flex-direction: column;
  }
}

#page-thankyou {
  width: 100%;
  margin: 0px auto;
}
#page-thankyou .order-info {
  border: solid 1px var(--color-line);
  border-bottom: 0px !important;
}
#page-thankyou .order-info.total {
  border-top: 0px !important;
  border-bottom: 0px !important;
}
#page-thankyou .order-info.tnc {
  border-bottom: solid 1px var(--color-line) !important;
}
#page-thankyou #suggestion-list .section__header {
  max-width: 100%;
}
#page-thankyou .page__content {
  flex-direction: column;
}
#page-thankyou .section__header {
  width: 100%;
  max-width: 628px;
  margin: 0px auto;
}
@media screen and (max-width: 992px) {
  #page-thankyou .section__header {
    padding: 50px 0px 30px 0px;
    width: 92vw;
  }
}
#page-thankyou .section__desc {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  #page-thankyou .section__desc {
    width: 80vw;
  }
}
#page-thankyou .cart-item__section {
  border: 0px;
  padding-top: 0px;
}
#page-thankyou .order-info__title {
  padding: 0px;
}
#page-thankyou .order-info .order-info__subtotal-title {
  margin-bottom: 0px;
}
#page-thankyou .order-info .order-info__subtotal-line {
  border-bottom: 1px solid var(--color-line);
  width: calc(100% - 73px);
  margin: 0px auto;
}
#page-thankyou .order-info .order-info__header {
  padding: 20px 40px 30px 40px;
}

.order-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 628px;
}
.order-info__section {
  display: flex;
  flex-direction: column;
  max-width: 628px;
  margin: 0px auto;
}
@media screen and (max-width: 992px) {
  .order-info__section {
    width: 92vw;
  }
}
.order-info__title {
  padding: 50px 40px 30px 40px;
}
.order-info__header {
  padding: 50px 40px 30px 40px;
}
.order-info__content {
  padding: 30px 40px 30px 40px;
}
.order-info.product {
  border-bottom: 0px !important;
}
.order-info.tnc {
  border-top: 0px !important;
}
.order-info.subtotal {
  background-color: #f6f6f6;
  border-top: 0px !important;
  border-bottom: 0px !important;
}
.order-info.total {
  background-color: #f6f6f6;
  border-bottom: 0px !important;
}
.order-info__title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06px;
  line-height: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .order-info__title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.order-info__title-section {
  padding: 20px 40px 20px 40px;
  background-color: unset;
}
.order-info__title-section .order-info__title {
  margin-bottom: 0px;
}
.order-info__subtotal-title {
  padding: 30px 40px 20px 40px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06px;
  line-height: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .order-info__subtotal-title {
    padding: 20px 40px 20px 40px;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.order-info__logo {
  width: 21px;
  height: 21px;
}
.order-info__field-merchant td:last-child div {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}
.order-info__field-merchant td:last-child div:last-child {
  margin-bottom: 0px;
}
.order-info__table {
  border-collapse: separate;
  border-spacing: 0 10px;
  width: 100%;
}
.order-info__table td {
  vertical-align: top;
}
.order-info__table td:first-child {
  font-weight: bold;
  white-space: nowrap;
  padding-right: 30px;
}
.order-info__table.total {
  width: 100%;
}
.order-info__table.subtotal {
  width: 100%;
}
.order-info__qrcode {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.order-info__qrcode-desc {
  font-weight: bold;
}
.order-info__qrcode-code {
  text-align: center;
}
.order-info__qrcode img {
  width: 170px;
  height: 170px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--color-line);
}
@media screen and (max-width: 992px) {
  .order-info__qrcode img {
    width: 300px;
    height: 300px;
  }
}
.order-info__subtotal {
  font-size: 16px;
  letter-spacing: 0.04px;
  line-height: 19px;
  width: 100%;
}
.order-info__subtotal .key:first-child {
  text-align: left;
  font-weight: 400;
}
.order-info__subtotal .value {
  text-align: right;
}
.order-info__subtotal.total {
  font-weight: bold;
}
.order-info__subtotal.total .key:first-child {
  font-size: 16px;
  font-weight: bold;
}
.order-info__subtotal.total .value {
  font-size: 22px;
}
.order-info__tnc-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}
.order-info__tnc-content {
  font-size: 14px;
}
.order-info__continue-btn {
  margin: 40px auto 80px auto;
}
@media screen and (max-width: 768px) {
  .order-info__continue-btn {
    margin: 30px auto 40px auto;
  }
}

.discount-code__form-group .discount-code__enable {
  display: none;
}
.discount-code__form-group .discount-code__disable {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.discount-code__form-group.enable .discount-code__enable {
  display: flex;
  align-items: flex-end;
}
.discount-code__form-group.enable .discount-code__disable {
  display: none;
}
.discount-code__input-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.discount-code__input-group .btn {
  height: auto;
  width: auto;
  min-width: auto;
}
.discount-code__input-error {
  color: red;
  display: none;
}
.discount-code__input-error.undefined {
  display: flex;
}
.discount-code__section {
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  gap: 10px;
}
.discount-code__section * {
  font-size: 16px;
  letter-spacing: 0.04px;
  line-height: 19px;
}
@media screen and (max-width: 992px) {
  .discount-code__section * {
    font-size: 14px;
  }
}
.discount-code__enable {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.discount-code__enable-text {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  line-height: 20px;
}
.discount-code__enable-text * {
  line-height: 20px;
}
.discount-code__enable-remove {
  margin-left: 1rem;
}
.discount-code__enable-discount {
  display: flex;
  flex-direction: row;
  color: #D83914;
}
.discount-code__enable-discount * {
  color: #D83914;
}

.crm-coupon .container {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  max-width: 550px;
  box-shadow: none;
  border-radius: 10px;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2);
  margin: 20px auto;
}
.crm-coupon .card {
  width: 550px;
  height: 180px;
  border-radius: 5px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #fffff4;
  padding: 10px 10px;
  display: flex;
  position: relative;
}
.crm-coupon .card::after {
  display: none;
  position: absolute;
  content: "";
  height: 40px;
  right: -20px;
  border-radius: 40px;
  z-index: 1;
  top: 70px;
  background-color: #f2f2f2;
  border: 1px #f2f2f2 solid;
  width: 40px;
}
.crm-coupon .main {
  display: flex;
  justify-content: space-between;
  padding-left: 190px;
  align-items: center;
}
.crm-coupon .copy-button {
  display: flex;
  justify-content: space-between;
  padding-left: 190px;
  align-items: center;
  margin: 12px 0 -5px 0;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #e1e1e1;
}
.crm-coupon .copy-button input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
}
.crm-coupon .copy-button button {
  padding: 5px 20px;
  background-color: #dc143c;
  color: #fff;
  border: 1px solid transparent;
}
.crm-coupon .co-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 180px;
  max-height: 180px;
  background-size: cover;
}
.crm-coupon .content h1 {
  font-size: 30px;
  color: #565656;
}
.crm-coupon .content h1 span {
  font-size: 18px;
}
.crm-coupon .content p {
  font-size: 16px;
  color: #696969;
}
.crm-coupon .content p.sm {
  font-size: 12px;
}
.crm-coupon .buy {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 20px;
  background-color: #dc143c;
}

.crm-coupon .vertical {
  border-left: 5px dotted #4a4a4a;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.crm-coupon.content h2 {
  font-size: 18px;
  color: #565656;
  text-transform: uppercase;
}

.crm-coupon.used {
  filter: grayscale(60%);
}

@media screen and (max-width: 768px) {
  .crm-coupon {
    width: 375px;
    height: 150px;
    margin: 0px auto;
    height: auto;
  }
  .crm-coupon .card {
    width: 375px;
    height: 150px;
    padding-right: 20px;
  }
  .crm-coupon .card::after {
    display: none;
  }
  .crm-coupon .co-img {
    max-width: 150px;
    max-height: 150px;
  }
  .crm-coupon .main {
    padding-left: 170px;
  }
  .crm-coupon .copy-button {
    padding-left: 170px;
  }
  .crm-coupon .content h1 {
    font-size: 20px;
  }
  .crm-coupon .content p {
    font-size: 12px;
  }
  .crm-coupon .content p.sm {
    font-size: 10px;
  }
}
.floating-btn {
  --b-size: 4rem;
  --size: 0.8rem;
  --font-color: #FFFFFF;
  background-color: var(--color-secondary);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 1rem;
  color: var(--font-color);
  width: var(--b-size);
  height: var(--b-size);
  font-weight: normal;
  font-size: 10px;
  position: fixed;
  bottom: 3rem;
  right: 1.5rem;
  cursor: pointer;
  z-index: 3;
  text-align: center;
  transition: 0.4s ease;
  z-index: 9;
  font-size: 16px;
  font-weight: 700;
}
.floating-btn:hover {
  transform: scale(1.1);
}
.floating-btn:hover .g-icon-arrow--up:hover {
  transform: rotate(45deg);
}
.floating-btn .g-icon-arrow--up {
  border-color: var(--font-color);
}
.floating-btn .g-icon-arrow--up:hover, .floating-btn .g-icon-arrow--up:focus-visible {
  transform: none;
}
.floating-btn__redirect {
  top: 60%;
  width: 90px;
  height: 90px;
  background-image: url("");
  background-size: cover;
}
.floating-btn.hidden {
  display: none;
}

a.floating-btn:hover span[class^=g-icon], a.floating-btn:focus-visible span[class^=g-icon] {
  transform: rotate(45deg);
}
a.floating-btn span[class^=g-icon] {
  transition: 0.4s ease;
}

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