.product-cards {
    position: relative;
    border-bottom: 2px solid #FFCC00;
}

.product-cards__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.product-cards__wrap {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
}

.product-cards__item {
    display: flex;
    flex-direction: column;
}

.product-card {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: none;
}

.product-card__image {
    width: 100%;
    height: 130px;
    margin-bottom: 16px;
    display: none;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.product-card__image img {
    mix-blend-mode: multiply;
}

.product-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 0 auto;
    position: relative;
    z-index: 2;
}

.product-card__title {
    font-size: 20px;
    line-height: 1em;
    color: var(--color-black);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 0;
    position: relative;
    display: block;
}

.product-card__title br {
    display: none;
}

.product-card::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 0;
    width: calc(100% + 44px);
    height: 1px;
    background: #E2E2E2;
}

/* .product-card::after {
    content: "\e90f";
    font-family: 'icomoon';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0, -50%);
    font-weight: normal;
} */

.product-card-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: all ease-in-out 0.4s;
}

@media( min-width: 768px) {
    .product-cards {
        border-bottom: none
    }

    .product-cards__item {
        flex: unset;
        margin-top: 30px;
    }
    
    .product-card {
        border-bottom: 4px solid #FFCC00;
        height: inherit;
        flex: 1;
        text-align: center;
    }

    .product-card__image {
        display: flex;
    }

    .product-card__info {
        justify-content: center;
    }
    
    .product-card__title {
        font-size: 24px;
        line-height: 32px;
        padding: 0 0 8px 0;
    }

    .product-card__title br {
        display: block;
    }
    
    .product-card::before,
    .product-card::after {
        display: none;
    }

}
@media( min-width: 1200px) {
    .product-cards__wrap {
        padding-top: 25px;
    }

    .product-cards__item {
        margin-top: 0;
    }
    
    .product-card {
        border-bottom: 8px solid #FFCC00;
    }

    .product-card::before {
        content: "";
        position: absolute;
        left: -10px;
        top: auto;
        bottom: -8px;
        width: calc(100% + 20px);
        height: 0;
        background: linear-gradient(to bottom,  rgba(255,204,0,0.5) 0%,rgba(255,204,0,1) 100%); 
        display: block;
        transition: all ease-in-out 0.2s;
        z-index: -1;
    }

    .product-cards--link:hover::before {
        transition: all ease-in-out 0.2s;
        height: 160px;
    }

    .product-cards--link:hover .product-card-dots {
        opacity: 1;
    }

    .product-card__info {
        max-width: 180px;
        margin: 0 auto;
    }
}

@media( min-width: 1600px) {
    .product-card__image {
        height: 210px;
    }

    .product-cards--link:hover::before {
        height: 180px;
    }

    .product-card__image img {
        width: auto;
        height: auto;
    }

    .product-card__title {
        font-size: 24px;
        line-height: 32px;
    }
}













