.product-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.product {
    padding: 1px;
    margin-top: 10px;
    width: 33%;
    cursor: pointer;

}

.product:last-child,
.product:first-child {
}

.product-img {
    position: relative;
    width: 100%;
    height: 250px;
    background: no-repeat center center;
    background-color: #fff;
    background-size: 100%;
}

.product-img a {
    width: 100%;
    height: 100%;
    display: block;
}

.product-img__price {
    position: absolute;
    right: -5px;
    top: 70%;
    color: #fff;
    font-weight: bold;
    background-color: var(--main-color);
    padding: 5px 15px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.product-desc {
    /*display: flex;
    flex-direction: column;
    height: 30px;
    justify-content: space-between;*/
    position: relative;
    width: 100%;
    background: no-repeat center center;
    background-size: contain;
    background-color: #fff;
}

.product-desc__title {
    padding-top: 10px;
    text-align: center;
    display: block;
}

.product-price {
    text-align: center;
    color: #0d3625;
    font-weight: bold;
    font-size: 12px;
    display: block;
}

.btn-add {
    margin: 15px 0;
    border: 2px solid var(--main-color);
    background-color: transparent;
    float: right;
}

.btn-add:hover {
    color: #fff;
    background-color: var(--main-color);
}

@media (max-width: 991px) {
    .product {
        width: 50%;
    }
}
/*
.add-cart{
    background-color: white;
    border: 1px #0d3625;
    display: block;
    cursor: pointer;
    color: #0d3625;
    box-shadow:inset 0px 1px 0px 0px #0d3625;
    margin-top: 15px;
}*/


.add-cart {
    font-size: 15px;
    background-color:#ffffff;
    border:0.1px solid rgba(13, 54, 37, 0.68);
    display: block;
    cursor:pointer;
    color:#0d3625;
    font-weight:bold;
    padding:10px 40px;
    text-decoration:none;
    width: 100%;
    text-align: center;
    margin-top: 4px;
}
.add-cart:hover {
    background-color: #36d3c6;
    color: white;
    text-decoration: none;
}
.add-cart:active {
    position:relative;
    top:1px;
}
