/* WOOCOMERCE STYLES */
/* General Styles */
.woocommerce .products-row {
    --vs-gutter-x: 8px;
    justify-content: center;
}
/* NEW & SALE BADGES */
.woocommerce span.onsale.itsnew {
    width: 20px;
    height: 20px;
    min-width: unset;
    min-height: unset;
    position: absolute;
    left: unset;
    top: 20px;
    right: 20px;
    padding: 0;
    margin: 0;
    background: transparent;
    line-height: normal;
    font-size: small;
}
/* YITH WISHLIST BUTTON */
.woocommerce .yith-add-to-wishlist-button-block {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gray);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.woocommerce .product:hover .yith-add-to-wishlist-button-block {
    opacity: 1;
    visibility: visible;
}
.woocommerce .yith-wcwl-add-to-wishlist-button {
    padding: 0;
    margin: 0;
    gap: 0;
}
.woocommerce .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button svg {
    width: 16px;
    height: auto;
}