.filter-group {
    margin-top: 2rem;
}

.filtros {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 15px;
}

.filtro-preco {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 45%;
}

.filtros span {
    color: #666;
    margin-right: 5px;
    font-size: 0.9rem;
}


.filtros input {
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
}

.seletor-ordenacao {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.seletor-ordenacao label {
    font-size: 0.95rem;
    color: #555;
    margin-right: 10px;
}

#sortSelect {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.seletor {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

/* seletor de precos */
.range-slider-container {
    position: relative;
    width: 100%;
    height: 30px;
    margin-top: 10px;
}
/* trilho cinza no fundo */
.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.range-slider-container input[type="range"] {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    background: none;
    pointer-events: none;
    margin: 0;
    outline: none;
}

/* bolinha p Chrome, Safari, Edge */
.range-slider-container input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #d4a373;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}

.range-slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15); /* Efeito de crescer ao passar o mouse */
}

/* bolinha pro Firefox */
.range-slider-container input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #d4a373;
    pointer-events: auto;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}

.range-slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}
