.tc__link{
    text-decoration: none;
}
.product-item__inner {
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    border-radius: 10px;
    transition: box-shadow .3s;
}
.product-item__content {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    align-items: center;
    flex-grow: 1;
}
.product-item__inner:hover {
    box-shadow: -8px -8px 16px 0 rgba(0, 0, 0, .0196078431), 8px 8px 16px 0 rgba(255, 255, 255, .3019607843);
}