.catalogo-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 280px 1fr; /* sidebar + productos */
    gap: 2rem;
    align-items: start;
}

/* SIDEBAR */
.filtros-sidebar {
    background-color: var(--blanco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--sombra);
    position: sticky;
    top: 90px;
    height: fit-content;
}

.filtros-sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--cafe-oscuro);
    font-weight: 700;
}

/* BLOQUES */
.filtro-grupo {
    margin-bottom: 2rem;
}

.filtro-grupo label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--verde-oscuro);
}

.filtro-grupo input[type="text"],
.filtro-grupo input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--verde-claro);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: 0.25s ease;
}

.filtro-grupo input:focus {
    outline: none;
    border-color: var(--verde-oscuro);
}

/* RADIO OPTIONS */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.45rem;
    border-radius: 8px;
    transition: 0.25s ease;
}

.radio-label:hover {
    background-color: var(--crema);
}

.radio-label input {
    margin-right: 0.5rem;
}

/* PRECIOS */
.precio-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.precio-inputs input {
    width: 100%;
}

/* BOTONES */
.filtro-botones {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filtro-botones .btn {
    width: 100%;
}

/* HEADER PRODUCTOS */
.productos-header {
    margin-bottom: 1.5rem;
}

.productos-header h1 {
    font-size: 2.3rem;
    margin-bottom: 0.4rem;
}

.resultados-count {
    color: var(--verde-medio);
    font-size: 1rem;
}

/* CUANDO NO HAY PRODUCTOS */
.no-productos {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--blanco);
    border-radius: 15px;
    box-shadow: var(--sombra);
}

.no-productos p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--verde-medio);
}

/* CATEGORÍA DEL PRODUCTO */
.producto-categoria {
    display: inline-block;
    background-color: var(--verde-claro);
    color: var(--blanco);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* FOOTER DE TARJETAS */
.producto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .catalogo-container {
        grid-template-columns: 240px 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .catalogo-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .filtros-sidebar {
        position: static;     /* deja de ser sticky */
        width: 100%;
    }
}

@media (max-width: 480px) {
    .productos-header h1 {
        font-size: 1.8rem;
    }

    .filtros-sidebar {
        padding: 1.5rem;
    }
}
