.products-grid .product-item .product-item-info {
    padding: 10px;
    transition-duration: 0.3s;
    border: 5px solid #f0f7ff;
}

.products-grid .product-item .product-item-info:hover {
    border-color: #3fb4fb;
}

.action-wishlist-compare {
    display: inline-block;
    position: relative;
    left: 75px;
    opacity: 0;
    transition-duration: 0.2s;
}

.product-item:hover .action-wishlist-compare {
    opacity: 1;
    left: 0px;
    transition-delay: 0.2s;
}

.products-grid .product-item-details .product-item-actions .actions-secondary {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transition: all .3s;
}

.products-grid .product-item-details .product-item-actions .actions-secondary.towishlist {
    right: -36px;
    visibility: hidden;
    opacity: 0;
}

.products-grid .product-item-details .product-item-actions .actions-secondary.towishlist, 
.products-grid .product-item-details .product-item-actions .actions-secondary.tocompare {
    left: 0px;
    right: 0px;
    visibility: visible;
    opacity: 1;
}

.product-item-info:hover .product-item-photo:not(.porto-tb-featured-image) {
    box-shadow: none;
}

.product-item-info:hover .product-item-details .product-item-actions .tocart {
    color: #333 !important;
    background-color: #fff !important;
    border-color: #ddd !important;
}

.product-item-info .product-item-details .product-item-actions .tocart:hover {
    background: #08c !important;
    border-color: #08c !important;
    color: #fff !important; 
}

.product-item-name a {
    white-space: normal;
    overflow: visible;
    text-overflow: inherit;
}
.product-item .product-item-info  .product-item-name a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 60px;
}
.form-wishlist-items .products-grid.wishlist ol.product-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

body.wishlist-index-index .products-grid .product-items .product-item {
    margin: 0;
}

@media screen and (min-width: 769px) {
    body.wishlist-index-index .products-grid .product-item {
        width: calc(50% - 10px);
        margin-bottom: 10px;
    }   
}
@media screen and (min-width: 992px) {
    body.wishlist-index-index .products-grid .product-items .product-item {
        width: calc(50% - 14px);
    }    
}
@media screen and (min-width: 1200px) {
    body.wishlist-index-index .products-grid .product-items .product-item {
        width: calc(33.33333333% - 14px);
        margin: 0;
    }  
}
@media screen and (max-width: 768px) {
    body.wishlist-index-index .products-grid .product-item {
        width: 100%;
        margin-bottom: 0;
        padding: 0;
    }
    .wishlist-index-index .products-grid .product-item .product-item-inner {
        overflow: auto;
    }
}