.product-crosslink-cards .heading-area {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}
.product-crosslink-cards .heading-area .accent-text {
    margin-left: auto;
    margin-right: auto;
}
.product-card-outer-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.product-card-outer-flex::after {
    content: '';
    display: block;
    height: 1px;
}
.product-card-outer-flex::after,
div.product-card {
    width: calc(33.3% - 15px);
}

/*** woocommerce cards ***/
.product-card-outer-flex__woo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.product-card-outer-flex__woo::after {
    content: '';
    display: block;
    height: 1px;
    width: calc(33.3% - 15px);
}
.product-card-outer-flex__woo > .product {
    width: calc(33.3% - 15px);
    display: flex;
}
.product-card-outer-flex__woo > .product div.product-card {
    width: 100%;
}

/*** ---------- Product Card ---------- ***/
div.product-card {
    display: flex;
}
div.product-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-color: white;
    padding: 65px 45px;
    margin-bottom: 30px;
}
/*** Product Card Onsale Badge ***/
div.product-card span.onsale,
.woocommerce span.onsale {
    position: absolute;
    background: var(--sale-red);
    padding: 10px 20px;
    left: unset;
    right: 0;
    top: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    border-radius: 0;
    min-width: unset;
    min-height: unset;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
/*** Product Card Title & Image ***/
div.product-card .product-card-title-and-image {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
div.product-card .product-card-title-and-image h3 {
    margin-bottom: 10px;
}
div.product-card .product-card-title-and-image h5 {
    margin-bottom: 10px;
    color: var(--bottle);
}
div.product-card .product-card-title-and-image .left {
    width: 60%;
}
div.product-card .product-card-title-and-image .right {
    width: 40%;
}
/*** Product Card Dimensions ***/
div.product-card .product-card-dimensions {
    margin-top: 30px;
    margin-bottom: 30px;
}
div.product-card .product-card-dimensions h6 {
    margin-bottom: 5px;
}
div.product-card .product-card-dimensions hr {
    margin-top: 30px;
}
/*** Product Card List Points ***/
div.product-card .product-card-list-points {
    padding-bottom: 40px;
}
/*** Product Card Bottom ***/
div.product-card .product-card-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
div.product-card .product-card-bottom a.button.primary {
    margin-bottom: 20px;
}

@media(max-width: 1599.98px) {
    div.product-card-inner {
        padding: 45px 35px;
    }
    div.product-card span.onsale,
    .woocommerce span.onsale {
        padding: 7px 15px;
        font-size: 18px;
    }
    div.product-card .product-card-dimensions {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    div.product-card .product-card-dimensions hr {
        margin-top: 20px;
    }
}
@media(max-width: 1299.98px) {
    .product-crosslink-cards .product-card-outer-flex::after,
    .product-crosslink-cards div.product-card {
        width: calc(50% - 15px);
    }
    .product-card-outer-flex__woo::after {
        width: calc(50% - 15px);
    }
    .product-card-outer-flex__woo > .product {
        width: calc(50% - 15px);
    }
}
@media(max-width: 991.98px) {
    div.product-card .product-card-title-and-image {
        display: flex;
        flex-direction: column-reverse;
    }
    div.product-card .product-card-title-and-image .right {
        margin-bottom: 15px;
        width: 100%;
    }
    div.product-card .product-card-title-and-image h3 {
        margin-bottom: 5px;
    }
    div.product-card .product-card-dimensions {
        margin-top: 0;
    }
    div.product-card-inner {
        padding: 40px 30px;
    }
    div.product-card .product-card-list-points {
        padding-bottom: 20px;
    }
}
@media(max-width: 767.98px) {
    .product-card-outer-flex__woo::after {
        width: 100%;
    }
    .product-card-outer-flex__woo > .product {
        width: 100%;
    }
    .product-card-outer-flex__woo > .product .product-card-inner {
        width: 100%;
    }

    .product-crosslink-cards .product-card-outer-flex::after,
    .product-crosslink-cards div.product-card {
        width: 100%;
    }
    div.product-card .product-card-title-and-image {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    div.product-card .product-card-title-and-image .left {
        width: 60%;
    }
    div.product-card .product-card-title-and-image .right {
        width: 40%;
    }
}
@media(max-width: 575.98px) {
    div.product-card .product-card-title-and-image h5 {
        font-size: 16px;
        line-height: 22px;
    }
    div.product-card-inner {
        padding: 40px 20px;
    }
}