/* ── GRID Y TOOLBAR ── */
.cat-main {
    flex: 1;
    min-width: 0; 
}

.cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 5px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: stretch;
}

/* ── AJUSTE PARA LAS IMÁGENES DENTRO DEL CATÁLOGO ── */
.cat-grid img {
    max-width: 100%;
    display: block;
}