.products article .ets-wishlist-button-add.left {
  left: px!important;
  top: 60px!important;
}
.products article .ets-wishlist-button-add.right {
  right: 10px!important;
  top: 60px!important;
}
.ets-wishlist-button-add:not(.view_page) {
  background-color: #ffffff!important;
}
.ets-wishlist-button-add:not(.view_page):hover {
  background-color: #ffff00!important;
}
.ets-wishlist-button-add:not(.view_page):not(.delete_wishlist) svg {
  color: #7a7a7a!important;
  fill: #7a7a7a!important;
}
.ets-wishlist-button-add.delete_wishlist svg {
  color: #ff0000!important;
  fill: #ff0000!important;
}
/* parent */
.product-miniature {
  position: relative;
}

/* default gizli */
.ets-wishlist-button-add {
  position: absolute;
  top: 10px;
  right: 50px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* hover olanda göstər */
.product-miniature:hover .ets-wishlist-button-add {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

/* button add */
.product-wishlist-action {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  cursor: pointer;
}

.product-wishlist-action .ets-wishlist-button-add {
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.product-wishlist-action .ets-wishlist-button-add svg {
  width: 24px;
  height: 24px;
  fill: #ccc;
  transition: fill 0.3s ease;
}

.product-wishlist-action .ets-wishlist-button-add:hover svg,
.product-wishlist-action .ets-wishlist-button-add.delete_wishlist svg {
  fill: #e74c3c;
}

.product-wishlist-action .wishlist-label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.product-wishlist-action .wishlist-label::before {
  content: "Añadir a favoritos";
}

.product-wishlist-action .ets-wishlist-button-add.delete_wishlist ~ .wishlist-label::before {
  content: "Eliminar de favoritos";
}