.wishlist-btn-wrapper {
  position: absolute;
  top: 10px;
  left: 10px !important;
  right: auto !important;
  z-index: 10;
}

.wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  line-height: 1;
}

.wishlist-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.wishlist-btn .wl-icon {
  font-size: 18px;
  line-height: 1;
  color: #b1b1b1;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  position: relative;
  top: 2px;  
}

.wishlist-btn.active .wl-icon {
  color: #e53935;
}

.wishlist-btn.loading .wl-icon {
  opacity: 0.5;
}

/* Product display page */
.product-gallery-main {
  position: relative;
}

.product-gallery-main .wishlist-btn-wrapper {
  top: 10px;
  left: 10px !important;
}
