#search-content {
    #orderBy, #limit {
        background-color: #F7F7F7;
        border: 1px solid #F7F7F7;
        color: #666666;
        padding: 0.5rem 1.3rem;
        border-radius: 4px;
    }

    #results-info {
        box-shadow: 0px 0px 20px 0px #EEEEEE; 
        height: 100px;
    }
}

@media (max-width: 1200px) {
    #search-content #results-info {
        height: auto;
    }
}

.pagination .page-link {
    color: #FFF;
}

.pagination .page-item.disabled .page-link {
    color: #1A1A1A;
}

.pagination .page-item.active .page-link {
    font-weight: bold;
    background-color: #000;
    border-color: #000;
}


.input_container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;

    input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;

        &:checked {
            ~ .checkbox {
                border-color: #1a1a1a;
                background-color: #1a1a1a;

                &::after {
                    content: "";
                    position: absolute;
                    display: block;
                    top: 2px;
                    left: 6px;
                    width: 5px;
                    height: 10px;
                    border: solid white; /* Mudei para branco para contrastar com o laranja */
                    border-width: 0 2px 2px 0;
                    transform: rotate(45deg);
                }
            }
        }
    }

    .checkbox {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 20px;
        background-color: #fff;
        border: 2px solid #aaa;
        border-radius: 5px;
        transition: all 0.2s ease;

        &.active {
            border-color: #1a1a1a;
            background-color: #1a1a1a;

            &::after {
                content: "";
                position: absolute;
                display: block;
                top: 2px;
                left: 6px;
                width: 5px;
                height: 10px;
                border: solid white; /* Mudei para branco para contrastar com o laranja */
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }
        }
    }
}

.btn-offcanvas-filters {
    position: fixed;
    bottom: 80px;
    right: 8px;
    z-index: 1040;
    background-color: #1A1A1A;
    color: #FFF;
    padding: 12px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.1rem;
    transition: transform 0.2s ease;
}

#offcanvasMobileFilters {
    height: 80%; 
    border-top-left-radius: 12px; 
    border-top-right-radius: 12px;
}