/* Cart Preview */
.wishlist-preview {
	position: absolute;
	top: 100%;
	right: 0;
    height: fit-content;
    max-height: calc(100vh - var(--header-height));
    background: var(--white);
    padding: max(24px, 2.34375vw);
    opacity: 0;
    visibility: hidden;
    transition: var(--def-trans);
    box-shadow: 0px 2px 4px rgba(0,0,0,.16);
}

body.home:not(.scrolled) .wishlist-preview {
    max-height: calc(100vh - var(--header-init-height));
}

body.wishlist-open .wishlist-preview {
    opacity: 1;
    visibility: visible;
    transition: var(--def-trans);
}

.wishlist-preview .mini-wishlist-title {
    margin-bottom: max(16px, 1.25vw);
}

.wishlist-preview .wishlist-container {
    overflow-y: auto;
    margin-bottom: max(16px, 1.25vw);
}

.wishlist-preview .wishlist-container .wishlist-product-single {
	display: grid;
	grid-template-columns: repeat(3, auto);
	grid-gap: var(--grid-gap);
    padding: 1em 0;
    align-items: center;
}

.wishlist-preview .woocommerce-mini-cart .wishlist-product-single .product-img {
    grid-area: 1/1/span 2/1;
    display: flex;
    width: 100%;
    max-width: max(64px, 5.3125vw);
    aspect-ratio: 134/106;
}

.wishlist-preview .woocommerce-mini-cart .wishlist-product-single .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-preview .product-title {
	max-width: max(200px, 15vw);
	line-height: 1.2;
    grid-area: 1/2/1/2;
}

.wishlist-preview .remove-from-wishlist {
	display: flex;
	aspect-ratio: 21/24;
	height: max(16px, 1vw);
	background-image: url(../img/trash.svg);
    background-size: contain;
    background-repeat: no-repeat;
}