/* Product Card */
.product-card a:not(.btn),
.product-card-link {
    background: none !important;
}

.product-card-link {
    display: block;
    height: 100%;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.product-card__media {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 330 / 280 auto;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #e5eae6;
}

.product-card__media:after {
    content: "\e914";
    font-family: 'heartland-icon';
    position: absolute;
    right: -37px;
    top: -104px;
    font-size: 169px;
    color: #dedbcc;
    opacity: 0.4;
    pointer-events: none;
}

.product-card__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.product-card__detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin-top: 20px;
}

.product-card__detail .btn {
    margin-top: auto;
}

.product-card__title {
    font-size: 22px;
}

@media (min-width: 768px) {
    /* Product Card */
    .product-card__media:after {
        top: -95px;
        font-size: 152px;
    }
}

@media (min-width: 1025px) {
    /* Product Card */
    .product-card__image {
        transition: transform 0.3s;
    }

    .product-card-link:hover .product-card__image {
        transform: scale(1.05);
    }

    .product-card__media:after {
        top: -125px;
        right: -42px;
        font-size: 200px;
    }
}