/* Wishlist heart icon + save button styles */

.wishlist-item {
  position: relative;
}
.wishlist-item .sold-badge {
  position: absolute; top: 12px; right: 12px; z-index: 6;
  width: 66px; height: 66px; border-radius: 50%;
  background: #c2091f; color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; line-height: 1.15; text-transform: uppercase;
  transform: rotate(-12deg); box-shadow: 0 3px 10px rgba(0,0,0,.28); pointer-events: none;
}

.wishlist-toggle {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  width: 34px;
  height: 34px;
  border: none;
  background:#c2091f;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.wishlist-toggle-detail span {line-height: 19px;
  font-family: 'Conv_AvenirLTStd-Medium';
  font-size: 14px;
  color: #fff;}

.wishlist-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  pointer-events: none;
}
.wishlist-toggle.active svg {
  fill: #fff;
  stroke: #fff;
}
.wishlist-toggle:hover svg {
  stroke: #fff;
}

.wishlist-toggle-detail {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  border: 1px solid #c2091f;
  background: #c2091f;
  padding: 8px 14px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 14px;
}
.wishlist-toggle-detail.active {
  border-color: #c2091f;
  color: #c2091f;
}
.wishlist-toggle-detail svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  pointer-events: none;
}
.wishlist-toggle-detail.active svg {
  fill: #fff;
  stroke: #fff;
}
