/* magazin.css - Styles for the store page */

.products-grid-section {
    padding: 1rem 2rem 4rem 2rem;
}

.product-price {
    font-family: var(--font-grotesk);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--primary);
}

/* Ensure the grid looks good on the shop page */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .products-grid-section {
        padding-top: 0;
    }

    .product-grid {
        padding-top: 80px;
        row-gap: 100px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}
