.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    margin: 40px 20px;
    text-align: center;
    width: 300px;
}

.product-card img {
    width: 300px;
    height: auto;
    filter: grayscale(100%);
    transition: 0.15s ease-in;
    cursor: pointer;
}

.product-card img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.products-filter ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.products-filter ul li a {
    text-decoration: none;
    color: grey;
    text-transform: uppercase;
}

.products-filter ul li a.activeteste {
    text-decoration: underline;
    color: #843443;
}

.products-filter ul li a:hover {
    color: #843443;
}