.sf-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 12px 20px
}

.sf-wishlist-grid .sf-product-card {
    width: 100%;
    min-width: 0;
    flex: none
}

.sf-wishlist-grid .sf-product-image {
    height: 190px
}

.sf-wishlist-empty {
    padding: 80px 24px;
    text-align: center
}

.sf-wishlist-empty svg {
    width: 56px;
    height: 56px;
    color: #d0d5dd
}

.sf-wishlist-empty h2 {
    font-size: 17px;
    margin: 12px 0 5px
}

.sf-wishlist-empty p {
    font-size: 10.5px;
    color: #667085;
    margin: 0 0 16px
}

.sf-wishlist-empty a {
    display: inline-flex;
    height: 42px;
    align-items: center;
    padding: 0 20px;
    border-radius: 9px;
    background: var(--sf-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 850
}

@media(max-width:350px) {
    .sf-wishlist-grid {
        gap: 7px;
        padding-left: 8px;
        padding-right: 8px
    }

    .sf-wishlist-grid .sf-product-image {
        height: 166px
    }
}