.wishlist-grid {
    display: flex;
    flex-direction: column;
    gap: 0.729vw;
}

.wishlist-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    ;
    border: 1px solid #A8A9A2;
    padding: 0;
    border-radius: 0px;
}

.wishlist-image {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: solid 1px #A8A9A2;
    background-color: #f2f2f2;
}

.wishlist-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    mix-blend-mode: multiply;
}

.wishlist-details {
    flex: 0 0 50%;
    /* 50% width for the details column */
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.wishlist-details-header {
    padding: 0.729vw 1.042vw;
    display: flex;
    flex-direction: column;
    gap: 0.729vw;
    border-bottom: solid 1px #A8A9A2;
}

.wishlist-details-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.729vw 1.042vw;
}

.wishlist-details-variations {
    display: flex;
    flex-direction: column;
    gap: 0.729vw;
}

.wishlist-details p,
.wishlist-details a,
.wishlist-details h3 {
    margin: 0;
    text-transform: uppercase;
}

.increase-quantity-wishlist , .decrease-quantity-wishlist{
    background-color: transparent;
    padding: 0px 5px;
    cursor: pointer;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
    border: none;
    font-family: 'AeonikPro';
    color: black;
}
