.currencies .currencies-item-icon {
  color: var(--theme-font-color);
}

/* ??logo?????? */
.logo {
  font-size: 0;
  text-align: left;
}

.logo img {
  height: 50px;
  object-fit: contain;
}
/* announcement Start */
.j-announcement-newswiper {
  max-width: var(--max-width);
  width: 55%;
  margin: auto;
}

.announcement-wrapper {
  display: block;
  margin: auto;
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  padding: 9px 0;
}

.announcement .announcement-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
}

.announcement-btn.icon-left {
  left: var(--side-padding);
}

.announcement-btn.icon-right {
  right: var(--side-padding);
}

.announcement-btn.swiper-button-disabled {
  cursor: not-allowed;
  opacity: .5;
}

@media screen and (max-width: 1100px) {
  .j-announcement-newswiper {
    width: 85%;
  }
}

@media screen and (max-width: 767px) {
  .j-announcement-newswiper {
    width: 100%;
  }

  .announcement {
    line-height: 30px;
  }

  .announcement-wrapper {
    padding: 9px;
  }
}

/* announcement end */
/* ?? Start */
header {
  top: 0;
  z-index: 256;
  width: 100%;
  background-color: #fff;
}

header .wrapper {
  padding: 0 25px;
}

.header-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 0 13px;
}

header .header-left {
  width: 100%;
  max-width: 766px;
}

.search-bar-wrapper {
  display: none;
  position: fixed;
  top: auto;
  width: 100%;
  height: 80px;
  z-index: 20;
  background-color: #fff;
}

.search-bar-wrapper .search-bar {
  display: flex;
  align-items: center;
  padding: 25px 16px 10px;
  width: 100%;
  height: 65px;
  background-color: #fff;
  border-bottom: 1px solid #787878;
}

.search-bar-mask {
  display: none;
  position: fixed;
  top: 182px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  opacity: .6;
}

.search-bar .search {
  flex: 1;
  padding: 0;
  color: var(--theme-font-color-sub);
  font-size: 14px;
  height: 100%;
  line-height: 40px;
  background: transparent;
  border: none;
}

header .header-left .search-bar i {
  color: var(--theme-font-color-sub);
}

header .header-right {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 32px;
}

.header-right a.iconfont,
.header-right>.j-icon-search {
  display: block;
  padding: 0 var(--header-icon-gap-half);
}

.header-right .header-cart.icon-cart {
  padding-right: 0;
}

.header-cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 19px;
  height: 19px;
  color: #fff;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  background-color: #000;
  border-radius: 50%;
  border: 2px solid #fff;
}
header .iconfont {
  color: var(--nav-font-color);
  font-size: 24px;
  cursor: pointer;
}
/* nav */
.header-nav {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: auto -48px;
}

.header-nav .nav-item {
  position: relative;
  padding: 16px var(--nav-column-gap-half);
  line-height: 1;
  font-weight: normal;
}

.nav-item.hover .nav-link{ 
  color: var(--main-color-second);
}
.nav-item .nav-link {
  font-weight: 700;
  font-size: var(--theme-nav-font-size);
  line-height: var(--theme-nav-line-height);
  color: var(--nav-font-color);
  cursor: pointer;
}

.nav-item .nav-link>* {
  font-size: inherit;
  font-weight: inherit;
}
.nav-link:hover{
  color: var(--main-color-second);
}
@media screen and (min-width: 768px) {
  .nav-item .animation-underline,
  .header-menu-item .animation-underline {
    --animation-color: var(--nav-font-color);
  }
}

/* header-dropdown */
.header-dropdown {
  display: none;
  position: fixed;
  z-index: 200;
  background-color: #fff;
  box-shadow: 3px 3px 6px 2px rgba(51, 51, 51, 0.08);
  max-height: 60%;
}
.is-vertical.header-dropdown{
    box-shadow: 3px 3px 10px 7px rgba(51, 51, 51, 0.08);
}
.header-dropdown:not(.is-vertical){
  left: 0;
  right: 0;
  min-height: 20%;
}
.header-dropdown-imgtext {
  height: 100%;
}

/*  nav not(vertical) */
.header-dropdown .dropdown-wrapper {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 30px var(--side-padding);
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width);
  overflow: auto;
}
.is-vertical .dropdown-wrapper{
  padding: 20px ;
  flex-wrap: nowrap;
}
.is-vertical .dropdown-wrapper::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 0px;
  height: 0px;
  transform: translateX(-50%);
  z-index: 2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.header-dropdown .dropdown-wrapper-imgtext {
  justify-content: center;
  align-content: flex-start;
}

.header-dropdown .dropdown-wrapper-onlyimg {
  display: grid;
  align-content: flex-start;
  grid-gap: 20px;
}

.dropdown-wrapper-text {
  flex-direction: column;
}

.dropdown-imgtext-left {
  display: flex;
  flex-wrap: wrap;
  writing-mode: vertical-lr;
  gap: 20px;
  flex-shrink: 0;
  height: 100%;
}

.dropdown-imgtext-right {
  display: grid;
  grid-gap: 20px;
}

.dropdown-imgtext-left .header-dropdown-item {
  writing-mode: horizontal-tb;
}

.dropdown-wrapper .header-dropdown-item {
  position: relative;
}

.header-dropdown-imgitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.dropdown-wrapper-imgtext .header-dropdown-imgitem {
  width: 100%;
  min-width: 250px;
  max-width: 350px;
}

.dropdown-wrapper-onlyimg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-dropdown-imgitem .second-link {
  padding-bottom: 5px;
}

.second-link {
  display: block;
  width: fit-content;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  color: var(--theme-font-color);
}

.second-link a {
  color: var(--theme-font-color);
}

.dropdown-wrapper .third-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 15px;
}

.dropdown-wrapper h3 {
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
}

.dropdown-wrapper h3:not(:last-child) {
  margin-bottom: 10px;
}

.dropdown-wrapper .third-link {
  display: inline-block;
  line-height: 24px;
  white-space: normal;
  color: var(--theme-font-color);
}

@media screen and (min-width: 768px) {

  .header-dropdown .second-link:hover,
  .header-dropdown .second-link:hover a,
  .header-dropdown .third-link:hover  {
    color: var(--highlight-font-color);
  }

}

@media screen and (max-width: 1200px) {
  .header-main {
    justify-content: flex-start;
  }

  header .header-left {
    padding: 0 80px;
  }

  .header-dropdown .second-link {
    font-size: 14px;
  }

  .header-dropdown .second-link {
    padding-bottom: 5px;
  }

  .dropdown-wrapper .third-links {
    margin-top: 12px;
  }
}

@media screen and (max-width: 767px) {
  header .header-right {
    position: initial;
  }

  .dropdown-wrapper section {
    padding: 10px 15px;
  }
}

/* mobile-nav */
.mobile-nav, .mobile-nav .currencies{
  width: 80%;
  max-width: 300px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100vw;
  z-index: 512;
  padding: 0 0 30px;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
}

/* .nav-top-account */
.mobile-nav-account,.mobile-nav-bottom .remind {
  display: none;
}
.nav-top-account{
  position: relative;
}
.nav-top-account .mobile-nav-account {
  display: none;
  width: 100%;
  background-color: #f8f8f8;
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
}
.nav-top-account>.iconfont{
  position: absolute;
  right: 12px;
  top: 20px;
  line-height: 18px;
  font-size: 14px;
  font-weight: 400;
}
.menu-account-item{
  height: 59px;
  padding-left: 13px;
  line-height: 59px;
  border-bottom: 6px solid #f8f8f8;
  text-transform: uppercase;
}
.menu-account-item .icon-account{
  font-size:20px;
  margin-right: 10px;
}
.mobile-nav-item {
  display: block;
  padding: 10.5px 0 10.5px 15px;
  margin-bottom: 8px;
}
.mobile-nav-item a {
  color: var(--nav-font-color);
}
/* mobie nav */
.mobile-side-menu{
  display: flex;
  flex-direction: column;
}
.j-menu-item {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}
.j-menu-item>.iconfont{
  position: absolute;
  right: 12px;
  top: 10px;
  line-height: 18px;
  font-size: 14px;
  font-weight: 400;
}

.header-menu-item{
  display: inline-block;
  padding: 10.5px 19px;
  font-size: 13px;
  font-weight: 400;
  color: var(--nav-font-color);
}
[data-menu-step="1"]>.header-menu-item{
  padding: 20.5px 0 20.5px 13px;
  font-size: 14px;
}

[data-menu-step="1"]>.iconfont{
  top: 20px;
}
/* secondary-menu */
.msec-imgtext-imgs {
  display: grid;
  gap: 10px;
  margin: 10px 0;
  padding: 0 19px;
}

.m-secondary-onlyimg {
  display: grid;
  grid-gap: 10px;
  padding: 0 19px 10px;
}
.secondary-menu,
.third-menu {
  display: none;
  width: 100%;
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
  background-color: #f8f8f8;
}
.menu-img-item{
  padding:5px 10px 0 10px;
}
.j-menu-header{
  display: none;
}
.shelter {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  opacity: .6;
}
@media screen and (max-width: 768px) {
  [data-has-icon] {
    --nav-icon-bg-position: 0 center;
    margin-left: 19px;
  }

  [data-menu-step="1"]>[data-has-icon] {
    margin-left: 13px;
  }
}
/* minicart Start */
.header-right-minicart {
  font-size: 0;
}

.header-minicart-subtotal {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--theme-border-color);
}

#paypal-button-container-cart-popup {
  margin-top: 8px;
}

.minicart-list {
  max-height: 400px;
  margin-top: 24px;
  background-color: #fff;
  overflow-y: scroll;
}

.minicart-list::-webkit-scrollbar {
  display: none;
}

.minicart-item {
  margin-bottom: 24px;
  width: 100%;
  height: 100%;
}

.minicart-item:last-child {
  margin-bottom: 0;
}

.minicart-item-content {
  display: flex;
}

.minicart-item-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
  padding-bottom: 80px;
  margin-right: 16px;
  border: 1px solid #e6e6e6;
}

.minicart-item-img img {
 top: 0;
}

.minicart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: calc(100% - 5rem);
  font-size: 14px;
}

.minicart-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--theme-font-color);
}

.minicart-item-sku {
  color: var(--theme-font-color-sub);
}

.minicart-item-price {
  font-weight: 600;
}

.show-now-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
}

.header-account-info,
.header-minicart-info {
  display: none;
  position: absolute;
  right: 0;
  z-index: 128;
  min-width: 175px;
  padding: 16px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eee;
}

.header-main .header-account-info a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
}

.header-main .header-right .header-account-info .header-login-btn {
  line-height: 1;
}

.header-minicart-info {
  min-width: 368px;
  max-width: 450px;
  padding: 24px;
}

.header-minicart-subtotal .button--primary {
  width: 100%;
  font-size: 16px;
  text-align: center;
}

.header-info-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--theme-border-color);
}

.header-login-btn {
  width: 175px;
  height: 48px;
  margin-bottom: 16px;
  padding: 14px 0;
  border: 1px solid var(--main-color);
  line-height: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--main-color);
}

.header-register-btn {
  margin-bottom: 8px;
  font-size: 14px;
}

.header-register-btn a {
  text-decoration: underline;
  font-weight: 600;
}

.header-info-list {
  display: inline-flex;
  flex-direction: column;
}

.header-info-list a {
  margin-bottom: 16px;
  color: #333;
  font-size: 14px;
}

.header-info-list a:hover {
  color: var(--main-color);
}

.header-info-list a:hover::before {
  background-color: var(--main-color);
}

.header-sign-out {
  padding-top: 16px;
  font-size: 14px;
  border-top: 1px solid var(--theme-border-color);

}

.sign-out-btn {
  color: var(--main-color);
}

.sign-out-btn.animation-underline::before {
  background-color: var(--theme-font-color-link);
}

.header-right-account .header-account {
  padding-right: 0;
}

.minicart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.minicart-header .minicart-subtotal {
  font-size: 16px;
}
.minicart-subtotal-price{
  font-weight: 700;
}
.header-minicart-subtotal .minicart-header a {
  font-size: 16px;
}

.cartEmpty-link-wrapper {
  max-width: 368px;
  font-size: 14px;
}

.show-now-link {
  margin-top: 16px;
  font-size: 14px;
}


/* minicart End */
@media screen and (max-width: 767px) {
  .announcement-wrapper {
    font-size: 12px;
    line-height: 20px;
  }
  header>.wrapper {
    padding: 0 20px;
    width: 100%;
    background-color: #fff;
  }

  .search-bar-mask {
    top: 100px;
  }

  .search-bar-wrapper .search-bar {
    padding-top: 35px;
    height: 80px;
  }

  .search-bar-wrapper {
    height: 100px;
  }

  .header-main {
    padding: 15px 0;
  }

  .header-main .search-bar {
    display: none;
  }

  .header-main .iconfont {
    font-size: 24px;
  }

  .header-right a.header-account {
    padding-right: 0;
  }

  .header-main .header-left i {
    padding: 0 11px;
    font-size: 24px;
  }

  .header-main .header-left .icon-menu {
    padding-left: 0;
  }

  header .header-left {
    width: fit-content;
    padding: 0;
    order: 0;
  }

  .header-main .logo {
    order: 1;
    flex: 1;
    text-align: center;
  }

  .header-main .logo img {
    height: 30px;
  }

  .header-main .header-right {
    position: static;
    order: 2;
  }

  .cart-badge {
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 18px;
  }

  .header-nav {
    display: none;
  }

  .search-bar {
    align-items: center;
    padding: 0 12px;
    margin: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    border-radius: var(--theme-border-radius);
    border: none;
  }

  .search-bar .search {
    order: 0;
    padding: 0;
    margin-right: 12px;
    height: 40px;
    color: var(--main-color);
    font-size: 16px;
  }

  .search-bar i.iconfont {
    order: 1;
    font-size: 24px;
  }

  .footer-info {
    margin-top: 0;
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

/* ?? End */

/* ?? Start */
footer {
  background-color: #eee;
}

.footer-main.wrapper {
  padding: 40px 25px 40px;
}

.footer-main .main-left,
.footer-bottom .footer-contact {
  display: flex;
  flex-direction: column;
  margin-right: 80px;
  width: 300px;
}

.footer-main .logo {
  height: 48px;
  object-fit: contain;
  object-position: left;
}

.social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  white-space: normal;
}

.social a {
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--theme-font-color);
}
.social a:hover{
  color: var(--main-color);
}
.footer-main .main-right {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 32px;
}

.footer-menu .menu-title,
.email-subs-title {
  margin-bottom: 8px;
  color: var(--nav-font-color);
  font-weight: bold;
}

.footer-menu .menu-title i {
  float: right;
  line-height: 20px;
  color: var(--nav-font-color);
  transform: scale(0.5);
}

.footer-menu-inner {
  color: var(--nav-font-color);
  font-size: 16px;
}

.footer-menu-inner::before {
  background-color: #fff;
}

.footer-bottom {
  margin: auto;
  padding: 0 25px 24px;
  max-width: var(--max-width);
  color: var(--nav-font-color);
  font-size: 14px;
}


.footer-bottom img {
  max-height: 38px;
  object-fit: contain;
}


.footer-infomation {
  padding: 18px 0 10px;
  border-top: 1px solid #999;
}

.footer-special-desc {
  display: flex;
}

.footer-special-desc>div:first-child {
  padding-right: 21.2%;
}

.footer-special-desc p {
  margin-bottom: 10px;
}

.footer-info.rich-text * {
  font-size: 14px;
}

.email-subs .email-subs-title {
  margin-bottom: 20px;
}

.email-subs-inputdiv {
  display: flex;
}

.email-subs-des {
  margin: -10px 0 10px 0;
}

.email-subs-inputdiv .email-subs-input {
  width: 245px;
  font-size: 16px;
  background-color: transparent;
  border: var(--border-width) solid #979797;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.email-subs-btn {
  font-weight: 700;
  line-height: 22px;
  padding: 0 22px;
  color: #fff;
  background-color: var(--main-color);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media screen and (max-width: 1450px) {
  .footer-special-desc>div:first-child {
    padding-right: 20%;
  }
}
@media screen and (max-width: 1100px){
  .email-subs{
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-special-desc>div:first-child {
    padding-right: 0;
  }

  .social a {
    margin-right: 14px;
    margin-bottom: 14px;
  }

  .email-subs .email-subs-title {
    margin: 17px 0 20px;
    font-size: 16px;
  }

  .email-subs-inputdiv .email-subs-input {
    width: 198px;
    height: 36px;
    margin-right: 5px;
    border-radius: var(--theme-border-radius);
  }

  .email-subs-btn {
    padding: 0 22px;
    border-radius: var(--theme-border-radius);
  }

  .footer-special-desc {
    flex-direction: column;
  }

  .footer-infomation p {
    font-size: 12px;
  }

  .footer-main.wrapper {
    flex-direction: column;
    padding: 20px 20px;
  }

  .footer-main .main-left {
    margin-right: unset;
    width: 100%;
    border: none;
  }

  .footer-main .main-right {
    flex-direction: column;
    row-gap: unset;
    border-top: 1px solid var(--nav-font-color);
  }

  .social {
    margin: 16px 0 0;
  }

  .footer-menu {
    margin-top: 0;
    border-bottom: 1px solid var(--nav-font-color);
  }

  .footer-menu .menu-title {
    margin-bottom: 0;
    padding: 17px 0;
    font-size: 16px;
  }

  .footer-menu .menu-list {
    display: none;
  }

  .footer-menu-item {
    margin-bottom: 16px;
  }

  .footer-bottom {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  .footer-bottom p {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-menu .menu-title i {
    display: none;
  }

  .footer-menu-inner {
    display: inline-block;
    margin: 4px 0;
    line-height: 1.5;
  }

}

/* ?? End */
