/**
 * Category grid 5/6 columns: Tailwind JIT often omits these when they only appeared
 * inside PHP single-quoted strings. Plain CSS so the live site works without rebuild.
 * Safe to remove after `npm run build` once app.css includes the same utilities.
 */
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}
