.filters-container {
    position: fixed;
    top: 70px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.filter-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ce292a;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 7;
}

.filter-button img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.filter-menu {
    position: absolute;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    z-index: 6;
}

.filter-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ratings-menu {
    top: 0;
    right: 60px;
    /*width: 180px;
    height: 50px;*/
}

.categories-menu {
    top: 65px;
    right: 60px;
    min-width: 150px;
}

.filter-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    /*color: #313332;*/
    text-align: center;
}

.rating-options {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.rating-option {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*text-align: center;*/
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.rating-option:hover {
    background-color: #f5f5f5;
}

.category-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}

.category-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: 2px solid transparent;
    margin-bottom: 2px;
}

.category-option:hover {
    background-color: #f5f5f5;
}

.category-icon {
    width: 20px;
    height: 20px;
}

.category-label {
    font-size: 12px;
}

/*.filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 4;
}

.filters-overlay.active {
    opacity: 1;
    visibility: visible;
}*/

.filter-button.active {
    background: #313332;
}

.rating-option.selected,
.category-option.selected {
    background-color: #A1E41B55;
    border: 2px solid #fff;
    /*color: white;*/
}