* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(324px, 1fr));
}

.card-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #C9B896;
    color: #65462E;
    font-family: 'Rubik';
    margin: 5px;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 0px #65462E70;
}

.card-product:hover {
    background-color: #EDE8D0;
    cursor: pointer;
}

.card-top-line {
    display: flex;
    justify-content:space-between;
}

.card-mid-line {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 5px;
    padding-bottom: 5px;
}
.card-bottom-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    color: #D34E24;
}

.product-promote-img {
    max-width: 40px;
}
