.profile-filters-card {
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #e8ecf7;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.profile-filters-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.profile-filters-label {
    font-size: .88rem;
    font-weight: 700;
    color: #64748b;
    margin-right: 4px;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    background: #f8fafc;
    border: 1px solid #dbe7ff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.icon-button:hover {
    background: #eef2ff;
    border-color: #3b82f6;
    transform: translateY(-1px);
}

.icon-button.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.22);
}

.filter-emoji {
    font-size: 1rem;
    line-height: 1;
}

.empty-feed-state {
    padding: 34px 20px;
    text-align: center;
    border: 1px dashed #dbe3f0;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.empty-feed-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.empty-feed-title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.empty-feed-text {
    margin: 0;
    color: #64748b;
    font-size: .92rem;
}

@media (max-width: 640px) {
    .profile-filters-card {
        padding: 12px;
        border-radius: 16px;
    }

    .profile-filters-row {
        gap: 8px;
    }

    .profile-filters-label {
        width: 100%;
        margin-bottom: 2px;
    }

    .icon-button {
        min-height: 38px;
        padding: 7px 12px;
        font-size: .8rem;
    }
}