/** Recommended cart icon codes: f116; f126 - little bag; f138; f145; f182 **/
.theme-woodmart .wd-recommended-cart-icon>a:before {
  /* content:"\f149"; */
  content:"\f126";
}
.theme-woodmart .recommended-product.wd-recommended-cart-icon>a:before {
  /* content:"\f148"; */
  color: #50bfef;
  font-weight: 500;
}
.theme-woodmart .recommended-product .wd-tooltip-label {
  right: 70%;
}
/** Product reflink icon codes: f145, f136; f116 - note , f104, **/
.theme-woodmart .wd-product-reflink-icon>a:before {
  content:"\f116";
}
/** Header button */
/* .theme-woodmart .whb-main-header .wd-button-wrapper:has(.recommended-products) { */
.theme-woodmart .whb-main-header .wd-button-wrapper {
  padding: 0 0 4px 0;
  display: none;
}
.theme-woodmart .whb-main-header .recommended-products {
  border: none;
}
.theme-woodmart .whb-main-header .recommended-products .wd-btn-icon {
  margin: 0;
  height: 24px;
  width: 24px;
}
/** */
.theme-woodmart .copy-link {
  align-self: center;
  text-align: center;
  position: relative; /* Для позиционирования подсказки */
}
.theme-woodmart .copy-link::after {
  content: attr(data-clicked-tip);
  position: absolute;
  bottom: 100%; /* Расположение подсказки над элементом */
  /* left: 50%; */
  transform: translateX(-50%) translateY(-5px); /* Центрирование и отступ */
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap; /* Предотвращает переносы */
  opacity: 0; /* Скрываем по умолчанию */
  pointer-events: none; /* Предотвращает взаимодействие курсора с подсказкой */
  transition: opacity 2.5s cubic-bezier(.93,-0.95,1,.06); /* https://cubic-bezier.com/#.93,-0.95,1,.06 */
}
/* @since 1.17.0 */
.theme-woodmart.newave-kz:not(.newave-my-account) .copy-link::after, .theme-woodmart.newave-kg:not(.newave-my-account) .copy-link::after {
  bottom: initial;
  top: 100%; /* Расположение подсказки под элементом */
  transform: translateX(-75%) translateY(-5px);
}
.theme-woodmart .wd-style-text.copy-link::after {
  left: 50%;
}
.theme-woodmart .copy-link:active::after {
  opacity: 1;
  transition: opacity 0.01s linear;
}