/* =========================
   Filters and Search Styles - Simplified
   ========================== */

/* Botões de categoria - estilos básicos */
.category-btn {
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.category-btn.active {
    background-color: #dbeafe !important;
    color: #1e40af !important;
}

.category-btn:not(.active) {
    background-color: #f3f4f6 !important;
    color: #374151 !important;
}

.category-btn:not(.active):hover {
    background-color: #e5e7eb !important;
    color: #111827 !important;
}

/* Responsividade básica */
@media (max-width: 640px) {
    .category-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .category-btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}
