#products-list {
    padding: var(--space-3);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20.5rem, 1fr));
    gap: var(--space-4);
}

@media (max-width: 24.5rem) {
    #products-list {
        grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    }
}

@media (max-width: 18rem) {
    .product-card img {
        height: 7rem;
        width: 7rem;
    }

    #products-list {
        grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
    }
}



/* .product-card {
    width: 100%;
    height: 100%;
    background-color: var(--primary-contrast-color-300);
    border-radius: var(--border-radius-small);
    box-shadow: 2px 2px var(--border-radius-small) var(--primary-contrast-color-400);
    overflow: hidden;
    display: flex;
    flex-direction: row;
} */


/* .product-card > img {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
}

.product-card > div {
    padding: var(--space-2);
} */

/* @media (max-width: 49rem) {
} */