#relatedProduct {
  position: absolute;
  width: 174px;
  top: 0;
  right: 100px;
  display: none;
  cursor: pointer;
  z-index: 11111;
}
.relate_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.8);
  display: none;
  z-index: 11111;
}
.relate_mask.active {
  display: block;
}
#relatedProduct.active {
  display: block;
}
#productListToast {
  position: absolute;
  top: 85px;
  right: 100px;
  /* background-color: white; */
  background: linear-gradient(247.22deg, rgba(255, 119, 119, 0) 64.99%, rgba(255, 119, 119, 0.1) 81.97%), radial-gradient(80.8% 222.27% at 16.28% 29.9%, rgba(255, 240, 188, 0.1) 0%, rgba(255, 240, 188, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, radial-gradient(73.22% 125.26% at 75.22% 8.14%, rgba(42, 76, 255, 0.1) 0%, rgba(42, 76, 255, 0) 100%), rgba(255, 255, 255, 1); backdrop-filter: blur(30px);
  width: 174px;
  /* height: 132px; */
  border-radius: 8px;
  padding: 20px 0;
  display: none; /* 초기에는 숨김 */
  z-index: 11111;
}
.productItem {
  padding: 7px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.productItem::before {
  content: "";
  width: 2px;
  height: 2px;
  background: #303030;
  border-radius: 3px;
  display: inline-block;
  margin-right: 8px;
}
.productItem::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 100%;
  border-radius: 2px;
  background: rgba(97, 73, 248, 0.9);
  box-shadow: inset 2px 2px 12px rgba(255, 255, 255, 0.3);
  display: none;
}
.productItem:hover:after{
  display: block;
}
.productItem:hover::before {
  content: "";
  background: #fff;
  
}
.productItem:hover {
  content: "";
  color: #fff;
  text-shadow: 1px 1px #00000020;
}
#productToast {
  font-family: 'SamsungOneKorean' !important;

  position: absolute;
  top: 85px;
  right: 100px;
  /* background-color: white; */
  background: linear-gradient(247.22deg, rgba(255, 119, 119, 0) 64.99%, rgba(255, 119, 119, 0.1) 81.97%), radial-gradient(80.8% 222.27% at 16.28% 29.9%, rgba(255, 240, 188, 0.1) 0%, rgba(255, 240, 188, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, radial-gradient(73.22% 125.26% at 75.22% 8.14%, rgba(42, 76, 255, 0.1) 0%, rgba(42, 76, 255, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, rgba(255, 255, 255, 1);
  /* bubble_effect */
  box-shadow: inset 8px 8px 16px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 4px;
  width: 174px;
  padding: 0 10px;
  display: none;
  z-index: 11111;
  border-radius: 8px;
}
#productToast #productName {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1f1f1f;
  margin-top: 16px;
  line-height: 1;
}
#productToast #productCode {
  font-size: 14px;
  text-align: center;
  color: #747474;
  font-weight: 400;
  margin-top: 4px;
}
#productToast #productImage {
  /* background: #f8f9fd; */
  /* margin-top: 10px; */
}
#productToast #productDescriptionContainer {
  /* padding: 0 10px; */
  padding: 0 8px;
  margin-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
}
#productToast #productDescriptionContainer .productDescription {
  display: flex;
  margin-bottom: 8px;
  line-height: 18px;
}
#productToast #productDescriptionContainer .productDescription p {
  margin-right: 6px;
}
#productToast hr {
  width: 142px;
  height: 1px;
  margin: 0px auto 16px auto;
  background: #fff;
  border: unset;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
}
#productToast #goBackButton {
  text-align: center;
  font-size: 12px;
  margin-bottom: 16px;
}
#goBackButton {
  cursor: pointer;
}
#goBackButton:hover {
  color: #6149F8;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  #relatedProduct {
    right: 50%;
    transform: translateX(50%);
  }
  #productListToast {
    top: 58px;
    right: 50%;
    transform: translateX(50%);
  }
  #productToast {
    top: 58px;
    right: 50%;
    transform: translateX(50%);
  }
}
