.productItemV2-root-fYo {
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #3A3A3C;
  text-decoration: none;
}

.productItemV2-root-fYo:hover,
.productItemV2-root-fYo:visited {
  color: #3A3A3C;
  text-decoration: none;
}

.productItemV2-root-fYo:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

/* Try On button */
.productItemV2-tryon-6Dh {
  position: absolute;
  top: 16px;
  left: 8px;
  z-index: 2;
  background: url(/nl/i_tryon.svg) no-repeat 0px 0px;
  /* background: url("../../assets/img2/someicon.png") no-repeat 0px 0px; */
  background-size: 24px auto;
  text-indent: -9999px;
  overflow: hidden;
  width: 24px;
  height: 24px;
  transition: all 0.3s;
  cursor: pointer;
}

/* 略微放大一点 */
.productItemV2-tryon-6Dh:hover {
  transform: scale(1.1);
}

.productItemV2-addToWishlist-Q7w {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #3A3A3C;
  /* 默认色，SVG 使用 currentColor 描边 */
  transition: transform 0.2s ease;
}

.productItemV2-addToWishlist-Q7w:hover {
  transform: scale(1.1);
}

.productItemV2-addToWishlistActive-TSP {
  color: rgb(var(--venia-global-color-red-400));
}

/* 控制心愿图标填充：默认不填充，激活时填充为当前颜色 */
.productItemV2-addToWishlist-Q7w svg path {
  fill: none;
}

.productItemV2-addToWishlistActive-TSP svg path {
  fill: currentColor;
}

/* Image block */
.productItemV2-image-HUA {
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 66.5%;
  position: relative;
  margin: 0 12px;
  text-decoration: none;
  color: inherit;
}

.productItemV2-img--op {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
}

.productItemV2-imgHover-0BA {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}

.productItemV2-image-HUA:hover .productItemV2-img--op {
  opacity: 0;
}

.productItemV2-image-HUA:hover .productItemV2-imgHover-0BA {
  opacity: 1;
}

/* Match score */
.productItemV2-matchScore-iIY {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  font-size: 12px;
  line-height: 130%;
  padding: 4px 8px;
  border-radius: 36px;
}


/* Name */
.productItemV2-name-Xr6 {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  margin: 4px 12px;
  line-height: 1.2;
}

/* Footer with price and colors */


.productItemV2-price-KSI {
  width: 100%;
  margin: 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 18px;
  font-weight: bolder;
}

.productItemV2-old-4Qe {
  font-size: 12px;
  font-weight: 400;
  color: #696B72;
  text-decoration: line-through;
  height: 16px;
  width: 100%;
}

/* Color dots */
.productItemV2-ulColor-A4b {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 12px 12px 12px;
  /* 支持水平滚动,并且不换行 */
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

/* 隐藏ulColor的水平滚动条的样式 */
.productItemV2-ulColor-A4b::-webkit-scrollbar {
  height: 0;
}

/* ulColor:after 在末尾放一个渐变的遮罩层,挡住最右边被截取的子元素,让子元素看起来要顺滑些 */
.productItemV2-ulColor-A4b:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* 保持子元素的样式不要变形,保持一行显示 */
.productItemV2-ulColorLi-3Jg {
  flex-shrink: 0;
  /* 防止被挤压 */
  width: 12px;
  height: 12px;
  cursor: pointer;
  border-radius: 50%;
  margin: 6px 0 0 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* 选中的颜色给外围加一个圆圈并且与内圈保持一定的距离 */
.productItemV2-ulColorLi-3Jg:before {
  content: "";
  display: none;
  border-color: #654321;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}

.productItemV2-ulColorLi-3Jg:hover:before {
  display: block;
}

.productItemV2-ulColorLi-3Jg.productItemV2-active-Qv7:before {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .productItemV2-name-Xr6 {
    -webkit-line-clamp: 2;
    font-size: 14px;
  }

  .productItemV2-foot-CFc {
    flex-direction: column;
    align-items: flex-start;
  }

  .productItemV2-old-4Qe {
    font-size: 12px;
  }
}
