.hpnt-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hpnt-product-list img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.hpnt-product-list-img{
    border-radius: 15px !important;
    overflow: hidden;
    height: 400px;
    transition: all 0.3s ease;
}

.hpnt-product-wrapper
.hpnt-product-list 
div.hpnt-product-list-img:hover{
    border-radius: 250px !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hpnt-product-list-img-content{
    position: relative;
    height: 100%;
}

.hpnt-product-list-img-content-tags{
    position: absolute; 
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    inset:0;
    margin: auto;
    transform: translateY(0%); 
    transition: all 0.3s ease-in-out;
}


.hpnt-product-list-img-content-tags-shop-name-text{
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 10px;
}


.hpnt-product-list-img-content-tags-shop{
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: none;
}

.hpnt-product-wrapper
.hpnt-product-list 
div.hpnt-product-list-img:hover
.hpnt-product-list-img-content-tags-shop{
    opacity: 1;
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.hpnt-product-wrapper
.hpnt-product-list 
div.hpnt-product-list-img:hover
.hpnt-product-list-img-content-tags{
    transform: translateY(-10%);
    animation: translateUp 0.3s ease-in-out;
}

.hpnt-product-wrapper
.hpnt-product-list 
div.hpnt-product-list-img:hover
.hpnt-product-list-img-content-tags-shop-name-text{
    border: none !important;
}

.hpnt-product-list-img-content-tags-shop-link{
    width: 100%;
    text-align: center;
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #fff;
}

.hpnt-product-list-img-content-tags-shop-link:hover{
    background-color: #fff;
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes translateUp {
    from {
        transform: translateY(0%);
    }
    to {
        transform: translateY(-10%);
    }
}