.section-controls-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.results-info {
    color: rgba(255, 255, 255, 0.8);
}

.footer-empty {
    width: 170px;
    padding: 0.7rem 1rem;
}

/* RESPONSIVE FIX: stack footer controls centered: items count → buttons. */
@media (max-width: 768px) {
    .section-controls-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
        margin-top: 1.25rem;
    }

    .footer-empty { display: none; }
}