.sbProductImage:before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transition: all .3s ease;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
}

.sbProductLink:hover .sbProductImage:before,
.sbProductLink:focus .sbProductImage:before{
    visibility: visible;
    opacity: 0.15;
}

.sbProductLink:hover .sbProductCard,
.sbProductLink:focus-visible .sbProductCard{
    box-shadow: none !important;
}

.sbProductCard .sbProductPrice span{
    font-size: 21px;
    color: black;
    font-weight: 600;
    height: 33px;
    display: inline-block;
}

.sbProductCard .sbProductBrandContainer{
    order: 1;
}

.sbProductCard .sbProductBrandContainer span{
    height: fit-content;
    margin: 0;
    color: #000;
    font-style: normal;
    font-size: 14px;
    text-transform: uppercase;
    margin: 12px 0;
    font-weight: 800;
}

.sbProductCard .sbProductMetaInfo .sbProductTitle{
    height: 32px;
    margin: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 16px;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    vertical-align: top;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000;
}