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

.magazin-hero {
    background-color: #f9f9f9;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.magazin-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.magazin-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.products-grid-section {
    padding: 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) {
    .magazin-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}
