.wishlist-btn {
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: #808285;
  transition:
    color 0.2s,
    transform 0.15s;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition:
    fill 0.2s,
    stroke 0.2s;
}

.wishlist-btn.is-active {
  color: #f58220;
}

.wishlist-btn.is-active svg {
  fill: currentColor;
}

.wishlist-counter {
  font-weight: 600;
  font-size: 11px;
  padding: 0 5px;
  display: inline-flex;
  margin: 0 !important;
}

.wishlist-counter__num {
  position: absolute;
  top: -5px;
  right: -8px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: inherit;
  background-color: #206e8dd6;
  white-space: nowrap;
  color: #fff;
  border-radius: 50%;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 24px;
}

.wwc-favorite-mobile {
  position: relative;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .wishlist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}
