.yith-wcwl-form {
    padding: 30px 20px;
}

.wishlist_table.mobile li:nth-child(2n) {
    background-color: #fafafa;
}

.wishlist_table tr td.product-thumbnail a img {
    width: 100%;
    height: auto;
}

.wishlist_table .product-add-to-cart a {
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
    line-height: 40px;
    transition: all .3s ease-out 0s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 0 !important;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share {
    float: none;
}

/* Scope a la wishlist para no afectar otros botones */
.yith-wcwl-wishlist a.remove_from_wishlist,
.yith-wcwl-form a.remove_from_wishlist,
.yith-wcwl-table a.remove_from_wishlist{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  line-height: 0;
  font-size: 0;
}

/* Inserta tu icono (mismo codepoint que .icon-trash-alt:before) */
.yith-wcwl-wishlist a.remove_from_wishlist::before,
.yith-wcwl-form a.remove_from_wishlist::before,
.yith-wcwl-table a.remove_from_wishlist::before{
  content: "\f2ed";
  font-family: 'icons_mikidis'!important;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile: si el markup trae <i class="fa fa-trash">, lo ocultamos */
.yith-wcwl-wishlist a.remove_from_wishlist .fa,
.yith-wcwl-form a.remove_from_wishlist .fa,
.yith-wcwl-table a.remove_from_wishlist .fa{
  display: none !important;
}


/*********************************************/
/*                Para Móvil                 */
/*********************************************/

@media screen and (max-width: 768px) {
    .wishlist_table.mobile {
        padding: 0;
    }
    
    .wishlist_table.mobile li {
        padding: 0 0 0 115px;
        position: relative;
    }
    
    .wishlist_table.mobile li .item-wrapper {
        width: 100%;
    }
    
    .wishlist_table.mobile .product-thumbnail {
        width: 100px;
        position: absolute;
        left: 0;
    }
    
    .wishlist_table.mobile .product-thumbnail img {
        max-width: 100px;
        height: auto;
    }
    
    .wishlist_table.mobile .item-details {
        display: block !important;
        width: 100% !important;
    }
    
    .wishlist_table.mobile .item-details .product-name {
        padding-right: 30px;
    }
    
    .wishlist_table.mobile .item-details .product-name h3 {
        padding-top: 0;
    }
    
    .wishlist_table.mobile .product-remove {
        position: absolute;
        top: 0;
        right: 0;
    }
}