/**
 * @package     J2Commerce
 * @subpackage  Plugin.J2Commerce.AppWishlist
 *
 * @copyright   (C)2024-2026 J2Commerce, LLC <https://www.j2commerce.com>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

/* Grid view — image fits without cropping; height is set via inline style from plugin param */
.j2commerce-wishlist-grid-img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin-inline: auto;
}

/* Grid view — trash button hover-reveal */
.j2commerce-wishlist-grid-item .j2commerce-wishlist-grid-remove {
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.j2commerce-wishlist-grid-item:hover .j2commerce-wishlist-grid-remove,
.j2commerce-wishlist-grid-item:focus-within .j2commerce-wishlist-grid-remove {
    opacity: 1;
}
