/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --dark-grey: #333333;
  --medium-grey: #636363;
  --light-grey: #eeeeee;
  --ash: #f4f4f4;
  --primary-color: #404040;
  --white: white;
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

body {
  font-family: inherit;
  background-color: var(--white);
  color: var(--dark-grey);
  letter-spacing: -0.4px;
  overflow-x: hidden;
  color: #444;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

img {
  width: 100%;
}

.btn {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.icon {
  padding: 0.5rem;
  /*background-color: var(--light-grey);*/
  border-radius: 10px;
}

.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.logo {
  margin-right: 1.5rem;
}

.logo img {
  max-width: 9rem;
  height: auto;
}


#nav-menu {
  border-bottom: var(--border);
  background: #fff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  column-gap: 2rem;
  height: 110px;
  padding: 1.2rem 0rem;
}

.utility-bar p {
  margin: 0;
}

.page-width .menu {
  position: relative;
  background: var(--white);
  margin-top: 0 !important;
}

.menu-bar li:first-child .dropdown {
  flex-direction: initial;
  min-width: 480px;
}

.dropdown-first {
  border-right: 1px solid #EFEFEF;
}

.menu-bar .dropdown-link-title {
  font-size: 0.96rem;
  color: #4A4A4A;
  font-weight: 600;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  font-family: Inter, sans-serif;
  margin-bottom: 15px;
}

.menu-bar .dropdown-link .dropdown-link-title {
  font-size: 0.88rem;
  color: #5a5a5a;
  font-weight: 300;
  /*text-transform: uppercase;*/
}

.menu-bar .nav-link {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0px;
  padding: .3rem;
  min-width: 60px;
  margin: 0 .6rem;
  white-space: nowrap;
  height: 60px;
  color: #4D4D4D !important;
  box-shadow: none;
  background: #fff;
}

.menu-bar .nav-link:hover {
  color: var(--primary-color) !important;
  padding: 5px !important;
  background: #fff;
}

.dropdown-link:hover {
  color: var(--primary-color) !important;
  padding: 5px !important;
  background: #f1f1f1;
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
  display: flex;
  align-items: center;
}

.botton-user svg {
  width: 20px;
  background: #fff;
  padding: 0;
  border-radius: 0;
  color: #666;
}

.botton-cart svg {
  width: 46px;
  background: #fff;
  padding: 0;
  border-radius: 0;
  color: #666;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  position: absolute;
  top: 36px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
  background: #f4f4f4;
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown-fixed {
  position: fixed !important;
  top: 100px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1000 !important;
  width: 100% !important;
  animation: slideInFromBottom 0.3s forwards;
}

@keyframes slideInFromBottom {
  from {
    top: 100px;
    opacity: 0;
  }

  to {
    top: 0px;
    opacity: 1;
  }
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 20px 0 20px 20px;
  font-size: .95rem;
}

/* 固定定位时的过渡动画 */
.dropdown.fixed-position {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 移动端隐藏固定效果 */
@media (max-width: 1100px) {
  .dropdown.fixed-position {
    position: relative !important;
    top: auto !important;
  }
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.4rem;
  padding: 0.1rem 0 !important;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
  align-items: center;
  font-style: normal;
  font-weight: 300;
}

.dropdown-link-img {
  max-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.dropdown-link-img img {
  object-fit: cover;
  height: auto;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.right-container .search {
  position: relative;
}

.right-container img {
  border-radius: 50%;
}

.search input {
  background-color: var(--ash);
  border: none;
  border-radius: 6px;
  padding: 0.7rem;
  padding-left: 1.0rem;
  font-size: 16px;
  width: 0;
  height: 100%;
  border: var(--border);
  outline: none;
  transition: width 0.3s ease;
  background-color: transparent;
}

.search .bx-search {
  position: absolute;
  right: 5px;
  top: 20px;
  font-size: 1.3rem;
  transform: translateY(-50%);
  color: #8a8a8a;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.search {
  display: flex;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
  transition: width 0.3s ease;
  z-index: 1;
}

.search input[type="search"] {
  width: 0;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  transition: width 0.3s ease;
}

.search i {
  padding: 0 0;
  color: #333;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-size: 18px;
}

.search.expanded {
  width: 240px;
  border: 1px solid #333;
}

.search.expanded input[type="search"] {
  width: calc(100% - 20px);
}

.search button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 10px 0 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  position: relative;
  box-shadow: none;
}

.search button:hover {
  background: #fff;
  box-shadow: none;
}

.search .close-btn {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
}

.search.expanded .close-btn {
  display: flex;
  background: #fff;
  box-shadow: none;
}

.botton-cart {
  position: relative;
}

.badge {
  position: absolute;
  top: 2px;
  right: 0px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: .6rem;
  line-height: 1;
  text-align: center;
  min-width: 18px;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .search {
    position: fixed;
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 40px;
    height: 40px;
    z-index: 1000;
    overflow: inherit;
  }

  .search button:hover {
    background: transparent;
  }

  .search.expanded {
    width: calc(100% - 20px);
    max-width: 400px;
    border: 2px solid #333;
    position: absolute;
    top: 10%;
    background: #fff;
  }

  .search .bx-search {
    position: absolute;
    left: -15px !important;
    top: 25%;
    font-size: 1.3rem;
    transform: translateY(-50%);
  }

  .search.expanded i {
    top: 50%;
  }
}

#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
  background: #fff;
  color: #666 !important;
  border: 0px;
  box-shadow: 0 0 0 0;
  line-height: 50px;
    height: 60px;
}

.dropdown-first .title-item {
  font-weight: 700;
  letter-spacing: 1px;
  color: #333;
}

.dropdown-first li {
  min-width: 200px;
  padding: 0;
}

.dropdown.orientation {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 100px);
  max-width: 100%;
  width: 100%;
  flex-direction: row;
  padding: 0 20px 0 10px;
  z-index: 2;
}

.dropdown-content {
  display: flex;
  flex-direction: row;
  padding: 0 20px 0 10px;
  background: #f4f4f4;
  z-index: 1;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gm-image {
  max-width: 250px;
}

.current-atlas {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  border: 1px solid #ccc;
}

.current-atlas img {
  width: 100%;
}

.elementor-column {
  min-width: 600px;
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  width: 100%;
  margin: 20px 0 0 30px;
}

.picture-item {
  width: 60px;
  height: 60px;
}

.submenu-price {
  color: #666;
}

.second-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.submenu-col {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 100%;
  max-width: 242px;
  position: relative;
  margin: 0 10px;
}

.submenu-col>a.dropdown-link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.submenu-title {
  text-align: center;
}

.collection-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 30px;
}

.collection-list ul {
  padding: 20px 10px 0 10px;
  flex-direction: row;
}

.collection-list .submenu-title {
  margin-top: 10px;
}


@media (max-width: 1100px) {
  #hamburger {
    display: block !important;
    /* 确保按钮可见 */
    z-index: 99;
    /* 置于最顶层 */
  }

  .container {
    padding: 1.2rem;
  }

  body.lock-scroll {
    overflow: hidden;
    touch-action: none;
    /* 防止iOS橡皮筋效果 */
  }

  .page-width .menu {
    display: none ;
    position: fixed;
    /* 改为固定定位 */
    top: 160px;
    left: 0;
    width: 100%;
    bottom: 0;
    background: white;
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
    /* height: 100vh;确保在搜索框之上 */
  }

  .page-width .menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
  }

  .dropdown.orientation {
    position: relative;
    left: auto;
    transform: none;
    max-width: 100%;
    width: 90%;
    padding: 0;
  }

  /* PC端悬停优化 */
  @media (hover: hover) {
    .dropdown {
      pointer-events: none;
      transition: opacity 0.2s, visibility 0.2s;
    }

    .dropdown.active {
      pointer-events: auto;
    }
  }

  @media (min-width: 1101px) {
    .dropdown {
      display: block !important;
      opacity: 0;
      visibility: hidden;
    }

    .dropdown.active {
      opacity: 1;
      visibility: visible;
    }
  }

  .dropdown ul {
    padding: 1.2rem 0 0 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.0rem;
    margin: 0;
  }

  .menu-bar .nav-link img {
    width: auto;
  }

  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  .menu-bar>li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }

  .dropdown-first {
    border-right: 0px solid #EFEFEF;
  }

  .second-row {
    gap: 8px;
    flex-direction: column;
  }

  .second-row.collection-list .submenu-col {
    margin: 0;
  }

  .dropdown-content {
    display: block;
    padding: 0 20px 10px 10px;
  }

  .dropdown ul {
    padding: 1.2rem 0 0 0.3rem;
    margin-left: 0;
  }

  .submenu-col {
    margin: 0 0px;
  }
}


/* ▼▼▼ 从这里开始追加 ▼▼▼ */
@media (min-width: 1101px) {
  .dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s, visibility 0.2s !important;
  }

  .dropdown-btn:hover+.dropdown,
  .dropdown:hover {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 1100px) {
  .menu.active {
    display: block ;
    transform: none !important;
    /* 移除可能干扰的变换 */
  }

  .dropdown.active {
    display: flex !important;
    position: static !important;
    /* 使用正常文档流定位 */
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ▲▲▲ 追加内容结束 ▲▲▲ */

@media (max-width: 600px) {
  .dropdown ul {
    padding: 1.2rem 0 0 0.3rem;
    margin: 0;
  }


  .botton-user,
  .botton-cart {
    display: none;
  }

  .elementor-column {
    min-width: auto;
    margin: 20px 10px;
    width: calc(100% - 25px);
  }

  .dropdown-title {
    margin: 0px 0 0 15px;
  }

  .dropdown-first li {
    line-height: 30px;
  }
}

/**swiper**/
.mySwiper {
  overflow: visible !important;
  /* 允许溢出触摸 */
  position: relative;
  overflow: hidden !important;
}

.mySwiper .swiper-wrapper {
  touch-action: pan-y;
  /* 明确触摸方向 */
}

.swiper {
  width: 100%;
  height: 28rem !important;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  visibility: visible;
}

.swiper-slideshow {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  visibility: visible;
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  border: 1px solid #f4f4f4;
  border-radius: 50%;
  width: 45px !important;
  height: 45px !important;
  color: #5d5d5d !important;
  box-shadow: 0 2px 10px #36363626 !important;
  color: #333 !important;
  opacity: 0.9 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
  box-shadow: 0 2px 10px #666 !important;
  opacity: 0.9 !important;
}

.swiper-slideshow-media {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.swiper-slideshow-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slideshow-box {
  padding: 0;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.swiper-slideshow-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 54.5rem;
  text-align: center;
  color: #fff;
}

.swiper-slideshow-text h2 {
  font-size: 1.82em;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px #666 !important;
}

.swiper-slideshow-ret p {
  font-size: 0.8em;
  color: #fff;
  margin: 10px 0 30px 0;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px #666 !important;
}

.swiper-slideshow-button a {
  display: inline-block;
  padding: 10px 20px;
  background: #F2198F;
  color: white;
  text-decoration: none;
  letter-spacing: .1rem;
  padding: 1rem 3rem;
  cursor: pointer;
  font-size: 1em;
  text-shadow: 0 2px 10px #666 !important;
}

/**content**/
.section-template {
  padding-top: 27px;
  padding-bottom: 27px;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.button-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.0rem;
  text-decoration: none;
  color: #fff;
  -webkit-appearance: none;
  appearance: none;
  background: #333;
  padding: 0.8rem 1.5rem;
}

.collection-title {
  margin: 0rem 0 1.2rem;
  text-align: center;
}

.collection-title h2 {
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 400;
}

.full-column {
  width: 100%;
  text-align: center;
}

.ma-t3 {
  margin-top: 1rem;
}

.collection-hero__inner {
  border-bottom: 1px solid #ececec;
  border-top: 1px solid #ececec;
}

.page-title {
  text-align: center;
  padding: 1rem;
}

.page-title h1 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: normal;
  color: #333;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 750px) {
  .section-template {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .page-width {
    padding: 0 5rem;
  }
}

/**top**/
.utility-bar {
  background: #636363;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/**image with text**/
.image-with-text {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 0;
}

:root {
  --grid-mobile-horizontal-spacing: 8px;
}

.grid__item {
  width: calc(50% - var(--grid-mobile-horizontal-spacing)* 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}

.image-with-text-box {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-self: center;
  padding: 4rem 5rem;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  text-align: left;
}

.image-with-text_img img {
  border: 1px solid #f4f4f4;
}

.image-with-text_letter {
  font-size: 0.8rem;
  letter-spacing: .16rem;
  margin-bottom: 10px;
}

.image-with-text-box h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.image-with-text_text {
  font-size: 1.0rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5rem
}

@media screen and (min-width: 990px) {
  .image-with-text-box {
    padding: 3rem 6rem 3rem 4rem;
  }
}

@media screen and (min-width: 750px) {
  .grid__item {
    width: 100%;
  }

  .image-with-text_text {
    margin-top: 0rem;
    margin-bottom: 2rem;
  }

  .image-with-text-box {
    padding: 1rem 3rem 1rem 3rem;
  }
}

@media screen and (max-width: 640px) {
  .grid__item {
    max-width: 100%;
    width: 100%;
  }

  .image-with-text-box {
    padding: 2rem 0rem 3rem 0rem;
    text-align: center;
  }

  .image-with-text_letter,
  .image-with-text-box h2 {
    width: 100%;
  }

  .image-with-text-box .button-primary {
    margin: 0 auto;
  }
}

/**multi column**/
.multicolumn-list {
  display: flex;
  padding: 0;
  list-style: none;
  gap: 25px;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.multicolumn-list-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.multicolumn-list-title {
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.multicolumn-list-title a {
  display: inline-block;
  padding: 1rem 3rem;
  background: #fff;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #444;
}

.multicolumn-list-title a:hover {
  color: #666;
}

@media (max-width: 768px) {
  .multicolumn-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .multicolumn-list-item {
    flex-basis: 100%;
    margin: 5px 0;
  }
}


/**collection list**/

/* Swiper Wrapper 样式 */
.swiper.swiper-collection {
  width: 100%;
  height: auto !important;
}

.swiper-collection .swiper-wrapper {
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-collection .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  position: relative;
}

.swiper-collection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.swiper-collection-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-collection-img img:first-child {
  width: 100%;
  height: auto !important;
  object-fit: cover;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.swiper-collection-img img:nth-child(2) {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover Effect */
.swiper-collection-img:hover img:first-child {
  opacity: 0;
}

.swiper-collection-img:hover img:nth-child(2) {
  opacity: 1;
}

.swiper-collection-item a {
  width: 100%;
}

.swiper-collection-card {
  background-color: white;
  padding: 15px 0;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  color: #444;
}

.swiper-collection-card h3 {
  font-size: 15px;
  margin: 0 0 10px 0;
  font-weight: normal;
  color: #212121;
}

.swiper-collection-card .card-information {
  font-size: 18px;
  color: #212121;
  margin-bottom: 15px;
  font-weight: lighter;
}

.swiper-collection-card .card-color {
  margin-left: 6px;
}

.swiper-collection-card .card-color label {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 1px;
  cursor: pointer;
  display: inline-block;
  line-height: 16px;
  position: relative;
  margin: 0;
}


.swiper-collection-card .card-color label:hover {
  outline: .01rem solid #272727;
  border-radius: 20px;
  padding: 1px;
}

.swiper-collection-card .card-color label.active {
  outline: .01rem solid #272727;
  border-radius: 20px;
  padding: 1px;
}

.swiper-collection-card .card-color span {
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  outline: 1px solid #f4f4f4;
  margin: 0.05rem 0.05rem;
}

.swiper-collection-card .card-color .active {
  outline: 0.05rem solid #333;
}

.color-swatch {
  line-height: 20px;
  margin: 0 0 0 5px;
  font-weight: 600;
  outline: 0 !important;
  font-size: .9rem;
  position: absolute;
}


/**video**/
.juce-vlc-box {
  position: relative;
  text-align: center;
  background: #f4f4f4;
}

.juce-vlc-title {
  position: absolute;
  width: 100%;
  bottom: 50%;
  text-align: center;
  z-index: 1;
}

.juce-vlc-title h3 {
  color: #fff;
  margin: 0;
}

.juce-vlc-title h2 {
  color: #fff;
  font-weight: 700;
  margin: 8px;
  line-height: 30px;
}

.juce-vlc-title a {
  color: #fff;
  border-color: #f2198f;
  background: #f2198f;
  margin: 8px;
  display: inline-block;
  padding: 10px 25px;
  line-height: normal;
  border: 1px solid transparent;
  text-decoration: none;
}

.juce-vlc-box video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 800px;
}

@media screen and (max-width: 480px) {
  .juce-vlc-box {
    overflow: hidden;
  }

  .juce-vlc-title {
    bottom: 20%;
  }
}

/**product list**/
.product-list {
  display: flex;
  justify-content: center;
  /**align-items: center;*/
  gap: 15px;
}

.allcolumn-list-title {
  font-size: 1.2rem;
  margin-top: 5px;
}

.allcolumn-list-title .icon {
  width: 35px;
  background: transparent;
  padding-top: 5px;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .swiper-collection-item {
    flex: 1 1 calc(50% - 15px);
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
  }
}

/**banner page**/
.banner-page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-page-img {
  width: 100%;
  position: relative;
}

.banner-page-shading {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .3;
}

.banner-page-img img {
  width: 100%;
  object-fit: cover;
}

.banner-page-box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F2198F;
  padding: 0rem 1rem;
}

.banner-page-text {
  color: #fff;
  width: 270px;
  padding: 50px 20px;
  min-width: 270px;
  font-size: 14px;
  text-align: center;
}

.banner-page-text h2 {
  font-size: 15px;
  font-weight: initial;
}

.banner-page-text p {
  font-size: 14px;
  margin-top: 1rem;
  letter-spacing: 0.1em;
  line-height: 20px;
  color: #FCC5DE;
}

.banner-page-link {
  margin-top: 2.5rem;
}

.banner-page-text a {
  border: 1px solid #fff;
  padding: 0.8rem 1.5rem;
}

.banner-page-text a:hover {
  border: 2px solid #fff;
}

@media screen and (max-width: 480px) {
  .banner-page-img {
    display: none;
  }

  .banner-page-box {
    width: 100%;
    position: relative;
  }

  .banner-page-text {
    width: 100%;
  }
}


/**footer**/
footer {
  border-top: 1px solid #ECECEC;
  padding-top: 20px;
  color: #444;
}

.footer-box {
  display: flex;
}

.footer-box ul {
  flex-shrink: 0;
  width: 20%;
}

.footer-box-right {
  flex-grow: 1;
  max-width: 600px;
}

.footer-box ul li {
  line-height: 35px;
}

.footer-box ul h3 {
  line-height: 45px;
}

.footer-box ul li a {
  color: #444;
}
.footer-box ul li a:hover {
  text-decoration: underline;
}

.list-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  margin: 0.5rem 0 1.9rem 0;
  padding-top: 1rem;
  padding-left: 0;
}

.list-payment__item {
  align-items: center;
  display: flex;
  padding: 0.5rem .2rem;
}

.list-payment__item svg {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #E9E9E9;
  margin-top: 30px;
}

@media screen and (max-width: 480px) {
  .footer-box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-box ul {
    flex-basis: 100%;
    margin: 5px 0;
  }

  .list-payment {
    justify-content: center;
  }
}


/*****************page list****************/
.facets-vertical {
  display: flex;
}

.options-panel {
  width: 40%;
  padding-right: 2rem;
  max-width: 300px;
  min-width: 300px;
  color: #444;
}

.product-list-content {
  flex: 1;
}

.options-panel-container {
  width: 100%;
  overflow: hidden;
}

.options-panel-header {
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  border-top: 1px solid #ddd;
}

.options-panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0px 0 20px 0;
  display: none;
  /* 默认隐藏内容区域 */

}

.options-panel-content.active {
  display: block;
  max-height: 500px;
  /* 根据实际内容高度调整 */
}

.options-panel-content li {
  height: 35px;
  line-height: 35px;
}

.options-panel-content li input {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-right: 5px;
}

.show-more-button {
  padding: 5px 10px;
  margin: 10px 0;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: .3rem;
}

.expand-icon,
.collapse-icon {
  width: 20px;
}

.options-panel-icon {
  float: right;
}

.facets-vertical-filter {
  line-height: 48px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
}

.circle-container {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.options-panel-content .card-color {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin-right: 0px;
  cursor: pointer;
  vertical-align: middle;
  margin: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.05rem solid #fff;
}

.options-panel-content .card-color span {
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #999;
  margin: 0.05rem 0.05rem;
  vertical-align: middle;
}

.options-panel-content .card-color.active {
  border: 1px solid #333;
}

.circle-container-text {
  vertical-align: middle;
}

.page-product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
  align-items: flex-start;
}

.page-product-list .swiper-collection-item {
  width: calc(25% - 25px);
  margin: 5px;
  box-sizing: border-box;
  text-align: center;
}

.product-list-review {
  position: absolute;
  bottom: 3px;
  right: 0px;
  background: #333;
  padding: 3px 5px;
  color: #fff;
  font-size: 0.65rem;
  border-radius: 3px 0 0 3px;
  opacity: 0.8;
}

.product-list-review .icon {
  color: #FFCE00;
}

.product-list-review .review-box-contern-star {
  margin-bottom: 0;
}

.pagination-wrapper {
  margin-top: 1rem;
  width: 100%;
}

.pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-list li {
  flex: 1 0 4.4rem;
  max-width: 4.4rem;
  margin-right: 1rem;
}

.pagination-item {
  color: rgb(var(--color-foreground));
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4.4rem;
  width: 100%;
  padding: 0;
  text-decoration: none;
}

.pagination-item img {
  width: 20px;
}

.pagination-item.active {
  text-decoration: underline;
  color: #666;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .options-panel {
    display: none;
  }

  .page-product-list {
    gap: 15px;
  }

  .page-product-list .swiper-collection-item {
    flex: 1 1 calc(50% - 25px);
    font-size: 18px;
  }

  .pagination-list {
    flex-wrap: nowrap;
  }
}

/****************details*******************/

/**media wrapper**/
.product-medium {
  display: flex;
}

.product-media-wrapper {
  width: 55%;
  padding-right: 3.5rem;
}

.product-gallery {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.main-image {
  position: relative;
  display: inline-block;
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  height: auto;
  max-width: 800px;
  border: 1px solid #F3F3F3;
  transition: opacity 0.3s ease;
}


.thumbnail-list-container {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.thumbnail-list {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(100% + 10px);
}

.thumbnail-item {
  margin: 0 5px;
  cursor: pointer;
  max-width: 60px;
  flex-shrink: 0;
  min-width: 60px;
  background: #f8f8f8;
}

.thumbnail-item img {
  width: 100%;
  height: auto;
  border: 1px solid #F3F3F3;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  background-color: #fff;
  color: black;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
  background-color: rgba(255, 255, 255, 0.8);
  /* 半透明背景 */
}

.scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.zoom-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  overflow: auto;
}

.zoom-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(3px);
}

.zoom-content {
  position: relative;
  width: 90%;
  height: 90%;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-content img {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center;
  object-fit: cover;
  height: 100%;
  width: auto;
}

.zoom-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.loading-indicator {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2rem;
  z-index: 2001;
}

.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 0 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-arrow:hover {
  opacity: 1;
}

#prevArrow {
  left: 20px;
}

#nextArrow {
  right: 20px;
}


/* 按钮禁用状态样式 */
.scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* 新增过渡动画 */
#mainImg {
  transition: opacity 0.3s ease;
}

/* 优化遮罩层交互 */
.zoom-overlay {
  backdrop-filter: blur(3px);
}

.zoom-content {
  animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .zoom-content {
    width: 100%;
    height: 100%;
  }

  .zoom-content img {
    width: 100%;
    height: auto;
  }

  .close-btn {
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-size: 36px;
    width: 36px;
    height: 36px;
  }
}


/**product info wrapper**/
.product-info-wrapper {
  font-size: 1rem;
  flex: 1;
  overflow: hidden;
}

.product-info-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
  color: #444;
}

.add-to-favorites {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #333;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 5px;
  /*margin-top: -15px;*/
  margin-left: 10px;
  align-self: flex-start;
}

.add-to-favorites img {
  width: 20px;
  /* 设置图标的宽度 */
  height: auto;
}

/* 自定义提示框样式 */
.custom-alert {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  font-size: 0.8rem;
}

.custom-alert.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none;
}

.product-info-cprick {
  margin: 1.1rem 0;
  font-size: 1.8rem;
  color: #777;
}

.product-info-cprick .product-sale {
  text-decoration: line-through;
  font-size: 1rem;
  margin-left: 8px;
}

.product-info-star {
  margin: 10px 0 15px 0;
}

.product-info-star .icon {
  font-size: 22px;
  padding: 0.5rem 0.1rem;
  color: #FFCE00;
}

.product-info-review {
  margin-left: 3px;
  color: #2D2D2D;
}

.product-info-tax {
  color: #4D4D4D;
}

.product-info-tax a {
  text-decoration: underline;
  text-underline-offset: .3rem;
}

.product-info-col {
  line-height: 35px;
}

.product-info-col .card-color label {
  width: 30px;
  height: 30px;
}

.product-info-col .card-color span {
  width: 27px;
  height: 27px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  width: 200px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.btn {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  border-radius: 0px;
}

#quantityInput {
  width: 100px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  border: none;
}

/* 隐藏上下箭头 */
input#quantityInput[type="number"]::-webkit-inner-spin-button,
input#quantityInput[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input#quantityInput[type="number"] {
  -webkit-appearance: none;
}

/* 悬停效果 */
.btn:hover {
  background-color: #f4f4f4;
}

.product-form-submit {
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: .1rem;
  color: #fff;
  background: #d2388d;
  margin: 1.5rem 0;
  display: flex;
  width: 100%;
  line-height: 50px;
}

.product-form-payment .list-payment {
  justify-content: center;
}

.product-more-options a {
  margin: 0 auto;
  display: block;
  height: 30px;
  text-align: center;
  text-decoration: underline;
  font-size: 0.95rem;
}

.product-more-options a:hover {
  color: #5d5d5d;
}

.product-shareList {
  margin-top: 2rem;
}

.product-shareList a {
  cursor: pointer;
  margin-right: 5px;
}

.product-shareList a svg {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .product-medium {
    flex-wrap: wrap;
    display: block;
  }

  .product-media-wrapper {
    width: 100%;
    padding: 0;
  }

  .product-info-wrapper {
    text-align: center;
    margin-top: 30px;
  }

  .quantity-selector {
    margin: 0 auto;
  }
  .product-info-title {
    font-size: 1.5rem;
}
.product-info-cprick {
    font-size: 1.6rem;
}
}


/* login */
.login-box {
  width: 400px;
  margin: 0 auto;
}

ul.breadcrumb {
  padding: 0;
  margin: 15px 0 15px 0;
  list-style: none;
  border-radius: 4px;
}

.breadcrumb>li {
  display: inline-block;
  padding-left: 0px;
  font-size: 14px;
  color: #a09f9f;
}

.breadcrumb>li+li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.breadcrumb>li a:hover {
  color: #F85100;
  text-decoration: underline;
}

.breadcrumb>li a.active {
  color: #F85100;
  text-decoration: underline;
}

form.search {
  margin-bottom: 0 !important;
}

form.search:before {
  opacity: 0;
}

.search-box {
  font-size: 18px;
  text-align: center;
  padding: 20px;
}

footer ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
  width: 100%;
}

ul.icons li>* {
  text-decoration: none;
}

ul.icons li {
  display: inline-block;
  padding: 0 1em 0 0;
}

.footer-box ul li {
  line-height: 35px;
}

ul.icons li>*:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

ul.icons li>* .label {
  display: none;
}

.address input {
  height: 2.75em;
  border: solid 1px rgba(160, 160, 160, 0.3);
  background: rgba(160, 160, 160, 0.075);
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
}

footer svg.icon {
  width: 20px;
  padding: 0;
  background: transparent;
  border-radius: inherit;
}

.footer-wrapper {
  display: flex;
}

.footer-box ul li a.address-link {
  background: #333;
  color: #fff;
  padding: 0 10px;
  line-height: 2.7em;
}


.review-box {
  border: 1px solid #eee;
  padding: 24px;
}

.review-box .icon {
  font-size: 16px;
  color: #FFCE00;
}

.review-box-title {
  font-weight: 500;
  font-size: 1.0rem;
}

.review-box .product-info-review {
  font-size: 0.98rem;
}

.review-box .product-info-gray {
  color: #656565;
}

.star-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-box span {
  line-height: 22px;
}

.star-figure {
  color: #5d5d5d;
  width: 40px;
  text-align: center;
  font-size: 0.85rem;
}

.star-total {
  color: #404040;
}

.star-score {
  margin-left: 5px;
}

.star-strip {
  width: 200px;
  background: #f4f4f4;
  margin: 3px 0px;
  border: #E9E9E9 1px solid;
}

.star-strip-rate {
  width: 91%;
  background: #FFCE00;
  height: 20px;
}

.review-box-list {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding: 20px 0;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  display: flex;
}

.review-box-w {
  display: flex;
  justify-content: left;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  margin-right: 30px;
}

.light-gray {
  margin-right: 5px;
  color: #5d5d5d;
  font-size: 0.9rem;
}

.review-box-info {
  display: flex;
  gap: 10px;

}

.review-box-date {
  color: #5d5d5d;
  font-size: 0.75rem;
}

.review-box-contern {
  flex-grow: 1;
}

.review-box-contern-star {
  margin: 0 0 20px 0;
}

.review-box-contern-star .icon {
  padding: 0;
}

.review-box-contern-img {
  display: flex;
  gap: 10px;
}

.review-box-contern-img img {
  width: 100px;
  height: auto;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(153, 153, 153, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  z-index: 9999;
}

.overlay.hidden {
  display: none;
}

.overlay-content {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#largeImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: 300px;
}

.close-btn {
  z-index: 2002;
  position: absolute;
  top: -2px;
  right: 4px;
  font-size: 24px;
  cursor: pointer;
}

.review-box-contern-p {
  margin-bottom: 20px;
  color: #444;
}

.review-box-right {
  text-align: center;
}

.review-box-right span {
  width: 100%;
  display: block;
}

.button-tertiary {
  margin: 10px 0 20px 0;
}

.button-tertiary a {
  display: inline-block;
  margin: 10px 0 0 0;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 1.0rem;
}

.button-tertiary a:hover {
  border: 2px solid #ccc;
}

@media screen and (max-width: 480px) {
  .review-box-right {
    width: 100%;
  }

  .review-box-contern-img {
    justify-content: space-between;
  }

  .review-box-contern-img a {
    flex: 0 0 calc(33.333% - 6.666px);
  }

  .review-box-contern-img img {
    width: 100%;
  }

  .review-box-info {
    flex-direction: initial;
    width: 100%;
  }
}