.product-cards {
    position: relative;
    color: var( --color-black-02 );
}

.product-cards__top-content {
    text-align: center;
}

.product-card-item {
    margin-top: 25px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    background: var( --color-white );
    transition: transform .2s linear;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    border-radius: 13px;
    padding: 25px;
    transition: all .2s linear;
    overflow: hidden;
}

.product-card:hover .product-card__img-wrap {
    cursor: pointer;
    /* animation-name: bounce;
    -moz-animation-name: bounce; */
    transform: scale(1.1);
}

.product-card:hover {
    box-shadow: 0 3px 15px 6px rgba(0, 0, 0, 0.16);
}

.product-badges {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    padding: 5px 17px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-style: italic;
    color: #fff;
}

.product-badge:first-child {
    border-bottom-left-radius: 0;
}

.product-badge--featured{
    background: linear-gradient(135deg, #033041 0%, #02688e 100%);
}

.product-badge--new {
    background: var(--color-green);
}

.product-card__img-wrap {
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 24px;
    text-align: center;
    /* -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: 2; */
    transition: all ease-in-out .3s;
}

.product-card__img {
    width: auto;
    margin: 0 auto;
    display: block;
    height: 130px!important;
    object-fit: contain;
}

.product-card__title {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 10px;
}

.product-card__title h4 {
    font-size: 22px;
    line-height: 1.27em;
    font-weight: 700;
    color: var( --color-dark-blue );
    font-style: italic;
    margin: 0;
    padding: 0;
    width: calc(100% - 30px);
}

.product-card--link.btn-border {
    border: 1px solid var( --color-green );
    background: transparent;
    color: var( --color-green);
    border-radius: 10px;
    padding: 15px 24px 15px 24px;
    margin: 15px auto 0;
    display: block;
    text-align: center;
    transition: all .2s linear;
}

.product-card--link.btn-border i {
    margin-left: 10px;
}

.product-card--link.btn-border:hover {
    background: linear-gradient(135deg,#0a5c29 0%,#009639 100%);
    color: var( --color-white );
}

.quick-view {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 500;
    color: var( --color-light-blue );
    font-family: var( --font-family-secondary ); 
    letter-spacing: 0.03em;
    width: 130px;
    text-align: right;
}

.product-card__description {
    font-size: 14px;
    line-height: 1.28em;
    font-weight: 400;
    color: var( --color-black-02 );
    margin: 0;
    padding: 14px 42px 14px 15px;
    border: 1px solid var( --color-black-02 );
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}

.product-card__description::before {
    content: '\e900';
    font-family: 'icomoon';
    position: absolute;
    right: 11px;
    top: 50%;
    font-size: 13px;
    font-weight: normal;
    transform: translate(0, -50%);
}

.product-card__quick-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-info h5,
.stock {
    font-size: 14px;
    line-height: 1.28em;
    font-weight: 400;
    color: var( --color-black-02 );
    margin: 0;
    padding: 0 32px 0 0;
    font-style: normal;
}

.stock {
    color: var( --color-green );
    padding: 0;
}

.product-price {
    font-size: 17px;
    line-height: 1.28em;
    font-weight: 400;
    color: var( --color-black-02 );
    margin: 0;
    padding: 0 0 0 0;
}

.product-card__top {
    padding-bottom: 30px;
}

.product-card--link {
    display: block;
    text-align: center;
    padding: 15px 24px 15px 24px;
    overflow: visible;
}

.product-card--link::before {
    display: none;
}

.product-card--link i {
    font-size: 19px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    padding: 0 0 3px 3px;
}

.product-card__bottom .added_to_cart.wc-forward {
    display: none;
}

.product-cross-reference{
	text-align:center;
}

.product-cross-reference p{
    padding-top:5px;
    padding-bottom:0px;
}

.product-cross-reference p:first-child{
    padding-top:15px;
}

@media (min-width: 768px) {
    .product-card-item {
        margin: 20px 0 10px;
    }
    
    .product-card {
        padding: 25px 28px 30px;
    }

    .product-cards__top-content {
        text-align: left;
    }

    .product-card__description {
        padding: 14px 60px 14px 15px;
    }
    
    .product-card__description::before {
        right: 30px;
    }

}

@media (min-width: 1200px) {
    .product-card__top {
        padding-bottom: 14px;
    }
}

/* Animation */

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-20px);
		-ms-transform:     translateY(-20px);
		transform:         translateY(-20px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform:     translateY(-15px);
		transform:         translateY(-15px)
	}
}
