:root {
  --theme-color: #82e600;
  --header-max-height-desktop: 130px;
  --header-main-height-desktop: 80px;
  --header-max-height-mobile: 96px;
  --header-main-height-mobile: 56px;
  --alert-color: #fa3c00;
}

/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px; /* fixed base for rem fallback – not used for text sizes anymore */
}

a{text-decoration: none;}

body {
  font-family: Outfit, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
}

/* Heading sizes */
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

/* Utility classes */
.light-font { font-weight: 300; }
.book-font, .regular-font { font-weight: 400; }
.medium-font { font-weight: 500; }
.black-font, .semibold-font { font-weight: 600; }
.bold-font { font-weight: 700; }
.one-line-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.two-line-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

/* Error message */
.v-error-message {
  color: var(--alert-color);
  display: none;
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}
@media screen and (min-width: 1280px) {
  .v-error-message {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }
}

/* Alert overlay */
.v-alert {
  align-items: center;
  background-color: rgba(0,0,0,.5);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 101;
}
.v-alert.show { display: flex; }
.v-alert .icon {
  font-size: 30px;
  position: absolute;
  right: 0;
  top: -15px;
}
.v-alert-body {
  background-color: #fff;
  border-radius: 4px;
  max-width: 608px;
  padding: 44px 18px 15px;
  position: relative;
  text-align: center;
  width: 304px;
}
.v-alert-content {
  color: #333;
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 1280px) {
  .v-alert .icon {
    font-size: 28px;
    right: 16px;
    top: 8px;
  }
  .v-alert-body {
    border-radius: 20px;
    max-width: none;
    padding: 40px 65px 28px;
    width: 370px;
  }
  .v-alert-content {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Checkbox */
.o-checkbox {
  flex-shrink: 0;
  height: 18px;
  position: relative;
  width: 18px;
}
.o-checkbox input {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.o-checkbox img {
  display: block;
  height: 100%;
  width: 100% !important;
}
@media screen and (min-width: 1280px) {
  .o-checkbox {
    height: 18px !important;
    width: 18px !important;
  }
}

.v-checkbox {
  display: inline-block;
  height: 20px;
  position: relative;
  vertical-align: middle;
  width: 20px;
}
.v-checkbox input {
  border: 1px solid #333;
  height: 20px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 20px;
  z-index: 2;
}
.v-checkbox input + span {
  display: none;
  font-size: 20px;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
.v-checkbox input:checked { opacity: 0; }
.v-checkbox input:checked + span { display: inline-block; }
@media screen and (min-width: 1280px) {
  .v-checkbox, .v-checkbox input {
    height: 16px;
    width: 16px;
  }
  .v-checkbox input + span { font-size: 18px; }
}

/* Confirm dialog */
.v-confirm {
  background-color: rgba(0,0,0,.8);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
}
.v-confirm.show {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v-confirm .v-confirm-main {
  background-color: #fff;
  border-radius: 6px;
  color: #000;
  max-width: 526px;
  padding: 16px 20px 24px;
  text-align: center;
  width: 263px;
}
.v-confirm .v-confirm-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  position: relative;
}
.v-confirm .v-confirm-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.v-confirm .v-confirm-close {
  position: absolute;
  right: 0;
  top: 0;
}
.v-confirm .v-confirm-icon {
  display: block;
  height: 18px;
  width: 18px;
}
.v-confirm .v-confirm-body { padding: 20px 0; }
.v-confirm .v-confirm-content {
  font-size: 14px;
  font-weight: 300;
}
.v-confirm .v-confirm-footer {
  display: flex;
  font-size: 0;
}
.v-confirm .v-confirm-no, .v-confirm .v-confirm-yes {
  border: 1px solid #eee;
  border-radius: 6px;
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  height: 36px;
}
.v-confirm .v-confirm-yes {
  background-color: #000;
  color: #fff;
  margin-left: 12px;
}
.v-confirm .v-confirm-no {
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 1280px) {
  .v-confirm .v-confirm-main {
    border-radius: 18px;
    padding: 24px 40px 40px;
    width: 520px;
  }
  .v-confirm .v-confirm-header {
    border-bottom-width: 1px;
    padding-bottom: 24px;
  }
  .v-confirm .v-confirm-title {
    font-size: 24px;
    line-height: 24px;
  }
  .v-confirm .v-confirm-icon {
    height: 24px;
    width: 24px;
  }
  .v-confirm .v-confirm-body {
    padding: 24px 0 40px;
  }
  .v-confirm .v-confirm-content {
    font-size: 18px;
  }
  .v-confirm .v-confirm-no, .v-confirm .v-confirm-yes {
    border-radius: 6px;
    border-width: 1px;
    font-size: 20px;
    height: 48px;
  }
  .v-confirm .v-confirm-yes {
    margin-left: 20px;
  }
}
[lang=ar] .v-confirm .v-confirm-yes {
  margin-left: 0;
  margin-right: 12px;
}
@media screen and (min-width: 1280px) {
  [lang=ar] .v-confirm .v-confirm-yes {
    margin-right: 20px;
  }
}

/* Loading */
.v-loading { position: relative; }
.v-loading-mask {
  background-color: rgba(0,0,0,.5);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
.v-loading-spinner {
  margin-top: -24px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.v-loading-loader {
  animation: rotate 1s linear infinite;
  border-radius: 50%;
  display: inline-block;
  height: 48px;
  position: relative;
  width: 48px;
}
.v-loading-loader:before, .v-loading-loader:after {
  animation: prixClipFix 2s linear infinite;
  border: 5px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  inset: 0;
  position: absolute;
}
.v-loading-loader:after {
  animation: prixClipFix 2s linear infinite, rotate .5s linear infinite reverse;
  border-color: var(--theme-color);
  inset: 6px;
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  to { transform: rotate(1turn); }
}
@keyframes prixClipFix {
  0% { clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0); }
  25% { clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0); }
  50% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%); }
  75% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%); }
  to { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0); }
}

/* Sold out */
.v-sold-out {
  align-items: center;
  background-color: rgba(0,0,0,.2);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.v-sold-out .sold-out-content {
  color: #fff;
  font-weight: 600;
  text-align: center;
}

/* Quantity selector */
.site-qty {
  position: relative;
  display: inline-block;
  width: 120px;
}
.site-qty input {
  border: none;
  border-radius: 4.5px;
  font-family: inherit;
  font-size: 14px;
  text-align: center;
  width: 40px;
}
.site-qty .minus-btn, .site-qty .plus-btn {
  background-color: #f7f7f7;
  border: 0;
  border-radius: 3px;
  color: #111;
  cursor: pointer;
  height: 28px;
  padding: 5px;
  width: 28px;
}
.site-qty .minus-btn:disabled, .site-qty .plus-btn:disabled {
  background-color: #f9f9f9 !important;
  color: #ddd;
}
.site-qty .minus-btn span, .site-qty .plus-btn span {
  display: inline-block;
  font-size: 18px;
  line-height: 14px;
  transform: scaleX(.5);
  vertical-align: middle;
}
.site-qty .minus-btn.minus-btn, .site-qty .plus-btn.minus-btn { left: 0; }
.site-qty .minus-btn.plus-btn, .site-qty .plus-btn.plus-btn { right: 0; }
@media screen and (min-width: 1280px) {
  .site-qty {
    display: inline-block;
    width: 120px;
  }
  .site-qty input {
    font-size: 14px;
    height: 26px;
    width: 40px;
  }
  .site-qty .minus-btn, .site-qty .plus-btn {
    height: 36px;
    padding: 9px;
    width: 36px;
  }
  .site-qty .minus-btn span, .site-qty .plus-btn span {
    font-size: 18px;
  }
}
[lang=ar] .site-qty .minus-btn, [lang=ar] .site-qty .plus-btn {
  direction: ltr;
}

/* Cart */
.v-cart .cart-shadow {
  background-color: rgba(0,0,0,.5);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 4;
}
.v-cart .cart-shadow.show { display: block; }
.v-cart .v-cart-checkbox {
  align-items: center;
  display: flex;
}
.v-cart .o-checkbox {
  flex-shrink: 0;
  height: 18px;
  position: relative;
  width: 18px;
}
.v-cart .o-checkbox input {
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
}
.v-cart .o-checkbox img {
  height: 100%;
  width: 100% !important;
}
.v-cart .cart-main {
  background-color: #fff;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  line-height: normal;
  margin-left: 0 !important;
  overflow-y: auto;
  padding: 0 7.5px;
  position: fixed;
  right: -100%;
  top: 0;
  transition: right .3s ease-in-out;
  width: calc(100% - 15px);
  z-index: 4;
}
.v-cart .cart-main.show {
  right: 0;
  transition: right .3s ease-in-out;
}
.v-cart .cart-header {
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  left: 0;
  margin-bottom: 15px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 3;
}
.v-cart .cart-header-title {
  color: #333;
  display: block;
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  padding: 17.5px 0;
}
.v-cart .cart-header-close {
  flex: 0 0 auto;
  height: 24px;
}
.v-cart .cart-header-close .icon { font-size: 24px; }
.v-cart .cart-body { flex-grow: 1; }
.v-cart .header-product {
  display: flex;
  margin-bottom: 15px;
}
.v-cart .header-product .v-checkbox { flex: 0 0 auto; }
.v-cart .header-product .header-product-img {
  flex: 0 0 auto;
  margin: 0 10px;
  position: relative;
}
.v-cart .header-product .header-product-img > img {
  background-color: #f8f8f8;
  height: 120px;
  width: 120px;
}
.v-cart .header-product .v-sold-out { font-size: 14px; }
.v-cart .header-product .header-product-desc {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.v-cart .header-product .header-product-desc a, .v-cart .header-product h5 {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v-cart .header-product h5 {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  height: 16px;
  line-height: 16px;
  overflow: hidden;
  width: 100%;
}
.v-cart .header-product .attr-box {
  color: #666;
  flex: 1;
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}
.v-cart .header-product .price-box { line-height: 21px; }
.v-cart .header-product .price-box span {
  color: #111;
  font-size: 16px;
  font-weight: 600;
}
.v-cart .header-product .price-box del {
  color: #666;
  font-size: 12px;
  font-weight: 300;
  margin-left: 5px;
}
.v-cart .header-product .flex-box {
  align-items: center;
  display: flex;
  justify-content: space-between;
  line-height: normal;
}
.v-cart .header-product .cart-icon-del { width: 24px; }
.v-cart .header-product .site-qty { flex: 0 0 auto; }
.v-cart .header-product .site-qty + a {
  flex: 1 1 auto;
  text-align: right;
}
.v-cart .header-product .site-qty + a span { font-size: 20px; }
.v-cart .header-product.header-product-soldout .v-price, .v-cart .header-product.header-product-soldout h5 {
  color: #999;
}
.v-cart .cart-footer {
  background-color: #fff;
  bottom: 0;
  left: 0;
  position: sticky;
  right: 0;
  z-index: 2;
}
.v-cart .footer-operate {
  align-items: end;
  display: flex;
  line-height: normal;
}
.v-cart .footer-operate .check-all {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
}
.v-cart .footer-operate .check-all label {
  color: #333;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  margin-left: 10px;
  vertical-align: middle;
}
.v-cart .footer-operate .price-box { flex: 0 0 auto; }
.v-cart .footer-operate .price-box h5 {
  color: #666;
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
.v-cart .footer-operate .price-box p {
  font-weight: 500;
  margin-top: 5px;
}
.v-cart .footer-operate .price-box span {
  color: #111;
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}
.v-cart .footer-operate .price-box del {
  color: #666;
  display: inline-block;
  font-size: 16px;
  margin-left: 10px;
  vertical-align: middle;
}
.v-cart .footer-btn { padding-bottom: 15px; }
.v-cart .btn-view-cart, .v-cart .btn-view-checkout {
  border-radius: 22.5px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}
.v-cart .btn-view-cart {
  background-color: #fff;
  border: 1px solid #111;
  color: #111;
  height: 45px;
  line-height: 45px;
}
.v-cart .btn-view-checkout {
  background-color: #111;
  border: 0;
  color: #fff;
  font-family: inherit;
  height: 45px;
  line-height: 45px;
}
.v-cart .cart-empty-tip {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.v-cart .cart-empty-tip p { padding: 15px 0; }
.v-cart .cart-empty-tip .icon { font-size: 28px; }
.v-cart .cart-empty-tip .icon:before { color: #111; }
@media screen and (min-width: 1280px) {
  .v-cart .cart-main {
    padding: 0 15px;
    right: -466px;
    width: 436px;
  }
  .v-cart .o-checkbox {
    height: 24px;
    width: 24px;
  }
  .v-cart .cart-header { margin-bottom: 20px; }
  .v-cart .cart-header-title {
    font-size: 16px;
    line-height: 16px;
    padding: 18px 0;
  }
  .v-cart .cart-header-close { height: 24px; }
  .v-cart .cart-header-close .icon { font-size: 24px; }
  .v-cart .header-product { margin-bottom: 30px; }
  .v-cart .header-product .header-product-img { margin: 0 10px; }
  .v-cart .header-product .header-product-img > img {
    height: 140px;
    width: 140px;
  }
  .v-cart .header-product .v-sold-out { font-size: 14px; }
  .v-cart .header-product h5 {
    font-size: 18px;
    height: 27px;
    line-height: 27px;
    width: 240px;
  }
  .v-cart .header-product .attr-box {
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
  }
  .v-cart .header-product .price-box { line-height: 27px; margin-top: 10px; }
  .v-cart .header-product .price-box span { font-size: 20px; }
  .v-cart .header-product .price-box del {
    font-size: 16px;
    margin-left: 10px;
  }
  .v-cart .header-product .cart-icon-del { width: 24px; }
  .v-cart .header-product .site-qty + a span { font-size: 24px; }
  .v-cart .footer-operate .check-all label {
    font-size: 14px;
    line-height: 20px;
    margin-left: 10px;
  }
  .v-cart .footer-operate .price-box h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .v-cart .footer-operate .price-box p { margin-top: 8px; }
  .v-cart .footer-operate .price-box span { font-size: 28px; }
  .v-cart .footer-operate .price-box del {
    font-size: 16px;
    margin-left: 10px;
  }
  .v-cart .footer-btn { padding-bottom: 15px; }
  .v-cart .btn-view-cart, .v-cart .btn-view-checkout {
    border-radius: 24px;
    font-size: 16px;
    margin-top: 18px;
  }
  .v-cart .btn-view-cart {
    height: 44px;
    line-height: 44px;
  }
  .v-cart .btn-view-checkout {
    height: 46px;
    line-height: 46px;
  }
  .v-cart .cart-empty-tip {
    font-size: 16px;
  }
  .v-cart .cart-empty-tip p { padding: 18px 0; }
  .v-cart .cart-empty-tip .icon { font-size: 36px; }
}
[lang=ar] .v-cart {
  left: -100%;
  right: auto;
}
[lang=ar] .v-cart, [lang=ar] .v-cart.show {
  transition: left .3s ease-in-out;
}
[lang=ar] .v-cart.show {
  left: 0;
}
[lang=ar] .v-cart .header-product .site-qty + a {
  text-align: left;
}
[lang=ar] .v-cart .footer-operate .check-all label {
  margin-left: 0;
  margin-right: 10px;
}

/* Search */
.v-search-container {
  background-color: #fff;
  bottom: 0;
  left: 0;
  margin-left: 0 !important;
  position: fixed;
  right: 0;
  top: 100%;
  transition: top .2s linear;
  z-index: 4;
}
.v-search-container.visible {
  top: 0;
  transition: all .2s linear;
}
.site-header .v-search-container.visible {
  top: var(--header-main-height-mobile);
}
.site-header.with-ad .v-search-container.visible {
  top: var(--header-max-height-mobile);
}
.v-search-form {
  align-items: center;
  border: 1px solid #979797;
  border-radius: 18.75px;
  display: flex;
  height: 37.5px;
  line-height: 37.5px;
  margin: 20px 10px;
  padding: 0 5px;
}
.v-search-input {
  border: 0;
  color: #999;
  flex: 1 1 auto;
  font-size: 12px;
  height: calc(37.5px - 2px);
  margin-left: 18.75px;
}
.v-search-submit {
  background-color: transparent;
  border: 0;
  display: flex;
  flex: 0 0 auto;
  font-size: 30px;
  justify-content: center;
}
.v-search-cancel {
  bottom: 37.5px;
  left: calc(50% - 18.75px);
  line-height: normal;
  position: absolute;
}
.v-search-cancel .icon { font-size: 37.5px; }
.v-search-title {
  color: #333;
  font-weight: 600;
  margin: 0 10px;
  font-size: 13px;
  line-height: 18px;
}
.v-search-links {
  font-size: 13px;
  line-height: 18px;
  margin: 5px 10px;
  align-items: center;
  display: flex;
}
.v-search-link {
  color: #333;
  flex: 0 0 calc(50% - 10px);
  margin: 5px;
  display: flex;
  align-items: center;
}
.v-search-link img {
  flex: 0 0 auto;
  height: 32px;
  margin-right: 5px;
  width: 32px;
}
.v-search-link span {
  flex: 1 1 auto;
}
@media screen and (min-width: 1280px) {
  .v-search-container {
    border-radius: 4px;
    bottom: auto;
    box-shadow: -2px 2px 9px 0 rgba(0,0,0,.1);
    left: auto;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: -180px;
    transition: max-height .3s ease-in-out;
    width: 480px;
  }
  .v-search-container.visible {
    max-height: 100vh;
    transition: max-height .5s ease-in-out;
  }
  .site-header .v-search-container, .site-header .v-search-container.visible, .site-header.with-ad .v-search-container, .site-header.with-ad .v-search-container.visible {
    top: 80px;
  }
  .v-search-form {
    border-radius: 19px;
    height: 38px;
    line-height: 38px;
    margin: 20px;
    padding: 0 10px;
  }
  .v-search-form .icon-form-search { font-size: 36px; }
  .v-search-input {
    font-size: 16px;
    height: 36px;
  }
  .v-search-cancel {
    display: block;
    padding-bottom: 20px;
    position: static !important;
    text-align: center;
  }
  .v-search-cancel .icon { font-size: 28px; }
  .v-search-title {
    font-size: 16px;
    line-height: 24px;
    margin: 0 20px;
  }
  .v-search-links {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 20px;
  }
  .v-search-link {
    flex: 0 0 calc(50% - 20px);
    margin: 10px;
  }
  .v-search-link img {
    height: 48px;
    margin-right: 10px;
    width: 48px;
  }
}
[lang=ar] .v-search-input {
  margin-left: 0;
  margin-right: 18.75px;
}
@media screen and (min-width: 1280px) {
  [lang=ar] .v-search-container {
    left: 10px;
    right: auto;
  }
}

/* ========== HEADER ========== */
.site-header {
  flex: 0 0 auto;
  position: static;
  z-index: 3;
}
@media screen and (max-width: 1279px) {
  .site-header {
    max-width: 750px;
    position: static;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .site-header.fixed { position: fixed; }
  .site-header.fixed + div { margin-top: var(--header-main-height-mobile); }
  .site-header.fixed.with-ad + div { margin-top: var(--header-max-height-mobile); }
}
.site-header .hot-cat-tag, .site-header .new-cat-tag {
  border-radius: 13px;
  display: inline-block;
  font-size: 8px;
  font-weight: 600;
  line-height: 10px;
  padding: 3px 3.5px;
  vertical-align: middle;
}
.site-header .hot-cat-tag {
  background-color: #fd1d29;
  color: #fff;
}
.site-header .new-cat-tag {
  background-color: #020202;
  color: var(--theme-color);
}
.site-header .header-notice {
  background-color: #343434;
  color: #fff;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  overflow-y: hidden;
  padding-right: 27px;
  position: relative;
  text-align: center;
  width: calc(100% - 27px);
}
.site-header .header-notice.christmas { background-color: #890707; }
.site-header .header-notice .icon {
  font-size: 18px;
  position: absolute;
  right: 7.5px;
  top: 11px;
}
.site-header .header-notice img {
  height: 40px;
  left: 50%;
  margin-left: -187.5px;
  position: absolute;
  top: 0;
}
.site-header .header-notice a {
  color: var(--theme-color);
  text-decoration: underline;
}
.site-header .header-marquee > div { white-space: nowrap; }
.site-header .header-main {
  background-color: #1d1d1d;
  height: 56px;
  line-height: 56px;
  width: 100%;
}
.site-header .header-main > div {
  font-size: 0;
  margin-left: 21px;
}
.site-header .header-category-header {
  background-color: #1d1d1d;
  height: 56px;
  line-height: 56px;
  width: 100%;
}
.site-header .header-category-header > div {
  font-size: 0;
  position: relative;
  text-align: center;
}
.site-header .header-category-header .header-category {
  left: 10px;
  position: absolute;
  top: 0;
}
.site-header .header-content {
  display: flex;
  margin: 0 21px;
}
.site-header .header-category .icon {
  display: inline-block;
  font-size: 29px;
  line-height: 56px;
  vertical-align: middle;
}
.site-header .header-link img {
  display: inline-block;
  height: 14px;
  vertical-align: middle;
  will-change: transform;
}
.site-header .header-category {
  height: 56px;
}
.site-header .header-go-back {
  align-items: center;
  display: flex;
}
.site-header .header-logo {
  display: inline-block;
  flex: 1 1 auto;
  vertical-align: top;
}
.site-header .header-logo.center { text-align: center; }
.site-header .header-logo img {
  display: inline-block;
  vertical-align: middle;
  width: 77px;
}
.site-header .header-logo img.christmas {
  height: auto;
  margin-top: -2.5px;
}
@media screen and (max-width: 750px) {
  .site-header .header-category-container {
    background-color: #fff;
    bottom: 0;
    left: 100%;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: left .3s linear;
    width: 100%;
    z-index: 2;
  }
  .site-header .header-category-container.show {
    left: 0;
    transition: left .3s linear;
  }
}
@media screen and (min-width: 751px) {
  .site-header .header-category-container {
    background-color: #fff;
    bottom: 0;
    left: 100%;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: left .3s linear;
    width: 750px;
    z-index: 3;
  }
  .site-header .header-category-container.show {
    left: calc(50% - 375px);
    transition: left .3s linear;
  }
}
.site-header .header-nav {
  left: 0;
  padding: 8px 10px 0;
  position: absolute;
  right: 0;
  top: 56px;
}
.site-header .header-nav ul { list-style-type: none; }
.site-header .sub { position: relative; }
.site-header .sub > span { display: inline-block; }
.site-header .sub.flex-box { display: flex; }
.site-header .sub.flex-box > span:first-child { flex: 0 0 auto; }
.site-header .sub.flex-box > span:last-child {
  flex: 1 1 auto;
  padding-right: 30px;
  text-align: right;
}
.site-header .sub.flex-box > span:last-child img { width: 16px; }
.site-header .sub.show:after {
  bottom: 14px;
  transform: rotate(135deg);
  transition: all .1s linear;
}
.site-header .sub:after {
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
  bottom: 22.5px;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 4px;
  transform: rotate(-45deg);
  transition: bottom .1s linear, transform .1s linear;
  width: 8px;
}
.site-header .header-nav-top > li:hover > div {
  max-height: 100vh;
  transition: max-height .8s ease-in-out;
}
.site-header .top-link {
  border-bottom: 1px solid #ddd;
  color: #333;
  display: block;
  font-size: 13px;
  font-weight: 600;
  height: 49px;
  line-height: 49px;
  text-transform: uppercase;
}
.site-header .top-link-text {
  display: inline-block;
  line-height: 13px;
  vertical-align: middle;
}
.site-header .header-mark {
  display: inline-block;
  height: 18px;
  vertical-align: middle;
  width: 18px;
}
.site-header .header-support-item {
  border-bottom: 1px solid #ddd;
  color: #333;
  display: block;
  font-size: 13px;
  font-weight: 600;
  height: auto;
  line-height: normal;
  padding: 10px 0 10px 8px;
}
.site-header .header-support-item span { display: block; }
.site-header .header-support-banner {
  display: block;
  height: 32px;
  margin-top: 10px;
}
.site-header .header-nav-text {
  display: inline-block;
  margin: 0 5px;
}
.site-header .header-nav-sub { display: none; }
.site-header .header-nav-sub.show { display: block; }
.site-header .header-nav-sub img { display: none; }
.site-header .suber {
  border-bottom: 1px solid #ddd;
  color: #333;
  display: block;
  font-size: 12px;
  font-weight: 600;
  height: 49px;
  line-height: 49px;
  padding-left: 8px;
  width: 100%;
}
.site-header .header-nav-link { display: none; }
.site-header .header-nav-toggle { position: relative; }
.site-header .header-nav-toggle.show:after {
  bottom: 14px;
  transform: rotate(135deg);
  transition: all .1s linear;
}
.site-header .header-nav-toggle:after {
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
  bottom: 20px;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 4px;
  transform: rotate(-45deg);
  transition: bottom .1s linear, transform .1s linear;
  width: 8px;
}
.site-header .header-nav-toggle .header-nav-icon {
  display: inline-block;
  height: 18px;
  vertical-align: middle;
  width: 18px;
}
.site-header .header-nav-suber {
  display: none;
  flex: 1 1 100%;
  padding: 6px 12px;
}
.site-header .header-nav-suber.show { display: block; }
.site-header .header-nav-suber a {
  border: 0;
  color: #333;
  display: block;
  font-size: 12px;
  font-weight: 400;
  height: 42px;
  line-height: 42px;
}
.site-header .header-nav-suber .header-nav-icon {
  display: inline-block;
  height: 18px;
  vertical-align: middle;
  width: 18px;
}
.site-header .header-link-box {
  display: inline-block;
  position: relative;
}
.site-header .header-link-box.app, .site-header .header-link-box.dropmenu { display: none; }
.site-header .header-link {
  display: inline-block;
  margin-left: 22.5px;
  position: relative;
  vertical-align: top;
}
.site-header .header-link .icon {
  font-size: 14px;
  line-height: 56px;
  vertical-align: middle;
}
.site-header .site-cart-num {
  background-color: var(--theme-color);
  border-radius: 50%;
  color: #fff;
  display: none;
  font-size: 14px;
  font-style: normal;
  height: 18px;
  line-height: 18px;
  position: absolute;
  right: -1.875px;
  text-align: center;
  top: 20.125px;
  transform-origin: 50% 50%;
  transition: transform .2s ease;
  width: 18px;
}
.site-header .desktop-currency-container, .site-header .desktop-language-container, .site-header .header-support-container {
  display: none;
}
.site-header .header-support-container.show { display: block; }
.site-header .header-language-container { border-bottom: 1px solid #ddd; }
.site-header .header-currency-container, .site-header .header-language-container {
  display: none;
}
.site-header .header-currency-container.show, .site-header .header-language-container.show {
  display: flex;
}
.site-header .header-currency-container, .site-header .header-language-container {
  flex-wrap: wrap;
  justify-content: center;
}
.site-header .header-currency-container button, .site-header .header-language-container button {
  background-color: #f7f8f8;
  border: 1px solid #f7f8f8;
  border-radius: 5px;
  flex: 0 0 90px;
  height: 27px;
  margin: 21px calc(16.66667% - 45px - 1px);
}
.site-header .header-currency-container button.current, .site-header .header-language-container button.current {
  border-color: var(--theme-color);
}
.site-header .header-currency-container button img, .site-header .header-language-container button img {
  border: 1px solid #ddd;
  margin-right: 6px;
  width: 16px;
}
.site-header .header-vip {
  align-items: center;
  display: flex;
  font-weight: 400;
  margin-top: 4px;
}
.site-header .header-vip-img {
  border-right: 1px solid #eee;
  height: 14px;
  margin-right: 6px;
  padding-right: 6px;
}
.site-header .header-vip-date {
  color: #999;
  font-size: 10px;
  line-height: 10px;
}
@media screen and (min-width: 1280px) {
  .site-header.with-ad .header-nav .header-nav-container, .site-header.with-ad .header-nav .header-support-container {
    top: var(--header-max-height-desktop);
  }
  .site-header .hot-cat-tag, .site-header .new-cat-tag {
    border-radius: 24px;
    font-size: 14px;
    line-height: 14px;
    margin-left: 6px;
    padding: 6px 6px 4px;
  }
  .site-header .header-notice {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding-right: 50px;
    width: calc(100% - 50px);
  }
  .site-header .header-notice .icon {
    font-size: 20px;
    right: 15px;
    top: 15px;
  }
  .site-header .header-notice img {
    height: 50px;
    left: 50%;
    margin-left: -960px;
  }
  .site-header .header-main {
    height: var(--header-main-height-desktop);
    line-height: var(--header-main-height-desktop);
  }
  .site-header .header-main.simplify { text-align: center; }
  .site-header .header-main .header-content {
    line-height: var(--header-main-height-desktop);
    margin: 0 60px;
  }
  .site-header .header-main .header-content > * {
    display: inline-block;
    font-size: 0;
    vertical-align: top;
  }
  .site-header .header-main .header-content > .header-category, .site-header .header-main .header-content > .header-go-back {
    display: none;
  }
  .site-header .header-logo { flex: 0 0 auto; }
  .site-header .header-logo img {
    height: 28px;
    margin-top: -3px;
    width: 135px;
  }
  .site-header .header-logo img.christmas { margin-top: -3px; }
  .site-header .header-category-container {
    background-color: transparent;
    flex: 1 1 auto;
    height: var(--header-main-height-desktop);
    overflow: hidden;
    position: static;
    width: auto;
  }
  .site-header .header-category-header { display: none; }
  .site-header .header-nav {
    display: inline-block;
    margin-left: 60px;
    padding: 0;
    position: static;
    vertical-align: top;
  }
  .site-header .header-nav ul { font-size: 0; }
  .site-header .header-nav li {
    display: inline-block;
    margin: 0 30px;
    vertical-align: middle;
  }
  .site-header .header-nav li.header-nav-currency, .site-header .header-nav li.header-nav-language {
    display: none;
  }
  .site-header .header-nav-top > li > a {
    font-weight: 600;
    letter-spacing: .5px;
  }
  .site-header .top-link {
    border-bottom: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: var(--header-main-height-desktop);
    line-height: var(--header-main-height-desktop);
    text-transform: none;
  }
  .site-header .top-link:hover { color: var(--theme-color); }
  .site-header .top-link-text {
    line-height: var(--header-main-height-desktop);
  }
  .site-header .header-mark {
    height: 18px;
    transform: translateY(-3px);
    width: 18px;
  }
  .site-header .sub {
    margin-right: 14px;
    position: relative;
  }
  .site-header .sub:hover:after {
    bottom: 32px;
    transform: rotate(135deg);
    transition: all .1s linear;
  }
  .site-header .sub:after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    bottom: 36px;
    content: "";
    display: block;
    height: 5px;
    position: absolute;
    right: -15px;
    transform: rotate(-45deg);
    transition: bottom .1s linear, transform .1s linear;
    width: 5px;
  }
  .site-header .header-support-item {
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-weight: 400;
    padding: 0 100px 20px 0;
  }
  .site-header .header-support-item:first-child { margin-top: 20px; }
  .site-header .header-support-item:hover span { color: var(--theme-color); }
  .site-header .header-support-item:last-child { border-bottom: 0; }
  .site-header .header-support-item span { color: #333; }
  .site-header .header-support-item + a { margin-top: 20px; }
  .site-header .header-support-banner {
    height: 40px;
    margin-top: 10px;
  }
  .site-header .header-nav-container {
    background-color: #fff;
    font-size: 0;
    left: 0;
    max-height: 0;
    overflow-y: hidden;
    position: absolute;
    right: 0;
    top: var(--header-main-height-desktop);
    transition: max-height .3s ease-in-out;
    z-index: 2;
  }
  .site-header .header-nav-sub {
    display: flex;
    margin: 0 auto;
    width: 1240px;
  }
  .site-header .header-nav-sub .suber {
    color: #111;
    display: block;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    padding-bottom: 15px;
    white-space: nowrap;
  }
  .site-header .header-nav-sub .suber:hover { color: var(--theme-color); }
  .site-header .header-nav-sub .header-nav-link { max-width: 220px; }
  .site-header .header-nav-sub .header-nav-toggle { display: none; }
  .site-header .header-nav-sub .header-nav-image {
    display: block;
    height: auto;
    width: 220px;
  }
  .site-header .header-nav-sub img {
    display: block;
    margin-top: 20px;
    width: 100%;
  }
  .site-header .header-nav-suber {
    display: block;
    line-height: 16px;
    margin-top: 20px;
    padding: 0;
    width: 220px;
  }
  .site-header .header-nav-suber li {
    margin: 0;
    padding-top: 0;
    width: 220px;
  }
  .site-header .header-nav-suber li.header-nav-all { display: none; }
  .site-header .header-nav-suber a {
    border: 0;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    height: auto;
    line-height: 16px;
    margin-bottom: 20px;
    padding-bottom: 0;
    white-space: nowrap;
  }
  .site-header .header-nav-suber a:hover { color: var(--theme-color); }
  .site-header .header-nav-suber .header-nav-icon { display: none; }
  .site-header .header-support-container {
    background-color: #fff;
    display: block;
    max-height: 0;
    overflow-y: hidden;
    padding: 0 20px;
    position: absolute;
    top: var(--header-main-height-desktop);
    transition: max-height .3s ease-in-out;
  }
  .site-header .header-link-box.dropmenu {
    display: inline-block;
    padding-right: 20px;
    text-align: center;
    width: 120px;
  }
  .site-header .header-link-box.dropmenu:hover .header-link {
    padding-right: 20px;
    width: 120px;
  }
  .site-header .header-link-box.dropmenu:hover .header-link:before {
    background-color: #141416;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 20px;
  }
  .site-header .header-link-box.dropmenu:hover .header-link span:after {
    bottom: 36px;
    transform: rotate(135deg);
    transition: bottom .1s linear, transform .1s linear;
  }
  .site-header .header-link-box.dropmenu:hover ul { display: block; }
  .site-header .header-link-box.dropmenu .header-link {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
  .site-header .header-link-box.dropmenu .header-link span:after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    bottom: 38px;
    content: "";
    display: block;
    height: 5px;
    position: absolute;
    right: -15px;
    transform: rotate(-45deg);
    transition: bottom .1s linear, transform .1s linear;
    width: 5px;
  }
  .site-header .header-link-box.app { display: inline-block; }
  .site-header .header-link {
    color: #fff;
    flex: 0 0 auto;
    font-size: 20px;
    padding: 0 18px;
  }
  .site-header .header-link img {
    height: 20px;
    line-height: var(--header-main-height-desktop);
    vertical-align: middle;
  }
  .site-header .header-link img.currency-icon {
    height: auto;
    position: relative;
    width: 24px;
  }
  .site-header .header-link span {
    display: inline-block;
    transform: translateY(.125em);
  }
  .site-header .header-link.header-link-category { display: none; }
  .site-header .site-cart-num {
    font-size: 12px;
    height: calc(18px - .125em);
    line-height: 18px;
    padding-top: .125em;
    right: 24px;
    top: 40px;
    width: 18px;
  }
  .site-header .header-vip { margin-top: 4px; }
  .site-header .header-vip-img {
    height: 18px;
    margin-right: 6px;
    padding-right: 6px;
  }
  .site-header .header-vip-date {
    font-size: 14px;
    line-height: 14px;
  }
}
.site-header .header-nav-sub {
  max-width: calc(100vw - 120px);
  width: fit-content;
}
.mobile-user-center {
  color: #333;
  display: none;
  line-height: 20px;
  list-style-type: none;
}
.mobile-user-center > li {
  margin: 0 10px;
  padding-bottom: 7.5px;
  padding-top: 7.5px;
}
.mobile-user-center > li:first-child {
  border-bottom: 1px solid #eee;
  margin-bottom: 7.5px;
  padding: 15px 0;
}
.mobile-user-center > li.mobile-user-center-signout {
  margin-top: 50px;
  text-align: center;
}
.mobile-user-center > li > span {
  font-size: 14px;
  font-weight: 600;
}
.mobile-user-center > li > a {
  color: #333;
  display: block;
  font-size: 12px;
  line-height: 18px;
  margin: 0 7.5px;
  position: relative;
}
.mobile-user-center > li > a:after {
  border-right: 1px solid #111;
  border-top: 1px solid #111;
  content: "";
  display: block;
  height: 6px;
  position: absolute;
  right: 0;
  top: 5.625px;
  transform: rotate(45deg);
  width: 6px;
}
.mobile-user-center > li > button {
  background-color: #111;
  border: 0;
  border-radius: 22.5px;
  color: #fff;
  font-size: 12px;
  height: 45px;
  max-width: 500px;
  width: 250px;
}
.mobile-user-center .point-tip {
  align-items: center;
  background: linear-gradient(180deg, rgba(130,230,0,.5), rgba(130,230,0,0));
  border-radius: 6px 6px 0 0;
  display: flex;
  height: 32px;
  margin-bottom: -9px;
  margin-top: 15px;
  padding: 0 8px;
  position: relative;
}
.mobile-user-center .point-tip:before {
  background-color: #f9fef2;
  border-radius: 6px 6px 0 0;
  content: "";
  display: block;
  height: calc(32px - 1px);
  left: .5px;
  position: absolute;
  right: .5px;
  top: .5px;
  z-index: 0;
}
.mobile-user-center .point-tip img {
  height: 12px;
  position: relative;
  width: 12px;
  z-index: 1;
}
.mobile-user-center .point-tip a {
  color: #000;
  font-size: 12px;
  padding: 3px 6px 0;
  position: relative;
  z-index: 1;
}
.desktop-user-center {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: -2px 2px 9px 0 rgba(0,0,0,.1);
  font-size: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  position: absolute;
  right: -45px;
  top: 80px;
  transition: all .3s ease-in-out;
  z-index: 4;
}
.desktop-user-center.visible {
  max-height: 100vh;
  padding-bottom: 8px;
  padding-top: 8px;
  transition: all .5s ease-in-out;
}
.desktop-user-center > li {
  color: #000;
  display: block;
  font-size: 16px;
  line-height: 18px;
  list-style-type: none;
  min-width: 200px;
  padding: 12px 0;
  white-space: nowrap;
}
.desktop-user-center > li:first-child {
  border-bottom: 1px solid #eee;
}
.desktop-user-center > li:first-child a { font-weight: 600; }
.desktop-user-center > li.desktop-user-center-signout {
  border-top: 1px solid #eee;
}
.desktop-user-center > li > span { font-weight: 600; }
.desktop-user-center > li a {
  color: #000;
  display: block;
}
.desktop-user-center > li a:hover { color: var(--theme-color); }
.desktop-user-center .point-tip {
  align-items: center;
  background: linear-gradient(180deg, rgba(130,230,0,.5), rgba(130,230,0,0));
  border-radius: 6px 6px 0 0;
  display: flex;
  height: 32px;
  margin-bottom: -6px;
  margin-top: 12px;
  padding: 0 8px;
  position: relative;
}
.desktop-user-center .point-tip:before {
  background-color: #f9fef2;
  border-radius: 6px 6px 0 0;
  content: "";
  display: block;
  height: 31px;
  left: .5px;
  position: absolute;
  right: .5px;
  top: .5px;
  z-index: 0;
}
.desktop-user-center .point-tip img {
  height: 12px;
  position: relative;
  width: 12px;
  z-index: 1;
}
.desktop-user-center .point-tip a {
  color: #000;
  font-size: 12px;
  font-weight: 400 !important;
  padding: 3px 6px 0;
  position: relative;
  z-index: 1;
}
.desktop-user-center .point-tip a:hover { color: #000; }
.desktop-currency-container, .desktop-language-container {
  font-size: 20px;
  left: 0;
  line-height: 54px;
  list-style-type: none;
  position: absolute;
  text-align: center;
  top: var(--header-main-height-desktop);
  width: 140px;
  z-index: 2;
}
.desktop-currency-container li:last-child a, .desktop-language-container li:last-child a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.desktop-currency-container a, .desktop-language-container a {
  background-color: #141416;
  color: #fff;
  display: block;
}
.desktop-currency-container a:hover, .desktop-language-container a:hover {
  background-color: #424243;
}
.desktop-currency-container a.current, .desktop-language-container a.current {
  background-color: #3f670d;
}
.desktop-currency-container img, .desktop-language-container img {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  width: 24px;
}
.header-app-mobile {
  align-items: center;
  background-color: #fff;
  display: flex;
  font-size: 0;
  height: 0;
  line-height: normal;
  overflow-y: hidden;
  padding-left: 8px;
  position: relative;
  transition: height .3s ease-in-out;
  z-index: 3;
}
.header-app-mobile.visible {
  height: 48px;
  transition: height .3s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .header-app-mobile { display: none; }
}
.header-app-mobile .app-cancel {
  background-color: transparent;
  border: 0;
  height: 18px;
  width: 18px;
}
.header-app-mobile .app-cancel img {
  display: block;
  height: 18px;
  width: 18px;
}
.header-app-mobile .app-logo {
  height: 36px;
  margin: 0 8px;
  width: 36px;
}
.header-app-mobile .app-content {
  color: #666;
  flex: 1 1 auto;
}
.header-app-mobile .app-content .app-score {
  align-items: center;
  display: flex;
  font-weight: 600;
  line-height: 14px;
}
.header-app-mobile .app-content .app-score strong {
  color: #000;
  font-size: 14px;
  padding-right: 8px;
}
.header-app-mobile .app-content .app-score img {
  height: 12px;
  width: 12px;
}
.header-app-mobile .app-content .app-score span {
  font-size: 12px;
  padding-left: 3px;
}
.header-app-mobile .app-content .app-desc {
  font-size: 10px;
  line-height: 11px;
  margin-top: 4px;
}
.header-app-mobile .app-link {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  height: 28px;
  margin: 0 12px;
  padding: 0 12px;
}
.header-app-desktop {
  background-color: #fff;
  display: flex;
  font-size: 0;
  line-height: normal;
  max-height: 0;
  overflow-y: hidden;
  padding: 0 16px;
  position: absolute;
  right: 0;
  transition: max-height .3s ease-in-out;
  width: 268px;
  z-index: 4;
}
.header-app-desktop.visible {
  max-height: 100vh;
  transition: max-height .5s ease-in-out;
}
.header-app-desktop .app-qrcode {
  border-right: .5px solid #eee;
  margin: 16px 0;
  padding-right: 16px;
}
.header-app-desktop .app-picture {
  display: block;
  height: 100px;
  width: 100px;
}
.header-app-desktop .app-title {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  margin-top: 8px;
}
.header-app-desktop .app-store {
  margin: 16px 0;
  padding-left: 16px;
}
.header-app-desktop .app-store a:last-child img { margin-top: 16px; }
.header-app-desktop .app-store img { width: 134px; }
[lang=ar] .site-header .header-link {
  margin-left: 0;
  margin-right: 22.5px;
}
[lang=ar] .site-header .header-nav a.sub:after {
  left: 4px;
  right: auto;
}
[lang=ar] .site-header .header-nav a.sub.flex-box > span:last-child {
  padding-left: 30px;
  padding-right: 0;
  text-align: left;
}
[lang=ar] .site-header .header-nav-sub .suber + a:after {
  left: 4px;
  right: auto;
}
[lang=ar] .site-header .mobile-user-center > li > a:after {
  left: 0;
  right: auto;
  transform: rotate(-135deg);
}
[lang=ar] .site-header .header-category-container {
  left: -100%;
}
[lang=ar] .site-header .header-category-container.show { left: 0; }
[lang=ar] .site-header .desktop-user-center {
  left: -45px;
  right: auto;
}
[lang=ar] .site-header .header-marquee > div {
  left: auto !important;
  right: 100% !important;
}
@media screen and (min-width: 1280px) {
  [lang=ar] .site-header .header-nav {
    margin-left: 0;
    margin-right: 60px;
  }
  [lang=ar] .site-header .header-nav a.sub {
    margin-left: 14px;
    margin-right: auto;
  }
  [lang=ar] .site-header .header-nav a.sub:after { left: -15px; }
  [lang=ar] .site-header .header-link-box.dropmenu, [lang=ar] .site-header .header-link-box.dropmenu:hover .header-link {
    padding-left: 20px;
    padding-right: 0;
  }
  [lang=ar] .site-header .header-link-box.dropmenu .header-link span:after {
    left: -15px;
    right: auto;
  }
}
.header-app-mobile {
  padding-left: 0;
  padding-right: 8px;
}
[lang=ar] .header-app-mobile .app-content p:first-child strong {
  padding-left: 8px;
  padding-right: 0;
}
[lang=ar] .header-app-mobile .app-content p:first-child span {
  padding-left: 0;
  padding-right: 3px;
}
[lang=ar] .header-app-desktop {
  left: 0;
  right: auto;
}
[lang=ar] .header-app-desktop .app-qrcode {
  border-left: .5px solid #eee;
  border-right: 0;
  padding-left: 16px;
  padding-right: 0;
}
[lang=ar] .header-app-desktop .app-store {
  padding-left: 0;
  padding-right: 16px;
}

/* ========== FOOTER ========== */
.footer-subscribe {
  color: #fff;
  padding: 0 19px;
  text-align: center;
}
.footer-subscribe .subscribe-points {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
}
.footer-subscribe .subscribe-desc {
  font-size: 12px;
  font-weight: 300;
  margin-top: 6px;
}
.footer-subscribe .subscribe-agree {
  align-items: flex-top;
  display: flex;
}
.footer-subscribe .subscribe-agree .privacy-policy-text {
  color: #999;
  font-size: 10px;
  font-weight: 300;
  margin-left: 4px;
  text-align: left;
}
.footer-subscribe .subscribe-agree .privacy-policy-text a {
  color: inherit;
  text-decoration: underline;
}
.footer-subscribe .subscribe-agree .checkbox-icon {
  height: 12px;
  margin-right: 4px;
  margin-top: 3px;
  width: 12px;
}
.footer-subscribe .subscribe-agree .checkbox-icon .o-checkbox {
  height: 100%;
  width: 100%;
}
.footer-subscribe .subscribe-agree.shaking {
  animation-duration: .3s;
  animation-iteration-count: 2;
  animation-name: shaking;
  animation-timing-function: ease-in-out;
}
.footer-subscribe .footer-subscribe-box {
  display: flex;
  flex-direction: column;
  position: relative;
}
.footer-subscribe .footer-subscribe-form {
  margin-bottom: 12px;
  margin-top: 16px;
}
.footer-subscribe .input-group {
  display: flex;
  position: relative;
}
.footer-subscribe .input-group input {
  border: none;
  border-radius: 16px;
  display: block;
  font-family: inherit;
  font-size: 12px;
  outline: none;
  padding: 8.5px 16px;
  width: 100%;
}
.footer-subscribe .input-group button {
  background-color: #000;
  border: 1px solid #fff;
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
  bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}
.footer-subscribe .input-group button .icon-subscribe { font-size: 17.6px; }
.site-footer {
  background-color: #000;
  flex: 0 0 auto;
}
.site-footer .footer-top {
  background-color: #191919;
  font-size: 0;
  padding: 0 22px;
}
.site-footer .footer-follow-us { padding: 21px 0; }
.site-footer .footer-follow-us h4 { display: none; }
.site-footer .footer-follow-us img {
  margin-right: 15px;
  width: 28px;
}
.site-footer .footer-nav {
  list-style-type: none;
  padding: 10px 19px;
}
.site-footer .footer-nav-title {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  padding: 10px 0;
  position: relative;
}
.site-footer .footer-nav-title.show:after {
  bottom: 9px;
  transform: rotate(135deg);
  transition: all .1s linear;
}
.site-footer .footer-nav-title:after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  bottom: 15px;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 4px;
  transform: rotate(-45deg);
  transition: bottom .1s linear, transform .1s linear;
  width: 8px;
}
.site-footer .footer-nav-sub {
  display: block;
  padding: 7.5px 0;
}
.site-footer .footer-nav-sub li { display: block; }
.site-footer .footer-nav-link {
  color: #999;
  display: block;
  font-size: 12px;
  line-height: 18px;
  padding: 7.5px 0;
}
.site-footer .footer-nav-text {
  color: #999!important;
  font-size: 12px;
  line-height: 18px;
}
.site-footer .footer-payment {
  color: #999;
  font-size: 0;
  line-height: 15px;
  padding: 0 19px 36px;
}
.site-footer .footer-payment h4 {
  font-size: 10px;
  margin-bottom: 10px;
}
.site-footer .footer-payment img {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
  width: 39px;
}
.site-footer .footer-payment-support {
  padding: 0 19px 18px;
  text-align: center;
}
.site-footer .footer-payment-support img {
  max-width: 1188px;
  width: 100%;
}
.site-footer .footer-app-mobile {
  background-color: #191919;
  padding: 18px 0 6px;
  text-align: center;
}
.site-footer .footer-app-mobile .footer-app-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.site-footer .footer-app-mobile .footer-app-content {
  color: #fff;
  font-size: 12px;
  padding: 4px 0 12px;
}
.site-footer .footer-app-mobile .footer-app-stores {
  display: flex;
  justify-content: center;
}
.site-footer .footer-app-mobile .footer-app-stores button {
  background-color: transparent;
  border: 0;
}
.site-footer .footer-app-mobile .footer-app-stores img {
  flex: 0 0 auto;
  margin: 0 4.5px;
  width: 107px;
}
.site-footer .footer-app-desktop { display: none; }
.site-footer .footer-copyright {
  background-color: #191919;
  color: #fff;
  font-size: 10px;
  line-height: 15px;
  padding: 23px 0 10px;
  text-align: center;
}
.site-footer .footer-copyright img {
  margin-bottom: 15px;
  width: 76.5px;
}
.site-footer .footer-copyright p { padding: 0 62.5px; }
.site-footer .footer-robot {
  bottom: 130px;
  display: none;
  position: fixed;
  right: 20px;
  z-index: 10001;
}
.site-footer .footer-robot.mobile { display: block; }
.site-footer .footer-robot img {
  height: 48px;
  width: 48px;
}
.site-footer .footer-backtotop {
  background-color: rgba(0,0,0,.5);
  border: 0;
  border-radius: 50%;
  bottom: 72px;
  display: none;
  height: 48px;
  position: fixed;
  right: 20px;
  width: 48px;
  z-index: 100;
}
.site-footer .footer-backtotop svg { width: 24px; }
.site-footer .footer-backtotop.show { display: block; }
@media screen and (min-width: 1280px) {
  .site-footer .footer-top { padding: 0 45px; }
  .site-footer .footer-top-main {
    display: flex;
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
  }
  .site-footer .footer-follow-us {
    flex: 0 0 auto;
    padding: 16px 0;
    text-align: left;
  }
  .site-footer .footer-follow-us h4 {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
  }
  .site-footer .footer-follow-us img {
    margin-right: 40px;
    width: 30px;
  }
  .site-footer .footer-app-mobile { display: none; }
  .site-footer .footer-app-desktop {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    justify-content: end;
  }
  .site-footer .footer-app-desktop .footer-app-icon {
    height: 48px;
    width: 48px;
  }
  .site-footer .footer-app-desktop .footer-app-words { margin: 0 16px; }
  .site-footer .footer-app-desktop .footer-app-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  .site-footer .footer-app-desktop .footer-app-content {
    color: #fff;
    font-size: 12px;
    margin-top: 6px;
  }
  .site-footer .footer-app-desktop .footer-app-stores { display: flex; justify-content: center; }
  .site-footer .footer-app-desktop .footer-app-stores a:first-child img { margin: 0 16px; }
  .site-footer .footer-app-desktop .footer-app-stores img {
    flex: 0 0 auto;
    width: 134px;
  }
  .site-footer .footer-container { padding: 0 45px; }
  .site-footer .footer-nav {
    font-size: 0;
    margin: 0 auto;
    max-width: 1440px;
    padding: 42px 0 32px;
    width: 100%;
  }
  .site-footer .footer-nav-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
  }
  .site-footer .footer-nav-title {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
  }
  .site-footer .footer-nav-title:after { display: none; }
  .site-footer .footer-nav-sub {
    display: block;
    padding: 10px 0;
  }
  .site-footer .footer-nav-link {
    color: #b3b3b3;
    padding: 10px 0;
  }
  .site-footer .footer-nav-link, .site-footer .footer-nav-text {
    font-size: 16px;
    line-height: 24px;
  }
  .site-footer .footer-payment {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 0 30px;
    width: 100%;
  }
  .site-footer .footer-payment h4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .site-footer .footer-payment img {
    margin-right: 24px;
    width: 50px;
  }
  .site-footer .footer-payment-support {
    margin: 0 auto;
    padding: 0 0 30px;
  }
  .site-footer .footer-copyright {
    font-size: 12px;
    line-height: 18px;
    padding: 22px 0 12px;
  }
  .site-footer .footer-copyright img {
    margin-bottom: 9px;
    width: 135px;
  }
  .site-footer .footer-robot.mobile { display: none; }
  .site-footer .footer-robot.desktop { display: block; }
  .site-footer .footer-robot img {
    height: 60px;
    width: 60px;
  }
  .site-footer .footer-backtotop {
    bottom: 60px;
    height: 48px;
    right: 26px;
    width: 48px;
  }
  .site-footer .footer-backtotop svg { width: 24px; }
}
[lang=ar] .site-footer .footer-follow-us img {
  margin-left: 15px;
  margin-right: 0;
}
[lang=ar] .site-footer .footer-nav-title:after {
  left: 4px;
  right: auto;
}
[lang=ar] .site-footer .footer-payment img {
  margin-left: 15px;
  margin-right: 0;
}
@media screen and (min-width: 1280px) {
  [lang=ar] .site-footer .footer-follow-us { text-align: right; }
  [lang=ar] .site-footer .footer-follow-us img {
    margin-left: 40px;
    margin-right: 0;
  }
  .footer-subscribe { padding: 0; }
  .footer-subscribe .subscribe-points {
    font-size: 32px;
    margin-top: 48px;
  }
  .footer-subscribe .subscribe-desc {
    font-size: 20px;
    margin-top: 12px;
  }
  .footer-subscribe .subscribe-agree { margin: 0 auto; width: 45%; }
  .footer-subscribe .subscribe-agree .privacy-policy-text {
    font-size: 14px;
    margin-left: 8px;
  }
  .footer-subscribe .subscribe-agree .checkbox-icon {
    height: 18px;
    margin-right: 0;
    margin-top: 0;
    width: 18px;
  }
  .footer-subscribe .footer-subscribe-form {
    margin-bottom: 24px;
    margin-top: 32px;
  }
  .footer-subscribe .input-group {
    margin: 0 auto;
    width: 45%;
  }
  .footer-subscribe .input-group input {
    border-radius: 24px;
    display: block;
    font-size: 16px;
    padding: 14px 32px;
    width: 100%;
  }
  .footer-subscribe .input-group button {
    border-bottom-right-radius: 24px;
    border-top-right-radius: 24px;
    width: 64px;
  }
  .footer-subscribe .input-group button .icon-subscribe { font-size: 28px; }
}
@keyframes shaking {
  0% { transform: translateX(0); }
  50% { transform: translateX(12%); }
  to { transform: translateX(0); }
}

/* ========== PRODUCT CARD ========== */
.site-product {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: calc(50% - 2.5px);
  padding: 0px!important;
}
.site-product h3, .site-product .product-points, .site-product .product-desc{padding: 0 8px!important;}

.site-product.sold-out .product-points, .site-product.sold-out .product-price, .site-product.sold-out h3 {
  opacity: .4;
}
.site-product.sold-out .product-points, .site-product.sold-out .product-price, .site-product.sold-out h3 {
  opacity: .4;
}
.site-product.sold-out .product-learn-more { font-weight: 600; }
.site-product .product-tag-new {
  border: 1px solid var(--theme-color);
  border-radius: calc(9px + 2px);
  display: inline-block;
  left: 9px;
  padding: 1px;
  position: absolute;
  top: 7.5px;
  z-index: 1;
}
.site-product .product-img {
  background-color: #f8f8f8;
  border-radius: 6px;
  display: block;
  position: relative;
  height: 200px!important;
  overflow: hidden;
}
.site-product .product-picture {
  border-radius: 6px;
  display: block;
  max-height: 200px;
  position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;object-fit: contain;
}
.site-product .product-gift-container {
  background: #82e600;
  border-radius: 12px 12px 4px 4px;
  bottom: 6px;
  height: 60px;
  position: absolute;
  right: 6px;
  width: 48px;
}
.site-product .product-gift-container > div {
  color: #fff;
  font-size: 8px;
  height: 12px;
  line-height: 12px;
  text-align: center;
}
.site-product .product-gift-container .product-gift {
  background-color: #fff;
  border: 1px solid #82e600;
  border-radius: 12px 12px 4px 4px;
  box-sizing: border-box;
  height: 48px;
  object-fit: contain;
  width: 48px;
}
.site-product .v-sold-out {
  border-radius: 6px;
  font-size: 16px;
}
.site-product h3 {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  height: 24px;
  letter-spacing: .3px;
  margin: 8px 0 0;
  white-space: normal;
}
.site-product h3 a {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: inherit;
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.site-product .product-points {
  height: 50.5px;
  margin-top: 5px;
}
.site-product .product-point {
  border-bottom: 1px solid #eee;
  color: #000;
  font-size: 12px;
  line-height: 18px;
  overflow: hidden;
  padding: 3px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-product .product-point:first-child { border-top: 1px solid #eee; }
.site-product .product-point img {
  display: inline-block;
  height: 12px;
  margin-right: 2.5px;
  transform: translateY(-1.5px);
  vertical-align: middle;
}
.site-product .product-review {
  align-items: center;
  background-color: hsla(0,0%,100%,.85);
  border-radius: 6px;
  bottom: 6px;
  display: flex;
  font-size: 12px;
  left: 6px;
  padding: 3px 6px;
  position: absolute;
}
.site-product .review-score {
  color: #000;
  font-weight: 600;
}
.site-product .review-star {
  height: 12px;
  margin: 0 2px;
  width: 12px;
}
.site-product .review-count {
  color: #999;
  font-weight: 300;
}
.site-product .product-price span {
  color: #000;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 9px;
  padding: 0 0 8px 0;
}
.site-product .product-price del {
  color: #666;
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  margin: 0 0 0 12px;
  text-decoration: line-through;
  padding: 0 0 8px 0;
}
@media screen and (min-width: 1280px) {
  .site-product { width: 348px; }

  .site-product:hover .product-btn {
    opacity: 1;
    transition: opacity .3s ease-in;
  }
  .site-product .product-img {
    background-color: #f8f8f8;
    border-radius: 6px;
    display: block;
    position: relative;
    height: 200px!important;
    overflow: hidden;
  }
  .site-product .product-picture {
    border-radius: 6px;
    display: block;
    max-height: 200px;
    position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;object-fit: contain;
  }
  .site-product .product-gift-container {
    border-radius: 18px 18px 6px 6px;
    bottom: 12px;
    height: 90px;
    right: 12px;
    width: 72px;
  }
  .site-product .product-gift-container > div {
    font-size: 12px;
    font-weight: 700;
    height: 18px;
    line-height: 18px;
  }
  .site-product .product-gift-container .product-gift {
    border-radius: 18px 18px 6px 6px;
    height: 72px;
    width: 72px;
  }
  .site-product .v-sold-out {
    border-radius: 6px;
    font-size: 32px;
  }
  .site-product h3 {
    font-size: 18px;
    font-weight: 400;
    height: 24px;
    margin: 8px 0 0;
}

.site-product h3 a {
    display: block; /* or inline-block */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
  .site-product .product-desc { position: relative; }
  .site-product .product-points {
    height: 50px;
    margin-top: 10px;
  }
  .site-product .product-point {
    font-size: 12px;
    line-height: 18px;
    padding: 7px 0;
  }
  .site-product .product-point img {
    height: 18px;
    margin-left: 5px;
  }
  .site-product .product-review {
    border-radius: 15px;
    bottom: 12px;
    font-size: 18px;
    left: 12px;
    padding: 4px 12px;
  }
  .site-product .review-star {
    height: 18px;
    margin: 0 4px;
    width: 18px;
  }
  .site-product .product-price {
    line-height: 28px;
    margin: 12px 0 16px;
  }
  .site-product .product-price span {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
  }
  .site-product .product-price del {
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    margin-left: 12px;
    margin-top: 0;
  }
  .site-product .product-btn {
    background-color: #fff;
    bottom: 0;
    left: 0;
    opacity: 0;
    padding: 12px 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: opacity .2s ease-out;
  }
  .site-product .product-btn a {
    background-color: #111;
    border-radius: 18px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    padding: 0 14px;
  }
  .site-product .product-btn a:first-child {
    background-color: #fff;
    border: 1px solid #111;
    color: #111;
    margin-right: 20px;
  }
  .site-product .product-btn a.product-learn-more {
    display: block;
    margin-right: 0;
  }
}
[lang=ar] .site-product .product-price del {
  margin-left: 0;
  margin-right: 5px;
}
[lang=ar] .site-product .product-bundle-left { order: 2; }
[lang=ar] .site-product .product-bundle-right { order: 1; }
@media screen and (min-width: 1280px) {
  [lang=ar] .site-product .product-price del { margin-right: 25px; }
  [lang=ar] .site-product .product-btn a:first-child {
    margin-left: 20px;
    margin-right: 0;
  }
}
.icon-star-lightup { color: var(--theme-color); }

/* Select */
.v-select .vs__search, .v-select .vs__search:focus {
  border: 0;
  font-size: 12px;
  height: calc(100% - 2px);
  line-height: normal;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .v-select .vs__search, .v-select .vs__search:focus {
    font-size: 16px;
  }
}
.v-select .vs__selected {
  line-height: normal;
  margin: 0;
}
.v-select .vs__dropdown-menu {
  background-color: #fafafa;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.05);
  left: -1px;
  max-height: 222px;
  padding: 10px 0;
  top: calc(100% + 2px);
  width: calc(100% + 2px);
}
.v-select .vs__dropdown-menu::-webkit-scrollbar { width: 4px; }
.v-select .vs__dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 2px;
}
.v-select .vs__dropdown-menu::-webkit-scrollbar-track {
  background-color: #ddd;
  border-radius: 2px;
  opacity: .3;
}
.v-select .vs__dropdown-toggle {
  background-color: transparent;
  border: 0;
  height: 100%;
  padding: 0;
}
.v-select .vs__dropdown-option {
  color: #333;
  padding: 10px 15px;
}