/* 隐藏主页面滚动条 */
.no-scroll {
  overflow: hidden !important;
  touch-action: none;
  padding-right: 8px; /* 根据滚动条的宽度设置 */
}

/* 使菜单栏在阴影层显示时可滚动 */
.allow-scroll {
  overflow-y: auto;
}

/* 隐藏密码输入框旁边的小眼睛图标 */
input[type='password']::-ms-reveal {
  display: none;
}

/* 另一种方式，可能需要针对不同浏览器进行调整 */
input[type='password']::-webkit-password-field {
  display: none;
}

/* 整个滚动条的宽度和高度 */
::-webkit-scrollbar {
  width: 8px; /* 设置宽度 */
  height: 8px; /* 设置高度（水平滚动条） */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* 设置轨道背景色 */
  border-radius: 10px; /* 可选，设置圆角 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #888; /* 设置滑块背景色 */
  border-radius: 10px; /* 可选，设置圆角 */
}

img,
video {
  width: 100%;
  max-width: unset;
}

.metafield-rich_text_field {
  word-wrap: break-word;
  word-break: break-word;
}

.arrow-down {
  transform: scaleY(1);
  transition: transform 0.3s ease;
}

.arrow-up {
  transform: scaleY(-1);
  transition: transform 0.3s ease;
}

/* heading */
.heading {
  letter-spacing: 1px;
}

/* 面包屑 */
.breadcrumb {
  position: unset;
  margin-top: 20px;
}
.breadcrumb__list {
  padding: 0;
}
.breadcrumb__list .breadcrumb__item {
  display: flex;
  font-size: 14px;
  line-height: 16px;
}
.breadcrumb__link {
  color: var(--my-black);
}
.breadcrumb__item span {
  font-weight: 500;
  color: var(--my-black);
  opacity: 1;
  text-transform: initial;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/* price */
.product-price,
.price {
  font-family: 'Antonio';
}

/* product-item 加个隐藏 */
/* .product-item .product-item-meta__price-list-container {
  display: none;
}
.product-item {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--my-border);
}
.product-item:hover {
  border: 1px solid var(--my-blue);
}
.product-item .product-item__aspect-ratio {
  border-radius: 8px;
  overflow: hidden;
}
.product-item .product-item-meta__title {
  line-height: 24px;
}
.product-item:hover .product-item-meta__title {
  color: var(--my-blue);
  text-decoration: underline;
}
.product-item .product-item-meta__des {
  color: var(--my-black1);
  line-height: 22px;
} */

:root {
  --container: 1680px;
  --section-gap: 40px;
  --my-orange: #ec662b;
  --my-red: #ad1412;
  --my-black: #363838;
  --my-black1: rgba(54, 56, 56, 0.6);
  --my-black2: rgba(54, 56, 56, 0.8);
  --my-white: #ffffff;
  --my-bg: #fafafa;
  --my-bg1: #f4f4f4;
  --my-bg2: #e8e8e8;

  --my-border: #bfced6;
  --btn-hover: #212120;
}

@media screen and (min-width: 741px) {
  .container {
    width: calc(var(--container));
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
    margin: 0 auto;
  }
  .header-container {
    width: 100%;
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
    margin: 0 auto;
  }
  .affiliate-container {
    width: 1440px;
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
    margin: 0 auto;
  }

  /* font-size */
  .pf-78 {
    font-size: 78px;
  }
  .pf-58 {
    font-size: 58px;
  }
  .pf-40 {
    font-size: 40px;
  }
  .pf-32 {
    font-size: 32px;
  }
  .pf-30 {
    font-size: 30px;
  }
  .pf-24 {
    font-size: 24px;
  }
  .pf-18 {
    font-size: 18px;
  }
  .pf-16 {
    font-size: 16px;
  }
  .pf-14 {
    font-size: 14px;
  }
  .pf-12 {
    font-size: 12px !important;
  }

  /* margin top */
  .mt-10 {
    margin-top: 10px !important;
  }
  .mt-20 {
    margin-top: 20px !important;
  }
  .mt-30 {
    margin-top: 30px !important;
  }
  .mt-40 {
    margin-top: 40px !important;
  }
  .mt-60 {
    margin-top: 60px !important;
  }
  .mt-80 {
    margin-top: 80px !important;
  }
  .mt-100 {
    margin-top: 100px !important;
  }

  /* margin bottom */
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }

  :root {
    --product-list-block-spacing: 20px;
    --product-list-column-gap: 20px !important;
    --vertical-breather: 40px;
  }

  /* section-header */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .section-header .section-title {
            font-family: 'Roboto';
    font-weight: 600;
    line-height: 45px;
    margin-bottom: 0;
    text-transform: capitalize;
  }
  .section-header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .section-text {
    line-height: 27px;
  }

  .swiper-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .swiper-box .swiper-button-next,
  .swiper-box .swiper-button-prev {
    position: unset;
    width: fit-content;
    height: fit-content;
    z-index: 3;
    margin-top: 0;
  }

  .swiper-box .swiper-button-next svg rect,
  .swiper-box .swiper-button-prev svg rect,
  .swiper-box .swiper-button-next svg path,
  .swiper-box .swiper-button-prev svg path {
    transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .swiper-box .swiper-button-next:hover svg rect,
  .swiper-box .swiper-button-prev:hover svg rect {
    stroke: var(--my-orange);
    fill: var(--my-orange);
  }
  .swiper-box .swiper-button-next:hover svg path,
  .swiper-box .swiper-button-prev:hover svg path {
    fill: var(--my-white);
  }

  .swiper-box .swiper-button-next::after,
  .swiper-box .swiper-button-prev::after {
    display: none !important;
  }

  /* header */
  .header {
    box-shadow: 0px 4px 10px 0px #36383826;
    border-bottom: 0;
  }

  /* 弹窗 */
  .short-popup_shadow,
  .personal-popup_shadow {
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    cursor: pointer;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
  }
  .short-popup-main,
  .personal-popup-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    border-radius: 4px;
  }
  .popup-video {
    width: 60%;
  }
  .close-popup-btn {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
    z-index: 1000;
  }


  /* 结账按钮 */
  .cart__checkout-button {
    height: var(--button-height);
  }
  .cart__checkout-button .loader-button__loader {
    transform: translate(-50%, -50%);
  }
  .cart__checkout-button .loader-button__loader svg {
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    font-size: 18px !important;
  }
}

@media screen and (max-width: 740px) {
  .lock-all {
    padding-right: 0 !important;
  }
  .no-scroll {
    padding-right: 0;
  }
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .affiliate-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  :root {
    --product-list-block-spacing: 20px;
    --product-list-column-gap: 20px !important;
    --vertical-breather: 40px;
  }

  /* section-header */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .section-header .section-title {
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
    text-transform: capitalize;
  }
  .section-header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .section-text {
    line-height: 21px;
  }

  .swiper-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .swiper-box .swiper-button-next,
  .swiper-box .swiper-button-prev {
    position: unset;
    width: fit-content;
    height: fit-content;
    z-index: 3;
    margin-top: 0;
  }

  .swiper-box .swiper-button-next svg rect,
  .swiper-box .swiper-button-prev svg rect,
  .swiper-box .swiper-button-next svg path,
  .swiper-box .swiper-button-prev svg path {
    transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .swiper-box .swiper-button-next:hover svg rect,
  .swiper-box .swiper-button-prev:hover svg rect {
    stroke: var(--my-orange);
    fill: var(--my-orange);
  }
  .swiper-box .swiper-button-next:hover svg path,
  .swiper-box .swiper-button-prev:hover svg path {
    fill: var(--my-white);
  }

  .swiper-box .swiper-button-next::after,
  .swiper-box .swiper-button-prev::after {
    display: none !important;
  }

  .swiper-bottom-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }
  .swiper-bottom-box .swiper-scrollbar {
    position: unset !important;
    margin-left: 0;
    margin-right: 0;
  }
  .swiper-bottom-box .swiper-pagination {
    font-size: 14px;
    font-weight: 500;
    position: unset;
    width: fit-content;
    white-space: nowrap;
  }
  .swiper-bottom-box .swiper-button-next,
  .swiper-bottom-box .swiper-button-prev {
    position: unset;
    margin-top: 0 !important;
  }

  .swiper-bottom-box .swiper-button-next svg,
  .swiper-bottom-box .swiper-button-prev svg {
    height: 12px;
  }

  /* heading */
  .heading {
    letter-spacing: 0;
  }

  /* header */
  .header {
    box-shadow: 0px 2px 8px 0px #0000000f;
  }
  /* 弹窗 */
  .short-popup_shadow {
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    cursor: pointer;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
  }
  .short-popup-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    border-radius: 4px;
  }
  .close-popup-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1000;
  }
  .close-popup-btn svg {
    width: 100%;
    height: 100%;
  }

  .personal-popup_shadow {
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    cursor: pointer;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
  }
  .personal-popup-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 1);
    z-index: 1000;
    border-radius: 4px;
  }

  /* font-size */
  .mf-32 {
    font-size: 32px;
  }
  .mf-24 {
    font-size: 24px;
  }
  .mf-20 {
    font-size: 20px;
  }
  .mf-18 {
    font-size: 18px;
  }
  .mf-16 {
    font-size: 16px;
  }
  .mf-14 {
    font-size: 14px;
  }
  .mf-12 {
    font-size: 12px;
  }

  /* margin top */
  .mmt-5 {
    margin-top: 5px;
  }
  .mmt-10 {
    margin-top: 10px;
  }
  .mmt-20 {
    margin-top: 20px;
  }
  .mmt-30 {
    margin-top: 30px;
  }
  .mmt-40 {
    margin-top: 40px;
  }

  /* margin bottom */
  .mmb-5 {
    margin-bottom: 5px;
  }
  .mmb-10 {
    margin-bottom: 10px;
  }
  .mmb-20 {
    margin-bottom: 20px;
  }
  .mmb-30 {
    margin-bottom: 30px;
  }
  .mmb-40 {
    margin-bottom: 40px;
  }

  /* 聊天插件 */
  #shopify-chat #ShopifyChat button.chat-toggle {
    width: 40px !important;
    height: 40px !important;
  }
  #shopify-chat #ShopifyChat button.chat-toggle.chat-toggle--icon-button.mobile-only svg {
    height: 40px !important;
  }


  /* 礼物插件 */
  #sca-fg-today-offer-widget {
    bottom: 6rem !important;
    left: 15px !important;
  }
  /* 聊天 */
  .BeaconFabButtonFrame {
    bottom: 6rem !important;
    right: 15px !important;
  }

  /* 结账按钮 */
  .cart__checkout-button {
    height: var(--button-height);
  }
  .cart__checkout-button .loader-button__loader {
    transform: translate(-50%, -50%);
  }
  .cart__checkout-button .loader-button__loader svg {
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    font-size: 18px !important;
  }
}

/* font weight */
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}

.swiper-button-next,
.swiper-button-prev {
  position: unset;
  width: fit-content;
  height: fit-content;
  z-index: 3;
  margin-top: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination,
.swiper-scrollbar {
  z-index: 2 !important;
}

.swiper-scrollbar {
  left: 0 !important;
  width: 100% !important;
  background: #e9ecea !important;
}

.swiper-scrollbar-drag {
  background: var(--my-orange) !important;
}

/* .el-loading-spinner {
  display: flex;
  margin-top: auto;
  top: auto;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.el-loading-spinner .circular {
  width: 22px;
  height: 22px;
}
.el-loading-mask {
  background-color: var(--my-red);
}
.el-loading-spinner .path {
  stroke-width: 6px;
  stroke: #fff;
} */

/* 详情页心愿icon */
.swym-btn-container[data-position='default'] .swym-add-to-wishlist.swym-icon {
  height: 20px !important;
  width: 20px !important;
  line-height: 20px !important;
  border: 0;
  outline: 0;
}
.swym-btn-container .swym-button::after {
  font-size: 20px !important;
  width: 20px !important;
}


.swym-btn-container .swym-wishlist-cta,
.swym-btn-container .swym-tooltip {
  display: none !important;
}
.swym-btn-container[data-position='default'] .swym-add-to-wishlist.swym-icon .swym-tooltip .swym-tooltip-text {
  left: -35px !important;
  top: -10px !important;
}
.button.swym-button.swym-add-to-wishlist.swym-inject.swym-icon.swym-heart.swym-loaded.disabled.swym-added.swym-adding {
  opacity: 1 !important;
}

.swym-btn-container .swym-button.swym-added::after,
.swym-btn-container .swym-button.swym-added *:not(.swym-tooltip),
.button.swym-button.disabled {
  opacity: 1 !important;
}
button.swym-button.disabled,
button.swym-button:disabled {
  opacity: 1 !important;
}

/* 单个产品心愿icon */
.swym-button.swym-add-to-wishlist-view-product {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
.swym-button.swym-add-to-wishlist-view-product.swym-heart::after {
  font-size: 20px;
}


/* 心愿单页面 */
#swym-wishlist-render-container {
  margin-top: 20px;
}
.swym-ui-component .swym-wishlist-detail-header .swym-action-container {
  z-index: 1 !important;
}


/* 详情页顶部评星 */
.product__info-wrapper .alireviews-review-star-rating {
  padding-bottom: 0px !important;
}

/* 订阅插件 */
._bottomLayout_rds7d_286 {
  display: none !important;
}

#mini-cart {
  z-index:9999999999;
}
