.ecla-wishlist-btn {
    position : absolute;
    top : 8px;
    right : 8px;
    background : rgba(255, 255, 255, 0.88);
    border : none;
    border-radius : 50%;
    width : 34px;
    height : 34px;
    display : flex;
    align-items : center;
    justify-content : center;
    cursor : pointer;
    z-index : 3;
    box-shadow : 0 1px 4px rgba(0, 0, 0, 0.15);
    transition : transform 0.15s, background 0.15s;
    padding : 0;
    line-height : 1;
}
.ecla-wishlist-btn:hover {
    transform : scale(1.15);
    background : #fff;
}
.ecla-wishlist-btn .ecla-wishlist-icon {
    font-size : 16px;
    line-height: 1;
    color : #e74c3c;
    transition : color 0.2s;
}
.ecla-wishlist-btn.is-wishlisted .ecla-wishlist-icon {
    color : #e74c3c;
}
#ecla-marketplace-wrapper.dark-mode .ecla-wishlist-btn {
    background : rgba(30, 30, 50, 0.85);
}
