/* ===================================== */
/* PRODUCTS GRID */
/* ===================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}