.champ-card {
  position: relative;
}

.champ-card.has-favorite-btn .champ-title {
  padding-right: 45px;
  box-sizing: border-box;
}

.champ-card.has-favorite-btn .champ-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-favorite-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 8;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  line-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  border: none;
  border-radius: 999px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C241E;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.ws-favorite-btn:hover {
  border: none;
  background: #FFFFFF;
  box-shadow: 0 10px 20px rgba(44, 36, 30, 0.08);
}

.ws-favorite-btn.is-active {
  background: #FFFFFF;
  color: #2C241E;
}

.ws-favorite-btn.is-loading {
  pointer-events: none;
  opacity: .72;
}

.ws-favorite-btn__icon {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ws-favorite-btn__icon svg {
  width: 18px;
  height: auto;
  display: block;
  flex: 0 0 18px;
  max-width: none;
  max-height: none;
  margin-top: 2px;
}

.ws-favorite-btn__icon--default {
  display: flex;
}

.ws-favorite-btn__icon--active {
  display: none;
}

.ws-favorite-btn.is-active .ws-favorite-btn__icon--default {
  display: none;
}

.ws-favorite-btn.is-active .ws-favorite-btn__icon--active {
  display: flex;
}

.champ-card .ws-favorite-btn ~ .product-topright-badge {
  top: 58px;
  right: 14px;
}



.ws-favorite-btn,
.ws-favorite-btn:hover,
.ws-favorite-btn:active,
.ws-favorite-btn:focus,
.ws-favorite-btn:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.ws-favorite-btn:not(.is-active),
.ws-favorite-btn:not(.is-active):hover,
.ws-favorite-btn:not(.is-active):active,
.ws-favorite-btn:not(.is-active):focus,
.ws-favorite-btn:not(.is-active):focus-visible {
  background: #FFFFFF !important;
  color: #2C241E !important;
}

.ws-favorite-btn.is-active,
.ws-favorite-btn.is-active:hover,
.ws-favorite-btn.is-active:active,
.ws-favorite-btn.is-active:focus,
.ws-favorite-btn.is-active:focus-visible {
  background: #FFFFFF !important;
  color: #2C241E !important;
}

.ws-favorite-btn {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}




@media (max-width: 767px) {

  .ws-favorite-btn {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }


  .champ-card .ws-favorite-btn ~ .product-topright-badge {
    top: 52px;
    right: 12px;
  }
}