/* =========================================================
   PRODUCT CARD
========================================================= */

.hw-product-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(16, 36, 74, .045);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

/* .hw-product-card:hover {
    transform: translateY(-5px);
    border-color: #d6deeb;
    box-shadow: 0 16px 40px rgba(16, 36, 74, .11);
} */


/* Product Image */

.hw-product-image {
    height: 225px;
    display: block;
    position: relative;
    overflow: hidden;
    background: #f4f5f7;
}

.hw-product-image img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* padding: 18px; */
    transition: transform .4s ease;
}

.hw-product-card:hover .hw-product-image img {
    transform: scale(1.04);
}

.hw-no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b4bac4;
    font-size: 42px;
}

.hw-view-product {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 13px;
    right: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #315796;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    opacity: 0;
    transform: translateY(-5px);
    transition: .25s ease;
}

.hw-product-card:hover .hw-view-product {
    opacity: 1;
    transform: translateY(0);
}


/* Product Content */

.hw-product-content {
    padding: 20px;
}

.hw-product-category {
    display: inline-block;
    margin-bottom: 9px;
    padding: 5px 9px;
    border-radius: 6px;
    background: #eef3fb;
    color: #315796;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hw-product-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.hw-product-content h3 a {
    color: #10244a;
    text-decoration: none;
}

.hw-product-content h3 a:hover {
    color: #315796;
}

.hw-product-sku {
    color: #8b94a3;
    font-size: 12px;
    margin-bottom: 10px;
}

.hw-product-sku span {
    color: #596579;
}

.hw-product-content p {
    color: #727c8c;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 15px;
}

.hw-product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #315796;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.hw-product-link i {
    transition: transform .2s ease;
}

.hw-product-link:hover i {
    transform: translateX(4px);
}
