

.photo-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    padding-top: 7rem;
    font-weight: 600;
    font-family: Figtree, sans-serif;
}

.product-grid {
    margin: 0 auto;
    width: 80vw;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center; /* Zentriert letzte Reihe bei < 5 Items */

    .p-show {
        /* 5 pro Reihe: 4 Gaps à 1rem abziehen, Rest durch 5 teilen */
        flex: 0 0 calc((100% - (4 * 1rem)) / 5);
        height: auto;

        .p-image-wrapper {
            width: 100%;
            height: 100%;
            aspect-ratio: 1;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }
}

/* Responsive Fallbacks */
@media (max-width: 900px) {
    .product-grid {
        .p-show {
            /* 3 pro Reihe */
            flex: 0 0 calc((100% - (2 * 1rem)) / 3);
        }
    }
}

@media (max-width: 600px) {
    .product-grid {
        .p-show {
            /* 2 pro Reihe */
            flex: 0 0 calc((100% - (1 * 1rem)) / 2);
        }
    }
}