.sity-filters {
    margin-bottom: 40px;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.filter-label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #fe6a00;
    border: 2px solid #ffffff57;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.filter-label:hover {
    background-color: #ff8229;
    border-color: #fff;
}

.filter-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-checkbox:checked + .filter-inner-circle {
    border-color: #ff1111;
}

.filter-checkbox:checked + .filter-inner-circle::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #ff1111;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-checkbox:checked ~ .filter-text {
    color: #fff;
}

.filter-inner-circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.filter-text {
    color: #000000;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-label:has(.filter-checkbox:checked) {
    background-color: #3b1900;
    border-color: #ff6511;
}

/* Анимация скрытия профилей */
.profile-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.profile-card.hidden {
    display: none !important;
}

.profile-card.hiding {
    opacity: 0;
    transform: scale(0.95);
}

/* Сообщение когда все профили скрыты */
.no-profiles-message {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
    grid-column: 1 / -1;
}
