.product-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;

    padding: 1rem;
    background-color: var(--hekkerij-beige);
    border-radius: var(--border-radius);

    row-gap: 1rem;
    column-gap: 1rem;

    margin-bottom: 1rem;
}

.product-container.thin {
    padding: 1rem 0;
    margin-bottom: 0;
}

.product-card {
    background-color: var(--white);
    margin: auto;

    flex-grow: 1;
    flex-shrink: 1;
    width: 30%;
    max-width: 33%;

    border-radius: var(--border-radius);
    user-select: none;
    cursor: pointer;
    transition: color 200ms ease-in-out;
}

.product-card-container {
    padding: 0.5rem;
}

.product-card .product-image img {
    width: 100%;
    filter: sepia(0);
    transition: color 200ms ease-in-out;
}

.product-card .product-info {
    padding: 0.5rem 0.5rem 0;
}

.product-card .product-info h1 {
    font-size: 1.5rem;
    text-align: center;
    font-family: var(--brand-font), serif;
    color: var(--text);
    margin: 0;
}

/* hover */
.product-card:hover {
    background-color: var(--gray);
}

.product-card:hover .product-image img {
    filter: sepia(75%);
}

.product-card .product-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* product header */
.image-header {
    width: 100%;

    border-radius: var(--border-radius);
    overflow: hidden;
}

.image-header img {
    width: 100%;
    max-height: 18rem;
    object-fit: cover;
    object-position: 50% 70%;
}

/* md screen */
@media only screen and (max-width: 992px) {
    .product-card {
        width: 45%;
        max-width: 50%;
    }
}

/* sm screen */
@media only screen and (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 100%;
    }
}